:root{
  --blue:#0e4fb3;
  --blueDeep:#0a4aad;
  --text:#111;
  --bg:#f2f2f2;
  --cta:#f4e76f;
  --container: 1360px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
  line-height:1.7;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
.nowrap{ white-space: nowrap; }

/* ===== FV ===== */
.fv{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:var(--bg);
}

.fv::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 34%;
  background: var(--blue);
  z-index:0;
}

.fv__container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 18px 0;
  position:relative;
  z-index:1;
}

.fv__grid{
  min-height:100vh;
  display:grid;
  grid-template-columns: minmax(430px, 44%) minmax(620px, 56%);
  gap: 0;
  align-items:end;
}

.fv__left{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height:100%;
  position:relative;
  z-index:2;
}

.fv__girl{
  width:min(690px, 110%);
  max-height:940px;
  object-fit:contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.14));
  margin:0 0 -2px;
}

.fv__right{
  position:relative;
  z-index:2;
  transform: translateY(-8px);
  padding-right:10px;
}

.fv__tag{
  display:inline-block;
  background: var(--blue);
  color:#fff;
  font-weight:700;
  letter-spacing:.05em;
  padding: 10px 24px 12px;
  border-radius:0;
  font-size: 50px;
  margin: 0 0 18px;
  line-height:1.1;
}

.fv__title{
  margin: 0 0 18px;
  color: var(--blueDeep);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.2;
  font-size: clamp(64px, 5.2vw, 118px);
  text-shadow: 0 5px 10px rgba(13,50,103,.18);
  white-space:nowrap;
}

.fv__title-line{
  display:inline-block;
  white-space: nowrap;
}

.fv__lead{
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(34px, 2.35vw, 44px);
  line-height:1.3;
  color:#0b0b0b;
  white-space: nowrap;
}

.fv__badges{
  list-style:none;
  padding:0;
  margin: 0 0 20px;
  display:flex;
  gap: 20px;
  flex-wrap:nowrap;
}

.badge{
  width: 270px;
  min-width:270px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 8px solid var(--blue);
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 56%, #ccdaef 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: var(--blueDeep);
  font-weight: 900;
  line-height: 1.25;
  box-shadow: inset 0 -8px 12px rgba(13,65,148,.05);
  transform:translateY(18px);
}

.badge span{
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:.01em;
}

.fv__cta-wrap{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  padding-top:40px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7f2ca 0%, #f3e761 46%, #f8efae 100%);
  color: var(--blueDeep);
  font-weight: 900;
  letter-spacing: .03em;
  padding: 30px 88px;
  min-width: 760px;
  font-size: clamp(34px, 3.4vw, 58px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.45);
  line-height:1;
  white-space: nowrap;
  text-shadow: -3px 0 #f8e350, 0 3px #f8e350, 3px 0 #f8e350, 0 -3px #f8e350;
}

.btn::before{
  content:"";
  position:absolute;
  top:-140%;
  left:-28%;
  width:18%;
  height:380%;
  background:rgba(255,255,255,.75);
  transform:translateX(-280%) rotate(24deg);
  animation: btn_shine 2.8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes btn_shine{
  0%, 72%{
    transform:translateX(-280%) rotate(24deg);
    opacity:0;
  }
  76%{
    opacity:.9;
  }
  92%, 100%{
    transform:translateX(620%) rotate(24deg);
    opacity:0;
  }
}

@media (prefers-reduced-motion: reduce){
  .btn::before{
    animation:none;
  }
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--small{
  font-size: 18px;
  padding: 14px 28px;
  min-width:auto;
  text-shadow:none;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

@media (min-width: 1201px){
  .fv{
    min-height:100vh;
  }

  .fv::after{
    height:33%;
  }

  .fv__container{
    max-width: 1560px;
    padding: 18px 22px 0;
  }

  .fv__grid{
    min-height:100vh;
    grid-template-columns: 43% 57%;
  }

  .fv__girl{
    width:min(760px, 118%);
    max-height:980px;
  }

  .fv__right{
    transform: translateY(-18px);
  }

  .fv__tag{
    font-size: clamp(44px, 2.5vw, 62px);
    padding: 11px 28px 13px;
    margin-bottom:16px;
  }

  .fv__title{
    font-size: clamp(84px, 5.8vw, 128px);
    line-height:1.16;
    margin-bottom:14px;
  }

  .fv__lead{
    font-size: clamp(42px, 2.6vw, 56px);
    margin-bottom: 12px;
  }

  .fv__badges{
    margin-bottom: 14px;
    gap: 16px;
  }

  .badge{
    width: 288px;
    min-width:288px;
    border-width: 7px;
  }

  .badge span{
    font-size: clamp(30px, 1.9vw, 42px);
  }

  .fv__cta-wrap{
    padding-top:20px;
  }

  .btn{
    min-width: 880px;
    padding: 28px 92px;
    font-size: clamp(48px, 3.1vw, 70px);
  }
}

/* ===== 下層セクション ===== */
.main{
  max-width:none;
  margin:0;
  padding:0;
}

.lp-section{
  padding: 72px 24px;
}

.lp-section--gray{ background:#edf1f7; }
.lp-section--white{ background:#ffffff; }
.lp-section--blue{
  background:#0f4eaf;
  color:#fff;
}

.lp-container{
  max-width:1120px;
  margin:0 auto;
}

.lp-narrow{ max-width:900px; }

.lp-title{
  margin:0 0 30px;
  font-size: clamp(32px, 3vw, 52px);
  color:#0d46be;
  text-align:center;
  font-weight:900;
  line-height:1.2;
}

#problems{
  width: fit-content;
  margin-left:auto;
  margin-right:auto;
  text-align:left;
}

.lp-title::after{
  content:"";
  display:block;
  width:86px;
  height:4px;
  margin:12px auto 0;
  background:#1f69d2;
  border-radius:999px;
}

.lp-title--white{ color:#fff; }
.lp-title--white::after{ background:rgba(255,255,255,.75); }

.lp-lead{
  margin: 0 auto 46px;
  text-align:center;
  max-width:820px;
  font-size: 17px;
  font-weight:500;
  line-height:1.55;
  color:#26324a;
}

.issue-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}

.issue-card{
  background:#fff;
  border-radius:12px;
  padding: 18px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  font-size:16px;
  color:#1f2f45;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.issue-num{
  width:26px;
  height:26px;
  border-radius:50%;
  background:#1d63ca;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  flex-shrink:0;
}

.service-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}

.service-icon-row{
  list-style:none;
  margin: 0 0 16px;
  padding:0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

.service-icon-chip{
  background:#e9f1fc;
  border:1px solid #c8dbf9;
  border-radius:8px;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#0f44c4;
}

.service-card{
  background:#e9f1fc;
  border:1px solid #c8dbf9;
  border-radius:10px;
  padding: 20px 18px 18px;
  box-shadow:none;
}

.service-icon{
  color:#0f60ce;
  font-size:30px;
  font-weight:900;
  line-height:1;
  margin-bottom:10px;
}

.service-card h3{
  margin:0 0 8px;
  color:#0f44c4;
  font-size:27px;
  line-height:1.3;
}

.service-card p{
  margin:0;
  color:#2f3d54;
  font-size:14px;
  line-height:1.6;
}

.reason-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
}

.reason-card{
  background: rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding: 22px 20px;
}

.reason-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background: rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:18px;
}

.reason-card h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.35;
}

.reason-card p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color: rgba(255,255,255,.95);
}

.before-after{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:12px;
}

.result-box{
  min-width:300px;
  max-width:360px;
  background:#0f4eaf;
  color:#fff;
  border-radius:8px;
  padding: 16px 20px 14px;
  text-align:center;
}

.result-label{
  margin:0 0 6px;
  font-size:14px;
}

.result-main{
  margin:0;
  font-size:36px;
  line-height:1.15;
  font-weight:800;
}

.result-main strong{
  font-size:60px;
  line-height:1;
}

.result-sub{
  margin:6px 0 0;
  font-size:13px;
}

.result-arrow{
  margin:0;
  display:inline-block;
  font-size:62px;
  color:#1b5fca;
  font-weight:900;
}

.result-copy{
  margin:0;
  text-align:center;
  font-size:26px;
  font-weight:900;
  color:#091b3e;
}

.flow-grid{
  margin:0;
  padding:16px 0 0;
  list-style:none;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:24px;
  justify-items:center;
}

.flow-item{
  width: 220px;
  height: 220px;
  border-radius:50%;
  background:#0f4eaf;
  color:#fff;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 16px 14px 18px;
  position:relative;
  z-index:1;
}

.flow-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:50%;
  left:100%;
  width:68px;
  height:3px;
  background:#6f7485;
  transform:translateY(-50%);
}

.flow-icon{
  margin: 10px 0 10px;
  width:74px;
  height:74px;
  border-radius:0;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
}

.flow-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.flow-step{
  margin:0;
  color:#fff;
  font-size:22px;
  font-weight:400;
  line-height:1;
  letter-spacing:0;
}

.flow-item h3{
  margin:0;
  color:#fff;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
}

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

.faq-item{
  background:#f7f9fe;
  border:1px solid #c8d9f8;
  border-radius:12px;
  padding: 0;
  box-shadow: 0 3px 0 #d8e5fa;
}

.faq-question{
  margin:0;
  padding: 14px 52px 12px 18px;
  color:#0f44c4;
  font-size:18px;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  list-style:none;
  position:relative;
}

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

.faq-question::after{
  content:"+";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  font-weight:700;
  color:#0f44c4;
  line-height:1;
}

.faq-item[open] .faq-question::after{
  content:"-";
}

.faq-question span{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#1a64ca;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  flex-shrink:0;
}

.faq-answer{
  margin:0;
  padding: 0 18px 14px;
  color:#2b3951;
  font-size:13px;
}

.cta-band{
  padding: 76px 24px 74px;
  background: linear-gradient(180deg, #1458c8 0%, #0f43bf 100%);
  color:#fff;
  text-align:center;
}

.cta-band h2{
  margin:0 0 8px;
  font-size: clamp(40px, 3vw, 56px);
  line-height:1.25;
  white-space: nowrap;
}

.cta-band__lead{
  margin:0 0 14px;
  font-size:20px;
}

.cta-band__meta{
  margin:0 0 24px;
  font-size:14px;
}

.cta-band__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding: 16px 42px;
  background: linear-gradient(90deg, #f7f2ca 0%, #f3e761 46%, #f8efae 100%);
  color:#0f44c4;
  font-size:48px;
  font-weight:900;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  text-shadow: -2px 0 #f8e350, 0 2px #f8e350, 2px 0 #f8e350, 0 -2px #f8e350;
}

/* ===== CTA Pulse Animation ===== */

.cta-band small{
  display:block;
  margin-top:12px;
  font-size:14px;
  opacity:.95;
}


/* ===== Scroll Reveal ===== */
html.js .reveal{
  opacity:0;
  transform: translateY(16px);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.js .reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html.js .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}

/* ===== FV Tablet+Mobile ===== */
@media (max-width: 1200px){
  .fv{
    min-height: 1320px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .fv__grid{
    display:block;
    min-height:1320px;
    position:relative;
  }

  .fv::after{
    height: 40%;
    bottom: 120px;
  }

  .fv__right{
    transform: translateY(0);
    padding:0 16px;
    text-align:center;
    position:static;
    z-index:3;
  }

  .fv__left{
    position:absolute;
    left:0;
    bottom:110px;
    width:100%;
    min-height:auto;
    align-items:flex-end;
    justify-content:flex-start;
    padding-top:0;
    z-index:2;
  }

  .fv__girl{
    width:min(76vw, 520px);
    margin: 0 0 -3px;
    max-height:none;
    transform: translateX(-12vw);
  }

  .fv__tag{
    font-size: clamp(20px, 3.4vw, 30px);
    margin-bottom:14px;
    padding: 8px 20px 10px;
  }

  .fv__title{
    font-size: clamp(38px, 9.8vw, 62px);
    margin-bottom:14px;
    white-space:normal;
    line-height:1.16;
    text-shadow:none;
  }

  .fv__lead{
    font-size: clamp(16px, 4.2vw, 26px);
    margin-bottom: 6px;
    white-space: nowrap;
    font-weight:600;
  }

  .fv__badges{
    position:absolute;
    right:10px;
    top: clamp(390px, 52vw, 480px);
    gap: 14px;
    justify-content:flex-start;
    margin:0;
    flex-wrap: nowrap;
    flex-direction:column;
    z-index:3;
  }

  .badge{
    width: clamp(126px, 28vw, 176px);
    min-width: 126px;
    max-width: 176px;
    border-width: 4px;
    transform:translateY(0);
  }

  .badge span{
    font-size: clamp(16px, 3.8vw, 26px);
  }

  .fv__cta-wrap{
    display:none;
  }

}

/* ===== スマホ ===== */
@media (max-width: 900px){
  .lp-section{
    padding: 42px 14px;
  }

  .lp-title{
    font-size: clamp(30px, 8.4vw, 40px);
    margin-bottom:18px;
  }

  .lp-title::after{
    width:64px;
    height:3px;
  }

  .lp-lead{
    font-size:13px;
    margin-bottom:16px;
  }

  .issue-grid,
  .service-grid,
  .reason-grid,
  .flow-grid,
  .service-icon-row{
    grid-template-columns: 1fr;
  }

  .issue-card{
    font-size:12px;
    padding: 10px 12px;
  }

  .issue-num{
    width:24px;
    height:24px;
    font-size:13px;
  }

  .service-card,
  .reason-card{
    padding: 14px 12px;
  }

  .service-icon-row{
    display:none;
  }

  .service-icon{
    font-size:22px;
    margin-bottom:6px;
  }

  .service-card h3,
  .reason-card h3,
  .flow-item h3,
  .faq-question{
    font-size:16px;
  }

  .service-card p,
  .reason-card p,
  .faq-answer{
    font-size:11px;
  }

  .before-after{
    flex-direction:column;
    gap:8px;
  }

  .result-box{
    min-width:0;
    width:100%;
  }

  .result-main{
    font-size:28px;
  }

  .result-main strong{
    font-size:48px;
  }

  .result-arrow{
    transform:none;
    line-height:1;
    font-size:0;
  }

  .result-arrow::before{
    content:"\2193";
    display:block;
    font-size:44px;
    color:#1b5fca;
    font-weight:900;
  }

  .result-copy{
    font-size:14px;
  }

  .flow-grid{
    gap:0;
    padding-top:4px;
  }

  .flow-item{
    width:112px;
    max-width:none;
    height:112px;
    border-radius:50%;
    justify-content:center;
    gap:2px;
    padding: 8px 6px;
    margin-bottom:14px;
  }

  .flow-item:not(:last-child)::after{
    display:block;
    top:100%;
    left:50%;
    width:2px;
    height:14px;
    transform:translateX(-50%);
  }

  .flow-step{
    font-size:16px;
    margin:0;
  }

  .flow-icon{
    width:30px;
    height:30px;
    margin:0;
  }

  .flow-item h3{
    font-size:14px;
    line-height:1.2;
  }

  .faq-item{
    padding:0;
  }

  .faq-question span{
    width:16px;
    height:16px;
    font-size:10px;
  }

  .faq-question{
    padding:10px 34px 9px 10px;
    font-size:11px;
    gap:6px;
  }

  .faq-question::after{
    right:10px;
    font-size:18px;
  }

  .faq-answer{
    padding: 0 10px 10px;
    font-size:10px;
  }

  .cta-band{
    padding: 44px 14px 40px;
  }

  .cta-band h2{
    font-size: clamp(28px, 8.2vw, 42px);
    margin-bottom:6px;
    white-space: normal;
  }

  .cta-band__lead{
    font-size:12px;
    margin-bottom:8px;
  }

  .cta-band__meta{
    font-size:11px;
    margin-bottom:12px;
  }

  .cta-band__btn{
    font-size:20px;
    padding: 10px 20px;
  }

  .cta-band small{
    font-size:12px;
    margin-top:10px;
  }
}

@media (max-width: 480px){
  .fv{
    min-height: 1080px;
  }

  .fv__grid{
    min-height:1080px;
  }

  .fv::after{
    height: 40%;
    bottom: 96px;
  }

  .fv__tag{
    font-size: 20px;
    padding: 8px 16px 10px;
    margin-bottom:12px;
  }

  .fv__title{
    font-size: clamp(34px, 10.8vw, 44px);
    margin-bottom:10px;
    white-space:normal;
    line-height:1.18;
  }

  .fv__lead{
    font-size: clamp(13px, 4.4vw, 18px);
    white-space:normal;
  }

  .fv__left{
    bottom:96px;
  }

  .fv__girl{
    width:min(88vw, 420px);
    transform: translateX(-14vw);
  }

  .fv__badges{
    right:6px;
    top: 370px;
    gap:12px;
  }

  .badge{
    width: 34vw;
    min-width: 116px;
    max-width: 152px;
  }

  .badge span{
    font-size: clamp(16px, 4.8vw, 24px);
  }

  .fv__cta-wrap{
    display:none;
  }
}

@media (min-width: 321px) and (max-width: 380px){
  .fv{
    min-height: 740px;
    padding-bottom: 0;
  }

  .fv__grid{
    min-height:740px;
  }

  .fv::after{
    top:418px;
    bottom:0;
    height:auto;
  }

  .fv__right{
    padding:18px 12px 0;
    max-width: 360px;
    margin: 0 auto;
    position: static;
  }

  .fv__tag{
    font-size: 19px;
    padding: 8px 14px 9px;
    margin-bottom:12px;
  }

  .fv__title{
    font-size: 34px;
    line-height:1.22;
    margin-bottom:12px;
    white-space: normal;
  }

  .fv__lead{
    font-size: 14px;
    margin-bottom: 10px;
    white-space: nowrap;
  }

  .fv__left{
    top: 188px;
    bottom:auto;
  }

  .fv__girl{
    width: 86vw;
    max-width: 430px;
    transform: translateX(calc(-10vw - 50px));
  }

  .fv__badges{
    position: relative;
    top: auto;
    right: auto;
    margin: 30px 0 0 auto;
    width: max-content;
    gap:10px;
    transform: translateX(15px);
  }

  .badge{
    width: 33vw;
    min-width: 118px;
    max-width: 140px;
  }

  .badge span{
    font-size: 17px;
  }

  .fv__cta-wrap{
    display:flex;
    position:absolute;
    left:50%;
    bottom:-146px;
    transform:translateX(-50%);
    width:100%;
    justify-content:center;
    z-index:4;
  }

  .btn{
    width:min(84vw, 420px);
    min-width:0;
    font-size: clamp(24px, 7.4vw, 34px);
    padding: 12px 18px;
    white-space: nowrap;
  }
}

@media (min-width: 381px) and (max-width: 420px){
  .fv{
    min-height: 840px;
    padding-bottom: 0;
  }

  .fv__grid{
    min-height:840px;
  }

  .fv::after{
    top: 455px;
    bottom:0;
    height:auto;
  }

  .fv__right{
    padding:14px 14px 0;
    max-width: 390px;
    margin: 0 auto;
    position: static;
  }

  .fv__tag{
    font-size: 20px;
    padding: 8px 16px 9px;
    margin-bottom:12px;
  }

  .fv__title{
    font-size: 40px;
    line-height:1.2;
    margin-bottom:16px;
    white-space: normal;
    letter-spacing: 0;
  }

  .fv__lead{
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .fv__left{
    top: 225px;
    bottom:auto;
  }

  .fv__girl{
    width: 79vw;
    max-width: 460px;
    transform: translateX(calc(-10vw - 20px));
  }

  .fv__badges{
    position: relative;
    top: auto;
    right: auto;
    margin: 30px 0 0 auto;
    width: max-content;
    gap:12px;
    transform: translateX(12px);
  }

  .badge{
    width: 33vw;
    min-width: 126px;
    max-width: 148px;
  }

  .badge span{
    font-size: 18px;
  }

  .fv__cta-wrap{
    display:flex;
    position:absolute;
    left:50%;
    bottom:-128px;
    transform:translateX(-50%);
    width:100%;
    justify-content:center;
    z-index:4;
  }

  .btn{
    width:min(84vw, 520px);
    min-width:0;
    font-size: clamp(28px, 7.2vw, 40px);
    padding: 13px 22px;
    white-space: nowrap;
  }

}

@media (min-width: 421px) and (max-width: 430px){
  .fv{
    min-height: 860px;
    padding-bottom: 0;
  }

  .fv__grid{
    min-height:860px;
  }

  .fv::after{
    top: 465px;
    bottom:0;
    height:auto;
  }

  .fv__right{
    padding:14px 14px 0;
    max-width: 420px;
    margin: 0 auto;
    position: static;
  }

  .fv__tag{
    font-size: 21px;
    padding: 8px 16px 9px;
    margin-bottom:12px;
  }

  .fv__title{
    font-size: 42px;
    line-height:1.2;
    margin-bottom:16px;
    white-space: normal;
    letter-spacing: 0;
  }

  .fv__lead{
    font-size: 15px;
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .fv__left{
    top: 230px;
    bottom:auto;
  }

  .fv__girl{
    width: 78vw;
    max-width: 500px;
    transform: translateX(calc(-10vw - 20px));
  }

  .fv__badges{
    position: relative;
    top: auto;
    right: auto;
    margin: 30px 0 0 auto;
    width: max-content;
    gap:12px;
    transform: translateX(12px);
  }

  .badge{
    width: 33vw;
    min-width: 130px;
    max-width: 152px;
  }

  .badge span{
    font-size: 19px;
  }

  .fv__cta-wrap{
    display:flex;
    position:absolute;
    left:50%;
    bottom:-128px;
    transform:translateX(-50%);
    width:100%;
    justify-content:center;
    z-index:4;
  }

  .btn{
    width:min(84vw, 540px);
    min-width:0;
    font-size: clamp(30px, 7vw, 42px);
    padding: 13px 22px;
    white-space: nowrap;
  }
}

@media (max-width: 320px){
  .fv{
    min-height: 980px;
  }

  .fv__grid{
    min-height:980px;
  }

  .fv::after{
    height: 39%;
    bottom: 84px;
  }

  .fv__container{
    padding: 10px 8px 0;
  }

  .fv__tag{
    font-size: 16px;
    padding: 6px 10px 7px;
    margin-bottom:10px;
  }

  .fv__title{
    font-size: clamp(30px, 12.5vw, 42px);
    line-height:1.18;
    white-space: normal;
    margin-bottom:8px;
  }

  .fv__lead{
    font-size: 12px;
    white-space: normal;
  }

  .fv__left{
    bottom:84px;
  }

  .fv__girl{
    width:min(92vw, 300px);
    transform: translateX(-10vw);
  }

  .fv__badges{
    right:2px;
    top: 330px;
    gap:8px;
  }

  .badge{
    width: 34vw;
    min-width: 92px;
    max-width: 114px;
    border-width:3px;
  }

  .badge span{
    font-size: 11px;
    line-height:1.2;
  }

  .fv__cta-wrap{
    display:flex;
    position:absolute;
    left:50%;
    bottom:6px;
    transform:translateX(-50%);
    width:100%;
    justify-content:center;
    z-index:4;
  }

  .btn{
    width:min(90vw, 300px);
    min-width:0;
    font-size: clamp(20px, 8.2vw, 28px);
    padding: 10px 14px;
    white-space: nowrap;
  }
}
