@charset "UTF-8";

/* =========================================
   発信迷子のためのSNS設計講座 / SNS PATH DESIGN PROGRAM
   モバイルファースト（375px基準）
   ========================================= */

:root {
  --navy: #17233B;
  --bg: #F7F7F3;
  --accent: #FF6B4A;
  --accent-dark: #E85735;
  --sub: #DDE9F5;
  --text: #252B35;
  --muted: #69717D;
  --white: #FFFFFF;
  --line: #E2E2DC;
  --radius: 10px;
  --header-h: 60px;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Manrope", "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  padding-bottom: 88px; /* スマホ固定CTA分 */
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
a { color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 200; border-radius: 6px;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- 共通レイアウト ---------- */
.container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}
.container--narrow { width: min(100% - 40px, 820px); }

.section { padding: clamp(64px, 13vw, 112px) 0; }
.section--tint { background: var(--white); }
.section--blue { background: var(--sub); }
.section--navy { background: var(--navy); color: var(--white); }

.section__head { margin-bottom: clamp(32px, 7vw, 52px); }

.eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::after {
  content: "";
  flex: 0 0 40px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--light { color: #FF8E75; }
.eyebrow--light::after { background: #FF8E75; }

.section__title {
  font-size: clamp(22px, 5.8vw, 38px);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--navy);
}
.section--navy .section__title { color: var(--white); }

.section__meta {
  margin-top: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
}

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  background: var(--sub);
  border-radius: 999px;
  padding: 7px 16px;
  line-height: 1.6;
}

.note {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}
.note--left { text-align: left; margin-top: 16px; }

.marker {
  background: linear-gradient(transparent 62%, rgba(255,107,74,.28) 62%);
  font-weight: 700;
  padding: 0 2px;
}
.marker--dark {
  background: linear-gradient(transparent 62%, rgba(255,107,74,.55) 62%);
}

.link-text {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}
.link-text:hover { color: var(--accent-dark); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255,107,74,.28);
}
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--wide { width: 100%; max-width: 460px; }
.btn--compact { min-height: 56px; padding: 8px 20px; font-size: 14px; box-shadow: none; }
.btn::after {
  content: "";
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.cta-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.cta-note--light { color: rgba(255,255,255,.82); }

.cta-block {
  margin-top: clamp(32px, 6vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(247,247,243,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header__inner {
  width: min(100% - 32px, 1200px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-right: auto;
}
.logo__mark {
  width: 22px; height: 22px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  position: relative;
  flex: 0 0 auto;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.logo__text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--navy);
}

.gnav { display: none; }
.header__cta { display: none; }

.hamburger {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.hamburger__bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- ドロワー ---------- */
.drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(88%, 340px);
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--white);
  border-left: 1px solid var(--line);
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.drawer.is-open { transform: translateX(0); }
.drawer[hidden] { display: block; visibility: hidden; }
.drawer.is-open[hidden] { visibility: visible; }
.drawer__inner { padding: 24px 22px 40px; }
.drawer__title {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 800;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 12px;
}
.drawer__list { border-top: 1px solid var(--line); }
.drawer__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.drawer__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.drawer__cta { width: 100%; margin-top: 24px; }
.drawer__note { margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center; }

.drawer-overlay {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(23,35,59,.42);
  z-index: 98;
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer-overlay.is-open { opacity: 1; }
.drawer-overlay[hidden] { display: block; visibility: hidden; }
.drawer-overlay.is-open[hidden] { visibility: visible; }

/* ---------- ファーストビュー ---------- */
.hero {
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 44px;
  position: relative;
  background:
    radial-gradient(120% 60% at 100% 0%, var(--sub) 0%, rgba(221,233,245,0) 60%),
    var(--bg);
}
.hero__inner { width: min(100% - 32px, 1160px); margin-inline: auto; }
.hero__title {
  margin-top: 16px;
  font-size: clamp(24px, 6.5vw, 52px);
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -.005em;
  color: var(--navy);
}
.hero__num {
  font-family: var(--font-en);
  font-size: 1.16em;
  color: var(--accent);
  padding: 0 2px;
}
.hero__sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}
.hero__action { margin-top: 26px; }
.hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__meta li {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  line-height: 1.5;
}
.hero__visual { margin-top: 32px; position: relative; padding-bottom: 34px; }
.hero__figure {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23,35,59,.16);
}
.hero__figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* 導線図（付箋風カード） */
.flowmap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 6px 6px 0 rgba(23,35,59,.12);
}
.flowmap__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 10px;
}
.flowmap__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 2px;
}
.flowmap__node {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--sub);
  border-radius: 6px;
  padding: 7px 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.flowmap__node::after {
  content: "";
  width: 7px; height: 7px;
  margin-left: 10px;
  margin-right: -2px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}
.flowmap__node:last-child::after { content: none; }
.flowmap__node--goal {
  background: var(--accent);
  color: var(--white);
}

/* ---------- 数字実績 ---------- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: clamp(40px, 9vw, 64px) 0;
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 12px;
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  color: var(--white);
}
.stat__num {
  font-size: clamp(38px, 11vw, 52px);
  color: #FF8E75;
  letter-spacing: -.01em;
  margin-right: 2px;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.stats .note { color: rgba(255,255,255,.7); }

/* ---------- 悩み ---------- */
.worries { display: grid; gap: 14px; }
.worry {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sub);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.worry__num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.5;
  flex: 0 0 auto;
}
.worry__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--navy);
}
.worry__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.85;
  color: #4A515B;
}
.lead-out {
  margin-top: clamp(28px, 6vw, 40px);
  font-size: clamp(17px, 4.6vw, 22px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--navy);
  background: var(--white);
  border: 2px dashed var(--navy);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}

/* ---------- 講座の考え方 ---------- */
.why__text {
  display: grid;
  gap: 16px;
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,.9);
  max-width: 780px;
}
.steps {
  margin-top: clamp(40px, 8vw, 60px);
  margin-left: 17px;
  display: grid;
  gap: 0;
}
.step {
  position: relative;
  padding: 0 0 28px 26px;
  border-left: 2px solid rgba(255,255,255,.28);
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step__num {
  position: absolute;
  left: -17px; top: -4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sub);
  color: var(--navy);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step--goal .step__num { background: var(--accent); color: var(--white); }
.step__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}
.step--goal .step__title { color: #FFB8A6; }
.step__text {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}

/* ---------- 向いている人／向いていない人 ---------- */
.target { display: grid; gap: 20px; }
.target__card {
  border-radius: var(--radius);
  padding: 26px 20px;
}
.target__card--yes { background: var(--sub); }
.target__card--no { background: var(--white); border: 1px solid var(--line); }
.target__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--navy);
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(23,35,59,.15);
}
.check-list, .cross-list { display: grid; gap: 12px; }
.check-list li, .cross-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: .42em;
  width: 13px; height: 7px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}
.cross-list li { color: #4E555F; }
.cross-list li::before,
.cross-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: .82em;
  width: 15px; height: 3px;
  background: #A9AEB6;
}
.cross-list li::before { transform: rotate(45deg); }
.cross-list li::after { transform: rotate(-45deg); }
.check-list--compact li { font-size: 15px; }

/* ---------- 特徴 ---------- */
.features { display: grid; gap: 18px; }
.feature {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 26px 20px;
  border-top: 4px solid var(--accent);
}
.feature__num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--navy);
}
.feature__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

/* ---------- 90日間の内容 ---------- */
.phases { display: grid; gap: 20px; }
.phase {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
}
.phase__label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.phase__no {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  padding: 4px 10px;
}
.phase__day {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: .04em;
}
.phase__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--navy);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.phase__list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}
.phase__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.75;
}
.phase__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 8px; height: 8px;
  background: var(--sub);
  border: 2px solid var(--navy);
  border-radius: 50%;
}
.phase__goal {
  margin-top: 18px;
  background: var(--sub);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.phase__goal-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 9px;
}

/* ---------- サポート ---------- */
.supports { display: grid; gap: 16px; }
.support {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.support__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}
.support__badge {
  margin-top: 8px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(255,107,74,.12);
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1.6;
}
.support__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
}
.support__list {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}
.support__list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.7;
}
.support__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .72em;
  width: 8px; height: 2px;
  background: var(--accent);
}

/* ---------- 受講前後の変化 ---------- */
.ba { display: grid; gap: 14px; align-items: start; }
.ba__col {
  border-radius: var(--radius);
  padding: 24px 20px;
}
.ba__col--before { background: #EDEDE7; border: 1px solid var(--line); }
.ba__col--after { background: var(--navy); color: var(--white); }
.ba__title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #5A626D;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.ba__col--after .ba__title {
  color: #FF8E75;
  border-bottom-color: rgba(255,255,255,.24);
}
.ba__sub {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: inherit;
}
.ba__list { display: grid; gap: 11px; }
.ba__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.8;
}
.ba__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .74em;
  width: 9px; height: 2px;
  background: currentColor;
  opacity: .5;
}
.ba__arrow {
  justify-self: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  padding: 6px 18px;
  position: relative;
}
.ba__arrow::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -9px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--accent);
}

/* ---------- 受講生事例 ---------- */
.cases { display: grid; gap: 18px; }
.case {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.case__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case__photo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid var(--white);
}
.case__name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--navy);
}
.case__result {
  margin-top: 18px;
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.case__result-item {
  flex: 1 1 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}
.case__result-item dt {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
}
.case__result-item dd {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.case__result-item--after {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
}
.case__result-item--after dt { color: rgba(255,255,255,.75); }
.case__result-item--after dd { color: var(--white); }
.case__result-item--after::before {
  content: "";
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border: 6px solid transparent;
  border-left-color: var(--accent);
}
.case__num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 2px;
}
.case__result-item--after .case__num { color: #FF8E75; }
.case__comment {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  padding-left: 16px;
  border-left: 3px solid var(--sub);
}

/* ---------- 料金 ---------- */
.price {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 14px;
  overflow: hidden;
}
.price__main {
  background: var(--navy);
  color: var(--white);
  padding: 28px 22px;
}
.price__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}
.price__amount { margin-top: 16px; }
.price__label {
  display: table;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--sub);
  border-radius: 4px;
  padding: 3px 10px;
  line-height: 1.6;
}
.price__num {
  font-family: var(--font-en);
  font-size: clamp(38px, 11vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: #FF8E75;
}
.price__unit { font-size: 16px; font-weight: 700; }
.price__split {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.price__split strong { color: var(--white); font-size: 17px; }
.price__limit {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 700;
}
.price__limit-label {
  font-size: 12px;
  letter-spacing: .06em;
  background: var(--accent);
  border-radius: 4px;
  padding: 3px 9px;
}
.price__detail { padding: 24px 22px; }
.price__sub {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.price__note {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  background: var(--sub);
  border-radius: var(--radius);
  padding: 18px;
}

/* ---------- 無料相談の内容 ---------- */
.consult {
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.consult__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--navy);
}
.consult__num {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult__copy {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.95;
  max-width: 760px;
}

/* ---------- 講師紹介 ---------- */
.instructor { display: grid; gap: 24px; }
.instructor__figure {
  border-radius: 14px;
  overflow: hidden;
  max-width: 320px;
}
.instructor__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.instructor__role {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
}
.instructor__name {
  margin-top: 4px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
}
.instructor__text {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  font-size: 16px;
  line-height: 1.95;
}
.instructor__facts {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.instructor__facts li {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: var(--sub);
  border-radius: 999px;
  padding: 7px 14px;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 46px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--navy);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q";
  position: absolute;
  left: 18px; top: 17px;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 20px; top: 25px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); top: 28px; }
.faq__a {
  position: relative;
  padding: 0 20px 20px 46px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
}
.faq__a::before {
  content: "A";
  position: absolute;
  left: 18px; top: 0;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

/* ---------- 最終CTA ---------- */
.final {
  background: var(--navy);
  color: var(--white);
  padding: clamp(64px, 13vw, 104px) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.final__inner { position: relative; text-align: center; display: grid; justify-items: center; }
.final__inner .eyebrow { justify-content: center; }
.final__title {
  margin-top: 8px;
  font-size: clamp(22px, 5.8vw, 38px);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: -.01em;
}
.final__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,.88);
  max-width: 620px;
}
.final__inner .btn { margin-top: 30px; }

/* ---------- フッター ---------- */
.footer {
  background: #101A2E;
  color: rgba(255,255,255,.78);
  padding: 44px 0 40px;
}
.footer__logo {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
}
.footer__disclaimer {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.9;
}
.footer__links {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.footer__links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}
.footer__links a:hover { color: #FF8E75; }
.footer__copy {
  margin-top: 26px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
}

/* ---------- スマホ固定CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(23,35,59,.1);
  transition: transform .25s ease, opacity .25s ease;
}
.sticky-cta .btn { width: 100%; min-height: 56px; font-size: 16px; }
.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* ---------- フェードイン ---------- */
.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================
   タブレット
   ========================================= */
@media (min-width: 600px) {
  .stats__list { grid-template-columns: repeat(4, 1fr); }
  .flowmap__list { flex-wrap: nowrap; }
  .flowmap__node { font-size: 14px; padding: 8px 12px; }
  .target { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .cases { grid-template-columns: repeat(3, 1fr); }
  .supports { grid-template-columns: repeat(2, 1fr); }
  .worry { padding: 24px; gap: 18px; }
  .worry__num { font-size: 24px; }
  .instructor { grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
  .instructor__figure { max-width: none; }
  .consult { grid-template-columns: 1fr 1fr; max-width: none; }
}

/* =========================================
   PC
   ========================================= */
@media (min-width: 900px) {
  :root { --header-h: 82px; }

  body { padding-bottom: 0; }

  .gnav { display: block; }
  .gnav__list { display: flex; gap: 24px; }
  .gnav__list a {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    white-space: nowrap;
  }
  .gnav__list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
  }
  .gnav__list a:hover::after { transform: scaleX(1); }
  .header__cta { display: inline-flex; margin-left: 8px; }
  .hamburger { display: none; }
  .drawer, .drawer-overlay { display: none !important; }
  .sticky-cta { display: none; }
  .logo__text { font-size: 17px; }

  .hero {
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: 88px;
  }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero__title {
    font-size: clamp(28px, 3.2vw, 40px);
    letter-spacing: -.015em;
    line-height: 1.55;
  }
  .hero__visual { margin-top: 0; padding-bottom: 0; }
  .hero__figure img { aspect-ratio: 4 / 3; }
  .flowmap {
    bottom: -28px;
    width: calc(100% - 32px);
  }
  .hero__sub { font-size: 17px; }
  .btn--wide { max-width: 400px; }

  /* 5段階の導線図を横並びに */
  .steps { grid-template-columns: repeat(5, 1fr); margin-left: 0; }
  .step {
    padding: 40px 18px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(255,255,255,.28);
  }
  .step:last-child { border-top-color: var(--accent); padding-bottom: 0; }
  .step__num { left: 0; top: -17px; }

  .supports { grid-template-columns: repeat(3, 1fr); }
  .phases { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .phase { padding: 28px 24px; }

  .ba {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .ba__col { padding: 30px 26px; }
  .ba__arrow { align-self: center; }
  .ba__arrow::after {
    left: auto; bottom: auto;
    right: -9px; top: 50%;
    transform: translateY(-50%);
    border-top-color: transparent;
    border-left-color: var(--accent);
  }

  .price { display: grid; grid-template-columns: 1.05fr 1fr; }
  .price__main { padding: 40px 36px; }
  .price__detail { padding: 40px 36px; }
  .price__name { font-size: 21px; }
  .check-list--compact { grid-template-columns: 1fr 1fr; }

  .why__text { font-size: 17px; }
  .instructor { grid-template-columns: 360px 1fr; gap: 52px; }
  .instructor__name { font-size: 30px; }

  .faq__q { padding: 22px 60px 22px 52px; font-size: 17px; }
  .faq__a { padding: 0 24px 24px 52px; font-size: 16px; }
}

@media (min-width: 1100px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 72px; }
}
.sample-ribbon{position:fixed;z-index:9999;left:18px;bottom:18px;display:flex;align-items:center;gap:14px;padding:10px 14px;border-radius:999px;background:#202735;color:#fff;box-shadow:0 10px 28px rgba(0,0,0,.2);font-family:"Noto Sans JP",sans-serif;font-size:11px}
.sample-ribbon a{color:#fff;text-decoration:none;opacity:.78}.sample-ribbon a:hover{opacity:1}
.is-embed .sample-ribbon{display:none}
@media(max-width:600px){.sample-ribbon{left:10px;bottom:84px;padding:8px 11px;font-size:9px}}
