/* デザイン言語: minna-no-kokkai.com 参照（白ベース×ブランド青×細ボーダー×丸バッジ×ステッパー） */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --brand-50: #f7faff;
  --brand-100: #e8f0ff;
  --brand-500: #1d5ff0;
  --brand-700: #0b2a6f;
  --brand-900: #061a44;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --red-50: #fef2f2;
  --red-200: #fecaca;
  --red-700: #b91c1c;
  /* レイヤー色（パステル背景＋濃文字） */
  --money-bg: #fef3c7;    --money-fg: #92400e;
  --proc-bg: #e8f0ff;     --proc-fg: #0b2a6f;
  --health-bg: #ecfdf5;   --health-fg: #047857;
  --goods-bg: #f5f3ff;    --goods-fg: #6d28d9;
  --mental-bg: #fdf2f8;   --mental-fg: #be185d;
  --emer-bg: #fef2f2;     --emer-fg: #b91c1c;
}
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  background: var(--slate-50);
  color: var(--slate-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- ヘッダー ---- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .logo { font-size: 16px; font-weight: 900; color: var(--brand-900); text-decoration: none; }
.site-header .beta {
  font-size: 10px; font-weight: 900;
  background: var(--brand-100); color: var(--brand-500);
  border-radius: 999px; padding: 2px 8px;
}

.tiktok-banner {
  background: var(--brand-900);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
}

/* ---- 今日ビュー ---- */
.today { max-width: 560px; margin: 0 auto; padding: 24px 16px 8px; }
.today-date { font-size: 22px; font-weight: 900; color: var(--brand-900); }
.today-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  background: var(--brand-100);
  color: var(--brand-500);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 6px 0 14px;
}
.today-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 16px;
}
.today-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.today-card-head h3 { font-size: 16px; font-weight: 900; color: var(--brand-900); }
.today-progress {
  font-size: 12px; font-weight: 900;
  background: var(--brand-50); color: var(--brand-500);
  border: 1px solid var(--brand-100);
  border-radius: 999px; padding: 2px 10px;
}
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--slate-100);
  cursor: pointer;
}
.check-list li:first-child { border-top: none; }
.check-list .cb {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--slate-300);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  color: #fff;
  margin-top: 1px;
}
.check-list li.done .cb { background: var(--brand-500); border-color: var(--brand-500); }
.check-list li.done .cl-title { text-decoration: line-through; color: var(--slate-400, #94a3b8); }
.cl-title { font-size: 14px; color: var(--slate-700); }
.cl-deadline { display: block; font-size: 11px; font-weight: 900; color: var(--red-700); }
.next-card {
  background: var(--slate-50);
  border: 1px dashed var(--slate-300);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
}
.next-card .next-label { font-size: 13px; font-weight: 900; color: var(--slate-600); }
.next-card .next-date { font-size: 12px; font-weight: 700; color: var(--brand-500); margin-left: 8px; }
.next-card .next-desc { font-size: 12px; color: var(--slate-500); margin-top: 2px; }
.money-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--slate-700);
  cursor: pointer;
}
.money-bar strong { color: var(--brand-700); font-weight: 900; }
.money-bar .bd-arrow { margin-left: auto; }
.today-edit { text-align: right; margin-top: 8px; }
.today-edit button {
  background: none; border: none;
  font-size: 12px; color: var(--slate-500);
  text-decoration: underline; cursor: pointer; font-family: inherit;
}
.result-note { font-size: 11px; color: var(--slate-500); margin-bottom: 8px; }

/* ---- ヒーロー ---- */
.hero {
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
  padding: 40px 20px 36px;
  text-align: center;
}
.hero h1 { font-size: 26px; line-height: 1.45; font-weight: 900; color: var(--brand-900); margin-bottom: 10px; }
.hero h1 .accent { color: var(--brand-500); }
.hero-sub { font-size: 14px; color: var(--slate-500); margin-bottom: 24px; }

.diagnose {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 24px 20px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 1px 3px rgba(2, 26, 68, .06);
}
.field { margin-bottom: 16px; }
.field > label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--brand-900); }
.field-note { font-size: 12px; color: var(--slate-500); margin: -2px 0 8px; }
.field input[type="date"], .field select {
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  color: var(--slate-700);
  -webkit-appearance: none;
}
.field input:focus, .field select:focus { outline: 2px solid var(--brand-500); outline-offset: -1px; }
.toggle { display: flex; gap: 8px; }
.toggle-opt { flex: 1; }
.toggle-opt input { display: none; }
.toggle-opt span {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  color: var(--slate-600);
}
.toggle-opt input:checked + span {
  background: var(--brand-500);
  color: #fff;
  border-color: var(--brand-500);
  font-weight: 700;
}
.btn-primary {
  width: 100%;
  background: var(--brand-500);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 4px;
}
.btn-primary:active { transform: scale(.98); }

/* ---- 結果 ---- */
.result { text-align: center; padding: 40px 20px 24px; background: #fff; border-top: 1px solid var(--slate-200); }
.result-label { font-size: 13px; font-weight: 700; color: var(--slate-500); }
.result-amount { font-size: 64px; font-weight: 900; color: var(--brand-500); line-height: 1.2; }
.result-amount .unit { font-size: 26px; margin-left: 4px; color: var(--brand-900); }
.result-sub { font-size: 14px; color: var(--slate-500); margin-bottom: 24px; }
.result-sub strong { color: var(--brand-700); font-size: 17px; }

.breakdown { max-width: 460px; margin: 0 auto; text-align: left; }
.bd-group-h { font-size: 13px; font-weight: 900; color: var(--slate-500); margin: 16px 0 8px; }
.bd-group-h:first-child { margin-top: 0; }
.bd-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.bd-card.open { border-color: var(--brand-500); }
.bd-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.bd-titles { flex: 1; min-width: 0; }
.bd-name { font-size: 14px; font-weight: 700; color: var(--slate-700); }
.bd-desc { font-size: 12px; color: var(--slate-500); display: block; font-weight: 400; }
.bd-amount { font-size: 15px; font-weight: 900; color: var(--brand-700); white-space: nowrap; }
.bd-arrow { color: var(--slate-500); font-size: 12px; transition: transform .15s; }
.bd-card.open .bd-arrow { transform: rotate(180deg); }
.bd-body { padding: 4px 16px 14px; border-top: 1px solid var(--slate-100); }
.bd-detail { display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--slate-100); }
.bd-detail:first-child { border-top: none; }
.bd-detail dt { flex-shrink: 0; width: 92px; font-size: 12px; font-weight: 900; color: var(--brand-900); }
.bd-detail dd { font-size: 13px; color: var(--slate-600); }
.disclaimer { font-size: 11px; color: var(--slate-500); max-width: 460px; margin: 16px auto 0; text-align: left; }
.result-bridge { margin-top: 28px; font-size: 15px; font-weight: 900; color: var(--brand-900); }

/* ---- ステージ・ステッパー（横型） ---- */
.stepper-wrap { background: #fff; padding: 20px 0 8px; border-bottom: 1px solid var(--slate-200); }
.stepper {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 12px;
  scrollbar-width: none;
}
.stepper::-webkit-scrollbar { display: none; }
.step { display: flex; flex-direction: column; align-items: center; min-width: 64px; position: relative; }
.step .dot-row { display: flex; align-items: center; width: 100%; }
.step .line { flex: 1; height: 2px; border-radius: 999px; background: var(--slate-200); }
.step .line.done { background: var(--brand-500); }
.step .line.hidden-line { visibility: hidden; }
.step .dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  border: 2px solid var(--slate-300);
  background: var(--slate-300);
  flex-shrink: 0;
}
.step.done .dot { border-color: var(--brand-500); background: var(--brand-500); }
.step.current .dot {
  border-color: var(--brand-500); background: #fff;
  box-shadow: 0 0 0 4px var(--brand-100);
}
.step .st-name { font-size: 10px; font-weight: 700; color: var(--slate-500); margin-top: 6px; white-space: nowrap; }
.step.current .st-name { color: var(--brand-500); font-weight: 900; }

/* ---- タイムライン ---- */
.timeline-section { padding: 20px 16px 40px; max-width: 560px; margin: 0 auto; }
.timeline-section h2 { font-size: 19px; font-weight: 900; color: var(--brand-900); text-align: center; margin: 20px 0 14px; }

.now-card {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
}
.now-card .now-stage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  background: var(--brand-100);
  color: var(--brand-500);
  border-radius: 999px;
  padding: 3px 10px;
}
.now-card h3 { font-size: 17px; font-weight: 900; color: var(--brand-900); margin: 8px 0; }
.now-card .now-items { background: #fff; border-radius: 8px; padding: 4px 12px; }
.now-card li { list-style: none; padding: 8px 0; font-size: 14px; color: var(--slate-700); border-top: 1px solid var(--slate-100); }
.now-card li:first-child { border-top: none; }

.layer-chips { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.layer-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--slate-600);
  font-family: inherit;
}
.chip .cnt { font-size: 10px; font-weight: 900; opacity: .65; }
.chip.active { background: var(--brand-900); color: #fff; border-color: var(--brand-900); }

/* タイムラインの独立スクロール枠 */
.timeline-box {
  position: relative;
  max-height: 65vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 12px 12px 8px;
  overscroll-behavior: contain;
}
.jump-today {
  position: sticky;
  bottom: 8px;
  left: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-900);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(6, 26, 68, .25);
}

/* 縦タイムライン（左レール＋ノード） */
#timeline { position: relative; padding-left: 18px; }
#timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 10px; bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: var(--slate-200);
}
.stage-block { position: relative; margin-bottom: 10px; }
.stage-block::before {
  content: "";
  position: absolute;
  left: -18px; top: 18px;
  width: 12px; height: 12px;
  border-radius: 999px;
  border: 2px solid var(--slate-300);
  background: var(--slate-300);
  z-index: 1;
}
.stage-block.done::before { border-color: var(--brand-500); background: var(--brand-500); }
.stage-block.current::before {
  border-color: var(--brand-500); background: #fff;
  box-shadow: 0 0 0 4px var(--brand-100);
}
.stage-head {
  width: 100%;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.stage-block.current .stage-head { border: 1.5px solid var(--brand-500); background: var(--brand-50); }
.stage-head .st-label { font-size: 15px; font-weight: 900; color: var(--brand-900); }
.stage-head .st-range { font-size: 12px; color: var(--slate-500); }
.stage-head .st-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  color: var(--brand-500);
  background: var(--brand-100);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
}
.stage-block.current .st-count { background: var(--brand-500); color: #fff; }
.stage-head .chev { margin-left: 4px; color: var(--slate-400, #94a3b8); font-size: 12px; transition: transform .15s; }
.stage-head[aria-expanded="true"] .chev { transform: rotate(180deg); }
.stage-desc { font-size: 12px; color: var(--slate-500); padding: 6px 16px 0; }
.stage-head:active { background: var(--slate-100); }
.bd-head:active { background: var(--slate-50); }
.money-bar:active { background: var(--slate-50); }
.stage-items { padding: 8px 0 4px; }

.item-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 8px 0;
}
.item-card h4 { font-size: 15px; font-weight: 700; color: var(--slate-700); margin-bottom: 4px; }
.item-deadline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 900;
  color: var(--red-700);
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 6px;
}
.item-why { font-size: 12px; color: var(--slate-500); margin-bottom: 8px; }
.item-where { font-size: 12px; font-weight: 700; color: var(--brand-700); margin-bottom: 6px; }
.item-action {
  font-size: 13px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--slate-700);
}
.item-layers { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.item-more, .cl-more {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: 999px; padding: 4px 12px;
  font-size: 12px; font-weight: 900; color: var(--brand-500);
  text-decoration: none; white-space: nowrap;
}
.item-more { margin-left: auto; }
.item-more:active, .cl-more:active { background: var(--brand-100); }
.layer-tag {
  font-size: 10px;
  font-weight: 900;
  border-radius: 999px;
  padding: 2px 8px;
}
.layer-tag.money { background: var(--money-bg); color: var(--money-fg); }
.layer-tag.procedure { background: var(--proc-bg); color: var(--proc-fg); }
.layer-tag.health { background: var(--health-bg); color: var(--health-fg); }
.layer-tag.goods { background: var(--goods-bg); color: var(--goods-fg); }
.layer-tag.mental { background: var(--mental-bg); color: var(--mental-fg); }
.layer-tag.emergency { background: var(--emer-bg); color: var(--emer-fg); }

.emergency-link { padding: 0 16px 32px; max-width: 560px; margin: 0 auto; }
.emergency-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: var(--slate-700);
}
.emergency-card .em-body { flex: 1; }
.em-go { font-size: 24px; font-weight: 900; color: var(--red-700); }
.emergency-card strong { display: block; margin-bottom: 4px; color: var(--red-700); font-weight: 900; }
.emergency-card span { font-size: 13px; color: var(--slate-500); }

.a2hs {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--brand-900);
  color: #fff;
  border-radius: 12px;
  padding: 14px 40px 14px 16px;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(6, 26, 68, .3);
  z-index: 50;
}
.a2hs button {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.share-icon { font-weight: 700; }

footer { text-align: center; padding: 24px 16px 48px; font-size: 11px; color: var(--slate-500); }

/* ---- 緊急時ページ ---- */
.em-page { max-width: 560px; margin: 0 auto; padding: 24px 16px 48px; }
.em-page h1 { font-size: 22px; font-weight: 900; color: var(--brand-900); margin-bottom: 4px; }
.em-page .em-sub { font-size: 13px; color: var(--slate-500); margin-bottom: 20px; }
.em-block { background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.em-block h2 { font-size: 15px; font-weight: 900; margin-bottom: 10px; color: var(--brand-900); }
.em-block ul { list-style: none; }
.em-block li { padding: 8px 0; font-size: 14px; border-top: 1px solid var(--slate-100); }
.em-block li:first-child { border-top: none; }
.em-tel { font-size: 17px; font-weight: 900; color: var(--brand-500); text-decoration: none; }
.em-danger { background: var(--red-50); border-color: var(--red-200); }
.em-danger h2 { color: var(--red-700); }
.back-link { display: inline-block; margin-bottom: 16px; color: var(--brand-500); font-size: 14px; font-weight: 700; text-decoration: none; }

/* ==== PC（900px以上）: 2カラム・余白圧縮 ==== */
@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 24px;
    text-align: left;
  }
  .hero h1 { font-size: 38px; }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 16px; margin-bottom: 0; }
  .hero-sub br { display: none; }
  .diagnose { margin: 0; }

  .result { padding: 48px 24px 32px; }
  .result-amount { font-size: 80px; }
  .breakdown {
    max-width: 880px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
    align-items: start;
  }
  .bd-card { break-inside: avoid; }
  .disclaimer { max-width: 880px; }

  .stepper { justify-content: center; }
  .step { min-width: 76px; }
  .step .st-name { font-size: 11px; }

  .timeline-section { max-width: 720px; padding: 28px 24px 56px; }
  .timeline-section h2 { font-size: 22px; }
  .now-card { padding: 20px 24px; }
  .stage-head { padding: 16px 20px; }
  .item-card { padding: 16px 20px; }
  .emergency-link { max-width: 720px; padding: 0 24px 40px; }

  .a2hs { left: auto; right: 24px; max-width: 340px; }
  .em-page { max-width: 720px; }
  .today { max-width: 720px; padding: 32px 24px 8px; }
  .today-date { font-size: 28px; }
  .timeline-box { max-height: 640px; }
}

/* ---- 詳細ページ ---- */
.detail-page { max-width: 640px; margin: 0 auto; padding: 20px 16px 48px; }
.detail-crumb { font-size: 12px; color: var(--slate-500); margin-bottom: 12px; }
.detail-crumb a { color: var(--brand-500); text-decoration: none; font-weight: 700; }
.detail-stagebadge {
  display: inline-block;
  font-size: 11px; font-weight: 900;
  background: var(--brand-100); color: var(--brand-500);
  border-radius: 999px; padding: 3px 10px; margin-bottom: 8px;
}
.detail-page h1 { font-size: 24px; font-weight: 900; color: var(--brand-900); line-height: 1.4; margin-bottom: 8px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 4px; }
.detail-meta span { font-size: 11px; font-weight: 700; background: var(--slate-100); color: var(--slate-600); border-radius: 999px; padding: 4px 10px; }
.detail-lead {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  margin: 12px 0 20px;
}
.detail-sec { background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; padding: 18px; margin-bottom: 12px; }
.detail-sec h2 { font-size: 16px; font-weight: 900; color: var(--brand-900); margin-bottom: 8px; }
.detail-sec p { font-size: 14px; margin-bottom: 8px; }
.detail-sec p:last-child { margin-bottom: 0; }
.detail-check { list-style: none; }
.detail-check li { display: flex; gap: 8px; padding: 7px 0; font-size: 14px; border-top: 1px solid var(--slate-100); }
.detail-check li:first-child { border-top: none; }
.detail-check li::before { content: "☑️"; }
.detail-faq .q { font-size: 14px; font-weight: 900; color: var(--brand-900); margin-top: 12px; }
.detail-faq .q:first-child { margin-top: 0; }
.detail-faq .a { font-size: 13px; color: var(--slate-600); margin-top: 2px; }
.detail-links a { display: block; font-size: 13px; font-weight: 700; color: var(--brand-500); padding: 6px 0; }
.detail-rel { margin-top: 20px; }
.detail-rel h3 { font-size: 13px; font-weight: 900; color: var(--slate-500); margin-bottom: 8px; }
.detail-rel a {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  text-decoration: none;
}
.detail-rel a::after { content: "›"; margin-left: auto; font-size: 18px; font-weight: 900; color: var(--slate-300); }
