/* =========================================
   Tokens
========================================= */
:root{
  --c-bg: #fff;
  --c-text: #333;
  --c-sub: #6b6b6b;

  --pink: #ff698d;
  --pink-dark: #e45c83;
  --pink-pale: #ffe3ea;

  --salmon: #f36c8c;
  --salmon-dark: #e26488;

  --orange: #f5a258;
  --orange-dark: #df8e27;

  --gray-100: #f6f7f9;
  --gray-200: #e9ecf1;
  --shadow: 0 8px 20px rgba(0,0,0,.08);

  --radius: 16px;
  --radius-pill: 999px;
}

/* =========================================
   Font Face
========================================= */

@font-face {
  font-family: "NotoSansCJKjp";
  src: url("../fonts/NotoSansCJKjp-VF.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


/* =========================================
   Base
========================================= */
html,body{
  background:var(--c-bg);
  color:var(--c-text);
}
body{
  font-family: "NotoSansCJKjp", "Noto Sans JP", system-ui, sans-serif;
  line-height:1.7;
}
.container{
  width:min(1280px, 95vw);
  margin-inline:auto;
}

.sp-only {
  display: none!important;
}
@media (max-width:768px){
  .pc-only {
    display: none!important;
  }
  .sp-only {
    display: block!important;
  }
}

.txt__pink {
  color: #f36c8d;
}

/* =========================================
   Header
========================================= */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: transparent;
}
.site-header__inner{
  width: 95%;
  height: 115px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height: 76px;
  gap:20px;
}
@media (max-width:720px){
  .site-header__inner{
    min-height:68px;
  }
}
.site-header__brand img{
  display:block;
  height:auto;
}
.site-header__actions{
  display:flex;
  align-items:center;
  gap:16px;
}
@media (max-width:520px){
  .site-header__actions{
    gap:10px;
  }
}

/* 電話バッジ */
.phone-badge{
  display: block;
  width: 100px;
  min-height: 83px;
  padding: 3px;
  border-radius: 13px;
  background: var(--pink);
  text-align: center;
  line-height:1;
  border:1px solid var(--gray-200);
  box-shadow: 0 6px 0 #e45c83, 0 8px 16px rgba(0,0,0,.15);
  transition: transform .1s ease, box-shadow .1s ease;
  position: relative;
}
@media (max-width:520px){
  .phone-badge{
    display:none;
  }
}
.btn-phone:hover {
  background: #e45c83;
  transform: translateY(2px);
  box-shadow: 0 3px 0 #c9446b, 0 6px 12px rgba(0,0,0,.15);
}
.phone-badge::after {
    content: "";
    width: 31px;
    height: 31px;
    background-image: url(../img/ico-tell-white.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.phone-badge__text{
  font-size:12px;
  white-space:nowrap;
  color: #fff;
}

/* 右上CTA */
.cta-primary{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0px;
  padding: 17px 52px;
  min-height:48px;
  border-radius:50px;
  background:var(--pink);
  color:#fff7a5;
  line-height: 1.3;
  text-decoration:none;
  box-shadow: 0 6px 0 #e45c83, 0 8px 16px rgba(0,0,0,.15);
  transition: transform .1s ease, box-shadow .1s ease;
  position: relative;
}
@media (max-width:720px){
  .cta-primary{
    padding:12px 14px;
  }
}
.cta-primary::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../img/ico-arrow-cta.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 18%;
    right: 20px;
    transform: translateY(-50%);
}
.cta-primary:hover {
  background: #e45c83;
  transform: translateY(2px);
  box-shadow: 0 3px 0 #c9446b, 0 6px 12px rgba(0,0,0,.15);
}
.cta-primary__sub{
  font-size: 15px;
  font-weight: 700;
  color: #fff7a5;
}
.cta-primary__main{
  font-size: 22px;
  font-weight: 700;
  color: #fff7a5;
}
@media (max-width:720px){
  .cta-primary__main{
    font-size:14px;
  }
}
.cta-primary__arrow{
  font-size:18px;
  line-height:1;
}

/* =========================================
   Hero / Inquiry Card
========================================= */
.hero{
  --hero-ratio: 1440/1321;
  --hero-ratio-sp: 750/1364;
  --card-top-pc: 62%;
  --card-top-sp: 88%;

  margin-top: -116px;
  padding:clamp(48px,8vw,96px) 0;
  background-image: url(../img/mv-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-ratio);
  padding: 0;
}
@media (max-width: 768px){
  .hero {
    margin-top: 0;
    margin-bottom: 315px;
    background-image: url(../img/mv-img-sp.png);
    aspect-ratio: var(--hero-ratio-sp);
  }
}

@supports not (aspect-ratio: 1) {
  .hero {
    height: auto;
  }
  .hero::before {
    content: "";
    display: block;
    /* 16/9 → 56.25% （計算式で汎用化）*/
    padding-top: calc(100% / (var(--hero-ratio)));
  }
  /* ヒーロー内の実体を擬似要素の上に全面配置 */
  .hero > .container {
    position: absolute;
    inset: 0;
  }
}
.hero > .container {
  position: relative;
  height: 100%;
  padding-top: 0;
}
.hero-logo-sp {
    display: block;
    width: 35%;
    height: auto;
    margin-inline: auto;
    padding-top: 15px;
}
#free-consult-anchor {
    position: relative;
    top: 70vh;
    height: 0;
}
.inquiry-card{
  position: absolute;
  left: 50%;
  top: var(--card-top-pc);
  transform: translate(-50%, 0);
  width: min(760px, 92vw);
  margin: 0;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
  border:2px solid var(--salmon);
  overflow:visible;
}
@media (max-width: 1024px){
  .inquiry-card{
    top: calc(var(--card-top-pc) + 2%);
    width: min(720px, 94vw);
  }
}
@media (max-width: 768px){
  .inquiry-card{
    top: var(--card-top-sp);
    width: min(640px, 94vw);
    border-radius: 9px;
  }
}
.inquiry-card__head{
  width: 100%;
  height: 80px;
  padding: 16px 20px 8px;
  display:flex;
  align-items:center;
  justify-content: center;
  gap:12px;
  color:#fff;
  background:var(--salmon);
  border-radius: 17px 17px 0 0;
}
@media (max-width: 768px){
  .inquiry-card__head {
    height: 60px;
    border-radius: 6px 6px 0 0;
  }
}
.inquiry-card__ttl {
  width: 70%;
  max-width: 358px;
  margin-top: -50px;
  z-index: 100;
}
@media (max-width: 768px){
  .inquiry-card__ttl {
    width: 80%;
    margin-top: -35px;
  }
}
.inquiry-card__bulb{
  font-size:22px;
}
.inquiry-card__label{
  font-size:16px;
  letter-spacing:.05em;
}
.inquiry-card__label .em{
  font-weight:700;
  font-size:20px;
}
@media (max-width:720px){
  .inquiry-card__label .em{
    font-size:18px;
  }
}
.inquiry-card__body{
  padding: 28px 28px 35px;
  background:#fff;
  border-radius: 0 0 17px 17px;
  text-align: center;
}
@media (max-width:520px){
  .inquiry-card__body{
    padding:22px 18px 26px;
    border-radius: 0 0 9px 9px;
  }
}
.inquiry-card__lead {
  display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #686868;
    position: relative;
}
@media (max-width: 768px){
  .inquiry-card__lead {
    font-size: 5vw;
  }
}
.inquiry-card__lead::before,.inquiry-card__lead::after {
    content: "";
    width: 22px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
}
@media (max-width: 768px){
  .inquiry-card__lead::before,.inquiry-card__lead::after {
    width: 20px;
    height: 28px;
  }
}
.inquiry-card__lead::before {
    background-image: url(../img/consul-back-slash.png);
    left: -30px;
    bottom: 0;
}
@media (max-width: 768px){
  .inquiry-card__lead::before {
    left: -22px;
  }
}
.inquiry-card__lead::after {
    background-image: url(../img/consul-slash.png);
    right: -30px;
    bottom: 0;
}
@media (max-width: 768px){
  .inquiry-card__lead::after {
    right: -22px;
  }
}
.steps{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:16px 0 22px;
  position: relative;
}
.steps::before {
  content: "";
  width: 250px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 230px;
  transform: translateY(-50%);
  border-bottom: 1px solid #f36c8d;
}
@media (max-width:768px){
  .steps{
    gap:6vw;
    margin: 26px 0 22px;
  }
  .steps::before {
    content: "";
    width: 70vw;
    height: 2px;
    top: 50%;
    left: 10vw;
    transform: translateY(-50%);
  }
}
.steps__item{
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:70px;
  padding:3px 12px;
  background: #f0f0f0;
  font-size:13px;
  color: #f36c8d;
  font-weight:700;
  z-index: 99;
}
@media (max-width:768px){
  .steps__item{
    min-width:60px;
    padding: 3px 4vw;
    font-size:12px;
  }
}
.steps__item.is-current{
  background: var(--salmon);
  color: #fff;
  font-weight:700;
}
.inquiry-card__actions{
  display:flex;
  gap:22px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:8px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 22px;
  font-weight:700;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  box-shadow:0 6px 0 rgba(0,0,0,.08), 0 10px 22px rgba(0,0,0,.08);
}
.btn--pill{
  border-radius:var(--radius-pill);
  min-width:240px;
}
@media (max-width:720px){
  .btn--pill{
    min-width:200px;
  }
}
.btn--orange{
  width: 320px;
  padding: 18px 0;
  font-size: 20px;
  background:var(--orange);
  box-shadow: 0 6px 0 #e3842f;
  position: relative;
}
@media (max-width: 768px){
  .btn--orange {
    width: 100%;
  }
}
.btn--orange:hover{
  background:var(--orange-dark);
}
.btn--pink{
  width: 320px;
  padding: 18px 0;
  font-size: 20px;
  background: #f27e7e;
  box-shadow: 0 6px 0 #de5e5e;
  position: relative;
}
@media (max-width: 768px){
  .btn--pink {
    width: 100%;
  }
}
.btn--pink:hover{
  background:var(--pink-dark);
}
.btn--orange::after, .btn--pink::after {
    content: "";
    width: 22px;
    height: 22px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    background-image: url(../img/ico-arrow-cta.png);
    right: 20px;
    bottom: 16%;
    transform: translateY(-50%);
}


/* =========================================
   Worries
========================================= */
.section-worries .container{
  width: 100%;
  padding: 80px 0 60px;
  background-image:url(../img/worries-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px){
  .section-worries .container {
    padding: 40px 2.5% 50px;
  }
}
.worries-card{
  width:min(850px,100%);
  background:#fff;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  padding:32px 58px 62px;
  margin-inline:auto;
  text-align:center;
}
@media (max-width: 768px){
  .worries-card {
    padding: 20px 5% 50px;
  }
}
.worries-card__title{
  margin-bottom:50px;
}
.worries-card__title-img {
  width: min(450px, 80%);
}
@media (max-width: 768px){
  .worries-card__title-img {
    width: 100%;
  }
}
.worries-list{
  display:grid;
  gap:12px;
  text-align:left;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px){
  .worries-list {
    font-size: 4.5vw;
  }
}
.worries-list .icon{
  color:var(--salmon-dark);
  margin-right:8px;
}
.worries-list .em{
  font-weight:700;
  color:var(--salmon-dark);
}
.worries-item {
  padding-left: 55px;
  position: relative;
}
@media (max-width: 768px){
  .worries-item {
    padding-left: 9vw;
  }
}
.worries-item::before {
  content: "";
  width: 39px;
  height: 32px;
  background-image: url(../img/ico-check-pink.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px){
  .worries-item::before {
    width: 6vw;
    height: 5vw;
    transform: initial;
    top: 7px;
  }
}
/* =========================================
   Solution
========================================= */
.section-solution {
    margin-bottom: 100px;
}
.solution{
  margin-top:80px;
  text-align:center;
}
@media (max-width: 768px){
  .solution {
    margin-top: 50px;
  }
}
.section-solution .container {
  width: 100%;
}
.solution__title{
  margin-bottom:32px;
}
.solution__title-img {
  width: min(750px, 80%);
}
@media (max-width: 768px){
  .solution__title-img {
    width: 98%;
    margin-inline: auto;
  }
}
.solution__body{
  width: 100%;
  margin-inline: auto;
  display: flex;
  gap:28px;
  align-items: center;
}
@media (max-width: 768px){
  .solution__body {
    flex-direction: column-reverse;
  }
}
.solution__body-left {
  margin-left: max(3%, 8%);
  flex: 1 1 50%;
  max-width: 600px;
  text-align: left;
}
@media (max-width: 768px){
  .solution__body-left {
    width: 95%;
    margin-left: 0;
  }
}
.solution__sub-title-img {
  width: 100%;
  margin-bottom: 30px;
}
.solution__body-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}
.solution__body-right .solution__img {
  width: 100%;
  max-width: 720px;
  height: auto;
}
@media (max-width: 768px){
  .solution__body-right .solution__img {
    width: 85%;
  }
}
.solution__text{
  max-width:640px;
  font-size: 15px;
  color:#151515;
}
@media (max-width: 768px){
  .solution__text {
    font-size: 4vw;
  }
}

/* =========================================
   Strengths
========================================= */
.section-strengths{
  padding:clamp(72px,10vw,120px) 0;
  background-image: url(../img/strengths-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px){
  .section-strengths {
    background-image: url(../img/strengths-bg-sp.webp);
  }
  .section-strengths .container {
    width: min(1120px, 90vw);
  }
}
.strengths-head{
  text-align:center;
  margin-bottom:80px;
}
.strengths-head__title {
    width: min(450px, 55%);
    margin-inline: auto;
}
@media (max-width: 768px){
  .strengths-head__title {
    width: 100%;
  }
}
.strengths__title-img {
  width: 100%;
}
@media (max-width: 768px){
  .strengths__title-img {
    width: 100%;
    margin-inline: auto;
  }
}
.strength-item{
  margin-bottom: 86px;
  padding:22px;
  display:grid;
  gap:18px;
  background:#fff;
  border-radius:18px;
  box-shadow: 12px 12px 0 #ff99b9;
}
@media (min-width:900px){
  .strength-item{
    grid-template-columns: 1fr 360px;
    align-items: center;
    padding: 65px 2% 65px 5%;
    gap: 30px;
  }
}
@media (max-width: 768px){
  .strength-item {
    display: flex;
    flex-direction: column-reverse;
  }
}
.strength-item__title{
  padding-left: 78px;
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 768px){
  .strength-item__title{
    padding-left: 0;
    margin-bottom: 20px;
  }
}
.strength-item__title::before {
  content: "";
  width: 68px;
  height: 68px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px){
  .strength-item__title::before {
    content: none;
  }
}
.strength-item__point1 .strength-item__title::before {
  background-image: url(../img/strengths-point01.png);
}
.strength-item__point2 .strength-item__title::before {
  background-image: url(../img/strengths-point02.png);
}
.strength-item__point3 .strength-item__title::before {
  background-image: url(../img/strengths-point03.png);
}
@media (max-width: 768px){
  .strength-item__media {
    margin-bottom: 20px;
  }
  .strength-item__media img {
    width: 100%;
  }
}

/* =========================================
   cta
========================================= */
.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(72px, 10vw, 120px) 0;
    background-image: url(../img/cta-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    aspect-ratio: 1440/694;
}
@media (max-width: 768px){
  .section-cta {
    width: 100%;
    padding: 0;
    background-image: url(../img/cta-bg-sp.webp);
    aspect-ratio: 375/342;
  }
}
@media (max-width: 768px){
  .strengths-cta {
    width: 90%;
    margin-top: 0;
  }
}
.strengths-cta__lead {
    width: min(750px, 75%);
    margin: 0 auto 40px;
}
@media (max-width: 768px){
  .strengths-cta__lead {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.section-cta .btn--pink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(750px, 75%);
    height: min(150px, 13vw);
    margin-inline: auto;
    text-align: center;
    font-size: clamp(30px, 4.5vw, 42px);
    line-height: min(100px, 10vw);
    box-shadow: 0 15px 0 #de5e5e;
}
@media (max-width: 768px){
  .section-cta .btn--pink {
    width: 100%;
    height: 75px;
    font-size: 5vw;
    box-shadow: 0 7px 0 #de5e5e;
  }
}
.section-cta .btn--pink::after {
    width: min(40px, 7vw);
    height: min(40px, 7vw);
    right: 34px;
    bottom: 21%;
}
@media (max-width: 768px){
  .section-cta .btn--pink::after {
    right: 5vw;
    bottom: 7%;
  }
}


/* =========================================
   Success
========================================= */
.section-success{
  margin-top: -15px;
  padding: 100px 0 180px;
  background: #fdebf0;
}
.section-success__title {
    width: min(600px, 55%);
    margin-inline: auto;
    margin-bottom: 60px;
}
@media (max-width: 768px){
  .section-success__title {
    width: 100%;
    margin-bottom: 50px;
  }
}
.success-list{
  display: grid;
  gap: 2vw;
}
@media (min-width:900px){
  .success-list{
    grid-template-columns: repeat(3,1fr);
  }
}
.success-card{
  width: 100%;
  background: #fff;
  border: 2px solid var(--pink);
  border-radius: 12px;
  padding: 48px 2vw;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  text-align: center;
}
@media (max-width: 768px){
  .success-card {
    padding: 30px 5% 40px;
  }
}
.success-card__name-img {
    width: 100%;
}
  .success-card__job-img {
    width: 100%;
  }
.success-card__job {
  margin: 30px 0;
}
.success-card__text {
  font-size: 12.5px;
  text-align: left;
  line-height: 2;
}
@media (max-width: 768px){
  .success-card__text {
    font-size: 3.7vw;
  }
}

/* =========================================
   Flow
========================================= */
.section-flow{
  padding:clamp(72px,10vw,120px) 0;
}
.section-flow__title {
  width: min(400px, 38%);
  margin-inline: auto;
  margin-bottom: 90px;
}
@media (max-width: 768px){
  .section-flow__title {
    width: 80%;
    margin-bottom: 50px;
    text-align: center;
  }
  .flow__title-img {
    width: 100%;
  }
}
.flow-list{
  display:grid;
  gap:40px;
}
@media (min-width:900px){
  .flow-list{
    grid-template-columns:repeat(5,1fr);
    text-align:center;
    gap:24px;
  }
}
@media (max-width: 768px){
  .flow-list {
    gap: 90px;
  }
}
.flow-step {
  width: 100%;
  position: relative;
}
.flow-step::after {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url(../img/ico-arrow-flow.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 100;
  top: 70px;
  right: 0;
  transform: translate(80%, -50%);
}
@media (max-width: 768px){
  .flow-step::after {
    width: 12vw;
    height: 12vw;
    top: initial;
    bottom: -130px;
    right: 50%;
    transform: translate(50%, -50%) rotate(90deg);
  }
}
.flow-step:last-child::after {
  content: none;
}
.flow-step__media {
    margin-bottom: 25px;
}
@media (max-width: 768px){
  .flow-step__media {
    margin-bottom: 15px;
  }
  .flow-step__media > img {
    width: 100%;
  }
}
.flow-step__media img {
  width: 100%;
}
.flow-step__title{
  height: 55px;
  font-weight:700;
  color:var(--salmon-dark);
  margin-bottom:8px;
}
@media (max-width: 768px){
  .flow-step__title {
    height: auto;
    margin-bottom: 20px;
  }
  .flow01-img, .flow02-img, .flow03-img, .flow04-img, .flow05-img {
    display: block;
    margin-inline: auto;
  }
  .flow01-img {width: 55%;}
  .flow02-img {width: 60%;}
  .flow03-img {width: 45%;}
  .flow04-img {width: 55%;}
  .flow05-img {width: 55%;}
}
.flow-step__text {
    font-size: 12px;
    text-align: left;
    line-height: 2;
}
@media (max-width: 768px){
  .flow-step__text {
    font-size: 3.7vw;
  }
}

/* =========================================
   FAQ
========================================= */
.section-faq{
  padding:clamp(72px,10vw,120px) 0;
  background-image: url(../img/bg-wave-gray.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px){
  .section-faq{
    background-image: url(../img/bg-wave-gray-sp.png);
  }
}
.section-faq__title {
  width: min(400px, 38%);
  margin: 90px auto;
}
@media (max-width: 768px){
  .section-faq__title {
    width: 65%;
    margin: 50px auto 30px;
  }
  .faq__title-img {
    width: 100%;
  }
}
.faq-list{
  display:grid;
  gap:10px;
  max-width:920px;
  margin-inline:auto;
}
.faq-item {
  margin-bottom: 30px;
}
.faq-item__summary{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 25px 18px 25px 60px;
  cursor:pointer;
  font-size: 20px;
  font-weight: 500;
  color: #f36c8d;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}
@media (max-width: 768px){
  .faq-item__summary {
    padding: 15px 2vw 15px 13vw;
    font-size: 4vw;
  }
}
.faq-item__summary::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/ico-faq-q.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px){
  .faq-item__summary::before {
    width: 10vw;
    height: 10vw;
  }
}
.faq-item__q{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  background:var(--pink);
  color:#fff;
  border-radius:50%;
}

.faq-strong {
  font-size: 20px;
  font-weight: 400;
  color: #151515;
}
@media (max-width: 768px){
  .faq-strong {
    display: inline-block;
    font-size: 4vw;
    margin: 10px 0;
  }
}
/* コンテンツエリアのアニメーション設定 */
.faq-item__content {
  overflow: hidden;
  /* 初期状態（閉じている状態） */
  max-height: 0;
  opacity: 0;
  /* アニメーションの効果を定義 */
  transition: max-height 0.4s ease-out, opacity 0.3s ease-in;
}

.faq-item__answer {
  /* paddingは親要素(.faq-item__content)ではなく、こちらで制御 */
  padding: 15px 0 0 0; 
  font-size: 14px;
  line-height: 2;
}

/* トグルアイコンのアニメーション設定 */
.faq-item__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
@media (max-width: 768px){
  .faq-item__toggle {
    width: 6vw;
    height: 6vw;
  }
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: #f36c8d;
  transition: transform 0.3s ease-in-out;
}
.faq-item__toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item__toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
/* 開いた状態のアイコン：縦棒を90度回転させて「-」にする */
.faq-item[open] .faq-item__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}


/* =========================================
   Bottom CTA
========================================= */
.section-bottom-cta{
  background-image: url(../img/cta-bottom-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding:clamp(64px,9vw,110px) 0;
  text-align:center;
}
@media (max-width: 768px){
  .section-bottom-cta {
    background-image: url(../img/cta-bottom-bg-sp.png);
  }
}
.bottom-cta__button{
  font-size:18px;
  padding:18px 34px;
}


/* =========================================
   Thanks page
========================================= */
.section-thanks__message {
    margin-top: 200px;
    padding-bottom: 120px;
}
@media (max-width: 768px){
  .section-thanks__message {
    margin-top: 120px;
    padding-bottom: 40px;
  }
}
.thanks-message__block {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}
.thanks-message__img {
    width: min(750px, 90%);
    margin-bottom: 75px;
}
@media (max-width: 768px){
  .thanks-message__img {
    width: 100%;
  }
}
.thanks-message__txt {
    font-family: 'NotoSansCJKjp';
    font-size: 18px;
    margin-bottom: 10px;
}
@media (max-width: 768px){
  .thanks-message__txt {
    font-size: 3.8vw;
    margin-bottom: 30px;
  }
}
.thanks-message__mail {
    font-size: 20px;
    font-family: 'NotoSansCJKjp';
}
@media (max-width: 768px){
  .thanks-message__mail {
    font-size: 4vw;
  }
}
.section-thanks__flow{
  padding:clamp(72px,10vw,120px) 0 20px;
  background-image: url(../img/bg-wave-gray.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px){
  .section-thanks__flow{
    background-image: url(../img/bg-wave-gray-sp.png);
  }
}
.thanks-flow__ttl {
    margin-bottom: 100px;
    text-align: center;
}
.flow__title-img {
    width: min(400px, 65%);
    margin-inline: auto;
}
.flow-block {
    width: min(900px, 90%);
    margin-inline: auto;
}
.flow-step__box {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-bottom: 120px;
    position: relative;
}
@media (max-width: 768px){
  .flow-step__box {
      display: block;
      margin-bottom: 35px;
  }
}
.flow-step__box::before {
    content: "";
    width: 1px;
    height: 80px;
    position: absolute;
    top: -100px;
    left: 35px;
    background-color: #f36c8d;
}
@media (max-width: 768px){
  .flow-step__box::before {
    content: none;
  }
}
.flow-step__box:first-child::before {
    content: none;
}
.flow-step__head {
    width: 45%;
}
@media (max-width: 768px){
  .flow-step__head {
      width: 100%;
      margin-bottom: 15px;
  }
}
.flow__subttl-img {
    width: 100%;
}
.flow-step__txt {
    width: 50%;
}
@media (max-width: 768px){
  .flow-step__txt {
      width: 100%;
  }
}
/* =========================================
   Footer
========================================= */
.site-footer{
  color:#fff;
}
.footer-visual img{
  width:100%;
  display:block;
}
.footer-main{
  background:var(--pink);
  padding: 50px 0 100px;
}
.footer-main__inner{
  width: min(1120px, 85vw);
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px){
  .footer-main__inner {
    text-align: center;
  }
}
.footer-main__logo {
    width: 200px;
    margin-bottom: 30px;
}
.footer-content__inner {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  gap:28px;
  padding-bottom: 60px;
}
@media (max-width: 768px){
  .footer-content__inner {
    flex-direction: column;
  }
}
.footer-main__address {
    font-size: 12px;
}
@media (max-width: 768px){
  .footer-main__nav {
    width: 80%;
    margin-inline: auto;
    text-align: left;
  }
}
.footer-main__nav ul{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-main__copy{
  width: min(1120px, 85vw);
  margin-top:30px;
  margin-inline: auto;
  text-align: end;
  font-size:12px;
  opacity:.8;
}
@media (max-width: 768px){
  .footer-main__copy {
    text-align: center;
    margin-top: 50px;
  }
}

/* =========================================
   Contact Form7
========================================= */
/* 4STEP補助 */
.cf7step[hidden] {
  display: none !important;
}
.cf7step.is-active {
  display: block;
  margin-top: 40px;
}
.step-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.step-back {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 16px;
  color: #464646;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.step-back::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/ico-arrow-back.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 60%;
  left: -30px;
  transform: translateY(-50%);
}
.step-back:hover { opacity: .8; }
.cf7form-item {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  margin-bottom: 20px;
}
@media (max-width: 768px){
  .cf7form-item {
    width: 100%;
  }
}
.cf7form-item>label {
  display: block;
  width: 35%;
  font-weight: 500;
  text-align: right;
}
.cf7form-item .wpcf7-form-control-wrap {
  display: block;
  width: 62%;
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
  border: 1px solid #C6C6C6;
}
input::placeholder,
textarea::placeholder {
  color: #D4D4D4;
  opacity: 1;
}
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap input{
  width: 100%;
}
.step-nav button {
  margin-block: 20px 30px;
}
.form-privacy__link {
  display: block;
  width: fit-content;
  margin: 25px auto 35px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
.form-privacy__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #686868;
  bottom: -5px;
  left: 0;
}

/* 非活性状態（共通） */
.btn.is-disabled,
.btn:disabled,
.wpcf7-submit.is-disabled,
.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

