/* ══ 金継ぎ 追補スタイル（ミレインと城下町ソング・2026-08-27）══
   本番サイトは無改変。<head> の最後にこの1枚を読み込むだけで効きます。
   元の規則と同じセレクタで、後から上書きしています。 */

/* ── ① 文字サイズの段数過多（19段・うち極小文字68件が12px未満）
      役割ごとに束ね、12px未満をなくす。
      本文=13/16/24 ／ ボタン=13/17 ／ その他=13/16/17.6 */

/* 本文 11段 → 3段 */
.hero .scroll-hint,
.hero .kicker,
.profile-box .romaji,
.finder-count,
.first-song .caption span,
.castle-note                { font-size: 13px; }
.hero .count,
.hero .sub,
.castle-card .song,
.sec-lead,
.profile-box p,
.first-song .caption        { font-size: 16px; }
.profile-box .name          { font-size: 24px; }

/* ボタン 7段 → 3段（▶の三角だけ元の大きさを残す＝見送りの理由は診断書に） */
.album-item .tag,
.album-item .num,
.btn-row a,
.cta small                  { font-size: 13px; }
.album-item .arrow,
.album-item .name,
.sns-btn,
.cta                        { font-size: 17px; }

/* その他 5段 → 3段 */
.castle-card .pref,
.badge,
footer                      { font-size: 13px; }

/* ── ② ヒーローの小見出しが写真の上で読めない（比3.25／床4.5・画素検査で違反）
      金は役割のある色なので変えない。写真の暗幕（既存の地の色）を少しだけ濃くして
      文字と地の差を広げる。新しい色は足していない。 */
.hero { position: relative; }
.hero::after { content: ''; position: absolute; inset: 0;
               background: #14141E; opacity: .28; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; }
/* SCROLL は元から absolute。position は触らず、暗幕の上に出すだけ */
.hero .scroll-hint { z-index: 1; }

/* ── ③ 似て非なる色 1件: 再生ボタンの地 #14141E → #1E1E2C（--ink → --ink2） */
.video-frame .play-btn { background: rgba(30, 30, 44, .05); }

/* ── ④ 画面下の「SCROLL」が写真の上で読めない（比3.53／床4.5）
      薄墨 #9A95A8（--muted）は写真の上では沈む。既存の本文色 #E9E4D6（--text）へ。 */
.hero .scroll-hint { color: #E9E4D6; }
