@charset "UTF-8";

:root{
  --pink:#ef4f78;
  --pink-dark:#df3565;
  --ink:#4a2b2f;
  --lp-width:426px;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  background:#fff7fa;
}

body{
  margin:0;
  overflow-x:hidden;
  color:var(--ink);
  font-family:"Noto Sans JP",sans-serif;
  background:#fff7fa;
}

img{
  display:block;
  vertical-align:bottom;
}

.lp{
  width:100%;
  max-width:var(--lp-width);
  margin:0 auto;
  overflow:hidden;
  background:#fff4f8;
  box-shadow:0 0 36px rgba(221,70,105,.10);
}

.full-image{
  width:100%;
  height:auto;
  margin:0;
  padding:0;
}

/* 共通CTA */
.cta-stage{
  width:100%;
  height:99px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  background-repeat:no-repeat;
  background-position:top center;
  background-size:100% 100%;
}

.cta-stage--kv{
  background-image:url("../img/kv_btn_bg.jpg");
}

.cta-stage--assurance{
  background-image:url("../img/sc_02_btn_bg.jpg");
}

.cta-stage--dual{
  background-image:url("../img/sc_03_btn_bg.jpg");
}

.cta{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:76px;
  padding:10px 14px 10px 20px;
  overflow:hidden;
  border:3px solid rgba(255,255,255,.94);
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  background:
    radial-gradient(circle at 20% 28%,rgba(255,255,255,.25),transparent 17%),
    linear-gradient(135deg,#ff88a5 0%,#ef4f78 48%,#dd3565 100%);
  box-shadow:
    0 16px 32px rgba(225,53,99,.27),
    inset 0 1px 0 rgba(255,255,255,.56);
}

.cta::before{
  content:"";
  position:absolute;
  top:-70%;
  left:-42%;
  width:36%;
  height:240%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);
  transform:rotate(20deg);
  animation:shine 4.6s ease-in-out infinite;
}

.cta__text{
  position:relative;
  z-index:1;
  flex:1;
  text-align:center;
  line-height:1.2;
}

.cta__text small{
  display:block;
  margin-bottom:4px;
  white-space:nowrap;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
}

.cta__text strong{
  display:block;
  white-space:nowrap;
  font-size:22px;
  font-weight:800;
}

.cta__arrow{
  position:relative;
  z-index:1;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:50%;
  color:var(--pink-dark);
  background:#fff;
  font-size:25px;
  font-weight:800;
}

/* お悩み */
.worries-stage{
  width:100%;
  height:auto;
  margin:0;
  padding:0 60px 40px;
  background:url("../img/sc_01_bg.jpg") top center/100% 100% no-repeat;
}

.worry-list{
  display:grid;
  gap:16px;
}

.worry-card{
  overflow:hidden;
  border:1px solid rgba(239,79,120,.14);
  border-radius:22px;
  background:rgba(255,255,255,.50);
  box-shadow:0 13px 28px rgba(209,75,107,.13);
}

.worry-card>img{
  width:100%;
  height:auto;
}

.worry-card__body{
  padding:16px 14px 19px;
  text-align:center;
}

.worry-card h2{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.62;
  font-weight:700;
}

.worry-card p{
  margin:0;
  font-size:12px;
  line-height:1.85;
  font-weight:500;
}

.worry-card em{
  color:var(--pink);
  font-style:normal;
  font-weight:800;
}

/* 安心見出し */
.assurance-head{
  width:100%;
  height:202px;
  margin:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 24px 28px;
  background:url("../img/sc_02.jpg") top center/100% 100% no-repeat;
}

.assurance-lead{
  margin:0;
  text-align:center;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.assurance-lead span,
.assurance-item h2 span,
.assurance-item p span{
  color:var(--pink);
  font-weight:800;
}

/* 安心ポイント */
.assurance-stage{
  width:100%;
  height:363px;
  margin:0;
  padding:0 24px;
  background:url("../img/sc_02_bg.jpg") top center/100% 100% no-repeat;
}

.assurance-list{
  display:grid;
  gap:0;
}

.assurance-item{
  display:grid;
  grid-template-columns:42% 58%;
  min-height:181px;
  align-items:center;
}

.assurance-item__copy{
  padding:2px 0;
}

.assurance-item h2{
  margin:0 0 9px;
  padding-bottom:8px;
  border-bottom:2px dotted rgba(239,79,120,.34);
  font-size:18px;
  line-height:1.4;
  font-weight:700;
}

.assurance-item p{
  margin:0;
  font-size:13px;
  line-height:1.4;
  font-weight:600;
}

@keyframes shine{
  0%,65%{ left:-42%; }
  100%{ left:126%; }
}

@media(max-width:380px){
  .cta-stage{
    height:99px;
    padding-inline:12px;
  }

  .cta{
    min-height:70px;
    padding-left:16px;
  }

  .cta__text small{ font-size:9px; }
  .cta__text strong{ font-size:18px; }

  .cta__arrow{
    width:40px;
    height:40px;
    flex-basis:40px;
  }

  .worries-stage{
    height:auto;
    padding:0 44px 34px;
  }

  .worry-list{ gap:13px; }
  .worry-card__body{ padding:14px 10px 16px; }
  .worry-card h2{ font-size:14px; }
  .worry-card p{ font-size:10.5px; }

  .assurance-head{
    height:200px;
    padding:0 18px 23px;
  }

  .assurance-lead{ font-size:14px; }

  .assurance-stage{
    height:340px;
    padding:0 20px;
  }

  .assurance-item{ min-height:170px; }
  .assurance-item h2{ font-size:16px; }
  .assurance-item p{ font-size:13px; }
}

@media(min-width:700px){
  body{ padding:24px 0; }
  .lp{ border-radius:26px; }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation:none!important;
    scroll-behavior:auto!important;
  }
}



/* =========================
   賢い「併用」スタイル
========================= */

.dual-head{
  width:100%;
  height:203px;
  margin:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 18px 18px;
  background:url("../img/sc_03.jpg") top center/100% 100% no-repeat;
}

.dual-intro{
  margin:0;
  text-align:center;
  color:var(--ink);
  font-size:14px;
  line-height:1.7;
  font-weight:600;
  letter-spacing:.015em;
}

.dual-intro__main{ font-weight:800; }

.dual-intro__accent{
  color:var(--pink);
  font-weight:800;
}

/* 下に桜のある背景を、内容の高さに合わせて自然に表示 */
.dual-stage{
  width:100%;
  margin:0;
  padding:14px 14px 20px;
  background-color:#fff8fa;
  background-image:url("../img/sc_03_bg.jpg");
  background-repeat:no-repeat;
  background-position:bottom center;
  background-size:100% auto;
}

.dual-list{
  display:grid;
  gap:14px;
}

.dual-card{
  width:100%;
  overflow:hidden;
  border:1px solid rgba(239,79,120,.16);
  border-radius:24px;
  background:rgba(255,255,255,.97);
  box-shadow:0 10px 24px rgba(209,75,107,.10);
  padding: 0 0 15px 0;
}

.dual-card__copy{
  padding:18px 12px 18px;
}

.dual-item__head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:100%;
  min-width:0;
}

.dual-item__number{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ff7ca5 0%,#ef4f78 60%,#df3565 100%);
  box-shadow:0 5px 12px rgba(223,53,101,.14);
  font-size:20px;
  line-height:1;
  font-weight:500;
}

.dual-card h2{
  min-width:0;
  margin:0;
  white-space:nowrap;
  color:var(--ink);
  font-size:15px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:-.055em;
}

.dual-card h2 span{
  color:var(--pink);
  font-size:20px;
  font-weight:800;
}

.dual-item__lead{
  margin:10px 0 0;
  text-align:center;
  color:var(--ink);
  font-size:13px;
  line-height:1.5;
  font-weight:600;
}

.dual-item__lead span{
  color:var(--pink);
  font-weight:800;
}

.dual-card__image{
  display:block;
  width:100%;
  height:auto;
  margin:0;
}

.cta-stage--dual{
  display:flex;
  align-items:center;
  justify-content:center;
}

@media(max-width:380px){
  .dual-head{
    height:181px;
    padding:0 14px 14px;
  }

  .dual-intro{
    font-size:13px;
    line-height:1.7;
  }

  .dual-stage{
    padding:12px 11px 10px;
  }

  .dual-list{ gap:11px; }

  .dual-card{ border-radius:20px; }

  .dual-card__copy{
    padding:15px 8px 15px;
  }

  .dual-item__head{ gap:5px; }

  .dual-item__number{
    width:38px;
    height:38px;
    flex-basis:38px;
    font-size:17px;
  }

  .dual-card h2{
    font-size:17px;
    letter-spacing:0;
  }

  .dual-card h2 span{
    font-size:18px;
  }

  .dual-item__lead{
    margin-top:8px;
    font-size:13px;
    line-height:1.5;
  }
}



/* 3ステップ後 CTA */
.cta-stage--steps{
  background-image:url("../img/sc_05_btn_bg.jpg");
}


/* =========================
   FAQ
========================= */

.faq{
  width:100%;
  margin:0;
  background:#fff8fa;
}

.faq-head{
  width:100%;
  height:316px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:0 24px 60px;
  background:url("../img/sc_06.jpg") top center/100% 100% no-repeat;
}

.faq-head__lead{
  margin:0;
  text-align:center;
  color:var(--ink);
  font-size:13px;
  line-height:1.4;
  font-weight:600;
}

.faq__body{
  padding:4px 16px 34px;
  background:#fff8fa;
}

.faq-list{
  display:grid;
  gap:12px;
}

.faq-item{
  overflow:hidden;
  border:1px solid rgba(239,79,120,.16);
  border-radius:20px;
  background:rgba(255,255,255,.97);
  box-shadow:0 9px 22px rgba(209,75,107,.10);
}

.faq-item summary{
  min-height:72px;
  display:grid;
  grid-template-columns:42px 1fr 28px;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  cursor:pointer;
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item__q,
.faq-item__a{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ff8dab 0%,#ef4f78 58%,#df3565 100%);
  font-size:18px;
  line-height:1;
  font-weight:800;
  box-shadow:0 4px 10px rgba(223,53,101,.14);
}

.faq-item__question{
  color:var(--ink);
  font-size:14px;
  line-height:1.5;
  font-weight:700;
}

.faq-item__icon{
  position:relative;
  width:26px;
  height:26px;
}

.faq-item__icon::before,
.faq-item__icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:16px;
  height:4px;
  border-radius:999px;
  background:#f36992;
  transform:translate(-50%,-50%);
  transition:transform .25s ease, opacity .25s ease;
}

.faq-item__icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after{
  opacity:0;
  transform:translate(-50%,-50%) rotate(0deg);
}

.faq-item__answer{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:10px;
  padding:0 14px 16px;
  border-top:1px dashed rgba(239,79,120,.25);
}

.faq-item__a{
  width:34px;
  height:34px;
  margin-top:14px;
  color:var(--pink);
  background:#fff1f5;
  font-size:16px;
  box-shadow:none;
}

.faq-item__answer p{
  margin:0;
  padding-top:14px;
  color:var(--ink);
  font-size:12.5px;
  line-height:1.8;
  font-weight:500;
}

/* =========================
   追従CTA
========================= */

.sticky-cta{
  position:fixed;
  z-index:100;
  left:50%;
  bottom:max(6px, env(safe-area-inset-bottom));
  width:min(calc(100% - 10px), 416px);
  transform:translate(-50%, 135%);
  opacity:0;
  visibility:hidden;
  transition:transform .3s ease, opacity .3s ease, visibility .3s ease;
  pointer-events:none;
}

.sticky-cta.is-visible{
  transform:translate(-50%, 0);
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.sticky-cta__button{
  position:relative;
  display:block;
  width:100%;
  color:#fff;
  text-decoration:none;
  filter:drop-shadow(0 10px 18px rgba(214,43,96,.28));
}

.sticky-cta__button img{
  display:block;
  width:100%;
  height:auto;
}

.sticky-cta__button span{
  position:absolute;
  z-index:1;
  top:50%;
  left:50%;
  width:61%;
  transform:translate(-47%,-76%);
  text-align:center;
  white-space:nowrap;
  color:#fff;
  text-shadow:0 2px 6px rgba(193,35,85,.28);
  font-size:17px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:-.035em;
}

@media(max-width:380px){
  .faq-head{
    height:300px;
    padding:0 18px 55px;
  }

  .faq-head__lead{
    font-size:11.5px;
    line-height:1.8;
  }

  .faq__body{
    padding:2px 12px 28px;
  }

  .faq-list{
    gap:10px;
  }

  .faq-item{
    border-radius:18px;
  }

  .faq-item summary{
    min-height:66px;
    grid-template-columns:38px 1fr 26px;
    gap:8px;
    padding:10px 12px;
  }

  .faq-item__q{
    width:34px;
    height:34px;
    font-size:16px;
  }

  .faq-item__question{
    font-size:13px;
  }

  .faq-item__answer{
    grid-template-columns:34px 1fr;
    gap:8px;
    padding:0 12px 14px;
  }

  .faq-item__answer p{
    font-size:11.5px;
    line-height:1.75;
  }

  .sticky-cta{
    width:calc(100% - 8px);
    bottom:max(5px, env(safe-area-inset-bottom));
  }

  .sticky-cta__button span{
    width:60%;
    transform:translate(-46%,-77%);
    font-size:15px;
    letter-spacing:-.04em;
  }
}


/* =========================
   FAQボトム
========================= */

.faq-bottom{
  width:100%;
  height:auto;
}

/* =========================
   最終CTA
========================= */

.final-cta{
  width:100%;
  min-height:160px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:50px 5px 22px;
  background:url("../img/sc_06_btn_bg.jpg") top center/100% 100% no-repeat;
}

.final-cta__button{
  position:relative;
  display:block;
  width:100%;
  color:#fff;
  text-decoration:none;
}

.final-cta__button img{
  display:block;
  width:100%;
  height:auto;
}

.final-cta__button span{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 61%;
    transform: translate(-47%, -77%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 2px 6px rgba(193, 35, 85, .26);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.035em;
}

/* =========================
   フッター
========================= */

.footer{
  position:relative;
  width:100%;
  height:163px;
  margin:0;
  text-align:center;
  background:url("../img/footer.jpg") top center/100% 100% no-repeat;
}

.footer__copyright{
  position:absolute;
  top:88px;
  left:0;
  width:100%;
  margin:0;
  padding:0 16px;
  color:var(--ink);
  font-size:11px;
  line-height:1.5;
  font-weight:600;
}

@media(max-width:380px){
  .final-cta{
    min-height:142px;
    padding:44px 3px 18px;
  }

  .final-cta__button span{
    width: 60%;
    transform: translate(-46%, -78%);
    font-size: 16px;
    letter-spacing: -.04em;
  }

  .footer{
    height:145px;
  }

  .footer__copyright{
    top:78px;
    font-size:9.5px;
  }
}
