/* じぶん解像度 — base stylesheet */

:root {
  color-scheme: light;
  --surface: #ffffff;
  --plane: #f4f4f1;
  --ink: #15161a;
  --ink-2: #4a4d57;
  --ink-muted: #71757f;
  --rule: #e4e4de;
  --axis: #c6c6bd;
  --accent: #2a78d6;
  --accent-soft: #cde2fb;
  --border: rgba(11, 11, 11, 0.1);
  --radius: 10px;
  --maxw: 58rem;

  /* 尺度の識別色。順序は固定で、順位では入れ替えない（色は尺度に属する）。
     dataviz の検証ツールで light/dark 両モードの合格を確認済み。 */
  --series-1: #2a78d6;
  --series-2: #eb6834;
  --series-3: #1baf7a;
  --series-4: #eda100;
  --series-5: #e87ba4;

  --shadow-card: 0 1px 2px rgba(11,11,11,.04), 0 8px 24px -12px rgba(11,11,11,.10);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --surface: #21232a;
    --plane: #16181d;
    --ink: #f0f1f4;
    --ink-2: #b9bdc7;
    --ink-muted: #8e93a0;
    --rule: #31343d;
    --axis: #434752;
    --accent: #3987e5;
    --accent-soft: #184f95;
    --border: rgba(255, 255, 255, 0.1);

    --series-1: #3987e5;
    --series-2: #d95926;
    --series-3: #199e70;
    --series-4: #c98500;
    --series-5: #d55181;

    --shadow-card: 0 1px 2px rgba(0,0,0,.30), 0 10px 28px -14px rgba(0,0,0,.55);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --surface: #21232a;
  --plane: #16181d;
  --ink: #f0f1f4;
  --ink-2: #b9bdc7;
  --ink-muted: #8e93a0;
  --rule: #31343d;
  --axis: #434752;
  --accent: #3987e5;
  --accent-soft: #184f95;
  --border: rgba(255, 255, 255, 0.1);

  --series-1: #3987e5;
  --series-2: #d95926;
  --series-3: #199e70;
  --series-4: #c98500;
  --series-5: #d55181;

  --shadow-card: 0 1px 2px rgba(0,0,0,.30), 0 10px 28px -14px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--plane);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- header / footer --- */
.site-head {
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.site-nav { display: flex; gap: 1.25rem; font-size: 0.875rem; }
.site-nav a { color: var(--ink-2); text-decoration: none; }
.site-nav a:hover { color: var(--accent); text-decoration: underline; }

.site-foot {
  border-top: 1px solid var(--rule);
  margin-top: 4rem;
  padding: 2rem 0 3rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  background: var(--surface);
}
.site-foot a { color: var(--ink-2); }

/* --- typography --- */
/* 行が長すぎると読みにくいので、走る文章だけ measure を制限する。
   表・カード・グリッドはこの制限を受けず、器の幅を使う。 */
main p,
main > ul,
main > ol,
main h1,
main h2,
main h3 { max-width: 44rem; }
.hero-band p, .hero-band h1 { max-width: 34rem; }

main { padding: 2.5rem 0 0; }
h1 {
  font-size: clamp(1.875rem, 1.4rem + 2.2vw, 2.625rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 0.875rem;
}
h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 3.25rem 0 0.875rem;
  padding-top: 0.5rem;
}
/* 見出しの左に短いルールを置き、節の begin を視覚的に立てる */
h2::before {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 0.875rem;
}
h3 { font-size: 1.0625rem; margin: 2rem 0 0.5rem; letter-spacing: -0.003em; }
p { margin: 0 0 1.125rem; }
.lede {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.1875rem);
  color: var(--ink-2);
  line-height: 1.75;
}
a { color: var(--accent); }
small, .fine { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.7; }

ul, ol { padding-left: 1.375rem; margin: 0 0 1.125rem; }
li { margin-bottom: 0.375rem; }

/* --- cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  margin: 0 0 1rem;
  box-shadow: var(--shadow-card);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.tool-list { display: grid; gap: 1rem; margin: 1.5rem 0 0; }
.tool-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem 1.375rem 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* 左端の色帯。カードごとに --c を変えて識別性を持たせる */
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--c, var(--accent));
}
a.tool-card:hover {
  border-color: var(--c, var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 16px 32px -16px rgba(0,0,0,.28);
}
a.tool-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.tool-card .t::after {
  content: "→";
  margin-left: .5rem;
  color: var(--c, var(--accent));
  font-weight: 400;
  transition: transform .18s ease;
  display: inline-block;
}
a.tool-card:hover .t::after { transform: translateX(3px); }
.tool-card.soon .t::after { content: none; }
.tool-card .t { font-weight: 700; font-size: 1.0625rem; display: block; margin-bottom: 0.25rem; }
.tool-card .d { color: var(--ink-2); font-size: 0.9375rem; display: block; }
.tool-card .meta { color: var(--ink-muted); font-size: 0.8125rem; margin-top: 0.5rem; display: block; }
.tool-card.soon { opacity: 0.55; pointer-events: none; }

/* --- buttons --- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.5;
}
.btn:hover { filter: brightness(0.93); }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--axis);
}
.btn-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0; }

/* --- quiz --- */
.progress {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--plane);
  padding: 0.75rem 0 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.progress-bar {
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.2s ease;
}
.progress-text {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 0.375rem;
  font-variant-numeric: tabular-nums;
}

.q {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem 1.25rem;
  margin: 0 0 0.875rem;
}
.q.answered { border-color: var(--accent-soft); }
.q-num {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.q-text { font-size: 1rem; line-height: 1.7; margin: 0.25rem 0 0.875rem; }

.opts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.375rem; }
.opts label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--axis);
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  background: var(--surface);
  user-select: none;
}
.opts input { position: absolute; opacity: 0; width: 0; height: 0; }
.opts label:hover { border-color: var(--accent); }
.opts input:checked + span,
.opts label:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}
.opts label:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }
.opt-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--ink-muted);
  margin-top: 0.375rem;
  line-height: 1.4;
}

/* --- results --- */
/* 各行は --c に尺度の識別色を受け取る。色は尺度に属し、順位では入れ替えない。
   色だけに情報を載せないよう、名前のラベルを必ず併記している。 */
.score-row {
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.score-row:last-child { border-bottom: 0; }
.score-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.score-name {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.003em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* 識別色のドット。ラベルの補助であって、単独の情報伝達には使わない */
.score-name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--c, var(--accent));
  flex: none;
}
.score-val {
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c, var(--accent));
}
.score-sub { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 0.625rem; }
.track {
  position: relative;
  height: 14px;
  background: var(--rule);
  border-radius: 7px;
  overflow: hidden;
}
/* 目盛りを50の位置に薄く入れ、中央からの偏りを読めるようにする */
.track::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--surface);
  opacity: .55;
}
.track > .fill {
  display: block;
  height: 100%;
  background: var(--c, var(--accent));
  border-radius: 7px;
  transform-origin: left center;
  animation: grow .55s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .track > .fill { animation: none; }
}
.track-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.detail { border-top: 1px solid var(--rule); padding-top: 1.25rem; margin-top: 1.25rem; }
.concept-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.125rem 0.625rem;
  margin-bottom: 0.625rem;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
}
table.data th, table.data td {
  text-align: left;
  padding: 0.5rem 0.625rem;
  border-bottom: 1px solid var(--rule);
}
table.data th { color: var(--ink-2); font-weight: 700; }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
/* 列が多く潰れやすい表は、縮めずに横スクロールさせる */
.table-scroll > table.wide { min-width: 34rem; }

/* --- calibration test --- */
.unit-hint { color: var(--ink-muted); font-size: 0.8125rem; font-weight: 400; }

.range-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 0.5rem;
}
.range-inputs label { display: block; }
.range-inputs label > span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}
.range-inputs input {
  width: 100%;
  min-height: 2.875rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--axis);
  border-radius: 7px;
}
.range-inputs input::placeholder { color: var(--ink-muted); font-size: 0.8125rem; }
.range-inputs input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.range-tilde { color: var(--ink-muted); padding-bottom: 0.75rem; }
.range-err { color: #d03b3b; margin: 0.5rem 0 0; }

.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.375rem;
  text-align: center;
  margin: 0 0 1rem;
}
.hero-num {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
}
.hero-den { font-size: 1.5rem; color: var(--ink-muted); font-weight: 400; }
.hero-cap { font-size: 0.875rem; color: var(--ink-2); margin: 0.5rem 0 0; }

.hit-cell { white-space: nowrap; }
.hit { color: #006300; font-weight: 700; }
.miss { color: var(--ink-muted); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hit { color: #0ca30c; }
}
:root[data-theme="dark"] .hit { color: #0ca30c; }

/* --- 統計ページのミニ分布 --- */
.mini-track {
  display: block;
  height: 8px;
  min-width: 3.5rem;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.mini-fill { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.hist { display: flex; gap: 2px; align-items: flex-end; min-width: 12rem; }
.hist-col { flex: 1 1 0; min-width: 0; }
.hist-col .mini-track { min-width: 0; }

/* --- 統計への協力 --- */
.contribute { border-color: var(--accent-soft); }
.contribute-detail { margin: 0.5rem 0 1rem; }
.contribute-detail > summary {
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--accent);
  padding: 0.25rem 0;
}
.contribute-pre {
  background: var(--plane);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  overflow-x: auto;
  margin: 0.5rem 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.contribute-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 0.5rem 0;
}
.contribute-consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.125rem 0 0;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}
.contribute-status:empty { display: none; }
.contribute-status { margin: 0.75rem 0 0; }

.notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--axis);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--ink-2);
  margin: 1.5rem 0;
}

.hidden { display: none !important; }

@media (max-width: 30rem) {
  h1 { font-size: 1.5rem; }
  .opts { grid-template-columns: repeat(6, 1fr); gap: 0.25rem; }
  .opts label { min-height: 2.875rem; font-size: 0.875rem; }
  .wrap { padding: 0 1rem; }
}

/* --- トップのヒーロー --- */
/* ブランド名「解像度」をそのまま図にしている。
   左は輪郭のぼやけた灰色、右へ進むほど輪郭と色がはっきりする。
   装飾ではなく「ぼんやりした自己認識を、測って輪郭のあるものにする」という
   このサイトの主張そのものを表している。 */
.hero-band {
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0 3.25rem;
  margin-bottom: 2.5rem;
}
.hero-band .wrap { padding-top: 0; }
.hero-band h1 { margin-bottom: 1rem; }
.hero-band .lede { margin-bottom: 0; max-width: 34rem; }

.hero-viz {
  display: grid;
  gap: 10px;
  margin: 2.25rem 0 0;
  max-width: 30rem;
}
.hero-viz .hv {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(
    90deg,
    var(--rule) 0%,
    var(--rule) 22%,
    var(--c) 78%,
    var(--c) 100%
  );
  filter: blur(2.5px);
  opacity: .55;
  animation: focusIn 1.1s cubic-bezier(.22,.61,.36,1) both;
}
.hero-viz .hv:nth-child(1) { width: 58%; --c: var(--series-1); animation-delay: .05s; }
.hero-viz .hv:nth-child(2) { width: 86%; --c: var(--series-2); animation-delay: .14s; }
.hero-viz .hv:nth-child(3) { width: 44%; --c: var(--series-3); animation-delay: .23s; }
.hero-viz .hv:nth-child(4) { width: 71%; --c: var(--series-4); animation-delay: .32s; }
.hero-viz .hv:nth-child(5) { width: 33%; --c: var(--series-5); animation-delay: .41s; }

@keyframes focusIn {
  from { filter: blur(6px); opacity: .25; transform: scaleX(.9); transform-origin: left; }
  to   { filter: blur(0);   opacity: 1;   transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-viz .hv { animation: none; filter: none; opacity: 1; }
}

.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }

/* --- セクションの間隔を整える --- */
main > section + section { margin-top: 1rem; }
.tool-card:nth-of-type(1) { --c: var(--series-1); }
.tool-card:nth-of-type(2) { --c: var(--series-2); }
.tool-card:nth-of-type(3) { --c: var(--series-3); }

/* --- 導線を分かりやすくする要素 --- */
.hero-note {
  font-size: .875rem;
  color: var(--ink-muted);
  margin: 1.25rem 0 0;
  max-width: 32rem;
  line-height: 1.7;
}

/* 所要時間のバッジ。最初に目に入る位置に置き、負担の見積もりを先に与える */
.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
  color: var(--c, var(--accent));
  background: color-mix(in srgb, var(--c, var(--accent)) 14%, transparent);
  border-radius: 999px;
  padding: .25rem .625rem;
  margin-bottom: .625rem;
}
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .badge { background: transparent; border: 1px solid var(--c, var(--accent)); }
}

/* --- 節のラベル（英字・小さめ・字間広め） --- */
/* 見出しの上に置いて、節の切り替わりを視覚的に立てる。
   内容は日本語の見出しが担うので、ここは装飾として扱い、読み上げ順を邪魔しない。 */
.eyebrow {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-muted);
  margin: 0 0 .625rem;
  text-transform: uppercase;
}
.eyebrow::before { content: "◆　"; color: var(--accent); letter-spacing: 0; }
h2 .eyebrow { margin-bottom: .5rem; }
/* ラベルを持つ見出しでは、既定の短いルールは出さない */
h2:has(.eyebrow)::before { content: none; }

/* --- ヒーロー: 実物の結果カードを見せる --- */
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 60rem) {
  .hero-grid { grid-template-columns: 1fr 20rem; gap: 3.5rem; }
}
.hero-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.125rem 1.25rem 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,.05), 0 24px 48px -20px rgba(0,0,0,.35);
}
.hero-mock .mock-cap {
  font-size: .6875rem;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin: 0 0 .875rem;
}
.hero-mock .score-row { margin-bottom: .875rem; padding-bottom: .875rem; }
.hero-mock .score-name { font-size: .9375rem; }
.hero-mock .score-val { font-size: 1.5rem; }
.hero-mock .score-sub { display: none; }

/* --- 数値ストリップ --- */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2.5rem 0 0;
}
@media (min-width: 40rem) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts > div { background: var(--surface); padding: 1rem 1.125rem; }
.facts .n {
  display: block;
  font-size: .6875rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: .1em;
  margin-bottom: .375rem;
}
.facts .v { display: block; font-weight: 700; font-size: 1.0625rem; line-height: 1.4; }
.facts .k { display: block; font-size: .75rem; color: var(--ink-2); margin-top: .25rem; line-height: 1.5; }

/* --- 信頼の一行 --- */
.promises {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  font-size: .8125rem;
  color: var(--ink-muted);
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.promises li { display: flex; align-items: center; gap: .5rem; margin: 0; }
.promises li + li::before {
  content: "";
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--axis);
  margin-right: .75rem;
}

/* --- 手順（STEP） --- */
.steps { display: grid; gap: 1rem; margin: 1.5rem 0 0; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.375rem;
  box-shadow: var(--shadow-card);
}
.step .sn {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.step h3 { margin: 0 0 .375rem; font-size: 1rem; }
.step p { margin: 0; font-size: .875rem; color: var(--ink-2); line-height: 1.7; }

/* 狭い画面では改行を無効にし、不自然な折り返しを避ける */
.br-wide { display: none; }
@media (min-width: 34rem) { .br-wide { display: inline; } }
