/* =================================================
   THEME
================================================= */
:root{
  --bg:#F6F7F8;
  --panel:#FFFFFF;
  --ink:#222;
  --muted:#666;
  --line:rgba(0,0,0,.08);

  --accent:#F3F315;
  --accent2:#5DE2D3;

  --navH:80px;
}

*{ box-sizing:border-box; }

html{
  scroll-padding-top:var(--navH);
  font-size:112%;
}

body{
  margin:0;
  font-family:"Noto Sans JP",sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.95;
  padding-top:var(--navH);
  font-weight:600;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =================================================
   LAYOUT
================================================= */
.container{
  max-width:880px;
  margin:auto;
  padding:80px 24px;
  text-align:center;
}

.section-bg{
  background:#fff;
}

.center{
  text-align:center;
}

/* =================================================
   TYPOGRAPHY
================================================= */
h1,h2{
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-weight:900;
  letter-spacing:.02em;
}

h1{
  font-size:2.2rem;
  margin-bottom:24px;
}

.lead-copy{
  margin:10px auto 18px;
  max-width:46em;
  color:var(--muted);
  font-weight:700;
}

h2{
  font-size:1.6rem;
  margin:0 auto 28px;
  position:relative;
  display:inline-block;
  width:auto;
  max-width:100%;
  padding-bottom:.3em;
  line-height:1.5;
  isolation:isolate;
}

h2::after{
  content:"";
  position:absolute;
  left:-.12em;
  right:-.12em;
  bottom:.05em;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  opacity:.6;
  z-index:-1;
}

p{
  margin-bottom:1.2em;
}

.small{
  color:var(--muted);
  font-weight:600;
}

.flow{
  font-size:1.15rem;
  line-height:2.4;
  font-weight:700;
}

.arrow{
  color:#999;
}

/* =================================================
   EMPHASIS
================================================= */
.accent2{
  color:var(--accent2);
  font-weight:800;
}

.highlight,
.num-highlight{
  color:var(--ink);
  background:linear-gradient(transparent 65%, var(--accent) 0);
  padding:0 .15em;
  border-radius:.2em;
}

.num-highlight{
  font-weight:900;
}

.badge-safe{
  display:inline-block;
  margin:.25em .35em .25em 0;
  padding:.35em .7em;
  border-radius:999px;
  background:rgba(93,226,211,.18);
  color:var(--ink);
  font-weight:800;
  letter-spacing:.02em;
  line-height:1.2;
}

.center .badge-safe{
  background:rgba(93,226,211,.18);
  color:var(--ink);
}

/* =================================================
   NAVBAR
================================================= */
.navbar{
  text-align:left;
  backdrop-filter:blur(12px);
  background:rgba(40,40,40,.85)!important;
}

.navbar-nav,
.navbar-nav .nav-link{
  text-align:left;
}

/* =================================================
   HERO
================================================= */
.hero-image{
  width:min(920px,92vw);
  margin:24px auto 0;
  border-radius:22px;
  box-shadow:0 14px 40px rgba(0,0,0,.10);
}

/* =================================================
   CTA
================================================= */
.cta-area{
  text-align:center;
  margin-top:24px;
}

.cta-button{
  display:inline-block;
  background:var(--accent);
  color:#000;
  padding:18px 36px;
  border:2px solid rgba(0,0,0,.08);
  border-radius:999px;
  text-decoration:none;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  transition:.25s;
}

.cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

/* =================================================
   PROFILE
================================================= */
.profile-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  margin:40px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.profile-grid{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:24px;
  align-items:center;
}

.profile-photo img{
  width:clamp(120px,16vw,170px);
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}

.profile-body,
.profile-name,
.profile-text{
  text-align:left;
}

.profile-name strong{
  position:relative;
}

.profile-name strong::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:10px;
  background:var(--accent);
  opacity:.9;
  z-index:-1;
}

/* =================================================
   FLOW + ILLUSTRATIONS
================================================= */
.flow-illust{
  display:grid;
  grid-template-columns:minmax(140px,1fr) minmax(260px,420px) minmax(140px,1fr);
  align-items:center;
  gap:28px;
  margin-top:26px;
}

.flow-illust__center,
.flow-illust__side{
  display:flex;
  justify-content:center;
}

.flow-illust .illust{
  width:170px;
  max-width:100%;
  height:auto;
}

/* =================================================
   PROGRAM / PRICE
================================================= */
#program p.center,
#price p.center{
  font-size:1.25rem;
  font-weight:900;
}

/* =================================================
   ZOOM INFO CARD
================================================= */
.zoom-info{
  background:#fff;
  border-radius:18px;
  padding:28px 30px;
  margin:26px auto 0;
  max-width:620px;
  text-align:left;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.zoom-info strong{
  font-weight:900;
}

.zoom-info p{
  margin-bottom:1em;
}

/* =================================================
   RESPONSIVE
================================================= */
@media (max-width:900px){
  .flow-illust{
    grid-template-columns:1fr minmax(240px,420px) 1fr;
    gap:18px;
  }

  .flow-illust .illust{
    width:150px;
  }
}

@media (max-width:600px){
  .navbar.fixed-top{
    position:static!important;
  }

  body{
    padding-top:0;
  }

  html{
    scroll-padding-top:0;
  }

  .container{
    padding:60px 18px;
  }

  h1{
    font-size:1.8rem;
  }

  h2{
    font-size:1.3rem;
  }

  .profile-grid{
    grid-template-columns:1fr;
  }

  .profile-photo img{
    width:100%;
    max-width:320px;
    margin:auto;
  }

  .cta-button{
    display:block;
    width:100%;
  }

  .flow-illust{
    grid-template-columns:1fr;
    gap:16px;
  }

  .flow-illust__side{
    display:flex !important;
    justify-content:center;
  }

  .flow-illust__side{ order:1; }
  .flow-illust__center{ order:2; }
  .flow-illust__side:last-child{ order:3; }

  .flow-illust .illust{
    width:140px;
  }

  .zoom-info{
    padding:22px 20px;
    font-size:.95rem;
  }
}
