@charset "UTF-8";
/* ==========================================================================
   Java Basic / Advance 2026 — java.piece-ful.com
   既存LP（/lp app/globals.css）のビジュアルを踏襲:
     インク地 #171612 × アンバー #efae34 × 生成り #f5f1e8 /
     明朝見出し × mono ラベル / ハードシャドウ / 1px罫線グリッド
   可読性のため変更した点:
     1. 游ゴシック依存 → Noto Sans JP + Shippori Mincho（Windowsで細く潰れるため）
     2. 見出しの字詰め -.045em → -.01em（和文の強い詰めは可読性を落とす）
     3. 本文の行長を全角40〜45字に制限
     4. hero の min-height 固定を廃止（スマホでの間延びを回避）
     5. 非対称インデント（margin-left:28%）を廃止
   ========================================================================== */

/* --------------------------------------------------- tokens */
:root {
  color-scheme: light;

  --ink: #171612;
  --ink-2: #211f1a;
  --ink-3: #2b2922;
  --paper: #f5f1e8;
  --paper-deep: #e9e2d3;
  --white: #fffdf8;

  --amber: #efae34;
  --amber-light: #ffd675;
  --amber-deep: #8f5d04;      /* 生成り地の上で AA を満たすアンバー */
  --amber-shadow: #6d501c;

  --muted: #5b5548;
  --muted-2: #756f63;
  --on-ink: #d5cfc2;
  --on-ink-2: #97917f;

  --line-dark: rgba(23, 22, 18, .16);
  --line-soft: rgba(23, 22, 18, .09);
  --line: rgba(245, 241, 232, .18);

  --f-min: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --f-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --f-mono: ui-monospace, SFMono-Regular, "SF Mono", Consolas, monospace;

  --pad: clamp(20px, 6vw, 110px);
  --max: 1160px;
}

/* --------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: .01em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.45; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
:focus-visible { outline: 3px solid var(--amber-deep); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.measure { max-width: 43em; }

/* 共通ラベル */
.eyebrow {
  font: 700 11.5px/1.4 var(--f-mono);
  letter-spacing: .18em;
  color: var(--amber-deep);
  text-transform: uppercase;
}
.hero .eyebrow, .final .eyebrow { color: var(--amber); }

.h2 {
  margin-top: 18px;
  font-family: var(--f-min);
  font-weight: 700;
  font-size: clamp(27px, 4.2vw, 48px);
  line-height: 1.5;
  letter-spacing: -.01em;
}
.lead {
  margin-top: 22px;
  max-width: 43em;
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  color: var(--muted);
}
.lead b, .lead strong { color: var(--ink); font-weight: 700; }
mark {
  color: inherit;
  background: linear-gradient(transparent 62%, rgba(239, 174, 52, .55) 62%);
}

.sec { padding-block: clamp(62px, 9vw, 128px); }
.sec + .sec { border-top: 1px solid var(--line-soft); }
.sec-head { max-width: 46em; }

/* --------------------------------------------------- header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-inline: var(--pad);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1.1; }
.brand-mark {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--amber);
  color: var(--amber);
  font: 700 19px/1 Georgia, serif;
}
.brand strong { display: block; font: 600 16px/1.1 Georgia, serif; letter-spacing: .04em; }
.brand small {
  display: block; margin-top: 5px;
  font: 400 9.5px/1 var(--f-mono);
  letter-spacing: .16em; color: var(--on-ink-2); text-transform: uppercase;
}
.site-nav { display: flex; gap: 28px; font-size: 13.5px; color: var(--on-ink); }
.site-nav a { padding-block: 4px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.site-nav a:hover { color: var(--white); border-color: var(--amber); }
.header-cta { font-size: 13.5px; font-weight: 700; color: var(--amber-light); }
.header-cta:hover { color: var(--white); }
@media (max-width: 900px) { .site-nav { display: none; } }
@media (max-width: 560px) { .header-cta { display: none; } .site-header { height: 72px; } }

/* --------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49.92%, rgba(255, 255, 255, .035) 50%),
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 64px, auto;
}
.hero::after {
  content: "{ }";
  position: absolute;
  right: -3vw; bottom: -14%;
  font: 700 clamp(200px, 26vw, 430px)/1 Georgia, serif;
  color: rgba(255, 255, 255, .022);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: clamp(120px, 16vw, 168px) clamp(56px, 8vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .68fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero h1 {
  margin: 26px 0 0;
  font-family: var(--f-min);
  font-weight: 700;
  font-size: clamp(33px, 5.6vw, 66px);
  line-height: 1.32;
  letter-spacing: -.012em;
}
/* 和文が語中で折り返さないよう、強調句は一塊で改行させる */
.hero h1 em { font-style: normal; color: var(--amber-light); white-space: nowrap; }
.hero-lead {
  margin-top: 28px;
  max-width: 34em;
  font-size: clamp(15.5px, 1.35vw, 18px);
  line-height: 2.05;
  color: var(--on-ink);
}
.hero-lead strong { color: var(--white); font-weight: 700; }

.proof {
  margin-top: 30px;
  max-width: 40em;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, .035);
}
.proof strong {
  display: block;
  font-family: var(--f-min);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.6;
  letter-spacing: -.01em;
  color: var(--amber-light);
}
.proof-sub { display: block; margin-top: 10px; font-size: clamp(14px, 1.35vw, 15.5px); line-height: 1.85; color: var(--paper); }
.proof small { display: block; margin-top: 12px; font-size: 12px; line-height: 1.8; color: var(--on-ink-2); }

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 14px 28px;
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  border: 0; cursor: pointer;
}
.btn-primary {
  background: var(--amber); color: var(--ink);
  box-shadow: 7px 7px 0 var(--amber-shadow);
  transition: transform .18s, box-shadow .18s;
}
.btn-primary:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--amber-shadow); }
.btn-line {
  padding: 0 0 4px; min-height: 0;
  border-bottom: 1px solid #7a7466; color: var(--on-ink); font-size: 14px;
  transition: color .2s, border-color .2s;
}
.btn-line:hover { color: var(--white); border-color: var(--amber); }
.hero-note { margin-top: 18px; font-size: 12.5px; color: var(--on-ink-2); }

/* hero 右：3つの道のスタック */
.hero-panel {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(31, 29, 24, .92);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, .22);
}
.panel-label {
  display: flex; justify-content: space-between; gap: 12px;
  font: 700 10px/1 var(--f-mono); letter-spacing: .14em; color: #857e6e;
}
.role-card { margin-top: 20px; padding: 15px 18px; border: 1px solid #49453b; background: var(--ink-2); }
.role-card p { font: 400 11.5px/1.4 var(--f-mono); color: #8c8575; }
.role-card strong { display: block; margin-top: 4px; font-size: 16.5px; }
.role-card--accent { border-color: var(--amber); background: #2c2518; color: var(--amber-light); }
.role-link { height: 22px; display: grid; place-items: center; }
.role-link span { width: 1px; height: 22px; background: #504b40; }
.panel-caption {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; line-height: 1.85; color: var(--on-ink-2);
}
@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 42px; }
  .hero::after { bottom: auto; top: 58%; opacity: .7; }
}

/* --------------------------------------------------- quick facts */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.facts > div {
  padding: 26px clamp(16px, 2.6vw, 36px);
  border-right: 1px solid var(--line-dark);
}
.facts > div:last-child { border-right: 0; }
.facts dt { font: 700 10px/1 var(--f-mono); letter-spacing: .16em; color: var(--muted-2); }
.facts dd { margin: 10px 0 0; font-size: clamp(15px, 1.5vw, 17px); font-weight: 700; line-height: 1.55; }
.facts dd em { font-style: normal; color: var(--amber-deep); }
@media (max-width: 820px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts > div:nth-child(2n) { border-right: 0; }
  .facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}

/* --------------------------------------------------- 01 課題 */
.voices { margin-top: 40px; border-top: 1px solid var(--line-dark); }
.voices li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--f-min);
  font-size: clamp(17px, 2.1vw, 23px);
  line-height: 1.85;
}
.voices li::before {
  content: "「";
  position: absolute; left: 0; top: 18px;
  color: var(--amber-deep); font-family: var(--f-min); font-size: 1.15em;
}
.turn {
  margin-top: 34px;
  padding: 22px 26px;
  background: var(--white);
  border-left: 3px solid var(--ink);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 700;
  max-width: 44em;
}

/* --------------------------------------------------- 02 共通土台 */
.base { margin-top: 44px; border: 1px solid var(--line-dark); background: var(--white); }
.base > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4px 28px;
  align-items: baseline;
  padding: 22px clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line-dark);
}
.base > div:last-child { border-bottom: 0; }
.base h3 { font-size: 17px; }
.base h3 span {
  display: block; margin-top: 4px;
  font: 400 10px/1 var(--f-mono); letter-spacing: .14em; color: var(--muted-2);
}
.base p { color: var(--muted); font-size: 15.5px; }
.base p b { color: var(--ink); font-weight: 700; }
.base p b::before { content: ""; }
@media (max-width: 720px) { .base > div { grid-template-columns: 1fr; gap: 8px; } }

.why { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why article { border-top: 2px solid var(--ink); padding-top: 16px; }
.why h4 { font-size: 16px; line-height: 1.7; }
.why p { margin-top: 10px; font-size: 14.5px; line-height: 1.95; color: var(--muted); }
@media (max-width: 800px) { .why { grid-template-columns: 1fr; gap: 26px; } }

/* --------------------------------------------------- 03 3つの道 */
.roles { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}
.role--escort { border-color: var(--amber-deep); background: #fffaef; box-shadow: 8px 8px 0 rgba(239, 174, 52, .18); }
.role .tag {
  align-self: flex-start;
  padding: 5px 10px;
  border: 1px solid var(--amber-deep);
  color: var(--amber-deep);
  font: 700 10.5px/1 var(--f-mono); letter-spacing: .1em;
}
.role-h b { display: block; font-family: var(--f-min); font-size: 21px; line-height: 1.5; }
.role-h span { display: block; margin-top: 6px; font-size: 12.5px; line-height: 1.7; color: var(--muted-2); }
.role dl { display: grid; gap: 16px; }
.role dt { font: 700 10.5px/1 var(--f-mono); letter-spacing: .13em; color: var(--muted-2); }
.role dd { margin: 7px 0 0; font-size: 14.5px; line-height: 1.95; color: var(--muted); }
@media (max-width: 900px) { .roles { grid-template-columns: 1fr; } }

.roles-note {
  margin-top: 32px; max-width: 46em;
  padding-left: 20px; border-left: 3px solid var(--amber-deep);
  font-size: 15.5px; color: var(--muted);
}
.roles-note b { color: var(--ink); font-weight: 700; }

.honesty { margin-top: 34px; padding: 26px 28px; border: 1px solid var(--line-dark); }
.honesty h3 { font-size: 16px; }
.honesty ul { margin-top: 14px; display: grid; gap: 8px; }
.honesty li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--muted); }
.honesty li::before { content: "×"; position: absolute; left: 0; font-weight: 700; color: #a8452b; }

/* --------------------------------------------------- 04 学び方 */
.method { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); background: var(--white); }
.method > div { padding: 26px 22px; border-right: 1px solid var(--line-dark); }
.method > div:last-child { border-right: 0; }
.method h4 { font-size: 16px; }
.method p { margin-top: 10px; font-size: 14px; line-height: 1.95; color: var(--muted); }
@media (max-width: 900px) {
  .method { grid-template-columns: repeat(2, 1fr); }
  .method > div:nth-child(2n) { border-right: 0; }
  .method > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
}
@media (max-width: 520px) {
  .method { grid-template-columns: 1fr; }
  .method > div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .method > div:last-child { border-bottom: 0; }
}

/* --------------------------------------------------- 05 日程（主役） */
.legend { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 13.5px; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.chip { flex: none; width: 10px; height: 10px; background: var(--ink); }
.chip--alt { background: var(--amber-deep); }
.chip--rev { background: var(--ink); transform: rotate(45deg); }

.cal { width: 100%; margin-top: 18px; border-collapse: collapse; background: var(--white); }
.cal caption { text-align: left; font-size: 12.5px; color: var(--muted-2); padding-bottom: 10px; }
.cal th, .cal td { text-align: left; vertical-align: baseline; padding: 14px 12px; border-bottom: 1px solid var(--line-soft); }
.cal thead th {
  padding-block: 12px;
  border-bottom: 2px solid var(--ink);
  font: 700 10.5px/1 var(--f-mono); letter-spacing: .14em; color: var(--muted-2);
}
.cal .c-no { width: 56px; font: 400 13px/1.6 var(--f-mono); color: var(--muted-2); font-variant-numeric: tabular-nums; }
.cal .c-date { width: 148px; font: 500 15.5px/1.6 var(--f-mono); font-variant-numeric: tabular-nums; }
.cal .c-date i { font-style: normal; margin-left: 3px; font-size: 13px; color: var(--muted); }
.cal .c-theme { font-size: 14.5px; line-height: 1.85; }
.cal .c-theme em { display: block; margin-top: 4px; font-style: normal; font-size: 12.5px; color: var(--amber-deep); }
.cal .c-ls { width: 78px; text-align: right; font: 400 12px/1.6 var(--f-mono); color: var(--muted-2); }
.cal tr.is-alt { background: #fdf6e6; }
.cal tr.is-alt .c-date, .cal tr.is-alt .c-date i { color: var(--amber-deep); font-weight: 700; }
.cal tr.is-review { background: var(--paper-deep); }
.cal tr.is-review .c-theme, .cal tr.is-last .c-theme { font-weight: 700; }
.cal tr:last-child td { border-bottom: 2px solid var(--ink); }

@media (max-width: 760px) {
  .cal, .cal tbody, .cal tr, .cal td { display: block; width: auto; }
  .cal thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .cal tr { padding: 14px 14px; border-bottom: 1px solid var(--line-soft); }
  .cal td { padding: 0; border: 0; }
  .cal .c-no { display: inline-block; width: auto; margin-right: 12px; }
  .cal .c-date { display: inline-block; width: auto; }
  .cal .c-theme { margin-top: 6px; color: var(--muted); }
  .cal .c-ls { width: auto; text-align: left; margin-top: 4px; }
  .cal tr:last-child td { border-bottom: 0; }
  .cal tr:last-child { border-bottom: 2px solid var(--ink); }
}

.notes { margin-top: 30px; display: grid; gap: 12px; max-width: 48em; }
.notes li { position: relative; padding-left: 22px; font-size: 13.5px; line-height: 1.95; color: var(--muted); }
.notes li::before { content: "※"; position: absolute; left: 0; color: var(--muted-2); }
.notes li b { color: var(--ink); font-weight: 700; }

.next { margin-top: 36px; padding: 26px 28px; border: 1px solid var(--line-dark); background: var(--white); }
.next h3 { font-size: 16px; }
.next dl { margin-top: 16px; display: grid; gap: 12px; }
.next dl > div { display: grid; grid-template-columns: 116px 1fr; gap: 4px 20px; }
.next dt { font: 700 10.5px/1 var(--f-mono); letter-spacing: .12em; color: var(--muted-2); padding-top: 7px; }
.next dd { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (max-width: 560px) { .next dl > div { grid-template-columns: 1fr; } }

/* --------------------------------------------------- 06 受講料 */
.price { margin-top: 44px; display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 34px; align-items: start; }
.price-card { padding: 30px 28px; border: 1px solid var(--ink); background: var(--white); box-shadow: 9px 9px 0 var(--paper-deep); }
.price-card .tagline { font: 700 10.5px/1 var(--f-mono); letter-spacing: .14em; color: var(--muted-2); }
.price-card .was { margin-top: 14px; font: 400 13.5px/1 var(--f-mono); color: var(--muted-2); text-decoration: line-through; }
.price-card .now { margin-top: 8px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price-card .now b { font: 500 clamp(34px, 5vw, 46px)/1 var(--f-mono); letter-spacing: -.02em; color: var(--ink); }
.price-card .now span { font-size: 13.5px; color: var(--muted); }
.price-card .now em { font-style: normal; display: block; width: 100%; margin-top: 6px; font-size: 12.5px; color: var(--amber-deep); font-weight: 700; }
.price-card ul { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-dark); display: grid; gap: 8px; }
.price-card li { position: relative; padding-left: 18px; font-size: 14px; color: var(--muted); }
.price-card li::before { content: "—"; position: absolute; left: 0; color: var(--muted-2); }

.price-side { display: grid; gap: 22px; }
.price-side h3 { font-size: 16.5px; }
.price-side p { margin-top: 8px; font-size: 14.5px; line-height: 2; color: var(--muted); }
.price-side p b { color: var(--ink); font-weight: 700; }

/* 収入事例の内訳（concept.md §12 の開示項目） */
.case {
  margin-top: 16px;
  display: grid; gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.case > div {
  display: grid; grid-template-columns: 76px 1fr; gap: 4px 16px;
  padding: 12px 16px; background: var(--white);
}
.case dt { font: 700 10.5px/1 var(--f-mono); letter-spacing: .12em; color: var(--muted-2); padding-top: 6px; }
.case dd { margin: 0; font-size: 14px; line-height: 1.8; color: var(--muted); }
.case-note { margin-top: 12px; font-size: 12px; line-height: 1.9; color: var(--muted-2); }
@media (max-width: 560px) { .case > div { grid-template-columns: 1fr; } }
.price-side .disc { padding: 20px 22px; border: 1px dashed var(--line-dark); font-size: 13px; line-height: 2; color: var(--muted); }
.disc b { color: var(--ink); font-weight: 700; }
.disc a { color: var(--amber-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 860px) { .price { grid-template-columns: 1fr; } }

/* --------------------------------------------------- 07 講師 */
.prof { margin-top: 44px; display: grid; grid-template-columns: 232px 1fr; gap: 40px; align-items: start; }
.prof-photo {
  margin: 0 0 26px;
  position: relative;
  width: 100%;
}
/* 楕円の後ろに、サイト共通の「フラットなオフセット影」を楕円形で敷く */
.prof-photo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  transform: translate(9px, 9px);
  background: var(--paper-deep);
  border-radius: 50%; /* 縦長の箱に適用すると縦楕円になる */
  z-index: 0;
}
.prof-photo img {
  position: relative; z-index: 1;
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: 50% 22%;
  border-radius: 50%; /* 縦楕円にトリミング（画像そのものは拡大しない） */
  border: 1px solid var(--ink);
  background: var(--white);
}
.prof-photo figcaption {
  position: static;
  display: block;
  margin-top: 22px;
  text-align: center;
  font: 700 10px/1 var(--f-mono); letter-spacing: .16em; color: var(--muted-2);
}
.prof-body h3 { font-family: var(--f-min); font-size: 23px; }
.prof-body h3 span { margin-left: 12px; font-family: var(--f-sans); font-size: 13px; font-weight: 400; color: var(--muted); }
.prof-body p { margin-top: 16px; font-size: 15px; color: var(--muted); }
.stats { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-dark); background: var(--white); }
.stats > div { padding: 18px 20px; border-right: 1px solid var(--line-dark); }
.stats > div:last-child { border-right: 0; }
.stats b { display: block; font: 500 clamp(20px, 2.8vw, 27px)/1.3 var(--f-mono); }
.stats span { font-size: 12px; color: var(--muted-2); }
.prof-note { margin-top: 14px; font-size: 12.5px; line-height: 1.9; color: var(--muted-2); }
@media (max-width: 680px) {
  .prof { grid-template-columns: 1fr; gap: 24px; }
  .prof-photo { max-width: 190px; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .stats > div:last-child { border-bottom: 0; }
}

/* --------------------------------------------------- 08 適性 */
.fit { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit > div { padding: 28px 26px; border: 1px solid var(--line-dark); background: var(--white); }
.fit .yes { border-top: 3px solid #2f6b4a; }
.fit .no { border-top: 3px solid #a8452b; }
.fit h3 { font-size: 16.5px; }
.fit ul { margin-top: 16px; display: grid; gap: 10px; }
.fit li { position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.9; color: var(--muted); }
.fit .yes li::before { content: "○"; position: absolute; left: 0; top: 2px; font-size: 12px; color: #2f6b4a; }
.fit .no li::before { content: "×"; position: absolute; left: 0; font-weight: 700; color: #a8452b; }
@media (max-width: 800px) { .fit { grid-template-columns: 1fr; } }

/* --------------------------------------------------- 09 FAQ */
.faq { margin-top: 38px; border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  position: relative;
  list-style: none; cursor: pointer;
  padding: 20px 40px 20px 0;
  font-size: 15.5px; font-weight: 700; line-height: 1.8;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 18px;
  font: 400 20px/1 var(--f-mono); color: var(--amber-deep);
}
.faq details[open] summary::after { content: "−"; }
.faq details > p { max-width: 50em; padding: 0 0 22px; font-size: 14.5px; line-height: 2.05; color: var(--muted); }

/* --------------------------------------------------- 最終CTA */
.final {
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 64px, auto;
}
.final-inner { padding-block: clamp(64px, 9vw, 118px); }
.final h2 {
  margin-top: 18px;
  font-family: var(--f-min);
  font-size: clamp(26px, 4.2vw, 46px);
  line-height: 1.5; letter-spacing: -.01em;
}
.final p.final-lead { margin-top: 24px; max-width: 40em; font-size: 15.5px; line-height: 2.05; color: var(--on-ink); }
.steps { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.steps > div { padding: 22px 24px; border-right: 1px solid var(--line); }
.steps > div:last-child { border-right: 0; }
.steps b { display: block; font: 700 10.5px/1 var(--f-mono); letter-spacing: .16em; color: var(--amber); }
.steps p { margin-top: 10px; font-size: 14px; line-height: 1.9; color: var(--on-ink); }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .steps > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps > div:last-child { border-bottom: 0; }
}
.final .hero-actions { margin-top: 36px; }

/* 申込フォーム差し替え枠（フォームURL確定後に削除） */
.pending {
  margin-top: 30px; max-width: 46em;
  padding: 18px 22px;
  border: 1px dashed var(--amber);
  color: var(--amber-light);
  font-size: 13px; line-height: 1.9;
}
.pending code { font-family: var(--f-mono); font-size: 12px; color: var(--white); }

/* --------------------------------------------------- footer */
.site-footer { padding-block: 40px; border-top: 1px solid var(--line-soft); }
.site-footer .org { font: 700 10.5px/1 var(--f-mono); letter-spacing: .16em; color: var(--muted); }
.site-footer p.notes-footer { margin-top: 14px; font-size: 12.5px; line-height: 2; color: var(--muted-2); }
.site-footer .copy { margin-top: 20px; font: 400 11px/1 var(--f-mono); color: var(--muted-2); }

/* --------------------------------------------------- 本文の文字サイズ（デスクトップ拡大）
   見出し・mono表記・ラベル類（dt, 回数バッジ, キャプション等）はそのまま。
   段落として読ませる本文だけを、PC幅で明確に大きくする。 */
@media (min-width: 860px) {
  .hero-lead { font-size: 20px; }
  .proof-sub { font-size: 17.5px; }
  .panel-caption { font-size: 14.5px; }

  .lead { font-size: 20px; }
  .base p { font-size: 19px; }
  .why p { font-size: 17.5px; }

  .role dd { font-size: 17.5px; }
  .roles-note { font-size: 19px; }
  .honesty li { font-size: 17px; }

  .method p { font-size: 17px; }

  .cal .c-theme { font-size: 16.5px; }
  .cal .c-theme em { font-size: 14px; }
  .notes li { font-size: 16px; }
  .next dd { font-size: 17.5px; }

  .price-card li { font-size: 16.5px; }
  .price-side p { font-size: 17.5px; }
  .case dd { font-size: 16.5px; }
  .case-note { font-size: 14px; }
  .price-side .disc { font-size: 15.5px; }

  .prof-body p { font-size: 18.5px; }

  .fit li { font-size: 17.5px; }

  .faq details > p { font-size: 17.5px; }

  .final p.final-lead { font-size: 19px; }
  .steps p { font-size: 16.5px; }

  .site-footer p.notes-footer { font-size: 14px; }
}

/* --------------------------------------------------- 2カラム比較グリッド（Advance対象者・講座比較で使用） */
.programs { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .programs { grid-template-columns: 1fr; } }

/* --------------------------------------------------- テキストリンク */
.text-link {
  display: inline-block; margin-top: 18px;
  font-size: 14px; font-weight: 700;
  color: var(--amber-deep);
  border-bottom: 1px solid var(--amber-deep);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }

@media (min-width: 860px) {
  .text-link { font-size: 15.5px; }
}
