@font-face {
  font-family: "Azeret Mono";
  /* 可変フォント1本で500〜700をまかなう。Latinサブセットのみ26KB。
     Google Fonts の外部CSSはレンダーブロッキングなので自前で配る */
  src: url("/assets/azeret-mono-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+2000-206F, U+2212, U+FEFF, U+FFFD;
}

/* ─────────────────────────────────────────────
   ヨノナカの道具箱 — 計器盤（instrument panel）
   ほぼ全ページの主役が数字なので、数字を計器の表示として扱う。
   紙＝生成り、線＝製図の罫、強調＝朱。和文はシステムフォント
   （和文Webフォントは数MBあり、表示速度＝SEOの土台を壊すため読まない）。
   欧文と数字だけ Azeret Mono を当てる。
   ───────────────────────────────────────────── */

:root {
  --paper: #f1eee5;
  --panel: #fffdf7;
  --ink: #151d25;
  --ink-2: #5d6873;
  --ink-3: #767f88;          /* 罫・プレースホルダ用 */
  --label: #4a545e;          /* 小さなラベル。--ink-3 は本文サイズだとコントラスト不足 */
  --rule: #ddd6c6;
  --rule-2: #eae5da;
  --accent: #c2381f;          /* 朱 */
  --accent-soft: #f6e6e1;
  --deep: #11161c;
  --ok: #1f6b4a;

  --mono: "Azeret Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;

  --wrap: 880px;
  --r: 4px;                    /* 計器なので角はほぼ立てる */
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  /* 紙の粒子。単色ベタを避けて奥行きを出す */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(21, 29, 37, .045) 1px, transparent 0);
  background-size: 4px 4px;
  font: 16px/1.9 var(--sans);
  overflow-wrap: anywhere;
  font-feature-settings: "palt" 1;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

/* ── ヘッダ：計器の銘板 ───────────────────── */
.site-head {
  background: var(--panel);
  border-bottom: 1px solid var(--ink);
  position: sticky; top: 0; z-index: 30;
}
.site-head::after {
  /* 目盛り。1本の朱線ではなく、刻みのあるスケールにする */
  content: ""; display: block; height: 3px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 2px, transparent 2px 9px);
}
.head-in { display: flex; align-items: center; gap: 8px 20px; min-height: 56px; flex-wrap: wrap; }
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 13px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand .brand-ja { font: 700 14px/1 var(--sans); letter-spacing: .02em; }
.nav { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  color: var(--ink-2); text-decoration: none; white-space: nowrap;
  font-size: 13.5px; padding: 6px 10px; border: 1px solid transparent; border-radius: var(--r);
}
.nav a:hover { color: var(--ink); background: var(--rule-2); }
.nav a[aria-current="page"] { color: var(--ink); border-color: var(--rule); background: var(--paper); font-weight: 700; }

/* ── 見出し ───────────────────────────────── */
h1 {
  font-size: clamp(26px, 5.4vw, 38px); line-height: 1.32; letter-spacing: -.02em;
  margin: 36px 0 12px; font-weight: 800;
}
h2 {
  font-size: 20px; line-height: 1.5; margin: 48px 0 14px; font-weight: 800;
  letter-spacing: -.01em; padding-bottom: 8px; border-bottom: 1px solid var(--ink);
  display: flex; align-items: baseline; gap: 10px;
}
h2::before {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px;
  background: var(--accent); transform: translateY(-1px);
}
h3 { font-size: 16.5px; margin: 30px 0 8px; font-weight: 700; }
.lead { color: var(--ink-2); font-size: 16.5px; margin: 0 0 26px; max-width: 62ch; }
main p { margin: 0 0 15px; }
main ul, main ol { padding-left: 1.35em; }
main li { margin: 6px 0; }
code {
  font: .9em/1.6 var(--mono); background: var(--panel);
  border: 1px solid var(--rule); padding: 1px 6px; border-radius: var(--r);
}
b, strong { font-weight: 700; }

/* ── 計器カード：数字が主役 ───────────────── */
.figure-card {
  position: relative; background: var(--deep); color: #f6f3ec;
  padding: 26px 28px; margin: 0 0 26px; border-radius: var(--r);
  overflow: hidden;
}
.figure-card::before {
  /* 製図の目盛り。左端に細い刻みを入れて計器らしさを出す */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: repeating-linear-gradient(180deg, var(--accent) 0 6px, transparent 6px 14px);
}
.figure-label {
  font: 600 11.5px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase;
  color: #9aa4ad; margin: 0 0 10px;
}
.figure-value {
  font: 700 clamp(44px, 11vw, 76px)/1 var(--mono);
  letter-spacing: -.045em; margin: 0; font-variant-numeric: tabular-nums;
}
.figure-value small {
  font-size: clamp(15px, 3vw, 19px); font-weight: 500; letter-spacing: 0;
  color: #9aa4ad; margin-left: 8px;
}
.figure-sub { font-size: 13.5px; color: #a9b2ba; margin: 12px 0 0; line-height: 1.8; }

/* ── 道具の枠 ─────────────────────────────── */
.tool {
  background: var(--panel); border: 1px solid var(--ink); border-radius: var(--r);
  padding: 22px; margin: 0 0 28px;
  box-shadow: 4px 4px 0 var(--rule);
}
.tool h2:first-child { margin-top: 0; }

.field { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 0 0 14px; }
.field label {
  min-width: 9.5em; font-size: 12px; color: var(--ink-2);
  font-weight: 600; letter-spacing: .06em;
}
input[type="number"], input[type="text"], select, textarea {
  font: 15px/1.6 var(--sans); color: var(--ink); background: #fff;
  border: 1px solid var(--ink-3); border-radius: var(--r); padding: 9px 11px;
}
input[type="number"] { width: 8.5em; text-align: right; font-family: var(--mono); font-weight: 600; }
select { font-size: 14.5px; }
textarea { width: 100%; line-height: 1.8; resize: vertical; }
input[type="range"] { accent-color: var(--accent); width: 150px; }
input[type="checkbox"] { accent-color: var(--accent); width: 17px; height: 17px; }
input:focus-visible, select:focus-visible, textarea:focus-visible,
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.hint { font-size: 12.5px; color: var(--ink-2); margin: -4px 0 14px; line-height: 1.75; }

/* ── 結果：反転させて読み取り面にする ─────── */
.out {
  background: var(--deep); color: #f6f3ec; border-radius: var(--r);
  padding: 18px 20px; margin: 18px 0 0;
}
.out-main {
  font: 700 clamp(30px, 8vw, 44px)/1.1 var(--mono);
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
  /* 値が変わったことが分かる程度の、ごく短い立ち上がり */
  animation: readout .22s ease-out;
}
@keyframes readout { from { opacity: .35; transform: translateY(2px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .out-main { animation: none; } }
.out-main small {
  font-size: 14px; font-weight: 500; letter-spacing: 0; color: #9aa4ad;
  margin-left: 7px; font-family: var(--sans);
}
.out-rows { list-style: none; padding: 0; margin: 14px 0 0; font-size: 13.5px; }
.out-rows li {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 7px 0; margin: 0;
}
.out-rows li:first-child { border-top: 0; }
.out-rows span { color: #a9b2ba; }
.out-rows b { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* 最低賃金ページの判定 */
.verdict {
  border-left: 5px solid; padding: 12px 15px; margin: 18px 0 0;
  background: var(--panel); border-radius: 0 var(--r) var(--r) 0; font-size: 14px;
}
.verdict b { display: block; font-size: 15.5px; margin-bottom: 3px; }
.verdict span { color: var(--ink-2); font-size: 13px; }
.verdict.ok { border-color: var(--ok); }
.verdict.ng { border-color: var(--accent); background: var(--accent-soft); }
.verdict.ok b { color: var(--ok); }
.verdict.ng b { color: var(--accent); }
#mw .out-rows { color: var(--ink); }
#mw .out-rows li { border-top: 1px solid var(--rule); }
#mw .out-rows span { color: var(--ink-2); }

/* ── ボタン ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--ink); color: var(--panel); text-decoration: none;
  border: 1px solid var(--ink); border-radius: var(--r); padding: 11px 20px;
  font: 700 14.5px/1 var(--sans); cursor: pointer; letter-spacing: .02em;
  transition: transform .1s ease, box-shadow .1s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink-3); font-weight: 600; }
.btn.ghost:hover { background: var(--ink); color: var(--panel); border-color: var(--ink); }
.btn[disabled] { opacity: .4; cursor: default; }
.btns { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ── アプリへの導線 ───────────────────────── */
.app-block {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--ink);
  border-radius: var(--r); padding: 20px; margin: 40px 0;
  box-shadow: 4px 4px 0 var(--accent);
}
.app-block img { border-radius: 13px; flex: 0 0 auto; }
.app-block h2 {
  margin: 0 0 5px; padding: 0; border: 0; font-size: 17.5px; display: block;
}
.app-block h2::before { display: none; }
.app-block .price {
  font: 600 11.5px/1.5 var(--mono); letter-spacing: .04em;
  color: var(--ink-2); margin: 0 0 14px;
}
.app-block ul { margin: 0 0 14px; padding-left: 1.2em; font-size: 13.5px; }
.app-block li { margin: 3px 0; }
.app-block > div > p:not(.price) {
  font: 700 11.5px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--label); margin: 0 0 6px;
}

/* ── カード一覧 ───────────────────────────── */
.cards {
  list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.cards a {
  display: block; background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 17px 18px; text-decoration: none;
  color: var(--ink); height: 100%; position: relative;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.cards a:hover {
  border-color: var(--ink); box-shadow: 4px 4px 0 var(--accent); transform: translate(-1px, -1px);
}
.cards b { display: block; font-size: 15.5px; margin-bottom: 5px; line-height: 1.5; }
.cards span { display: block; font-size: 13px; color: var(--ink-2); line-height: 1.75; }

/* ── 表：データシート ─────────────────────── */
.tbl-wrap {
  overflow-x: auto; margin: 0 0 22px;
  border: 1px solid var(--ink); border-radius: var(--r); background: var(--panel);
}
table { border-collapse: collapse; width: 100%; font-size: 14px; }
th, td { border-bottom: 1px solid var(--rule-2); padding: 9px 13px; text-align: left; vertical-align: top; }
thead th {
  background: var(--ink); color: var(--panel); white-space: nowrap;
  font: 600 11.5px/1.5 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 0;
}
tbody th { font-weight: 700; white-space: nowrap; background: rgba(221, 214, 198, .22); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
thead th.num { text-align: right; }
tbody tr:hover td, tbody tr:hover th { background: var(--accent-soft); }

/* ── 推移グラフ ────────────────────────────── */
.spark {
  display: block; width: 100%; height: 150px; margin: 0 0 18px;
  background: var(--panel); border: 1px solid var(--ink); border-radius: var(--r);
}

/* ── FAQ ──────────────────────────────────── */
.faq { border-top: 1px solid var(--ink); margin-top: 10px; }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; padding: 14px 2px; font-weight: 700; font-size: 15px;
  list-style: none; display: flex; gap: 10px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; flex: 0 0 auto; font: 700 12px/1 var(--mono); color: var(--accent);
}
.faq details[open] summary { color: var(--accent); }
.faq div { padding: 0 2px 16px 24px; color: var(--ink-2); font-size: 14.5px; }

.note {
  background: var(--panel); border: 1px dashed var(--ink-3);
  border-radius: var(--r); padding: 14px 16px; font-size: 13.5px; margin: 22px 0;
  color: var(--ink-2);
}

/* ── フッタ ───────────────────────────────── */
.site-foot {
  margin-top: 64px; border-top: 1px solid var(--ink); background: var(--panel);
  padding: 26px 0 44px; color: var(--ink-2); font-size: 13px;
}
.site-foot p { margin: 5px 0; }

/* ── テレプロンプター ─────────────────────── */
.tp-stage {
  position: relative; background: #05070a; color: #fff; border-radius: var(--r);
  height: 46vh; min-height: 270px; overflow: hidden; margin: 0 0 14px;
}
.tp-stage[data-theme="light"] { background: #fff; color: #000; }
.tp-stage[data-theme="amber"] { background: #05070a; color: #ffc233; }
.tp-stage.mirror .tp-scroll { transform: scaleX(-1); }
.tp-stage.flip .tp-scroll { transform: scaleY(-1); }
.tp-stage.mirror.flip .tp-scroll { transform: scale(-1, -1); }
.tp-scroll { position: absolute; inset: 0; overflow-y: auto; padding: 0 6vw; white-space: pre-wrap; scrollbar-width: none; line-height: 1.75; }
.tp-scroll::-webkit-scrollbar { display: none; }
/* 前後の余白はフォーカスラインの高さに合わせる。padding の % は「幅」基準なので
   padding-top:50% にすると横長の画面で原稿が枠の下に押し出されて見えなくなる */
.tp-scroll::before { content: ""; display: block; height: 40%; }
.tp-scroll::after { content: ""; display: block; height: 60%; }
/* 幅は読みやすさを大きく変える。1行が長いと視線が戻る距離が伸びる */
.tp-stage[data-width="narrow"] #tp-body { max-width: 22ch; margin: 0 auto; }
.tp-stage[data-width="normal"] #tp-body { max-width: 34ch; margin: 0 auto; }
.tp-stage[data-width="wide"] #tp-body { max-width: none; }
.tp-line { position: absolute; left: 0; right: 0; top: 40%; border-top: 2px solid rgba(194, 56, 31, .9); pointer-events: none; }
.tp-count { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; font: 700 22vh/1 var(--mono); background: rgba(5, 7, 10, .85); color: #fff; }
.tp-stage.counting .tp-count { display: flex; }
.tp-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .14); }
.tp-stage[data-theme="light"] .tp-bar { background: rgba(0, 0, 0, .12); }
.tp-bar i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .1s linear; }
.tp-stage:fullscreen { height: 100vh; border-radius: 0; }
.tp-ctl { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; font-size: 12.5px; color: var(--ink-2); }
.tp-ctl label { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; letter-spacing: .04em; }
.wpm {
  font: 700 15px/1 var(--mono); font-variant-numeric: tabular-nums; color: var(--ink);
  border: 1px solid var(--ink); padding: 8px 12px; border-radius: var(--r); background: var(--panel);
  align-self: center; white-space: nowrap;
}

/* ── こえずかん ───────────────────────────── */
.koe-grid { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 11px; grid-template-columns: repeat(auto-fill, minmax(94px, 1fr)); }
.koe-card {
  width: 100%; aspect-ratio: 1; border: 2px solid var(--rule); background: #fff; border-radius: 14px;
  font: 600 13px/1.3 var(--sans); cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px; padding: 4px; color: var(--ink);
  touch-action: none; -webkit-user-select: none; user-select: none;
  transition: border-color .12s ease, background .12s ease;
}
.koe-card .emoji { font-size: 31px; line-height: 1.1; }
.koe-card[data-state="rec"] { border-color: var(--accent); background: var(--accent-soft); }
.koe-card[data-state="has"] { border-color: var(--ink); background: var(--panel); }
.koe-card[data-state="play"] { animation: koe-bounce .5s ease-in-out infinite; }
.koe-card:disabled { opacity: .4; cursor: default; }
@keyframes koe-bounce { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-7px) rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { .koe-card[data-state="play"] { animation: none; } }

/* 「7 時間 45 分」を1行に収める。既定幅のままだと「分」だけ次行に落ちる */
#h, #m, #mw-hpd, #mw-dpw { width: 5.5em; }

@media (max-width: 620px) {
  .field label { min-width: 100%; }
  input[type="number"] { width: 7em; }
  #h, #m { width: 5em; }
  input[type="range"] { width: 100%; }
  .app-block { flex-direction: column; }
  h2 { font-size: 18.5px; margin-top: 38px; }
  .tool { padding: 17px; box-shadow: 3px 3px 0 var(--rule); }
  .figure-card { padding: 22px 20px; }
}

/* ── 請求書 ──────────────────────────────── */
.inv-sheet { background: #fff; }
.inv-title { text-align: center; font-size: 21px; letter-spacing: .5em; margin: 4px 0 20px; text-indent: .5em; }
.inv-head { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; }
.inv-head .field { margin-bottom: 9px; }
.inv-head .field label { min-width: 6em; font-size: 11.5px; }
.inv-head input { flex: 1; min-width: 0; }
.inv-table input { border: 0; border-bottom: 1px dotted var(--ink-3); border-radius: 0; padding: 5px 2px; width: 100%; background: transparent; }
.inv-table .l-qty, .inv-table .l-price { text-align: right; }
.inv-table td { padding: 4px 8px; vertical-align: middle; }
.inv-table .l-amt { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.inv-table .l-del { padding: 4px 9px; font-size: 12px; white-space: nowrap; }
.inv-sum { max-width: 380px; margin-left: auto; color: var(--ink); }
.inv-sum li { border-top: 1px solid var(--rule); }
.inv-sum span { color: var(--ink-2); }
.inv-sum li:nth-child(3) b, .inv-sum li:last-child b { font-size: 17px; }
.inv-sum li:last-child { border-top: 2px solid var(--ink); }

@media print {
  /* 請求書のページだけ、紙に出るのを請求書そのものに絞る。
     全ページに掛けると、最低賃金の履歴表など印刷したいものまで消える */
  body[data-page="seikyu/tsukurikata"] .site-head,
  body[data-page="seikyu/tsukurikata"] .site-foot,
  body[data-page="seikyu/tsukurikata"] .no-print,
  body[data-page="seikyu/tsukurikata"] .lead,
  body[data-page="seikyu/tsukurikata"] h1,
  body[data-page="seikyu/tsukurikata"] h2,
  body[data-page="seikyu/tsukurikata"] .faq,
  body[data-page="seikyu/tsukurikata"] .cards,
  body[data-page="seikyu/tsukurikata"] .app-block,
  body[data-page="seikyu/tsukurikata"] .note,
  body[data-page="seikyu/tsukurikata"] .hint,
  body[data-page="seikyu/tsukurikata"] main > p,
  body[data-page="seikyu/tsukurikata"] main > ol,
  body[data-page="seikyu/tsukurikata"] main > .tbl-wrap { display: none !important; }
  body[data-page="seikyu/tsukurikata"] { background: #fff; font-size: 12px; }
  body[data-page="seikyu/tsukurikata"] .wrap { max-width: none; padding: 0; }
  body[data-page="seikyu/tsukurikata"] .tool { border: 0; box-shadow: none; padding: 0; margin: 0; }
  body[data-page="seikyu/tsukurikata"] .tool .tbl-wrap { display: block !important; border: 1px solid #000; overflow: visible; }
  body[data-page="seikyu/tsukurikata"] thead th {
    background: #eee !important; color: #000 !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  /* ヘッダの欄も含めて枠を消す。明細だけだと請求書の上半分に入力枠が残る */
  body[data-page="seikyu/tsukurikata"] input,
  body[data-page="seikyu/tsukurikata"] textarea,
  body[data-page="seikyu/tsukurikata"] select {
    border: 0 !important; background: transparent !important; padding: 2px !important;
    -webkit-appearance: none; appearance: none;
  }
  /* 未入力の欄に例文（登録番号や口座の例）が薄く印刷される環境がある */
  body[data-page="seikyu/tsukurikata"] ::placeholder { color: transparent !important; opacity: 0 !important; }
  body[data-page="seikyu/tsukurikata"] .inv-head .field label { color: #555; }
  /* 空の欄・空の行は紙に出さない。未入力の日付は「年／月／日」と印字されてしまう */
  body[data-page="seikyu/tsukurikata"] .field.is-empty,
  body[data-page="seikyu/tsukurikata"] tr.is-empty,
  body[data-page="seikyu/tsukurikata"] textarea.is-empty { display: none !important; }
  body[data-page="seikyu/tsukurikata"] input[type="date"]::-webkit-calendar-picker-indicator,
  body[data-page="seikyu/tsukurikata"] input::-webkit-inner-spin-button,
  body[data-page="seikyu/tsukurikata"] input::-webkit-outer-spin-button { display: none !important; }
  body[data-page="seikyu/tsukurikata"] textarea { resize: none; }
}

/* @page はセレクタの中に書けないため、印刷余白はサイト共通で持つ */
@page { margin: 14mm; }

/* 進行中の改定など、時期で変わる注意。通常の .note より目立たせる */
.note-live {
  background: var(--accent-soft); border: 1px solid var(--accent); border-left-width: 5px;
  color: var(--ink);
}
.note-live b { color: var(--accent); }

/* ── パンくず・更新日 ─────────────────────── */
.crumbs { font-size: 12.5px; color: var(--ink-2); margin: 18px 0 -14px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs span { color: var(--ink-3); }
.updated {
  margin: 44px 0 0; padding-top: 14px; border-top: 1px solid var(--rule);
  font: 12.5px/1.7 var(--sans); color: var(--ink-2);
}
.updated time { font-family: var(--mono); }

/* 等級表で、いま該当している行を目立たせる */
tr.is-here th, tr.is-here td { background: var(--accent-soft) !important; font-weight: 700; }
