.h2-ttl {
  font-weight: bold;
}

.lv-treatment {
  margin-bottom: 0 !important;
}

.lv-treatment .lv-title {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.15)
}

.treatment_time_box {
  padding: 90px;
}

.wave-block {
  padding-bottom: 0;
}

:root {
  --treatment-theme-color: #03a9f4;
  /* Default to whitening blue */
}

/* Page specific theme overrides */
body.page-general {
  --treatment-theme-color: #7cb342;
}

/* Natural Green */
body.page-pediatric {
  --treatment-theme-color: #fdd835;
}

/* Yellow */
body.page-preventive {
  --treatment-theme-color: #00bcd4;
}

/* Cyan */
body.page-cosmetic {
  --treatment-theme-color: #e91e63;
}

/* Pink */
body.page-implant {
  --treatment-theme-color: #5d4037;
}

/* Brown */
body.page-denture {
  --treatment-theme-color: #8d6e63;
}

/* Light Brown */
body.page-oral-surgery {
  --treatment-theme-color: #546e7a;
}

/* Blue Grey */
body.page-home-visit {
  --treatment-theme-color: #ff7043;
}

/* Deep Orange */
body.page-root-canal {
  --treatment-theme-color: #7e57c2;
}

/* Deep Purple */
body.page-periodontal {
  --treatment-theme-color: #26a69a;
}

/* Teal */


.lv.lv-whitening .lv-inner {
  background: url(../images/lv/lv-whitening.png) no-repeat top center/110%;
  box-sizing: border-box;
}

.lv.lv-general .lv-inner {
  background: url(../images/lv/lv-general.png) no-repeat top center/120%;
  box-sizing: border-box;
}

.lv.lv-pediatric .lv-inner {
  background: url(../images/lv/lv-pediatric.png) no-repeat top center/100%;
  box-sizing: border-box;
}

.lv.lv-preventive .lv-inner {
  background: url(../images/lv/lv-preventive.png) no-repeat top center/120%;
  box-sizing: border-box;
}

.lv.lv-cosmetic .lv-inner {
  background: url(../images/lv/lv-cosmetic.png) no-repeat top center/110%;
  box-sizing: border-box;
}

.lv.lv-implant .lv-inner {
  background: url(../images/lv/lv-implant.png) no-repeat top center/110%;
  box-sizing: border-box;
}

.lv.lv-denture .lv-inner {
  background: url(../images/lv/lv-denture.png) no-repeat top center/120%;
  box-sizing: border-box;
}

.lv.lv-oral-surgery .lv-inner {
  background: url(../images/lv/lv-oral-surgery.png) no-repeat top center/120%;
  box-sizing: border-box;
}

.lv.lv-home-visit .lv-inner {
  background: url(../images/lv/lv-home-visit.png) no-repeat top center/100%;
  box-sizing: border-box;
}

.lv.lv-root-canal .lv-inner {
  background: url(../images/lv/lv-root-canal.png) no-repeat top center/120%;
  box-sizing: border-box;
}

.lv.lv-periodontal .lv-inner {
  background: url(../images/lv/lv-periodontal.png) no-repeat top center/110%;
  box-sizing: border-box;
}

.lv.lv-surgey .lv-inner {
  background: url(../images/lv/lv-surgey.png) no-repeat top center/110%;
  box-sizing: border-box;
}

.treatment-icon {
  text-align: center;
  margin-bottom: 20px;
}

.treatment-icon img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  padding: 10px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  box-sizing: border-box !important;
}

.treatment_time_box .txt18 {
  margin-bottom: 20px !important;
}

.treatment_time_box .txt18:last-child {
  margin-bottom: 0 !important;
}

/* Comparison Table */
.scroll-table {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  /* Ensure table doesn't get too squashed on mobile */
  margin-top: 20px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 200px;
  min-width: 200px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 15px;
  vertical-align: middle;
}

.comparison-table th {
  background-color: #f0f8ff;
  /* Light alice blue background for headers */
  color: #333;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.comparison-table td {
  background-color: #fff;
}

.comparison-table td strong {
  color: #e57373;
  /* Slightly darker red for emphasis */
  /* font-weight: bold;  Already bold by strong tag but can enforce if needed */
}

/* Whitening Flow */
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 30px;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-img {
  flex: 0 0 300px;
  margin: 0;
}

.flow-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.flow-content {
  flex: 1;
}

.flow-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #5D749F;
  border-bottom: 2px solid #5D749F;
  /* Theme color underline */
  padding-bottom: 10px;
}

/* .flow-step */
.flow-step {
  color: #5D749F;
  /* Theme Color */
  font-size: 1.2rem;
  margin-right: 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

@media all and (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    gap: 15px;
  }

  .flow-img {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Keep White Box */
.keep-white-box {
  background-color: #FDFBF4;
  /* Light yellow background */
  border: 2px solid #fbc02d;
  /* Slightly darker yellow border */
  padding: 30px;
  border-radius: 15px;
  margin: 50px 0 0;
}

.keep-white-box:first-child {
  margin-top: 0;
}

.keep-white-title {
  font-size: 1.5rem;
  color: #fbc02d;
  /* Darker yellow for title */
  margin-bottom: 12px;
  text-align: center;
}

.keep-white-title.keep-white-titleLeft {
  text-align: left;
}

/* FAQ Styles */
// .faq-list {
//   margin-top: 20px;
// }

// .faq-item {
//   margin-bottom: 30px;
//   border-bottom: 1px solid #eee;
//   padding-bottom: 30px;
// }

// .faq-item:last-child {
//   border-bottom: none;
//   margin-bottom: 0;
//   padding-bottom: 0;
// }

// .faq-q {
//   font-weight: bold;
//   font-size: 1.1rem;
//   margin-bottom: 15px;
//   position: relative;
//   padding-left: 1.5em;
//   color: #333;
// }

// .faq-icon-q {
//   position: absolute;
//   left: 0;
//   top: 0;
//   color: var(--treatment-theme-color);
//   /* Question mark color */
// }

// .faq-a {
//   margin-left: 0;
//   padding: 20px;
//   background-color: #f9f9f9;
//   border-radius: 10px;
// }

// .faq-a strong {
//   color: var(--treatment-theme-color);
//   font-size: 1.2rem;
//   display: inline-block;
//   margin-bottom: 10px;
// }


// .faq dd p {
//   margin-bottom: 20px;
// }

// .faq dd p:last-child {
//   margin-bottom: 0;
// }

// .faq dd ol,
// .faq dd ul {
//   margin: 20px 0 20px;
//   padding-left: 30px;
// }

// .faq dd ol li {
//   margin-bottom: 5px;
//   list-style: decimal;
// }

// .faq dd ul li {
//   margin-bottom: 5px;
//   list-style: disc;
// }

// .faq dd ol li :last-child,
// .faq dd ul li :last-child {
//   margin-bottom: 0;
// }

/* Utility classes for spacing and font sizes */
.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.f-14 {
  font-size: 1.4rem !important;
}

.f-18 {
  font-size: 1.8rem !important;
}

.txtc {
  text-align: center;
}

/* Feature List Styles */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
}

/* Add a subtle top border line in theme color */
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--treatment-theme-color);
}

.feature-title {
  font-size: 2.0rem;
  color: var(--treatment-theme-color);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Habits List Styles */
.habits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.habit-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}

.habit-img {
  flex: 0 0 45%;
  margin: 0;
}

.habit-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.habit-content {
  flex: 1;
}

.habit-title {
  font-size: 1.6rem;
  color: var(--treatment-theme-color);
  /* Deep Blue based on wireframe impression */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
}

.habit-content p {
  line-height: 1.8;
}

.habit-content p strong {
  font-weight: bold;
  color: #444;
}

@media (max-width: 768px) {
  /* Habits mobile styles in treatment-page-sp.css */

  .feature-item {
    padding: 20px;
  }

  .feature-title {
    font-size: 1.8rem;
  }
}

/* Advanced Section Styles */
.advanced-section {
  /* background-color: #fbfbfb; */
  /* padding: 40px;
  border-radius: 20px; */
}

.advanced-item {
  margin-bottom: 60px;
}

.advanced-item:last-child {
  margin-bottom: 0;
}

.advanced-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}

.advanced-head h3 {
  flex: 1;
  font-size: 1.8rem;
  color: var(--color_blue);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0;
  /* Align visually with image top */
}

.advanced-img {
  flex: 0 0 50%;
  /* Resize as needed */
  margin: 0;
}

.advanced-img img {
  width: 100%;
  height: auto;
}

.advanced-list {
  padding-left: 0;
  list-style: none;
}

.advanced-list li {
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}

.advanced-list li::before {
  content: '⚪︎';
  position: absolute;
  left: 0;
  top: 0px;
  color: #5D749F;
  font-weight: bold;
}

.advanced-list li h4 {
  color: #5D749F;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 1.4rem;
}

/* Prevention Box Styles */
.prevention-box dl {
  background: #fff;
  padding: 90px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.prevention-box dt {
  color: var(--treatment-theme-color);
  font-weight: bold;
  font-size: 1.6rem;
  display: inline-block;
  border-bottom: 2px solid var(--treatment-theme-color);
  padding-bottom: 2px;
}

/* =========================================
   COSMETIC DENTISTRY SPECIFIC STYLES
   ========================================= */

/* Feature List (Cosmetic) */
.cosmetic-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.cosmetic-feature-item {
  flex: 0 0 calc(50% - 15px);
  /* 2 column on PC */
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 5th item full width centered */
.cosmetic-feature-item:last-child:nth-child(odd) {
  flex: 0 0 80%;
}

.cosmetic-feature-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
}

.cosmetic-feature-num {
  background-color: var(--treatment-theme-color);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
}

.cosmetic-feature-title {
  font-size: 1.5rem;
  color: var(--treatment-theme-color);
  font-weight: bold;
  margin: 0;
  text-align: left;
}

.cosmetic-feature-desc {
  font-size: 1.0rem;
  line-height: 1.8;
  text-align: left;
  width: 100%;
}

/* Material Menu (Cosmetic) */
.cosmetic-materials {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.material-category {
  background: #fff;
  // border-radius: 15px;
  overflow: hidden;
  /* border: 1px solid #ddd; */
  /* Remove generic border, use distinct styling for items */
}

.material-cat-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
}

.material-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.material-item {
  border: 1px solid #D7E1F4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.material-header {
  background-color: #D7E1F4;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #D7E1F4;
}

.material-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #5D749F;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .material-name::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--treatment-theme-color);
  border-radius: 50%;
} */

.material-type {
  background-color: #314874;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
}

.material-body {
  padding: 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.material-desc {
  flex: 1;
  font-size: 1.0rem;
  line-height: 1.8;
}

.material-img {
  flex: 0 0 200px;
}

.material-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}

/* Steps (Cosmetic) - Vertical Timeline */

/* Steps (Cosmetic) - Horizontal Layout */
.cosmetic-steps {
  max-width: 900px;
  margin: 50px auto 0;
}

.cosmetic-steps:first-child {
  margin-top: 0;
}

.cosmetic-step-item {
  display: grid;
  grid-template-columns: 240px 100px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.cosmetic-step-item:last-of-type {
  margin-bottom: 0;
}

.step-img {
  width: 100%;
}

.step-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #eee;
}

.step-number-box {
  position: relative;
  background: linear-gradient(135deg, #314874 0%, #314874 100%);
  color: #fff;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

/* Timeline connector line */
.cosmetic-step-item:not(:last-child) .step-number-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 150px;
  background-color: #314874;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  color: #fff;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.step-content {
  padding-top: 10px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #314874;
  margin-bottom: 15px;
  line-height: 1.5;
}

.step-txt p {
  line-height: 1.8;
  color: #555;
}

/* Responsive adjustments for Cosmetic Page */
@media (max-width: 768px) {
  .cosmetic-feature-item {
    flex: 0 0 100%;
  }

  .cosmetic-feature-item:last-child:nth-child(odd) {
    flex: 0 0 100%;
  }

  .material-body {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .material-img {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }

  .material-img img {
    max-width: 300px;
  }

  /* Steps Mobile - Stacked Layout */
  .cosmetic-step-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .step-img {
    order: 1;
  }

  .step-number-box {
    order: 2;
    width: 120px;
    margin: 0 auto;
    min-height: 80px;
    padding: 15px 10px;
  }

  .step-label {
    font-size: 0.8rem;
  }

  .step-num {
    font-size: 2rem;
  }

  .step-content {
    order: 3;
    padding-top: 0;
  }

  .step-title {
    font-size: 1.1rem;
  }
}


/* ツァツァ改修 */

.section {
  position: relative;
  padding: 30px 0 40px;
}

.section.white-type-bg {
  background-color: #fff;
}

.section.gray-type-bg {
  background-color: #f5f4f1;
}

.t-stepbox {
  counter-reset: step;
}

.t-stepbox-list {
  counter-increment: step;
  background-color: #D7E1F4;
  margin-bottom: 40px;
  position: relative;
  padding: 40px;
  border-radius: 10px;
}

/* :before に番号を表示 */
.t-stepbox-list::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.t-stepbox-list::after {
  content: '';
  position: absolute;
  left: 50px;
  bottom: -40px;
  height: 40px;
  width: 1px;
  border: 1px dashed #ccc;
}

.t-stepbox-list:last-child::after {
  display: none;
}

.col03-layout-box {
  display: flex;
  gap: 3rem;
  margin-bottom: 40px;
}

.col03-layout-box:last-child {
  margin-bottom: 0;
}

.col03-layout-type {
  width: 30%;
}

.col03-layout-type .thum {
  margin-bottom: 15px;
}

/*merit*/
.t-merit-list {
  border-top: 1px solid #ddd;
}

.t-merit-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  gap: 20px;
}

/* 左ラベル */
.t-merit-label {
  min-width: 110px;
  padding-left: 12px;
  font-weight: bold;
  line-height: 1.4;
}

.t-merit-label span {
  font-size: 0.9em;
  font-weight: normal;
}

/* 右テキスト */
.t-merit-text {
  line-height: 1.8;
  color: #333;
}

/* メリット */
.is-merit .t-merit-label {
  color: #1e88e5;
  border-left: 4px solid #1e88e5;
  border-right: 4px solid #1e88e5;
}

/* デメリット */
.is-demerit .t-merit-label {
  color: #e53935;
  border-left: 4px solid #e53935;
  border-right: 4px solid #e53935;
}

/* 診療案内 */
.illust-ico-birdr,
.illust-ico-birdl,
.illust-ico-pianor,
.illust-ico-pachil,
.illust-ico-pachir,
.illust-ico-treel,
.illust-ico-bicycler,
.illust-ico-walkr,
.illust-ico-duckr,
.illust-ico-houser,
.illust-ico-sunnyl,
.illust-ico-treewomanr,
.illust-ico-pachildhar,
.illust-ico-rainr,
.illust-ico-womendogr,
.illust-ico-womendogl,
.illust-ico-twowor,
.illust-ico-ameduckr,
.illust-ico-sunnytreer,
.illust-ico-rainbr,
.illust-ico-treebycr {
  position: relative;
}

.illust-ico-birdr:after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 132px;
  height: 108px;
  background: url(../images/top/top-illust11.png) 0% 0% / 100% no-repeat;
}

.illust-ico-birdl:after {
  content: "";
  position: absolute;
  left: -60px;
  top: -80px;
  width: 102px;
  height: 108px;
  background: url(../images/top/top-illust02.png) 0% 0% / 100% no-repeat;
}

.illust-ico-pianor:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 60px;
  height: 160px;
  z-index: 1;
  background: url(../images/top/top-illust03.png) 0% 0% / 100% no-repeat;
}

.illust-ico-pachil:after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -130px;
  width: 80px;
  height: 158px;
  background: url(../images/top/top-illust05.png) 0% 0% / 100% no-repeat;
}

.illust-ico-pachir:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 90px;
  height: 158px;
  background: url(../images/top/top-illust05.png) 0% 0% / 100% no-repeat;
}

.illust-ico-treel:after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -20px;
  width: 40px;
  height: 98px;
  background: url(../images/top/top-illust17.png) 0% 0% / 100% no-repeat;
}

.illust-ico-bicycler:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -30px;
  width: 100px;
  height: 98px;
  background: url(../images/top/top-illust09.png) 0% 0% / 100% no-repeat;
}

.illust-ico-walkr:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 60px;
  height: 98px;
  background: url(../images/top/top-illust07.png) 0% 0% / 100% no-repeat;
}

.illust-ico-duckr:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 60px;
  height: 78px;
  background: url(../images/top/top-illust20.png) 0% 0% / 100% no-repeat;
}

.layout_about.mb-20 {
  margin-bottom: 20px;
}

.illust-ico-birdr.preventive-illust01:after {
  right: -60px;
  top: -30px;
  width: 100px;
  height: 88px;
}

.illust-ico-houser:after {
  content: "";
  position: absolute;
  right: -160px;
  top: -20px;
  width: 130px;
  height: 68px;
  background: url(../images/top/top-illust21.png) 0% 0% / 100% no-repeat;
}

.illust-ico-sunnyl:after {
  content: "";
  position: absolute;
  left: -70px;
  top: 0px;
  width: 50px;
  height: 68px;
  background: url(../images/top/top-illust16.png) 0% 0% / 100% no-repeat;
}

.illust-ico-treewomanr:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 100px;
  height: 148px;
  background: url(../images/top/top-illust22.png) 0% 0% / 100% no-repeat;
}

.illust-ico-pachildhar:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 100px;
  height: 148px;
  background: url(../images/top/top-illust23.png) 0% 0% / 100% no-repeat;
}

.illust-ico-rainr:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -60px;
  width: 100px;
  height: 148px;
  background: url(../images/top/top-illust14.png) 0% 0% / 100% no-repeat;
}

.illust-ico-womendogr:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -30px;
  width: 130px;
  height: 148px;
  background: url(../images/top/top-illust13.png) 0% 0% / 100% no-repeat;
}

.illust-ico-womendogl:after {
  content: "";
  position: absolute;
  left: -160px;
  top: -50px;
  width: 130px;
  height: 148px;
  background: url(../images/top/top-illust13.png) 0% 0% / 100% no-repeat;
}

.illust-ico-twowor:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -40px;
  width: 70px;
  height: 118px;
  background: url(../images/top/top-illust08.png) 0% 0% / 100% no-repeat;
}

.illust-ico-ameduckr:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -40px;
  width: 100px;
  height: 98px;
  background: url(../images/top/top-illust24.png) 0% 0% / 100% no-repeat;
}

.illust-ico-sunnytreer:after {
  content: "";
  position: absolute;
  right: -140px;
  top: -50px;
  width: 120px;
  height: 118px;
  background: url(../images/top/top-illust26.png) 0% 0% / 100% no-repeat;
}

.illust-ico-rainbr:after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 118px;
  background: url(../images/top/top-illust25.png) 0% 0% / 100% no-repeat;
}

.illust-ico-treebycr:after {
  content: "";
  position: absolute;
  right: -110px;
  top: -40px;
  width: 90px;
  height: 98px;
  background: url(../images/top/top-illust27.png) 0% 0% / 100% no-repeat;
}

.ov-hid {
  overflow: hidden;
}

img.fl-r {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 45%;
}

img.fl-l {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  max-width: 45%;
}

.price-table01.ve-a-t td {
  vertical-align: top;
}

.col02-layout-type.type02 .thum {
  order: 2;
}

.col02-layout-type.type02 .info {
  order: 1;
  margin-left: 0;
}

.ov-au-img {
  height: 300px;
  overflow: auto;
}

.ov-au-img img {
  width: 100%;
}