:root {
  --bg: #0b0b0c;
  --surface: #141416;
  --surface-2: #1d1d21;
  --text: #f2f2ef;
  --muted: #9b9ba3;
  --line: #2a2a30;
  --accent: #4f8df7;
  --accent-strong: #2f6fe0;
  --accent-2: #8db6fa;
  --accent-ink: #ffffff;
  --accent-soft: rgba(79, 141, 247, .12);
  --run: #2ec4ae;
  --run-soft: rgba(46, 196, 174, .12);
  --station: #4f8df7;
  --rox: #6b6b75;
  --paper: #f4f2ed;      /* イラストを置く明るい台紙（線画が黒地で消えないように） */
  --ink: #1f2430;        /* 台紙の上の線・文字 */
  --body-2: #c9c9d0;     /* 本文の少し弱い色 */
  --radius: 14px;
  --maxw: 1040px;
  --display: "Barlow Condensed", "Noto Sans JP", sans-serif;
  --serif: "Cormorant Garamond", "Noto Serif JP", serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.85;
  font-size: 16px;
}
a { color: var(--accent); }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 11, 12, .88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 16px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none; font-weight: 700; font-size: 15px; letter-spacing: .08em;
}
.logo .mark {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid var(--accent); color: var(--accent); border-radius: 50%;
  font-family: var(--display); font-weight: 500; font-size: 16px;
}
.nav { display: flex; gap: 2px; flex-wrap: wrap; margin-left: auto; }
.nav a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: .06em;
  padding: 6px 12px; border-radius: 6px; position: relative;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 1px; background: var(--accent);
}

/* ---------- hero ---------- */
.hero-band {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(255, 255, 255, .06), transparent 60%),
    repeating-linear-gradient(-58deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 22px),
    var(--bg);
}
/* 右側の斜めの青い帯（共有画像と同じモチーフ） */
.hero-band::before {
  content: ""; position: absolute; top: -40px; bottom: -40px; right: -120px; width: 300px;
  background: var(--accent-strong); transform: skewX(-20deg); opacity: .9;
}
.hero-band::after {
  content: ""; position: absolute; top: -40px; bottom: -40px; right: 230px; width: 14px;
  background: var(--accent-strong); transform: skewX(-20deg);
}
.hero-band .inner { max-width: var(--maxw); margin: 0 auto; padding: 88px 16px 64px; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 500; letter-spacing: .28em; font-size: 12px;
  color: var(--accent); text-transform: uppercase; margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); }
.hero-band h1 {
  font-size: clamp(30px, 6vw, 54px); line-height: 1.3; font-weight: 700; margin: 0 0 22px; letter-spacing: .02em;
}
.hero-band h1 .hl {
  white-space: nowrap;
  font-weight: 700;
  color: var(--accent);
}
.hero-band .lead { color: var(--body-2); max-width: 38em; margin: 0; font-size: 17px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px; }
.hero-stats div { border-left: 1px solid var(--accent); padding-left: 14px; }
.hero-stats b { display: block; font-family: var(--display); font-size: 42px; line-height: 1; font-weight: 800; font-style: italic; letter-spacing: .02em; }
.hero-stats span { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .14em; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- layout ---------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 32px 16px 72px; }
h2 {
  font-size: clamp(21px, 3.6vw, 28px); line-height: 1.45; font-weight: 700; margin: 88px 0 22px; letter-spacing: .03em;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
h2 .en {
  font-family: var(--display); font-size: 12px; letter-spacing: .28em; color: var(--accent); font-weight: 500;
  text-transform: uppercase; order: -1; width: 100%; margin-bottom: -6px;
}
h3 { font-size: 17px; margin: 28px 0 8px; font-weight: 700; letter-spacing: .02em; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card h3 { margin-top: 0; }
.card .num-badge {
  font-family: var(--display); font-weight: 300; font-size: 44px; line-height: 1; color: var(--accent); display: block; margin-bottom: 10px;
}

.link-card {
  text-decoration: none; color: var(--text); display: block; position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.link-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom; transition: transform .2s;
}
.link-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.link-card:hover::before { transform: scaleY(1); }
.link-card .go { color: var(--accent); font-weight: 500; font-size: 13px; font-family: var(--display); letter-spacing: .2em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 14px; letter-spacing: .06em; padding: 14px 26px; border: 0; border-radius: 2px;
  background: var(--accent-strong); color: var(--accent-ink); cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--accent); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid #3a3a42; box-shadow: none; }
.btn.ghost:hover { border-color: var(--text); background: transparent; }

/* ---------- course ---------- */
.course {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 22px 0;
}
.leg {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 16px 18px; min-height: 150px;
  position: relative; overflow: hidden;
}
.leg .run-tag {
  font-family: var(--display); font-size: 11px; letter-spacing: .12em; color: var(--run); font-weight: 600;
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.leg .run-tag::after { content: ""; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--run) 0 6px, transparent 6px 10px); opacity: .7; }
.leg .no {
  position: absolute; right: 10px; bottom: -6px; font-family: var(--display); font-weight: 300; font-size: 56px;
  line-height: 1; color: rgba(255, 255, 255, .06);
}
.leg svg { width: 36px; height: 36px; margin: 6px 0 10px; color: var(--accent); display: block; margin-bottom: 6px; }
.leg .st-name { font-size: 13px; font-weight: 700; line-height: 1.4; display: block; }
.leg .st-dist { font-family: var(--display); font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.leg.finish { background: transparent; border-color: var(--accent); color: var(--accent); display: grid; place-items: center; text-align: center; }
.leg.finish b { font-family: var(--display); font-size: 26px; font-weight: 500; letter-spacing: .2em; line-height: 1; }
.leg.finish span { font-size: 12px; font-weight: 500; }

/* ---------- station detail ---------- */
.station {
  display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 12px;
}
.station .ic {
  width: 76px; height: 76px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(79,141,247,.3); display: grid; place-items: center; position: relative;
}
.station .ic svg { width: 42px; height: 42px; color: var(--accent); }
.station .ic .n {
  position: absolute; top: -8px; left: -8px; background: var(--bg); color: var(--accent); border: 1px solid var(--accent);
  font-family: var(--display); font-weight: 500; font-size: 14px; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
}
.station h3 { margin: 0 0 4px; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.station h3 small { font-family: var(--display); color: var(--accent); font-size: 16px; font-weight: 400; letter-spacing: .08em; }
.station p { margin: 0; color: var(--body-2); font-size: 15px; }
.station .tip { margin-top: 10px; font-size: 13px; color: var(--muted); }
.station .tip b { color: var(--accent-2); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
th {
  background: transparent; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .14em;
}
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, .03); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--display); letter-spacing: .03em; }

/* ---------- tool ---------- */
.tool {
  background: var(--surface);
  border: 1px solid var(--line); border-top: 1px solid var(--accent);
  border-radius: var(--radius); padding: 24px;
}
.tabs { display: flex; gap: 6px; margin-bottom: 22px; flex-wrap: wrap; }
.tabs button {
  font: inherit; font-size: 13px; font-weight: 700; letter-spacing: .04em; padding: 9px 16px; border-radius: 2px;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--muted); cursor: pointer;
}
.tabs button:hover { color: var(--text); }
.tabs button[aria-selected="true"] { background: var(--accent-strong); color: #fff; border-color: var(--accent-strong); }
.panel[hidden] { display: none; }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 18px; }
label { display: block; font-size: 12px; font-weight: 500; letter-spacing: .06em; color: var(--muted); margin-bottom: 6px; }
select, input {
  font: inherit; width: 100%; padding: 11px 12px; border-radius: 8px;
  border: 1px solid #34343b; background: #0f0f11; color: var(--text);
}
input:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.time-input { display: flex; align-items: center; gap: 6px; }
.time-input input { max-width: 84px; text-align: center; font-family: var(--display); font-size: 20px; padding: 8px 6px; }
.time-input span { color: var(--muted); font-size: 13px; white-space: nowrap; }

.result { margin-top: 24px; }
.result-label { font-family: var(--display); letter-spacing: .16em; font-size: 12px; color: var(--muted); }
.big-time {
  font-family: var(--display); font-size: clamp(52px, 12vw, 84px); font-weight: 300; line-height: 1;
  color: var(--accent); letter-spacing: .02em; font-variant-numeric: tabular-nums; margin: 4px 0 6px;
}
.summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; margin: 16px 0; }
.stat { background: var(--surface-2); border-radius: 10px; padding: 12px 14px; }
.stat .k { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .08em; }
.stat .v { font-family: var(--display); font-size: 28px; font-weight: 400; font-variant-numeric: tabular-nums; }

.bar { display: flex; height: 14px; border-radius: 4px; overflow: hidden; margin: 14px 0 8px; gap: 2px; }
.bar div { height: 100%; }
.legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 6px; vertical-align: -1px; }

.split-row.run td:first-child { color: var(--run); font-weight: 500; }
.split-row.st td:first-child { color: var(--station); font-weight: 500; }
.split-row.rox td { color: var(--muted); }

/* ---------- misc ---------- */
.note {
  background: var(--accent-soft); border-left: 2px solid var(--accent); border-radius: 2px;
  padding: 12px 16px; font-size: 14px; margin: 18px 0;
}
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.check li {
  padding: 12px 14px 12px 48px; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
}
.check li::before {
  content: ""; position: absolute; left: 18px; top: 22px; width: 12px; height: 1px; background: var(--accent);
}
ol.steps { padding-left: 0; list-style: none; counter-reset: s; margin: 0; position: relative; }
ol.steps::before { content: ""; position: absolute; left: 20px; top: 20px; bottom: 20px; width: 1px; background: var(--line); }
ol.steps li { counter-increment: s; padding: 10px 0 14px 60px; position: relative; }
ol.steps li::before {
  content: counter(s, decimal-leading-zero); position: absolute; left: 0; top: 8px; width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--accent); color: var(--accent);
  display: grid; place-items: center; font-family: var(--display); font-weight: 400; font-size: 17px; border-radius: 50%;
}
details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; }
summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-family: var(--display); font-size: 22px; font-weight: 300; line-height: 1; }
details[open] summary::after { content: "−"; }
details[open] summary { margin-bottom: 10px; }
details p { color: var(--body-2); margin: 0; }

.plan { display: grid; gap: 10px; }
.phase {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; align-items: start;
}
.phase .wk { font-family: var(--display); font-weight: 400; font-size: 24px; color: var(--accent); line-height: 1.1; }
.phase .wk small { display: block; font-size: 12px; color: var(--muted); letter-spacing: .12em; font-weight: 600; }
.phase h3 { margin: 0 0 4px; }
.phase p { margin: 0; color: var(--body-2); font-size: 15px; }
.meter { height: 6px; border-radius: 3px; background: var(--surface-2); margin-top: 10px; overflow: hidden; }
.meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; padding: 28px 16px 44px; text-align: center; }
footer .logo { justify-content: center; margin-bottom: 12px; }
footer p { max-width: var(--maxw); margin: 0 auto 6px; }

@media (max-width: 600px) {
  .nav { margin-left: 0; width: 100%; }
  .nav a { padding: 4px 9px; font-size: 13px; }
  .hero-band .inner { padding: 36px 16px 32px; }
  .hero-stats { gap: 18px; }
  .hero-stats b { font-size: 28px; }
  .card, .tool { padding: 18px; }
  th, td { padding: 9px 10px; font-size: 14px; }
  .station { grid-template-columns: 56px 1fr; gap: 14px; padding: 16px; }
  .station .ic { width: 56px; height: 56px; }
  .station .ic svg { width: 32px; height: 32px; }
  .phase { grid-template-columns: 1fr; gap: 6px; }
  .course { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- ads (PR) ---------- */
.ad-slot { display: none; margin: 28px 0; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: var(--surface); position: relative; }
.ad-slot.filled { display: block; }
.ad-slot .ad-title { font-size: 14px; font-weight: 700; margin: 0 0 12px; display: flex; align-items: center; gap: 10px; }
.ad-slot .ad-title::before {
  content: "PR"; font-family: var(--display); font-size: 11px; letter-spacing: .14em; font-weight: 500;
  color: var(--muted); border: 1px solid #3a3a42; border-radius: 2px; padding: 0 6px; line-height: 18px;
}
.ad-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.ad-body img { max-width: 100%; height: auto; }
.ad-item {
  display: block; text-decoration: none; color: var(--text); background: var(--surface-2); border: 1px solid transparent;
  border-radius: 10px; padding: 14px 16px; transition: border-color .2s;
}
.ad-item:hover { border-color: var(--accent); }
.ad-item .ad-name { display: block; font-weight: 700; font-size: 15px; }
.ad-item .ad-desc { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.ad-item .ad-go { display: block; margin-top: 8px; font-family: var(--display); font-size: 12px; letter-spacing: .16em; color: var(--accent); }
.pr-notice { font-size: 12px; color: var(--muted); margin: 0 0 20px; }
footer .footer-links { margin: 12px 0; }
footer .footer-links a { color: var(--muted); margin: 0 8px; }

/* ---------- illustrations ---------- */
.illus { width: 100%; height: auto; display: block; }
.illus .lf, .illus .lb, .illus .tr { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.illus .lf { stroke: var(--ink); stroke-width: 7; }
.illus .lb { stroke: #9fb0cc; stroke-width: 7; }
.illus .tr { stroke: var(--ink); stroke-width: 9; }
.illus .hd { fill: var(--ink); }
.illus .eq { fill: var(--accent); }
.illus .eqf { fill: var(--paper); stroke: var(--accent); stroke-width: 2; }
.illus .eqs { fill: none; stroke: var(--accent); stroke-width: 4; stroke-linecap: round; }
.illus .cord, .illus .cordf { fill: none; stroke: var(--accent-2); stroke-width: 2; }
.illus .fl { stroke: var(--line); stroke-width: 3; }
.illus .lane { fill: none; stroke: var(--line); stroke-width: 3; }
.illus .mv { fill: none; stroke: var(--run); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.illus .dash { stroke-dasharray: 6 6; }
.illus .lim { stroke: var(--run); stroke-width: 2; stroke-dasharray: 3 4; }
.illus .ok, .illus .tg { fill: var(--run); }
.illus .dot { fill: var(--accent); }
.hero-illus .lf, .hero-illus .lb { stroke-width: 12; }
.hero-illus .tr { stroke-width: 14; }

.hero-band .inner.with-illus { display: grid; grid-template-columns: 1.25fr 1fr; gap: 32px; align-items: center; }
.hero-art { max-width: 420px; justify-self: end; width: 100%; }

.station.has-illus { grid-template-columns: 240px 1fr; align-items: center; }
.st-illus {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 6px 8px;
}
.st-illus .n {
  position: absolute; top: 8px; left: 10px; font-family: var(--display); font-size: 13px; letter-spacing: .12em; color: var(--accent);
}
.card .card-illus { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 14px; padding: 4px 16px; }
.card .card-illus .illus { max-height: 130px; }

@media (max-width: 760px) {
  .hero-band .inner.with-illus { grid-template-columns: 1fr; gap: 8px; }
  .hero-art { order: -1; max-width: 260px; justify-self: start; }
  .station.has-illus { grid-template-columns: 1fr; }
}
.nw { white-space: nowrap; }

/* 手描き風イラスト */
.illus3 { display: block; width: 100%; height: auto; }
.st-illus { padding: 0; overflow: hidden; background: #fbfaf7; border-color: transparent; }
.st-illus .n { color: var(--accent-strong); font-weight: 600; }
.st-illus .n { z-index: 1; }
.card .card-illus { padding: 0; overflow: hidden; background: #fbfaf7; border-color: transparent; }
.hero-art .illus3 { border-radius: 18px; border: 1px solid var(--line); }
.ld-img { display: block; width: 100%; height: auto; }

/* Loose Drawing のイラスト配置 */
.with-side { display: grid; grid-template-columns: 1fr 240px; gap: 32px; align-items: center; }
.side-illus { margin: 0; }
.side-illus img { max-height: 280px; width: auto; max-width: 100%; margin: 0 auto; }
.card .card-illus.ld { background: var(--paper); display: grid; place-items: center; padding: 14px; height: 200px; }
.card .card-illus.ld img { max-height: 172px; width: auto; max-width: 100%; }
.hero-art .hero-img { width: 100%; height: auto; }
.hero-art { max-width: 460px; }
@media (max-width: 760px) {
  .with-side { grid-template-columns: 1fr; gap: 12px; }
  .with-side .side-illus { order: -1; }
  .side-illus img { max-height: 200px; }
  .hero-art { max-width: 300px; }
}
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* 長い文章が入る表は折り返す（スマホで横にはみ出さないように） */
.table-wrap.wrap td { white-space: normal; }
.table-wrap.wrap td:first-child { white-space: nowrap; }
.table-wrap.wrap-all td { white-space: normal; }

/* ---------- 黒×青テーマ（公式の雰囲気に寄せたデザイン） ---------- */
/* 見出しの英字：太いイタリックでスポーツらしく */
.eyebrow { font-weight: 700; font-style: italic; font-size: 14px; letter-spacing: .24em; color: var(--accent); }
h2 .en { font-weight: 800; font-style: italic; font-size: 15px; letter-spacing: .22em; }
.card .num-badge, .phase .wk, .big-time { font-weight: 800; font-style: italic; }
.logo .mark { border-width: 2px; font-weight: 800; font-style: italic; }
/* Loose Drawing の線画は明るい台紙の上に置く */
.side-illus { background: var(--paper); border-radius: 14px; padding: 18px; }
.hero-art { background: var(--paper); border-radius: 18px; padding: 18px 20px; position: relative; z-index: 1; box-shadow: 0 20px 50px rgba(0,0,0,.45); }
@media (max-width: 760px) {
  .hero-band::before { width: 120px; right: -90px; }
  .hero-band::after { right: 40px; width: 8px; }
  .side-illus { padding: 12px; }
  .hero-art { padding: 12px 14px; }
}
.grid-2col { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }

/* 数字など目立たせたいところだけ黄色（ベースは青） */
:root { --highlight: #ffe500; }
.hero-stats b,
.card .num-badge,
.big-time,
.phase .wk,
.stat .v,
.leg .st-dist { color: var(--highlight); }
.hero-stats div { border-left-color: var(--highlight); }
ol.steps li::before { color: var(--highlight); border-color: var(--highlight); font-weight: 800; font-style: italic; }

/* トップの大きな英字「RUN. WORK. FINISH.」（共有画像と同じ） */
.hero-type {
  justify-self: end; position: relative; z-index: 1;
  font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase;
  font-size: clamp(64px, 11vw, 150px); line-height: .86; letter-spacing: -.01em; color: var(--text);
  text-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}
.hero-type span { color: var(--highlight); }
@media (max-width: 760px) {
  .hero-type { order: -1; justify-self: start; font-size: 64px; margin-bottom: 18px; }
}
.hero-cta .btn.ghost { background: rgba(11, 11, 12, .9); }
