/* =====================================================================
   PACHI AWARD DEMO — ゴールド × ブラック 高級トンマナ
   デザインシステム / 共通装飾（プレーンCSS版）
   ===================================================================== */

:root {
  /* --- 背景（温かみのあるブラック） --- */
  --bg-0: #07060a;
  --bg-1: #0c0a07;
  --bg-2: #14110b;
  --panel: #181309;
  --panel-edge: #2a2110;

  /* --- ゴールド階調 --- */
  --gold-100: #fff7df;
  --gold-200: #ffe9a8;
  --gold-300: #f3d27c;
  --gold-400: #e3bb5a;
  --gold-500: #c9a227;
  --gold-600: #a8841d;
  --gold-700: #7c6015;
  --gold-deep: #4a3a0d;

  /* メダル */
  --au: #f4cf5a;
  --ag: #d8dde3;
  --cu: #d68a52;

  /* テキスト */
  --ink: #f6efe0;
  --ink-soft: #cbbf9f;
  --ink-mute: #8a7f63;

  --gold-grad: linear-gradient(180deg, #fff7df 0%, #ffe9a8 18%, #f0cf78 42%, #c9a227 62%, #8a6d1f 80%, #f0cf78 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold-500) 18%, var(--gold-200) 50%, var(--gold-500) 82%, transparent);

  --serif: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --latin: "Cinzel", serif;

  --shadow-deep: 0 30px 80px -30px rgba(0,0,0,.9);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 全体の背景テクスチャ（ヴィネット + 微細グレイン） */
.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,162,39,.16), transparent 60%),
    radial-gradient(100% 60% at 50% 120%, rgba(124,96,21,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 40%, #050406 100%);
}
.page::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .035;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* =========================== 共通装飾 =========================== */

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gold-rule {
  height: 1px;
  width: 100%;
  background: var(--gold-line);
  opacity: .8;
}

/* 細い装飾ダイヤ（◆）区切り */
.diamond-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-500);
}
.diamond-rule::before, .diamond-rule::after {
  content: "";
  height: 1px; width: min(160px, 22vw);
  background: var(--gold-line);
}
.diamond-rule i {
  width: 7px; height: 7px;
  background: var(--gold-grad);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(243,210,124,.7);
}

.kicker {
  font-family: var(--latin);
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(11px, 1vw, 14px);
  color: var(--gold-300);
  text-indent: .42em;
}

.section-label {
  font-family: var(--latin);
  letter-spacing: .3em;
  font-size: clamp(12px, 1.1vw, 15px);
  color: var(--gold-300);
}

/* ボタン */
.btn-gold {
  position: relative;
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: .14em;
  color: #1a1305;
  padding: 1.05em 2.4em;
  border: none; cursor: pointer;
  background: var(--gold-grad);
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 14px 34px -12px rgba(201,162,39,.7), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -12px rgba(201,162,39,.85), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .6em;
  font-weight: 600; letter-spacing: .14em;
  font-size: clamp(13px,1vw,15px);
  color: var(--gold-200);
  padding: 1.02em 2.1em;
  border: 1px solid var(--gold-700);
  background: rgba(201,162,39,.04);
  border-radius: 2px; cursor: pointer;
  text-decoration: none;
  transition: border-color .25s, background .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gold-400); background: rgba(201,162,39,.1); color: var(--gold-100); }

/* DEMOバッジ（角固定） */
.demo-flag {
  position: fixed; top: 14px; left: 14px; z-index: 60;
  font-family: var(--latin); font-weight: 700;
  letter-spacing: .28em; font-size: 11px;
  color: var(--gold-200);
  padding: 7px 13px 7px 15px;
  border: 1px solid var(--gold-700);
  background: rgba(10,8,4,.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 9px;
}
.demo-flag b { color: var(--ink-soft); font-family: var(--sans); font-weight: 500; letter-spacing: .12em; font-size: 10px; }
.demo-flag i { width: 6px; height: 6px; background: var(--gold-300); transform: rotate(45deg); }

/* パターン切替リンク（右上固定・デモ用） */
.variant-nav {
  position: fixed; top: 14px; right: 14px; z-index: 60;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--gold-700);
  background: rgba(10,8,4,.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.variant-nav span { font-size: 10px; letter-spacing: .14em; color: var(--ink-mute); padding-right: 4px; }
.variant-nav a {
  font-family: var(--latin); font-weight: 700; font-size: 12px;
  width: 28px; height: 28px; display: grid; place-items: center;
  color: var(--gold-200); text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.variant-nav a:hover { border-color: var(--gold-700); background: rgba(201,162,39,.08); }
.variant-nav a.cur { border-color: var(--gold-500); background: rgba(201,162,39,.14); color: var(--gold-100); }
@media (max-width: 640px) {
  .variant-nav { top: 58px; }
}

/* ダミー注記の小ラベル */
.dummy-note {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .16em;
  color: var(--ink-mute);
}
.tag-demo {
  display: inline-block;
  font-size: 10px; letter-spacing: .2em; font-weight: 700;
  color: var(--gold-200);
  border: 1px solid var(--gold-700);
  padding: 2px 7px; border-radius: 2px;
  vertical-align: middle;
}

/* 画像プレースホルダ枠（フリー素材を流し込む想定の枠） */
.img-slot {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(201,162,39,.07) 0 12px, rgba(201,162,39,.02) 12px 24px),
    #100d08;
  outline: 1px solid var(--panel-edge);
}
.img-slot .cap {
  color: var(--ink-soft);
  font-family: var(--sans); font-size: 12px; letter-spacing: .14em;
  text-align: center; padding: 0 1em; line-height: 1.8;
}

.shell { position: relative; z-index: 2; }
.container { width: min(1240px, 92vw); margin-inline: auto; }

/* スクロール出現（JS有効時のみ初期非表示。JSなしでも必ず見える） */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   HERO 3案
   A: 王道センター（メダリオン）  B: 分割トロフィー  C: フルブリード写真
   ===================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  isolation: isolate;
}

/* トップの極細バー（ナビ風） */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 8;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
}
.topbar .brand {
  font-family: var(--latin); font-weight: 900;
  letter-spacing: .26em; font-size: 15px;
}
.topbar nav { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.topbar nav a {
  font-size: 12px; letter-spacing: .2em; color: var(--ink-soft);
  text-decoration: none; transition: color .2s;
}
.topbar nav a:hover { color: var(--gold-200); }

/* 光のレイ（共通背景演出） */
.rays {
  position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    conic-gradient(from 180deg at 50% 0%,
      transparent 0deg, rgba(243,210,124,.10) 6deg, transparent 12deg,
      rgba(243,210,124,.07) 22deg, transparent 30deg,
      rgba(243,210,124,.10) 44deg, transparent 52deg,
      transparent 308deg, rgba(243,210,124,.10) 316deg, transparent 324deg,
      rgba(243,210,124,.07) 338deg, transparent 346deg,
      rgba(243,210,124,.10) 354deg, transparent 360deg);
  filter: blur(2px);
  z-index: 0; pointer-events: none;
}
.glow-floor {
  position: absolute; left: 50%; bottom: -30%; transform: translateX(-50%);
  width: 90vw; height: 60vh;
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,162,39,.22), transparent 70%);
  z-index: 0; pointer-events: none;
}

/* 浮遊する金粒子 */
.spark {
  position: absolute; border-radius: 50%; background: var(--gold-200);
  box-shadow: 0 0 8px 1px rgba(243,210,124,.8); opacity: 0; z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .spark { animation: floatUp linear infinite; }
}
@keyframes floatUp {
  0% { transform: translateY(20px); opacity: 0; }
  15% { opacity: .9; }
  85% { opacity: .7; }
  100% { transform: translateY(-120px); opacity: 0; }
}

/* ===================== A: 王道センター ===================== */
.hero-A { align-items: center; justify-content: center; text-align: center; }
.hero-A .inner { position: relative; z-index: 4; width: min(900px, 90vw); padding: 120px 0 90px; }

.medallion {
  width: clamp(110px, 13vw, 168px); height: clamp(110px, 13vw, 168px);
  margin: 0 auto 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 35%, #1c160b, #0a0805 75%);
  border: 1px solid var(--gold-600);
  box-shadow: 0 0 0 6px rgba(201,162,39,.08), 0 0 40px rgba(201,162,39,.3), inset 0 0 22px rgba(201,162,39,.18);
}
.medallion::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  border: 1px dashed rgba(243,210,124,.5);
}
.medallion .yr { font-family: var(--latin); font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); line-height: 1; }
.medallion .mk { font-family: var(--latin); letter-spacing: .3em; font-size: 9px; color: var(--gold-300); margin-top: 4px; }

.hero-A h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(46px, 9vw, 132px); line-height: 1.02;
  letter-spacing: .04em; margin: 26px 0 8px;
}
.hero h1 .tline { display: block; }
.hero-A .sub-latin {
  font-family: var(--latin); letter-spacing: .5em; font-weight: 700;
  font-size: clamp(13px, 1.4vw, 19px); color: var(--gold-300); text-indent: .5em;
}
.hero-A .lead {
  margin: 30px auto 0; max-width: 560px; color: var(--ink-soft);
  font-size: clamp(14px, 1.2vw, 17px); line-height: 1.95; letter-spacing: .04em;
}

/* 開催情報 行 */
.event-row {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  gap: 0; margin: 44px auto 40px; width: fit-content;
  border: 1px solid var(--panel-edge);
  background: rgba(12,10,7,.5);
}
.event-row .cell { padding: 16px clamp(20px, 3vw, 38px); text-align: center; }
.event-row .cell + .cell { border-left: 1px solid var(--panel-edge); }
.event-row .cell .lab { font-family: var(--latin); letter-spacing: .26em; font-size: 10px; color: var(--gold-400); margin-bottom: 8px; }
.event-row .cell .val { font-family: var(--serif); font-weight: 700; font-size: clamp(16px, 1.6vw, 22px); color: var(--ink); }

.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ===================== B: 分割トロフィー ===================== */
.hero-B { align-items: stretch; }
.hero-B .split { display: grid; grid-template-columns: 1.05fr .95fr; width: 100%; z-index: 4; }
.hero-B .left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(90px, 12vh, 150px) clamp(28px, 5vw, 80px) 60px;
}
.hero-B .left h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(40px, 6.2vw, 92px); line-height: 1.06; margin: 18px 0 10px;
}
.hero-B .left .sub-latin {
  font-family: var(--latin); letter-spacing: .42em; font-weight: 700;
  font-size: clamp(12px,1.3vw,18px); color: var(--gold-300);
}
.hero-B .left .lead { margin-top: 26px; max-width: 460px; color: var(--ink-soft);
  font-size: clamp(14px,1.1vw,16px); line-height: 1.95; letter-spacing: .04em; }
.hero-B .left .cta-row { justify-content: flex-start; margin-top: 36px; }
.hero-B .left .meta { display: flex; gap: 30px; margin-top: 40px; }
.hero-B .left .meta .m .lab { font-family: var(--latin); letter-spacing: .24em; font-size: 10px; color: var(--gold-400); margin-bottom: 6px; }
.hero-B .left .meta .m .val { font-family: var(--serif); font-weight: 700; font-size: clamp(15px,1.4vw,20px); }

.hero-B .right { position: relative; display: grid; place-items: center; padding: 40px; }
.frame-photo {
  position: relative; width: min(440px, 80%); aspect-ratio: 3/4;
  padding: 12px; background: linear-gradient(160deg, #1a1408, #0c0a06);
  border: 1px solid var(--gold-600);
  box-shadow: var(--shadow-deep), inset 0 0 30px rgba(201,162,39,.1);
}
.frame-photo .img-slot { width: 100%; height: 100%; }
.frame-photo .corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--gold-300); }
.frame-photo .corner.tl { top: 4px; left: 4px; border-right: 0; border-bottom: 0; }
.frame-photo .corner.tr { top: 4px; right: 4px; border-left: 0; border-bottom: 0; }
.frame-photo .corner.bl { bottom: 4px; left: 4px; border-right: 0; border-top: 0; }
.frame-photo .corner.br { bottom: 4px; right: 4px; border-left: 0; border-top: 0; }
.frame-photo .ribbon {
  position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%);
  background: var(--gold-grad); color: #1a1305; font-weight: 700;
  font-size: 12px; letter-spacing: .2em; padding: 8px 22px;
  box-shadow: 0 10px 26px -8px rgba(201,162,39,.7);
  white-space: nowrap;
}

/* ===================== C: フルブリード写真 ===================== */
.hero-C { align-items: flex-end; }
.hero-C .bg-slot { position: absolute; inset: 0; z-index: 0; }
.hero-C .bg-slot .img-slot { width: 100%; height: 100%; place-items: start center; padding-top: clamp(90px, 14vh, 150px); }
.hero-C .scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7,6,10,.55) 0%, rgba(7,6,10,.1) 30%, rgba(7,6,10,.7) 78%, rgba(7,6,10,.96) 100%),
    radial-gradient(120% 70% at 50% 120%, rgba(201,162,39,.2), transparent 60%);
}
.hero-C .inner { position: relative; z-index: 4; width: 100%; padding: 0 clamp(24px,5vw,72px) clamp(96px,13vh,140px); }
.hero-C .topline { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.hero-C h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(46px, 9vw, 138px); line-height: 1.0;
}
.hero-C .sub-latin { font-family: var(--latin); letter-spacing: .46em; font-weight: 700; color: var(--gold-300); font-size: clamp(12px,1.3vw,18px); margin-top: 14px; }
.hero-C .botrow { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 26px; margin-top: 38px; }
.hero-C .lead { max-width: 420px; color: var(--ink-soft); font-size: clamp(14px,1.1vw,16px); line-height: 1.9; }

/* ノミネート・ティッカー */
.ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid var(--panel-edge);
  background: rgba(7,6,8,.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  overflow: hidden; white-space: nowrap;
}
.ticker .track { display: inline-flex; align-items: center; padding: 13px 0; }
@media (prefers-reduced-motion: no-preference) {
  .ticker .track { animation: marquee 32s linear infinite; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker .track span { font-family: var(--serif); font-size: 14px; letter-spacing: .1em; color: var(--ink-soft); padding: 0 26px; }
.ticker .track i { width: 5px; height: 5px; background: var(--gold-400); transform: rotate(45deg); }

/* レスポンシブ */
@media (max-width: 860px) {
  .hero-B .split { grid-template-columns: 1fr; }
  .hero-B .right { order: -1; padding-top: 96px; }
  .frame-photo { width: min(320px, 70%); }
  .topbar nav { display: none; }
}

/* =====================================================================
   受賞ランキング — 金・銀・銅の表彰台 + ノミネート一覧
   ===================================================================== */

.awards { position: relative; padding: clamp(90px, 13vh, 150px) 0 0; z-index: 2; }

.sec-head { text-align: center; margin-bottom: clamp(50px, 7vh, 84px); }
.sec-head .section-label { display: block; margin-bottom: 16px; }
.sec-head h2 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(32px, 5vw, 64px); line-height: 1.05; margin-bottom: 18px;
}
.sec-head p { color: var(--ink-soft); font-size: clamp(13px,1.1vw,16px); letter-spacing: .04em; max-width: 540px; margin: 0 auto; line-height: 1.9; }

/* 金（大） */
.grand {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(1120px, 92vw); margin: 0 auto clamp(40px, 6vh, 70px);
  padding: clamp(26px, 3.4vw, 48px);
  background: linear-gradient(160deg, rgba(33,26,11,.7), rgba(12,10,7,.5));
  border: 1px solid var(--gold-700);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,.04);
}
.grand::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 90% at 78% 30%, rgba(244,207,90,.16), transparent 60%);
}
.grand .photo { position: relative; }
.grand .photo .img-slot { width: 100%; aspect-ratio: 4/3; }
.grand .photo .frame-line { position: absolute; inset: -10px; border: 1px solid var(--gold-700); pointer-events: none; }

.rank-info { position: relative; z-index: 2; }

/* メダル円章 */
.medal { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.medal .disc {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--latin); font-weight: 900; font-size: 26px; color: #2a2008;
  position: relative; flex: none;
}
.medal .disc::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px solid rgba(0,0,0,.25); }
.medal.au .disc { background: radial-gradient(circle at 38% 30%, #fff2c0, var(--au) 55%, #b8862a); box-shadow: 0 0 30px rgba(244,207,90,.5); }
.medal.ag .disc { background: radial-gradient(circle at 38% 30%, #fbfdff, var(--ag) 55%, #9aa3ad); box-shadow: 0 0 24px rgba(216,221,227,.4); }
.medal.cu .disc { background: radial-gradient(circle at 38% 30%, #f6c79e, var(--cu) 55%, #a45f30); box-shadow: 0 0 24px rgba(214,138,82,.4); }
.medal .ml .grade { font-family: var(--serif); font-weight: 800; font-size: 22px; line-height: 1; }
.medal .ml .en { font-family: var(--latin); letter-spacing: .26em; font-size: 10px; color: var(--gold-300); margin-top: 5px; }

.rank-info .cat { font-family: var(--latin); letter-spacing: .24em; font-size: 11px; color: var(--gold-400); margin-bottom: 12px; }
.rank-info h3 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 46px); line-height: 1.12; margin-bottom: 8px;
}
.rank-info .maker { color: var(--ink-mute); font-size: 13px; letter-spacing: .1em; margin-bottom: 22px; }
.rank-info .desc { color: var(--ink-soft); font-size: clamp(13px,1vw,15px); line-height: 1.95; max-width: 46ch; }

/* 得票バー */
.votes { margin-top: 26px; max-width: 380px; }
.votes .vrow { margin-bottom: 14px; }
.votes .vt { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.votes .vt .lab { font-size: 11px; letter-spacing: .18em; color: var(--ink-mute); }
.votes .vt .num { font-family: var(--latin); font-weight: 700; font-size: 20px; }
.votes .bar { height: 6px; background: #221a0c; border-radius: 99px; overflow: hidden; }
.votes .bar i { display: block; height: 100%; border-radius: 99px; background: var(--gold-grad); box-shadow: 0 0 14px rgba(243,210,124,.5); }

/* 銀・銅（横並び） */
.podium-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); width: min(1120px, 92vw); margin: 0 auto; }
.pcard {
  position: relative; padding: clamp(20px, 2.6vw, 34px);
  background: linear-gradient(160deg, rgba(20,17,11,.7), rgba(10,9,6,.5));
  border: 1px solid var(--panel-edge);
  transition: border-color .3s, transform .3s;
}
.pcard:hover { border-color: var(--gold-700); transform: translateY(-4px); }
.pcard .photo .img-slot { width: 100%; aspect-ratio: 16/10; }
.pcard .body { margin-top: 22px; }
.pcard .cat { font-family: var(--latin); letter-spacing: .22em; font-size: 10px; color: var(--gold-400); margin-bottom: 10px; }
.pcard h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(20px,2vw,28px); line-height: 1.18; margin-bottom: 6px; }
.pcard .maker { color: var(--ink-mute); font-size: 12px; letter-spacing: .08em; margin-bottom: 16px; }
.pcard .votes { margin-top: 0; max-width: none; }

/* ノミネート一覧 */
.nominees { width: min(1120px, 92vw); margin: clamp(56px, 8vh, 96px) auto 0; }
.nominees .nh { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.nominees .nh .t { font-family: var(--serif); font-weight: 700; font-size: clamp(18px,1.8vw,24px); white-space: nowrap; }
.nominees .nh .gold-rule { flex: 1; }
.nlist { border-top: 1px solid var(--panel-edge); }
.nrow {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 22px;
  padding: 18px clamp(8px, 1.5vw, 18px);
  border-bottom: 1px solid var(--panel-edge);
  transition: background .25s;
}
.nrow:hover { background: rgba(201,162,39,.05); }
.nrow .rk { font-family: var(--latin); font-weight: 700; font-size: 22px; color: var(--gold-500); text-align: center; }
.nrow .nm { display: flex; flex-direction: column; gap: 4px; }
.nrow .nm .ti { font-family: var(--serif); font-size: clamp(15px,1.4vw,19px); font-weight: 700; }
.nrow .nm .mk { font-size: 11px; letter-spacing: .1em; color: var(--ink-mute); }
.nrow .vv { font-family: var(--latin); font-weight: 700; font-size: clamp(15px,1.3vw,18px); color: var(--ink-soft); }

/* フッター */
.foot { position: relative; z-index: 2; margin-top: clamp(80px, 12vh, 140px); padding: clamp(50px,7vh,80px) 0 40px; border-top: 1px solid var(--panel-edge); text-align: center; }
.foot .fbrand { font-family: var(--latin); font-weight: 900; letter-spacing: .26em; font-size: clamp(20px,2.4vw,30px); margin-bottom: 18px; }
.foot .fnote { color: var(--ink-mute); font-size: 12px; letter-spacing: .08em; line-height: 2; max-width: 620px; margin: 0 auto; padding: 0 5vw; }
.foot .fage { margin-top: 18px; color: var(--ink-soft); font-size: 12px; letter-spacing: .1em; }
.foot .fcopy { margin-top: 26px; font-family: var(--latin); letter-spacing: .2em; font-size: 11px; color: var(--ink-mute); }

@media (max-width: 860px) {
  .grand { grid-template-columns: 1fr; }
  .podium-2 { grid-template-columns: 1fr; }
}

/* =====================================================================
   入口ページ（パターン選択）
   ===================================================================== */

.gate { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 90px 0; }
.gate .inner { position: relative; z-index: 4; width: min(1080px, 92vw); text-align: center; }
.gate .lead { margin: 22px auto 0; max-width: 600px; color: var(--ink-soft); font-size: clamp(13px,1.1vw,16px); line-height: 2; letter-spacing: .04em; }
.gate h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(34px, 5.4vw, 72px); line-height: 1.15; margin: 20px 0 6px; }

.variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(40px, 6vh, 64px); }
.vcard {
  position: relative; display: block; text-decoration: none; color: var(--ink);
  padding: clamp(22px, 2.6vw, 34px) clamp(18px, 2vw, 28px) clamp(24px, 2.8vw, 36px);
  background: linear-gradient(160deg, rgba(26,21,11,.72), rgba(10,9,6,.55));
  border: 1px solid var(--panel-edge);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  text-align: left;
}
.vcard:hover { border-color: var(--gold-600); transform: translateY(-5px); box-shadow: var(--shadow-deep); }
.vcard .vletter { font-family: var(--latin); font-weight: 900; font-size: clamp(34px, 3.6vw, 48px); line-height: 1; }
.vcard .vname { font-family: var(--serif); font-weight: 700; font-size: clamp(17px, 1.6vw, 22px); margin-top: 14px; }
.vcard .vdesc { color: var(--ink-soft); font-size: 13px; line-height: 1.9; letter-spacing: .03em; margin-top: 10px; min-height: 4.5em; }
.vcard .varrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; letter-spacing: .2em; color: var(--gold-300); }
.vcard .varrow::after { content: "→"; transition: transform .25s; }
.vcard:hover .varrow::after { transform: translateX(5px); }

.gate-foot { margin-top: clamp(40px, 6vh, 60px); }
.gate-foot .fnote { color: var(--ink-mute); font-size: 12px; letter-spacing: .08em; line-height: 2; max-width: 620px; margin: 0 auto; }

@media (max-width: 860px) {
  .variants { grid-template-columns: 1fr; }
  .vcard .vdesc { min-height: 0; }
}
