/* =========================================
   01. Variables
========================================= */
body:has(main.lp-mct) {
  --white: #fff;
  --ivory: #f8f4ee;
  --text: #333333;
  --main: #0d9b28;
  --red: #ff4848;
  --blue: #3cb8eb;
  --gray: #555555;
  --main10: rgba(13, 155, 40, 0.1);
  --red10: rgba(255, 72, 72, 0.1);
  --blue10: rgba(60, 184, 234, 0.1);
}

/* =========================================
   02. Base / Shared
========================================= */
body:has(main.lp-mct){
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

html:has(main.lp-mct){ 
  scroll-behavior: smooth;
  height: auto;
  min-height: 100%;
}

body:has(main.lp-mct) .container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 992px;
  padding: 0 16px;
}

body:has(main.lp-mct) .btn_new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 80px;
  text-align: center;
  color: #f5f5f5;
  font-weight: 700;
  text-decoration: none;
}

body:has(main.lp-mct) .btn-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

body:has(main.lp-mct) .btn-green {
  background: var(--main);
}

body:has(main.lp-mct) .btn-red {
  background: var(--red);
}

body:has(main.lp-mct) .bold {
  font-weight: 700;
}

body:has(main.lp-mct) .main {
  color: var(--main);
}

body:has(main.lp-mct) .ff-14 {
  font-size: 14px;
}

body:has(main.lp-mct) .pc_only {
  display: block;
}
body:has(main.lp-mct) .sp_only {
  display: none;
}

@media (max-width: 767px) {
  html:has(main.lp-mct),
  body:has(main.lp-mct){
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  html:has(main.lp-mct)::-webkit-scrollbar,
  body:has(main.lp-mct)::-webkit-scrollbar {
    display: none;
  }
  body:has(main.lp-mct) .pc_only {
    display: none;
  }
  body:has(main.lp-mct) .sp_only {
    display: block;
  }
}

/* =========================================
   03. Header
========================================= */
body:has(main.lp-mct) .header {
  width: 100%;
}

body:has(main.lp-mct) .header img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   04. Hero
========================================= */
body:has(main.lp-mct) .hero {
  position: relative;
  height: clamp(760px, 95vw, 880px);
}

body:has(main.lp-mct) .hero-bg,
body:has(main.lp-mct) .hero-bg picture,
body:has(main.lp-mct) .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:has(main.lp-mct) .hero-inner {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  height: 100%;
}

body:has(main.lp-mct) .breadcrumb {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 12px;
  line-height: 1.1;
  z-index: 2;
}

body:has(main.lp-mct) .hero-mainimg {
  position: absolute;
  top: 40px;
  right: 40px;
  width: calc(100% - 120px); 
  max-width: 1200px;
  height: auto;
  object-fit: contain;
}

body:has(main.lp-mct) .hero-doctor {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 210px;
  height: 210px;
  object-fit: cover;
}

body:has(main.lp-mct) .hero-copy-wrap {
  position: absolute;
  left: clamp(16px, 5.6vw, 80px);
  top: clamp(78px, 8.8vw, 128px);
  z-index: 2;
}

body:has(main.lp-mct) .hero-lead {
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

body:has(main.lp-mct) .hero-sub {
  display: block;
  width: fit-content;
  margin-top: clamp(24px, 3.6vw, 52px);
  background: var(--white);
  padding: clamp(4px, 0.6vw, 8px) clamp(8px, 1.6vw, 24px);
  font-size: clamp(14px, 2.1vw, 30px);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

body:has(main.lp-mct) .hero h1 {
  width: fit-content;
  display: block;
  margin-top: clamp(12px, 1.4vw, 20px);
  background: var(--white);
  padding: clamp(4px, 0.6vw, 8px) clamp(10px, 2.8vw, 40px);
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: clamp(0.08em, 0.2vw, 0.2em);
}

body:has(main.lp-mct) .hero-hashtag {
  position: absolute;
  left: clamp(16px, 16.7vw, 240px);
  top: clamp(300px, 50vw, 720px);
  width: clamp(168px, 29vw, 420px);
  height: auto;
  object-fit: cover;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .hero {
    height: 720px;
  }

  body:has(main.lp-mct) .hero-inner {
    width: 100%;
  }

  body:has(main.lp-mct) .breadcrumb {
    left: 16px;
    top: 4px;
    font-size: 10px;
  }

  body:has(main.lp-mct) .hero-mainimg {
    width: 343px;
    height: 560px;
    top: 40px;
    right: 0;
  }

  body:has(main.lp-mct) .hero-doctor {
    width: 120px;
    height: 120px;
    left: 239px;
    top: 78px;
  }

  body:has(main.lp-mct) .hero-copy-wrap {
    left: 16px;
    top: 78px;
  }

  body:has(main.lp-mct) .hero-lead {
    font-size: 20px;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }

  body:has(main.lp-mct) .hero-sub {
    margin-top: 382px;
    font-size: 14px;
    padding: 4px 8px;
  }

  body:has(main.lp-mct) .hero h1 {
    margin-top: 8px;
    font-size: 56px;
    padding: 4px 16px;
  }

  body:has(main.lp-mct) .hero-hashtag {
    width: 168px;
    height: 64px;
    left: 16px;
    top: 656px;
  }
}

/* =========================================
   05. Lead
========================================= */
body:has(main.lp-mct) .lead {
  position: relative;
  padding: 113px 0 102px;
}

body:has(main.lp-mct) .lead-bg,
body:has(main.lp-mct) .lead-bg picture,
body:has(main.lp-mct) .lead-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:has(main.lp-mct) .lead .container {
  margin: 0 auto;
  max-width: 1312px;
  padding: 0 16px;
  position: relative;
}

body:has(main.lp-mct) .lead-center {
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .lead-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: start;
}

body:has(main.lp-mct) .lead-images {
  position: relative;
  height: 620px;
}

body:has(main.lp-mct) .lead-img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 520px;
  height: 520px;
  object-fit: cover;
}

body:has(main.lp-mct) .lead-img2 {
  position: absolute;
  left: 360px;
  top: 293px;
  width: 240px;
  height: 320px;
  object-fit: cover;
}

body:has(main.lp-mct) .lead-text {
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .lead-center.bottom {
  margin-top: 80px;
}

body:has(main.lp-mct) .lead .btn_new {
  width: 640px;
  height: 80px;
  margin: 24px auto 0;
  font-size: 24px;
}

body:has(main.lp-mct) .result-note {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  body:has(main.lp-mct) .lead {
    padding: 64px 0 56px;
  }

  body:has(main.lp-mct) .lead-center,
  body:has(main.lp-mct) .lead-text {
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .lead-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:has(main.lp-mct) .lead-images {
    height: auto;
    display: grid;
    grid-template-columns: 190fr 143fr;
    gap: 10px;
    align-items: stretch;
  }

  body:has(main.lp-mct) .lead-img1 {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 190 / 190;
    object-fit: cover;
  }

  body:has(main.lp-mct) .lead-img2 {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 143 / 190;
    object-fit: cover;
  }

  body:has(main.lp-mct) .lead-center.bottom {
    margin-top: 40px;
  }

  body:has(main.lp-mct) .lead .btn_new {
    width: 343px;
    height: 64px;
    margin-top: 24px;
    font-size: 16px;
    gap: 8px;
  }

  body:has(main.lp-mct) .result-note {
    font-size: 10px;
    line-height: 1.2;
  }
}

/* =========================================
   06. Contents
========================================= */
body:has(main.lp-mct) .contents {
  position: relative;
  padding: 96px 0 80px;
}

body:has(main.lp-mct) .contents-bg,
body:has(main.lp-mct) .contents-bg picture,
body:has(main.lp-mct) .contents-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:has(main.lp-mct) .contents-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 105px;
}

body:has(main.lp-mct) .contents h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: 0.08em;
}

body:has(main.lp-mct) .contents-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 158px;
}

body:has(main.lp-mct) .contents-icon {
  width: 291px;
  height: 160px;
}

body:has(main.lp-mct) .contents ol li:not(:first-child) {
  margin-top: 24px;
}

body:has(main.lp-mct) .contents li a {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

body:has(main.lp-mct) .contents li a span {
  font-family: "Roboto", sans-serif;
  color: var(--main);
  font-size: 32px;
  border-right: 1px solid var(--main);
  padding-right: 24px;
  display: flex;  
  align-items: center;   
  height: 24px;
}

body:has(main.lp-mct) .contents ol p {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 8px auto 0 79px;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .contents {
    padding: 0 0 56px 0;
  }

  body:has(main.lp-mct) .contents-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  body:has(main.lp-mct) .contents-flex {
    gap: 32px;
    align-items: center;
  }

  body:has(main.lp-mct) .contents h2 {
    font-size: 32px;
    text-align: center;
  }

  body:has(main.lp-mct) .contents ol {
    background: var(--ivory);
    border-radius: 10px;
    box-shadow: 2px 3px 0 #d9d9d9;
    padding: 16px;
    gap: 24px;
    width: 100%;
  }

  body:has(main.lp-mct) .contents li {
    gap: 8px;
    font-size: 16px;
    align-items: flex-start;
  }

  body:has(main.lp-mct) .contents li a {
    gap: 8px;
    font-size: 16px;
  }

  body:has(main.lp-mct) .contents li a span {
    font-size: 18px;
    padding-right: 8px;
    min-width: 32px;
  }

  body:has(main.lp-mct) .contents ol p {
    display: none;
  }
} 

/* =========================================
   07. Sections (01-04)sec共通
========================================= */
body:has(main.lp-mct) .sec {
  padding: 96px 0;
}

body:has(main.lp-mct) .sec-head {
  text-align: center;
  margin-bottom: 64px;
}

body:has(main.lp-mct) .sec-head img {
  width: 100px;
  height: 50px;
  margin: 0 auto 16px;
}

body:has(main.lp-mct) .sec-head h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  max-width: 992px;
  margin: 0 auto;
  padding: 0 16px;
}

body:has(main.lp-mct) .sec-title {
  width: fit-content;
  border-top: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  color: var(--main);
  font-size: 36px;
  text-align: center;
  padding: 24px;
  margin: 0 auto 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .sec {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .sec-head {
    margin-bottom: 40px;
  }

  body:has(main.lp-mct) .sec-head img {
    width: 80px;
    height: 40px;
    margin-bottom: 8px;
  }

  body:has(main.lp-mct) .sec-head h3 {
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  body:has(main.lp-mct) .sec-title {
  width: 100%;
  font-size: 20px;
  padding: 16px 0;
  margin-bottom: 0;
  }
}
/* =========================================
   07. Sections01 
========================================= */
body:has(main.lp-mct) .sec01 {
  position: relative;
  background: var(--ivory);
  padding: 0;
}

body:has(main.lp-mct) .sec01::after {
  position: absolute;
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 140px;
  background: url("../images/ext/chusashibousan/new2026/01_bg_1.png") no-repeat center / cover;
}

body:has(main.lp-mct) .sec01 .sec-head {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1440 / 400;
  margin-bottom: 96px;
  display: grid;
  place-content: center;
  gap: 16px;
  background-image: url("../images/ext/chusashibousan/new2026/01_header_1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body:has(main.lp-mct) .sec01 .sec-head img {
  margin: 0 auto;
}

body:has(main.lp-mct) .sec01 .sec-head h3 {
  color: var(--white);
  font-size: 48px;
  padding: 0 16px;
}

body:has(main.lp-mct) .sec01-wrap {
  display: grid;
  gap: 80px;
}

body:has(main.lp-mct) .sec01-card {
  display: grid;
  gap: 24px;
}

body:has(main.lp-mct) .sec01-card p {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec01-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

body:has(main.lp-mct) .sec01-coconut {
  width: 320px;
  height: 249px;
  object-fit: cover;
}

body:has(main.lp-mct) .sec01-reco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body:has(main.lp-mct) .sec01-reco-grid img {
  width: 100%;
  height: auto;
}

body:has(main.lp-mct) .sec01-reco-grid figcaption {
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

body:has(main.lp-mct) .sec01-note {
  border: 1px dashed var(--main);
  padding: 40px;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-top: 56px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .sec01::after {
    height: 60px;
    background: url("../images/ext/chusashibousan/new2026/01_bg_sp_1.png") no-repeat center / cover;
  }

  body:has(main.lp-mct) .sec01 .sec-head {
    background-image: url("../images/ext/chusashibousan/new2026/01_header_sp_2.png");
    aspect-ratio: 375 / 240;
    margin-bottom: 40px;
    gap: 8px;
  }

  body:has(main.lp-mct) .sec01 .sec-head h3 {
    font-size: 28px;
  }

  body:has(main.lp-mct) .sec01 .sec-head {
    margin-bottom: 40px;
    gap: 8px;
  }

  body:has(main.lp-mct) .sec01-wrap {
    gap: 56px;
  }

  body:has(main.lp-mct) .sec01-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .sec01-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:has(main.lp-mct) .sec01-coconut {
    width: 240px;
    height: auto;
    margin: 0 auto;
  }

  body:has(main.lp-mct) .sec01-reco-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:has(main.lp-mct) .sec01-reco-grid figcaption {
    margin-top: 8px;
    font-size: 16px;
  }

  body:has(main.lp-mct) .sec01-note {
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 8px;
  }
}

/* =========================================
   07. Sections02
========================================= */
body:has(main.lp-mct) #section02 {
  scroll-margin-top: -140px;
}

body:has(main.lp-mct) .sec02 {
  padding: 140px 0 0;
}
body:has(main.lp-mct) .sec02-wrap {
  max-width: none;
  width: 100%;
  padding: 0;
}

body:has(main.lp-mct) .sec02-group {
  padding: 96px 0;
}

body:has(main.lp-mct) .sec02-group.sec02-red{
  padding: 56px 0 96px;
}
body:has(main.lp-mct) .sec01-wrap,
body:has(main.lp-mct) .sec02-group > h4,
body:has(main.lp-mct) .sec02-group > .sec-subread,
body:has(main.lp-mct) .sec02-group > .sec02-read,
body:has(main.lp-mct) .sec02-group > .sec02-cards,
body:has(main.lp-mct) .sec02-group > .sec02-comment {
  max-width: 992px;
  margin: 0 auto;
  padding: 0 16px;
}

body:has(main.lp-mct) .sec02-red {
  background: var(--red10);
}

body:has(main.lp-mct) .sec02-blue {
  background: var(--blue10);
}

body:has(main.lp-mct) .sec02-green {
  background: var(--main10);
}

body:has(main.lp-mct) .sec02 .sec-head {
  margin-bottom: 0;
  background: var(--white);
  padding: 96px 16px 64px;
}

body:has(main.lp-mct) .sec02 .sec-head h3 {
  color: var(--text);
}

body:has(main.lp-mct) .sec02-lead {
  margin-top: 40px;
  text-align: center;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec02-arrow {
  position: relative;
  height: 0;
  z-index: 2;
}

body:has(main.lp-mct) .sec02-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 130px;
  height: 60px;
  background: url("../images/ext/chusashibousan/new2026/icon_arrow_1.png") no-repeat center / contain;
}

body:has(main.lp-mct) .sec02-group h4 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  width: fit-content;
  margin: 0 auto 40px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 32px;
  margin-bottom: 64px;
}

body:has(main.lp-mct) .sec02-red h4 {
  color: var(--red);
  margin-top: 48px;
}

body:has(main.lp-mct) .sec02-blue h4 {
  color: var(--blue);
}

body:has(main.lp-mct) .sec02-green h4 {
  color: var(--main);
}

body:has(main.lp-mct) .sec02-group h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 160px;
  border-radius: 5px;
}

body:has(main.lp-mct) .sec02-red h4::after {
  border-top: 5px solid var(--red);
}

body:has(main.lp-mct) .sec02-blue h4::after {
  border-top: 5px solid var(--blue);
}

body:has(main.lp-mct) .sec02-green h4::after {
  border-top: 5px solid var(--main);
}

body:has(main.lp-mct) .mini-band,
body:has(main.lp-mct) .point-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

body:has(main.lp-mct) .mini-band span,
body:has(main.lp-mct) .point-title span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex: 0 0 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
}

body:has(main.lp-mct) .mini-band.red {
  background: var(--red);
  color: var(--white);
}

body:has(main.lp-mct) .mini-band.red span {
  color: var(--red);
}

body:has(main.lp-mct) .mini-band.blue {
  background: var(--blue);
  color: var(--white);
}

body:has(main.lp-mct) .mini-band.blue span {
  color: var(--blue);
}

body:has(main.lp-mct) .mini-band.green {
  background: var(--main);
  color: var(--white);
}

body:has(main.lp-mct) .mini-band.green span {
  color: var(--main);
}

body:has(main.lp-mct) .sec02-group .sec-subread {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

body:has(main.lp-mct) .sec02-cards {
  display: grid;
  gap: 40px;
}

body:has(main.lp-mct) .sec02-card {
  background: #fff;
  padding: 16px;
}

body:has(main.lp-mct) .sec02-card img {
  width: 100%;
  height: auto;
  margin-top: 12px;
}

body:has(main.lp-mct) .sec02-card--split {
  background: transparent;
  padding: 0;
}

body:has(main.lp-mct) .sec02-card--split .mini-band {
  margin-bottom: 0;
}

body:has(main.lp-mct) .sec02-card-body {
  background: #fff;
  padding: 40px;
  display: grid;
  gap: 24px;
}

body:has(main.lp-mct) .sec02-card-body p {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec02-card--split img {
  margin-top: 0;
}

/* sec02-card-flex */
body:has(main.lp-mct) .sec02-card-flex {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
body:has(main.lp-mct) .sec02-red .sec02-card-flex {
  background: var(--red10);
}
body:has(main.lp-mct) .sec02-blue .sec02-card-flex {
  background: var(--blue10);
}
body:has(main.lp-mct) .sec02-green .sec02-card-flex {
  background: var(--green10);
}

body:has(main.lp-mct) .sec02-flex-textarea {
  display: grid;
  gap: 16px;
}

body:has(main.lp-mct) .sec02-flex-textarea p {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: bold;
}
body:has(main.lp-mct) .sec02-red .sec02-flex-textarea p {
  color: var(--red);
}
body:has(main.lp-mct) .sec02-blue .sec02-flex-textarea p {
  color: var(--blue);
}
body:has(main.lp-mct) .sec02-green .sec02-flex-textarea p {
  color: var(--green);
}

body:has(main.lp-mct) .sec02-flex-textarea li {
  font-size: 18px;
  line-height: 1.75;
}

/* onepoint */
body:has(main.lp-mct) .onepoint {
  margin-top: 72px;
}

body:has(main.lp-mct) .onepoint-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
}
body:has(main.lp-mct) .sec02-red .onepoint-title {
  color: var(--red);
}
body:has(main.lp-mct) .sec02-green .onepoint-title {
  color: var(--main);
}

body:has(main.lp-mct) .onepoint-flex {
  border-radius: 10px;
  border: 1px dashed var(--red);
  padding: 40px;
  display: flex;
  gap: 40px;
}
body:has(main.lp-mct) .sec02-red .onepoint-flex {
  border-color: var(--red);
}
body:has(main.lp-mct) .sec02-green .onepoint-flex {
  border-color: var(--main);
}

body:has(main.lp-mct) .onepoint-textarea {
  max-width: 680px;
}

body:has(main.lp-mct) .texearea-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 8px;
}

body:has(main.lp-mct) .textarea-text {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .onepoint-imgarea {
  width: 160px;
  height: 160px;
}

body:has(main.lp-mct) .onepoint-imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) #section02 {
  scroll-margin-top: -60px;
  } 

  body:has(main.lp-mct) .sec02 {
    padding: 60px 0 0;
  } 

  body:has(main.lp-mct) .sec02 .sec-head {
    padding: 56px 16px 32px;
  }

  body:has(main.lp-mct) .sec02-lead {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  body:has(main.lp-mct) .sec02-arrow {
    z-index: 2;
  }

  body:has(main.lp-mct) .sec02-arrow::before {
    width: 88px;
    height: 40px;
  }

  body:has(main.lp-mct) .mini-band,
  body:has(main.lp-mct) .point-title {
    font-size: 20px;
    gap: 8px;
    line-height: 1.5;
    padding: 8px;
  }

  body:has(main.lp-mct) .mini-band span,
  body:has(main.lp-mct) .point-title span {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex: 0 0 32px;
    font-size: 18px;
  }
  
  body:has(main.lp-mct) .point-card {
    padding: 16px;
    margin-bottom: 32px;
  }

  body:has(main.lp-mct) .point-card p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .block p {
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .sec02-group {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .sec02-group.sec02-red {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .sec02-group h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  body:has(main.lp-mct) .sec02-group h4 {
    margin-bottom: 40px;
    font-size: 24px;
    padding-bottom: 16px;
    margin-top: 10px;
  }

  body:has(main.lp-mct) .sec02-group h4::after {
    width: 80px;
    border-top-width: 4px;
  }

  body:has(main.lp-mct) .sec02-group .sec-subread {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  body:has(main.lp-mct) .sec02-cards {
    gap: 32px;
  }

  body:has(main.lp-mct) .sec02-card-body {
    padding: 16px;
  }

  body:has(main.lp-mct) .sec02-card-body p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  body:has(main.lp-mct) .sec02-card-flex {
    flex-direction: column;
    gap: 24px;
    padding: 16px;
  }


  body:has(main.lp-mct) .sec02-flex-textarea {
    width: 100%;
  }

  body:has(main.lp-mct) .sec02-flex-textarea li {
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .sec02-flex-imgarea {
    width: 100%;
  }

  body:has(main.lp-mct) .onepoint {
    margin-top: 40px;
  }

  body:has(main.lp-mct) .onepoint-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  body:has(main.lp-mct) .onepoint-flex {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 16px;
  }

  body:has(main.lp-mct) .onepoint-imgarea {
    margin: 0 auto;
  }

  body:has(main.lp-mct) .texearea-title {
    font-size: 18px;
  }

  body:has(main.lp-mct) .textarea-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* =========================================
   07. Sections03
========================================= */
body:has(main.lp-mct) .sec03 {
  background: var(--ivory);
  padding: 96px 0;
}

body:has(main.lp-mct) .sec03 .sec-head {
  margin-bottom: 40px;
}

body:has(main.lp-mct) .sec03-container {
  display: grid;
  gap: 80px;
}

body:has(main.lp-mct) .sec03-intro {
  margin-bottom: 64px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec03-block {
  display: grid;
  gap: 24px;
}

body:has(main.lp-mct) .sec03-text {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec03-note {
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec03-graph img {
  width: 100%;
  height: auto;
  display: block;
}

body:has(main.lp-mct) .sec03-subtitle {
  margin: 16px auto 0;
  width: fit-content;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0 68px;
}

body:has(main.lp-mct) .sec03-subtitle::before,
body:has(main.lp-mct) .sec03-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  border-top: 1px solid #5dbf71;
}

body:has(main.lp-mct) .sec03-subtitle::before {
  left: 0;
}

body:has(main.lp-mct) .sec03-subtitle::after {
  right: 0;
}

body:has(main.lp-mct) .sec03-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

body:has(main.lp-mct) .sec03-use-item img {
  width: 222px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}

body:has(main.lp-mct) .sec03-use-top {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .sec03-use-bottom {
  text-align: center;
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

body:has(main.lp-mct) .sec03-use-grid.purpose .sec03-use-bottom {
  margin-top: 0;
}

body:has(main.lp-mct) .sec03-cta {
  background: #e4cf8d;
}

body:has(main.lp-mct) .sec03-cta img {
  width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .sec03 {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .sec03-container {
    gap: 56px;
  }

  body:has(main.lp-mct) .sec03-text {
    font-size: 13px;
    line-height: 1.8;
  }

  body:has(main.lp-mct) .sec03-note {
    line-height: 1.5;
    margin-top: 8px;
  }

  body:has(main.lp-mct) .sec03-intro {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  body:has(main.lp-mct) .sec03-text {
    font-size: 16px;
    /* line-height: 1.5; */
    letter-spacing: 0.04em;
  }

  body:has(main.lp-mct) .sec03-intro {
    margin-bottom: 38px;
    text-align: left;
  }

  body:has(main.lp-mct) .sec03-title {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
    padding: 16px 0;
    margin-bottom: 0;
  }

  body:has(main.lp-mct) .sec03-subtitle {
    width: fit-content;
    padding: 0 52px;
    font-size: 18px;
    margin-top: 8px;
  }

  body:has(main.lp-mct) .sec03-subtitle::before,
  body:has(main.lp-mct) .sec03-subtitle::after {
    width: 40px;
  }

  body:has(main.lp-mct) .sec03-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 17px;
  }

  body:has(main.lp-mct) .sec03-use-item img {
    width: 163px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
  }

  body:has(main.lp-mct) .sec03-use-top {
    font-size: 14px;
    margin-bottom: 4px;
  }

  body:has(main.lp-mct) .sec03-use-bottom {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* =========================================
   07. Sections04
========================================= */
body:has(main.lp-mct) .sec04 {
  padding: 96px 0;
  background: var(--main10);
}

body:has(main.lp-mct) .point-card {
  background: var(--white);
  padding: 40px;
  margin-bottom: 40px;
}

body:has(main.lp-mct) .point-title {
  background: var(--main);
  color: var(--white);
}

body:has(main.lp-mct) .point-title span {
  color: var(--main);
}

body:has(main.lp-mct) .point-item:last-child .point-card {
  margin-bottom: 0;
}

body:has(main.lp-mct) .point-card p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .sec04 {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .point-title {
    padding: 8px;
  }

  body:has(main.lp-mct) .point-card {
    padding: 16px;
    margin-bottom: 32px;
  }

  body:has(main.lp-mct) .point-card p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }
}



/* =========================================
   08. FAQ
========================================= */
body:has(main.lp-mct) .faq_new {
  padding: 96px 0 40px;
  background: var(--white);
}

body:has(main.lp-mct) .faq-item {
  margin-bottom: 16px;
  position: relative;
}

body:has(main.lp-mct) .faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body:has(main.lp-mct) .faq-q {
  border: 0;
  width: 100%;
  background: var(--ivory);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

body:has(main.lp-mct) .faq-a img {
  display: block;
  margin: 0 auto;
}

body:has(main.lp-mct) .faq-q span {
  display: grid;
  grid-template-columns: 1em 1fr;
  column-gap: 12px;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

body:has(main.lp-mct) .faq-q b,
body:has(main.lp-mct) .faq-q i {
  color: var(--main);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  margin-right: 12px;
}

body:has(main.lp-mct) .faq-q b {
  width: 1em;
  flex: 0 0 1em;
  margin-right: 0;
}

body:has(main.lp-mct) .faq-q i {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

body:has(main.lp-mct) .faq-q i::before {
  content: "＋";
}

body:has(main.lp-mct) .faq-a {
  max-height: 0;
  /* padding: 0; */
  /* opacity: 0; */
  overflow: hidden;
  /* transition: max-height 0.45s ease, padding 0.35s ease, opacity 0.25s ease; */
  transition: 0.3s ease-in-out;
}

body:has(main.lp-mct) .faq-toggle:checked + .faq-q i::before {
  content: "ー";
}

body:has(main.lp-mct) .faq-toggle:checked ~ .faq-a {
  max-height: 1000px;
  padding: 24px 0;
  /* opacity: 1; */
}

body:has(main.lp-mct) .faq-a p {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .faq_new {
    padding: 56px 0;
  }

  body:has(main.lp-mct) .faq-q {
    padding: 8px;
  }
  
  body:has(main.lp-mct) .faq-toggle:checked ~ .faq-a {
    padding: 16px 0 8px;
  }

  body:has(main.lp-mct) .faq-q span {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    column-gap: 8px;
  }

  body:has(main.lp-mct) .faq-q i {
    font-size: 18px;
  }

  body:has(main.lp-mct) .faq-a p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* =========================================
   09. Closing
========================================= */
body:has(main.lp-mct) .closing {
  padding: 160px 0;
  min-height: 470px;
  background-image: url("../images/ext/chusashibousan/new2026/main_bg2_4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body:has(main.lp-mct) .closing p {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

body:has(main.lp-mct) .closing-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

body:has(main.lp-mct) .closing .btn_new {
  min-height: 106px;
  padding: 24px 50px;
  font-size: 24px;
}

@media (max-width: 767px) {
  body:has(main.lp-mct) .closing {
    background-image: url("../images/ext/chusashibousan/new2026/main_bg3_sp_1.png");
    padding: 56px 0 64px;
    height: auto;
  }

  body:has(main.lp-mct) .closing p {
    font-size: 16px;
    line-height: 1.5;
  }

  body:has(main.lp-mct) .closing-btns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body:has(main.lp-mct) .closing .btn_new {
    min-height: 86px;
    font-size: 16px;
    padding: 16px 32px;
    gap: 8px;
  }
}

/* =========================================
   10. Footer
========================================= */
body:has(main.lp-mct) .site-header,
body:has(main.lp-mct) .footer {
  width: 100%;
  height: auto;
}

body:has(main.lp-mct) .footer img {
  display: block;
  width: 100%;
  height: auto;
}
body:has(main.lp-mct) .footer {
  height: auto;
}
