/* ============================================================
   SNS リスキリング講座 LP — style.css v5
   Concept: Quiet authority × Feminine warmth.
   Blue & white breath, soft edges, rose-gold accent.
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1e1e28;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ol, ul { list-style: none; }
cite { font-style: normal; }

/* ---- Design tokens ---- */
:root {
  /* Core blues — lighter & warmer than v4 */
  --navy:      #1e3a6e;       /* was #0f2240 → lifted, warmer */
  --navy-2:    #2a4d8c;
  --blue:      #3b6fc4;       /* was #1f4e96 → brighter, friendlier */
  --blue-mid:  #5b8de8;       /* mid sky for accents */
  --blue-pale: #dce8f9;       /* soft background tint */
  --blue-bg:   rgba(59,111,196,.07);

  /* Ink — slightly warmer (hint of violet) */
  --ink:       #1e1e28;
  --ink-70:    #46465a;
  --ink-50:    #72728a;
  --ink-30:    #b0b0c4;
  --ink-10:    #e8e8f0;       /* border — blue-tinted, not grey */
  --ink-05:    #f3f4f9;       /* section bg — very soft blue-white */
  --ink-02:    #f8f9fd;       /* lightest bg */
  --white:     #ffffff;

  /* Rose-gold accent — replaces flat gold */
  --rose:      #c4886e;       /* warm rose-gold */
  --rose-lt:   #e8b99f;       /* lighter for text-on-dark */
  --rose-pale: #fdf0ea;       /* background tint */

  /* Sky accent for highlights */
  --sky:       #e4eefc;       /* light blue bg chips */
  --sky-deep:  rgba(91,141,232,.14);

  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .28, 1);
  --ease-in:  cubic-bezier(.4, 0, 1, 1);
}

/* ---- Container ---- */
.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }


/* ============================================================
   GLOBAL HEADER
   ============================================================ */
.gh {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.gh.is-scrolled {
  border-color: rgba(59,111,196,.1);
  box-shadow: 0 1px 20px rgba(59,111,196,.06);
}

.gh__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1.5rem;
}

.gh__logo {
  display: flex;
  flex-direction: column;
  gap: .06rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.gh__logo-co {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--blue-mid);
  line-height: 1.3;
}
.gh__logo-ja {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink);
  line-height: 1.3;
}
/* 旧クラス互換（フッター等で流用されている場合） */
.gh__logo-en {
  font-family: 'DM Sans', sans-serif;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.gh__nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  margin-left: auto;
}
.gh__nav a {
  font-size: .74rem;
  font-weight: 300;
  color: var(--ink-50);
  letter-spacing: .04em;
  transition: color .18s;
}
.gh__nav a:hover,
.gh__nav a.is-active { color: var(--blue); }

/* CTA — rounded pill, blue gradient feel */
.gh__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .04rem;
  background: var(--navy);
  color: var(--white);
  padding: .52rem 1.2rem;
  border-radius: 20px;          /* pill shape */
  line-height: 1.25;
  flex-shrink: 0;
  transition: background .22s, box-shadow .22s;
}
.gh__cta:hover {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(59,111,196,.28);
}
.gh__cta-main { font-size: .78rem; font-weight: 500; letter-spacing: .04em; }
.gh__cta-note { font-size: .57rem; font-weight: 300; color: rgba(255,255,255,.5); letter-spacing: .08em; }

/* Hamburger */
.gh__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .45rem;
  margin-left: auto;
  flex-shrink: 0;
}
.gh__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .28s var(--ease), opacity .2s;
}
.gh__burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.gh__burger.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.sp-nav {
  position: fixed;
  inset: 64px 0 0;
  background: var(--white);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
}
.sp-nav.is-open { transform: none; }
.sp-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.85rem;
}
.sp-nav a {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .1em;
}
.sp-nav__cta {
  margin-top: .5rem;
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: .85rem !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  padding: .85rem 2.25rem !important;
  border-radius: 20px !important;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--white);
  color: var(--navy);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .88rem 1.75rem;
  border-radius: 22px;          /* soft pill */
  transition: background .22s, box-shadow .22s;
  white-space: nowrap;
}
.btn-fill:hover {
  background: var(--rose-pale);
  box-shadow: 0 4px 18px rgba(196,136,110,.18);
}
.btn-fill--dark {
  background: var(--navy);
  color: var(--white);
}
.btn-fill--dark:hover {
  background: var(--blue);
  box-shadow: 0 4px 18px rgba(59,111,196,.3);
}
.btn-fill--sm { padding: .7rem 1.4rem; font-size: .79rem; border-radius: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: .08rem;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover {
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.5);
}


/* ============================================================
   SECTION HEADINGS — shared
   ============================================================ */
.sec-head { margin-bottom: clamp(2.75rem, 6vw, 5rem); }

.sec-kicker {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .95rem;
}

.sec-h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: .02em;
  color: var(--ink);
}

.sec-sub {
  margin-top: 1rem;
  font-size: .86rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2;
}


/* ============================================================
   HERO  — blue gradient, warmer & lighter than before
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Warm navy → deep blue gradient instead of flat #navy */
  background: linear-gradient(135deg, #1a3060 0%, #1e3a6e 45%, #2a5090 100%);
}
/* Soft atmospheric light — blue + rose */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 78% 35%, rgba(91,141,232,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0%  85%, rgba(196,136,110,.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 100%, rgba(30,58,110,.6)   0%, transparent 50%);
}
/* Subtle light streak */
.hero__bg::after {
  content: '';
  position: absolute;
  top: 0; right: 20%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(255,255,255,.06) 28%,
    rgba(255,255,255,.09) 58%,
    transparent
  );
}

.hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: end;
  gap: 5rem;
}
.hero__body { max-width: 540px; }

.hero__overline {
  font-family: 'DM Sans', sans-serif;
  font-size: .61rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.6rem;
}

.hero__h1 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.26;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 1.85rem;
}

.hero__lead {
  font-size: clamp(.84rem, 1.2vw, .93rem);
  font-weight: 300;
  color: rgba(255,255,255,.52);
  line-height: 2.15;
  margin-bottom: 2.75rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

/* Stats — asymmetric */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-bottom: .5rem;
}
.hero__stat {
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;          /* softer corners */
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.hero__stat--lg { padding: 1.55rem 1.6rem; }
.hero__stat--pulled { margin-left: 1rem; }
.hero__stat-row {
  display: flex;
  gap: .85rem;
  align-items: stretch;
}
.hero__stat-row .hero__stat { flex: 1; }

.hst-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero__stat--lg .hst-num { font-size: 2.5rem; }
.hero__stat-row .hst-num { font-size: 1.65rem; }

.hst-unit {
  font-size: .42em;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--rose-lt);        /* rose-gold unit */
  margin-left: .06em;
}

.hst-lbl {
  display: block;
  font-size: .62rem;
  font-weight: 300;
  color: rgba(255,255,255,.32);
  letter-spacing: .08em;
  margin-top: .5rem;
}


/* ============================================================
   INDUSTRIES BAND — soft blue-white
   ============================================================ */
.ind-band {
  background: var(--blue-pale);  /* sky-pale strip */
  border-top: 1px solid rgba(59,111,196,.12);
  border-bottom: 1px solid rgba(59,111,196,.12);
  padding: 1.35rem 0;
}
.ind-band__wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem 2.25rem;
  flex-wrap: wrap;
}
.ind-band__label {
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .14em;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: .7;
}
.ind-band__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem 1.35rem;
}
.ind-band__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--navy);
  opacity: .55;
}


/* ============================================================
   PAIN SECTION — white bg, blue-tinted borders
   ============================================================ */
.pain { background: var(--white); }

.pain__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.pain__h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: .02em;
  color: var(--ink);
}
.pain__desc {
  font-size: .875rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2.1;
  padding-top: .3rem;
}

.pain__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink-10);
  margin-bottom: clamp(3rem, 5.5vw, 5rem);
}
.pain__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.85rem 1.5rem 1.85rem 0;
  border-bottom: 1px solid var(--ink-10);
  border-right: 1px solid var(--ink-10);
  transition: background .22s;
}
.pain__item:nth-child(even) {
  padding-left: 1.75rem;
  border-right: none;
}
.pain__item:hover { background: var(--ink-02); }
.pain__item:nth-last-child(1),
.pain__item:nth-last-child(2) { border-bottom: none; }

.pain__n {
  font-family: 'DM Sans', sans-serif;
  font-size: .57rem;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--blue-mid);       /* blue numbers */
  padding-top: .32rem;
  flex-shrink: 0;
  min-width: 18px;
}
.pain__text h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .45rem;
  line-height: 1.55;
  letter-spacing: .02em;
}
.pain__text p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2;
}

.pain__verdict {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: var(--ink-50);
  letter-spacing: .02em;
  line-height: 1.9;
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pain__verdict strong { color: var(--ink); font-weight: 500; }


/* ============================================================
   WHY SECTION — soft blue-white bg
   ============================================================ */
.why {
  background: var(--ink-05);    /* #f3f4f9 — blue-tinted white */
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}

.why__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-10);
}
.why__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2.5rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--ink-10);
}
.why__item:last-child { border-bottom: none; }

.why__n {
  font-family: 'DM Sans', sans-serif;
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--blue-mid);
  padding-top: .5rem;
  text-align: right;
}
.why__body h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .9rem;
  line-height: 1.55;
  letter-spacing: .02em;
}
.why__body p {
  font-size: .855rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2.1;
  max-width: 600px;
}


/* ============================================================
   PROGRAM SECTION — white bg, sky accent on tags
   ============================================================ */
.program { background: var(--white); }

.prog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
  border-radius: 8px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.prog__card {
  background: var(--white);
  padding: 2.1rem 1.95rem;
  transition: background .22s;
}
.prog__card:hover { background: var(--ink-02); }

.prog__card--final {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.prog__card--final .prog__card-head { grid-column: 1 / -1; }
.prog__card--final .prog__title     { grid-column: 1; }
.prog__card--final .prog__body      { grid-column: 1; }
.prog__card--final .prog__tags      { grid-column: 2; padding-top: .25rem; }

.prog__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.prog__label {
  font-family: 'DM Sans', sans-serif;
  font-size: .59rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-mid);
}
.prog__time {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink-30);
}

.prog__title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .6rem;
  line-height: 1.55;
  letter-spacing: .02em;
}
.prog__body {
  font-size: .81rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 1.95;
  margin-bottom: .9rem;
}
.prog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.prog__tags span {
  font-size: .64rem;
  font-weight: 400;
  color: var(--blue);
  background: var(--sky);       /* sky-blue chip */
  padding: .2rem .55rem;
  border-radius: 10px;          /* pill chip */
  letter-spacing: .03em;
}

.prog__note {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .79rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 1.85;
  padding: 1rem 1.25rem;
  background: var(--blue-pale);
  border-left: 2px solid var(--blue-mid);
  border-radius: 0 6px 6px 0;
}
.prog__note svg { color: var(--blue-mid); flex-shrink: 0; margin-top: .18rem; }


/* ============================================================
   RESULTS SECTION — mid-blue bg (lighter than before)
   ============================================================ */
.results {
  background: var(--navy);
  /* Soft gradient overlay for warmth */
  background: linear-gradient(160deg, #1e3a6e 0%, #253f7a 55%, #1d3870 100%);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  position: relative;
  overflow: hidden;
}
/* Subtle rose-gold sheen top-right */
.results::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,136,110,.09) 0%, transparent 65%);
  pointer-events: none;
}

.results .sec-kicker { color: var(--rose-lt); }
.results .sec-h2     { color: var(--white); }
.results .sec-sub    { color: rgba(255,255,255,.42); }

.results__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}

.results__cell {
  background: rgba(255,255,255,.04);
  padding: 2.85rem 2rem;
  text-align: center;
  transition: background .22s;
}
.results__cell:hover { background: rgba(255,255,255,.07); }
.results__cell--accent {
  background: rgba(91,141,232,.3);  /* lighter sky-blue accent */
}
.results__cell--accent:hover { background: rgba(91,141,232,.4); }

.results__num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.results__num em {
  font-style: normal;
  font-size: .35em;
  font-weight: 400;
  color: var(--rose-lt);
  letter-spacing: 0;
  margin-left: .12em;
}
.results__lbl {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  margin-bottom: .45rem;
}
.results__note {
  font-family: 'DM Sans', sans-serif;
  font-size: .59rem;
  font-weight: 300;
  color: rgba(255,255,255,.26);
  letter-spacing: .1em;
}


/* ============================================================
   VOICE (testimonials) — off-white bg, soft blue card border
   ============================================================ */
.voice { background: var(--ink-02); }

.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.voice__card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  padding: 1.85rem 1.75rem 1.65rem;
  border-radius: 10px;          /* rounder corners */
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(59,111,196,.04);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.voice__card:hover {
  border-color: var(--blue-pale);
  box-shadow: 0 8px 32px rgba(59,111,196,.1);
  transform: translateY(-2px);
}

.voice__mark {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: .75;
  color: var(--blue-pale);      /* soft sky-blue quote mark */
  margin-bottom: .55rem;
  user-select: none;
}

.voice__body {
  font-size: .855rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2.05;
  flex: 1;
  margin-bottom: 1.5rem;
}

.voice__foot {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-10);
  margin-top: auto;
}
.voice__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.voice__meta { display: flex; flex-direction: column; gap: .1rem; }
.voice__role {
  font-size: .77rem;
  font-weight: 500;
  color: var(--ink);
}
.voice__co {
  font-size: .69rem;
  font-weight: 300;
  color: var(--ink-30);
  letter-spacing: .04em;
}


/* ============================================================
   FLOW SECTION — pale blue bg
   ============================================================ */
.flow { background: var(--ink-05); }

.flow__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-10);
}
.flow__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--ink-10);
}
.flow__item:last-child { border-bottom: none; }

.flow__n {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--sky);       /* sky-blue circle */
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .25rem;
}
.flow__body h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.55;
  letter-spacing: .02em;
}
.flow__body p {
  font-size: .82rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2;
}


/* ============================================================
   FAQ — white bg
   ============================================================ */
.faq { background: var(--white); }

.faq__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5.5rem;
  align-items: start;
}
.faq__head {
  position: sticky;
  top: 88px;
}

.faq__list { border-top: 1px solid var(--ink-10); }

.faq__item { border-bottom: 1px solid var(--ink-10); }

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.3rem 0;
  text-align: left;
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  letter-spacing: .01em;
  transition: color .18s;
}
.faq__q:hover { color: var(--blue); }
.faq__q[aria-expanded="true"] { color: var(--blue); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--ink-30);
  margin-top: .22rem;
  transition: transform .28s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  color: var(--blue-mid);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .36s var(--ease-out);
}
.faq__a p {
  font-size: .845rem;
  font-weight: 300;
  color: var(--ink-50);
  line-height: 2.1;
  padding-bottom: 1.5rem;
}


/* ============================================================
   CONTACT SECTION — navy bg → warmer blue gradient
   ============================================================ */
.contact-sec {
  background: linear-gradient(150deg, #1e3a6e 0%, #233f80 60%, #1b376a 100%);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  position: relative;
  overflow: hidden;
}
/* Rose-gold warmth bottom-left */
.contact-sec::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(196,136,110,.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-sec__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}
.contact-sec .sec-kicker { color: var(--rose-lt); }

.contact-sec__h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.42;
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
}
.contact-sec__lead {
  font-size: .875rem;
  font-weight: 300;
  color: rgba(255,255,255,.48);
  line-height: 2.1;
  margin-bottom: 2rem;
}
.contact-sec__promises {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-sec__promises li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .79rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
}
.contact-sec__promises svg { color: var(--rose-lt); flex-shrink: 0; }


/* ---- Contact Form ---- */
.contact-form {
  background: var(--white);
  border-radius: 12px;          /* rounder form card */
  padding: clamp(1.75rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 8px 40px rgba(30,58,110,.18);
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cf-field label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink-50);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cf-req {
  font-size: .57rem;
  font-weight: 500;
  color: #c44e4e;
  background: rgba(196,78,78,.07);
  padding: .08rem .36rem;
  border-radius: 4px;
  letter-spacing: .06em;
}
.cf-opt {
  font-size: .57rem;
  font-weight: 300;
  color: var(--ink-30);
  letter-spacing: .06em;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .875rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--ink-02);
  border: 1.5px solid var(--ink-10);
  border-radius: 6px;           /* softer input corners */
  padding: .72rem .9rem;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--ink-30);
  font-size: .82rem;
  font-weight: 300;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91,141,232,.12);
}
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23b0b0c4' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.cf-field textarea {
  resize: vertical;
  min-height: 105px;
  line-height: 1.85;
}

/* Validation */
.cf-field.has-error input,
.cf-field.has-error select,
.cf-field.has-error textarea { border-color: #c44e4e; }
.err { display: none; font-size: .69rem; color: #c44e4e; }
.cf-field.has-error .err { display: block; }

.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: var(--navy);
  color: var(--white);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .95rem 2rem;
  border-radius: 22px;          /* pill submit button */
  margin-top: .3rem;
  transition: background .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.cf-submit:hover {
  background: var(--blue);
  box-shadow: 0 6px 20px rgba(59,111,196,.3);
}
.cf-submit.is-loading .cf-submit__text { opacity: 0; }
.cf-submit.is-loading::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cf-note {
  text-align: center;
  font-size: .69rem;
  font-weight: 300;
  color: var(--ink-30);
  letter-spacing: .04em;
  line-height: 1.7;
}

.form-done {
  background: var(--white);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(30,58,110,.18);
}
.form-done svg { color: var(--blue-mid); margin: 0 auto 1.25rem; }
.form-done h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .65rem;
  letter-spacing: .02em;
}
.form-done p { font-size: .82rem; font-weight: 300; color: var(--ink-50); }


/* ============================================================
   FOOTER
   ============================================================ */
.gf {
  background: #111d30;
  padding: 2.25rem 0 2rem;
}
.gf__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}
.gf__logo {
  display: flex;
  flex-direction: column;
  gap: .06rem;
}
.gf__logo-co {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.gf__logo-ja {
  font-family: 'Shippori Mincho B1', serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(255,255,255,.32);
  line-height: 1.4;
}
.gf__address {
  font-style: normal;
  font-size: .68rem;
  font-weight: 300;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
  margin-top: .15rem;
  width: 100%;
}
.gf__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .22rem 1.5rem;
  margin-left: auto;
}
.gf__nav a {
  font-size: .71rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  transition: color .18s;
}
.gf__nav a:hover { color: rgba(255,255,255,.65); }
.gf__copy {
  width: 100%;
  font-size: .63rem;
  font-weight: 300;
  color: rgba(255,255,255,.15);
  letter-spacing: .08em;
}


/* ============================================================
   BOTTOM CTA (mobile)
   ============================================================ */
.bottom-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(64px);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  display: none;
  box-shadow: 0 6px 24px rgba(30,58,110,.28);
  border-radius: 22px;
}
.bottom-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .hero__stat-row { flex: none; gap: .85rem; }
  .hero__stat--pulled { margin-left: 0; }

  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__head { position: static; }

  .voice__grid { grid-template-columns: 1fr 1fr; }
  .voice__grid .voice__card:last-child { grid-column: 1 / -1; max-width: 500px; }

  .prog__card--final { grid-template-columns: 1fr; }
  .prog__card--final .prog__card-head,
  .prog__card--final .prog__title,
  .prog__card--final .prog__body,
  .prog__card--final .prog__tags { grid-column: 1; }
}

@media (max-width: 768px) {
  .gh__nav    { display: none; }
  .gh__cta    { display: none; }
  .gh__burger { display: flex; }

  .hero__h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .hero__stats { gap: .85rem; }

  .ind-band__wrap { flex-direction: column; align-items: flex-start; }

  .pain__intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .pain__list  { grid-template-columns: 1fr; }
  .pain__item  {
    padding: 1.5rem 0 !important;
    border-right: none !important;
  }
  .pain__item:nth-last-child(2) { border-bottom: 1px solid var(--ink-10); }

  .why__item { grid-template-columns: 26px 1fr; gap: 1.5rem; }

  .prog__grid { grid-template-columns: 1fr; border-radius: 6px; }
  .prog__card--final { grid-column: auto; }

  .results__row { grid-template-columns: 1fr; border-radius: 6px; }
  .results__cell { border-bottom: 1px solid rgba(255,255,255,.08); }
  .results__cell:last-child { border-bottom: none; }

  .voice__grid { grid-template-columns: 1fr; }
  .voice__grid .voice__card:last-child { max-width: none; }

  .flow__item { grid-template-columns: 30px 1fr; gap: 1.5rem; }

  .contact-sec__inner { grid-template-columns: 1fr; gap: 3rem; }

  .gf__inner { flex-direction: column; align-items: flex-start; }
  .gf__nav   { margin-left: 0; }

  .bottom-cta { display: block; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats   { flex-direction: column; }
  .hero__stat-row { flex-direction: row; }
  .pain__item { gap: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
