/* ==========================================================================
   AGARIBA — Brand stylesheet v3
   For use on the static agariba.jp site (Home page first).
   - Mobile-first, max shell width 480px
   - Fonts: Cormorant Garamond (latin), Noto Serif JP, Zen Kaku Gothic New
   ========================================================================== */

:root {
  --navy: #004CA0;
  --navy-dk: #003274;
  --navy-soft: #4A6E96;
  --navy-l: #EEF3F9;
  --navy-tint: #DCE5F0;
  --burgundy: #722F37;
  --burgundy-dk: #5A2229;
  --burgundy-soft: #8A4B52;
  --burgundy-l: #F4E8E9;
  --gold: #C9A961;
  --gold-dk: #A8884A;
  --ivory: #FAF6EE;
  --cream: #F4EDDF;
  --paper: #FBF8F1;
  --ink: #1A1A1A;
  --ink-soft: #2D2620;
  --mid: #6B6357;
  --line: #E5DCC8;
  --line-dk: #D4C9B1;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: #2D2620;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
button { background: none; border: none; font-family: inherit; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

/* JP-friendly word breaking */
.v3-h1, .v3-h2, .v3-pt-title, .v3-article-title, .v3-col-feat-title, .v3-col-row-title,
.v3-pennant-title, .v3-sport-hero-title, .v3-sec-title h2 {
  word-break: auto-phrase; line-break: strict; text-wrap: pretty; overflow-wrap: anywhere;
}

/* ============= LAYOUT ============= */
.v3-shell {
  max-width: 480px; margin: 0 auto; min-height: 100vh;
  background: var(--paper); padding-bottom: 84px;
  position: relative;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.4);
}

/* ============= HEADER ============= */
.v3-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ivory);
  display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.v3-h-menu {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.v3-brand {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; padding: 0;
}
.v3-wordmark {
  display: flex; flex-direction: column; line-height: 1; gap: 2px;
}
.v3-wordmark .est {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; letter-spacing: 2.5px; color: var(--gold-dk); font-weight: 600;
}
.v3-wordmark .name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700; font-size: 16px; color: var(--navy-dk); letter-spacing: 1.5px;
}
.v3-h-actions { display: flex; align-items: center; gap: 8px; }
.v3-h-login { font-size: 11px; color: var(--ink); font-weight: 500; padding: 8px 6px; }
.v3-h-cta {
  background: var(--navy); color: var(--ivory); font-size: 11px;
  padding: 7px 14px; border-radius: 4px; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid var(--navy-dk); box-shadow: 0 2px 0 var(--navy-dk);
}

.v3-tricolor {
  height: 3px;
  background: linear-gradient(to right,
    var(--navy) 0%, var(--navy) 33%,
    var(--gold) 33%, var(--gold) 66%,
    var(--burgundy) 66%, var(--burgundy) 100%);
}

/* ============= BOTTOM NAV ============= */
.v3-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 100;
  background: var(--ivory); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
}
.v3-nav-inner {
  display: flex; padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.v3-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 4px; color: var(--mid); transition: color 0.15s;
}
.v3-nav-item.is-active { color: var(--burgundy); }
.v3-nav-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
}
.v3-nav-sub { font-size: 10px; font-weight: 700; }
/* MORE (hamburger only, icon-centered) */
.v3-nav-item[data-drawer-open] { justify-content: center; }
.v3-nav-item[data-drawer-open] svg { width: 22px; height: 22px; }

/* ============= SECTION HEADERS ============= */
.v3-sec { padding: 22px; background: var(--paper); }
.v3-sec-paper {
  background: var(--ivory);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.v3-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px; gap: 8px;
}
.v3-sec-title {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; min-width: 0;
}
.v3-sec-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 13px; color: var(--gold-dk); letter-spacing: 1px;
}
.v3-sec-title h2 {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 18px; color: var(--navy-dk); letter-spacing: 0.5px;
}
.v3-sec-sub {
  font-family: 'Cormorant Garamond', serif; color: var(--mid);
  font-size: 11px; letter-spacing: 2px;
}
.v3-sec-more {
  font-size: 11px; color: var(--burgundy); font-weight: 700; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 0; flex-shrink: 0;
}

/* ============= HERO ============= */
.v3-hero {
  background: var(--ivory); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.v3-hero-bg {
  position: absolute; inset: 0; pointer-events: none; user-select: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-style: italic;
  font-size: 220px; color: var(--burgundy);
  opacity: 0.07; letter-spacing: -0.03em; line-height: 1;
  white-space: nowrap;
  transform: translate(-2%, 6%);
}
.v3-hero-issue {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 14px 22px 4px;
  font-family: 'Cormorant Garamond', serif; font-size: 10px;
  letter-spacing: 3.5px; color: var(--burgundy); font-weight: 700;
  white-space: nowrap;
}
.v3-hero-issue .left { text-align: left; }
.v3-hero-issue .center {
  text-align: center; color: var(--mid); font-style: italic; font-weight: 600;
  letter-spacing: 4px; font-size: 11px;
  padding: 0 14px;
}
.v3-hero-issue .center::before, .v3-hero-issue .center::after {
  content: '✦'; color: var(--gold); font-size: 8px; padding: 0 8px; vertical-align: middle;
}
.v3-hero-issue .right { text-align: right; }

.v3-hero-inner {
  position: relative; z-index: 2;
  padding: 14px 22px 22px;
}
.v3-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  font-weight: 700; text-transform: uppercase; margin-bottom: 14px;
}
.v3-hero-eyebrow::before, .v3-hero-eyebrow::after {
  content: ''; width: 22px; height: 1px; background: var(--burgundy);
}
.v3-h1 {
  font-family: 'Noto Serif JP', serif; font-weight: 900; color: var(--navy-dk);
  line-height: 1.25; letter-spacing: 0.02em; margin-bottom: 18px;
}
.v3-h1-l1 { display: block; font-size: 26px; color: var(--ink); font-weight: 700; }
.v3-h1-l2 {
  display: block; font-size: 46px; color: var(--navy-dk);
  margin: 6px 0 4px; position: relative; line-height: 1.12;
  letter-spacing: 0.01em;
}
.v3-h1-l2 .accent { color: var(--burgundy); position: relative; }
.v3-h1-l2 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 10px;
  background: var(--gold); opacity: 0.4; z-index: -1;
}
.v3-h1-l3 {
  display: block; font-size: 13.5px; font-weight: 500; color: var(--mid);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin-top: 16px; letter-spacing: 0.05em; line-height: 1.75;
  padding-left: 14px; border-left: 2px solid var(--burgundy);
}
.v3-hero-divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0 16px;
}
.v3-hero-divider .line { flex: 1; height: 1px; background: var(--line); }

.v3-hero-foot {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 22px 14px;
}
.v3-hero-foot-line { flex: 1; height: 1px; background: var(--line-dk); }
.v3-hero-foot-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 11px; letter-spacing: 3px;
  color: var(--burgundy); font-weight: 700; white-space: nowrap;
}

.v3-search {
  background: white; border: 1.5px solid var(--navy-dk); border-radius: 4px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 2px 0 var(--navy-dk);
}
.v3-search input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 13px; color: var(--ink);
  background: transparent; min-width: 0;
}
.v3-search input::placeholder { color: var(--mid); }
.v3-search-btn {
  background: var(--navy); color: var(--ivory); border: none;
  padding: 6px 12px; border-radius: 3px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}

/* ============= CATEGORY TILE ============= */
.v3-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.v3-cat {
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: 2px; padding: 14px 4px 10px; text-align: center;
  position: relative; transition: all 0.15s; overflow: hidden;
  display: block;
}
.v3-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-color: var(--line-dk);
}
.v3-cat-ic { display: block; margin: 0 auto 6px; }
.v3-cat-num {
  position: absolute; top: 4px; right: 6px;
  font-family: 'Cormorant Garamond', serif; font-size: 10px; font-weight: 600;
  color: var(--gold-dk); letter-spacing: 1px;
}
.v3-cat-name {
  display: block; font-size: 11px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.3px;
}
.v3-cat-count {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 9px; color: var(--mid); letter-spacing: 1px; margin-top: 2px;
}

/* ============= COLUMN CARDS ============= */
.v3-col-feat {
  display: block; background: var(--ivory); border: 1px solid var(--line);
  border-radius: 2px; overflow: hidden; margin-bottom: 14px;
  position: relative; transition: all 0.15s;
}
.v3-col-feat:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); }
/* Varsity bars apply ONLY to the wide thumbnail image */
.v3-col-feat-img {
  aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream);
  position: relative;
}
.v3-col-feat-img::before, .v3-col-feat-img::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4px; z-index: 2;
}
.v3-col-feat-img::before { left: 0; background: var(--burgundy); }
.v3-col-feat-img::after { right: 0; background: var(--navy); }
.v3-col-feat-img svg { width: 100%; height: 100%; display: block; }
.v3-col-feat-body { padding: 14px 16px 16px; }
.v3-col-feat-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap;
}
.v3-col-cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--ivory); background: var(--burgundy); padding: 2px 8px;
}
.v3-col-cat.alt {
  background: transparent; color: var(--burgundy); border: 1px solid var(--burgundy);
}
.v3-col-sub { font-size: 11px; color: var(--mid); font-weight: 600; }
.v3-col-feat-title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 17px; color: var(--ink); line-height: 1.55; margin-bottom: 12px;
}
.v3-col-feat-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid var(--line);
}
.v3-col-read {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  color: var(--burgundy); font-weight: 700; letter-spacing: 2px;
}
.v3-col-date {
  font-family: 'Cormorant Garamond', serif; font-size: 12px;
  color: var(--mid); letter-spacing: 1px;
}

.v3-col-list { margin-top: 4px; }
.v3-col-row {
  display: flex; gap: 14px; align-items: stretch;
  padding: 12px 4px; border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.v3-col-row:hover { background: var(--cream); }
.v3-col-row:last-child { border-bottom: none; }
.v3-col-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 26px; color: var(--gold-dk); line-height: 1;
  width: 36px; flex-shrink: 0; padding-top: 2px;
  border-right: 1px solid var(--line); text-align: center;
}
.v3-col-row-body { flex: 1; min-width: 0; }
.v3-col-row-meta {
  display: flex; gap: 8px; align-items: center; margin-bottom: 4px; flex-wrap: wrap;
}
.v3-col-row-title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 13.5px; color: var(--ink); line-height: 1.55; margin-bottom: 4px;
}
.v3-col-row-foot {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  color: var(--mid); letter-spacing: 1px;
}

/* ============= NEWS STRIP ============= */
.v3-news {
  background: var(--ivory); border: 1.5px solid var(--line); border-radius: 2px;
}
.v3-news-row {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-bottom: 1px solid var(--line); font-size: 12px;
}
.v3-news-row:last-child { border-bottom: none; }
.v3-news-date {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  color: var(--mid); letter-spacing: 1px; flex-shrink: 0; width: 70px;
}
.v3-news-cat {
  font-family: 'Cormorant Garamond', serif; font-size: 9px;
  font-weight: 700; letter-spacing: 1.5px;
  background: var(--navy-l); color: var(--navy-dk); padding: 2px 7px;
  border: 1px solid var(--navy); flex-shrink: 0;
}
.v3-news-title { flex: 1; color: var(--ink); font-weight: 500; line-height: 1.55; }

/* ============= PENNANT BANNER ============= */
.v3-pennant {
  background: var(--ivory); color: var(--ink);
  padding: 26px 22px 24px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.v3-pennant::before, .v3-pennant::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4px;
}
.v3-pennant::before { left: 0; background: var(--burgundy); }
.v3-pennant::after { right: 0; background: var(--navy); }
.v3-pennant-flag {
  position: absolute; top: 18px; right: 22px; width: 38px; height: 52px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.v3-pennant-flag svg { width: 100%; height: 100%; }
.v3-pennant-body { padding-right: 56px; }
.v3-pennant-kicker {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 3px; color: var(--burgundy); font-weight: 700; margin-bottom: 8px;
}
.v3-pennant-title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 20px; color: var(--navy-dk); line-height: 1.5; margin-bottom: 10px;
}
.v3-pennant p {
  font-size: 13px; line-height: 1.85; color: var(--mid); margin-bottom: 14px;
}
.v3-pennant-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--burgundy);
  font-family: 'Cormorant Garamond', serif; font-weight: 700; letter-spacing: 1.5px;
  font-size: 12px; padding: 9px 16px;
  border: 1.5px solid var(--burgundy);
  text-decoration: none;
}
.v3-pennant-cta:hover { background: var(--burgundy); color: var(--ivory); }

/* ============= FOOTER ============= */
.v3-footer { background: #2D2620; color: var(--ivory); position: relative; }
.v3-footer::before, .v3-footer::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4px;
}
.v3-footer::before { left: 0; background: var(--burgundy); }
.v3-footer::after { right: 0; background: var(--navy); }
.v3-footer-inner { padding: 30px 22px 24px; text-align: center; }
.v3-footer-crest { display: inline-block; margin-bottom: 14px; }
.v3-footer-tag .kicker-en {
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 4px; font-weight: 600; margin-bottom: 6px; display: block;
}
.v3-footer-tag .footer-jp {
  font-family: 'Noto Serif JP', serif; font-size: 13px;
  font-weight: 500; line-height: 1.7; color: rgba(250, 246, 238, 0.85);
  margin-bottom: 18px;
}
.v3-footer-divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0;
}
.v3-footer-divider .line { flex: 1; height: 1px; background: rgba(201, 169, 97, 0.3); }
.v3-footer-cols {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
  margin: 24px 0 18px; text-align: left;
}
.v3-footer-h {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 2px; color: var(--gold); font-weight: 600; margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}
.v3-footer-cols a {
  display: block; font-size: 11.5px; color: rgba(250, 246, 238, 0.75);
  padding: 4px 0; font-weight: 500;
}
.v3-footer-bottom {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  padding-top: 14px; border-top: 1px solid rgba(201, 169, 97, 0.2);
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 2px; color: rgba(250, 246, 238, 0.5); font-weight: 600;
}
.v3-footer-bottom a {
  color: rgba(250, 246, 238, 0.7); text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 2px; font-weight: 600; transition: color .15s;
}
.v3-footer-bottom a:hover { color: var(--gold); }

/* ============ v3-article-end: 記事末尾の関連記事ブロック（IA v3 §6） ============ */
.v3-article-end {
  padding: 28px 22px 36px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.v3-next-in-series {
  margin-bottom: 28px;
  background: var(--ivory); border: 2px solid var(--gold);
  border-radius: 4px; padding: 18px;
}
.v3-next-in-series-h {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  margin-bottom: 12px; text-align: center;
}
.v3-next-in-series-card {
  display: flex; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.v3-next-in-series-card .thumb {
  width: 96px; height: 54px; flex-shrink: 0;
  background: var(--cream); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--burgundy);
}
.v3-next-in-series-card .info { flex: 1; min-width: 0; }
.v3-next-in-series-card .series-meta {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 2px; color: var(--gold-dk);
  margin-bottom: 4px;
}
.v3-next-in-series-card .title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 14px; line-height: 1.5; color: var(--navy-dk);
  margin-bottom: 4px;
}
.v3-next-in-series-card .lead {
  font-size: 12px; color: var(--mid); line-height: 1.6;
}

.v3-related-articles-h {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 16px; color: var(--navy-dk);
  text-align: center; margin-bottom: 4px;
}
.v3-related-articles-en {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 3px; color: var(--burgundy);
  text-align: center; margin-bottom: 18px;
}
.v3-related-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.v3-related-card {
  display: flex; gap: 12px;
  background: var(--ivory); border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
  border-radius: 4px; padding: 12px;
  text-decoration: none; color: var(--ink);
  transition: all .15s;
}
.v3-related-card:hover { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(114,47,55,.1); }
.v3-related-card .thumb {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.v3-related-card .thumb.fallback {
  background: var(--burgundy-l);
  color: var(--burgundy);
}
.v3-related-card .info { flex: 1; min-width: 0; }
.v3-related-card .cat {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 2px; color: var(--burgundy);
  margin-bottom: 3px;
}
.v3-related-card .title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 13.5px; line-height: 1.5; color: var(--navy-dk);
}
.v3-related-more {
  display: block; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 12px; letter-spacing: 2px; color: var(--burgundy);
  text-decoration: none; padding: 10px;
}
.v3-related-empty {
  background: var(--cream); border: 1px dashed var(--line-dk);
  padding: 22px; text-align: center; border-radius: 4px;
  font-size: 12.5px; line-height: 1.7; color: var(--mid);
}

/* ============ v3-drawer: MORE ドロワー（IA v3 §2） ============ */
.v3-drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease-out;
  z-index: 9000;
}
.v3-drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.v3-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  max-width: 480px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 280ms ease-out;
  z-index: 9001;
  display: flex; flex-direction: column;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  overflow-y: auto;
  box-shadow: -2px 0 24px rgba(0,0,0,.18);
}
.v3-drawer.is-open { transform: translateX(0); }
.v3-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.v3-drawer-brand {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 12px; letter-spacing: 3px; color: var(--burgundy);
}
.v3-drawer-close {
  background: transparent; border: none;
  padding: 4px; cursor: pointer; color: var(--ink);
  font-size: 22px; line-height: 1;
}
.v3-drawer-body { padding: 18px 20px 24px; }
.v3-drawer-section { margin-bottom: 22px; }
.v3-drawer-section-h {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 3px; color: var(--gold-dk);
  margin-bottom: 8px;
  padding-bottom: 6px; border-bottom: 1px solid var(--line);
}
.v3-drawer-section.premier .v3-drawer-section-h { color: #1C3A2E; }
.v3-drawer-section a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13.5px; color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.v3-drawer-section a:hover { color: var(--burgundy); }
.v3-drawer-soon {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 9px; letter-spacing: 1.5px;
  color: var(--mid);
  background: var(--cream);
  padding: 2px 6px; border-radius: 2px;
}
.v3-drawer-section.premier a { color: #1C3A2E; }
.v3-drawer-foot {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: 'Cormorant Garamond', serif; font-size: 10px;
  letter-spacing: 2px; color: var(--mid);
}

/* ============ v3-sport-hub: 種目hub ============ */
.v3-sport-hero {
  padding: 28px 22px 24px;
  background: var(--ivory);
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.v3-sport-hero-icon {
  display: inline-block; margin-bottom: 14px;
  color: var(--burgundy);
}
.v3-sport-hero-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  margin-bottom: 10px;
}
.v3-sport-hero h1 {
  font-family: 'Noto Serif JP', serif; font-weight: 900;
  font-size: 30px; line-height: 1.4; color: var(--navy-dk);
  margin-bottom: 8px;
}
.v3-sport-hero .catch {
  font-family: 'Noto Serif JP', serif; font-weight: 500;
  font-size: 14px; line-height: 1.7; color: var(--ink);
  margin-bottom: 14px;
}
.v3-sport-hero .meta {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 10px; letter-spacing: 2.5px; color: var(--mid);
  text-transform: uppercase;
}
.v3-sport-hero .meta .dot { margin: 0 8px; color: var(--gold); }

.v3-sport-sec {
  padding: 24px 22px;
}
.v3-sport-sec-h {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px; border-bottom: 1px solid var(--line); padding-bottom: 8px;
}
.v3-sport-sec-h h2 {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 17px; color: var(--navy-dk);
}
.v3-sport-sec-h .en {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 2.5px; color: var(--burgundy);
}

.v3-sport-feat {
  display: flex; flex-direction: column; gap: 14px;
}
.v3-sport-feat-card {
  display: flex; gap: 14px;
  background: var(--ivory); border: 1px solid var(--line);
  border-left: 4px solid var(--burgundy);
  border-radius: 4px; padding: 14px;
  text-decoration: none; color: var(--ink); transition: all .15s;
}
.v3-sport-feat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(114,47,55,.12); }
.v3-sport-feat-card .thumb {
  width: 80px; height: 80px; flex-shrink: 0;
  background: var(--cream); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.v3-sport-feat-card .info { flex: 1; min-width: 0; }
.v3-sport-feat-card .num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 1.5px; color: var(--gold-dk);
  margin-bottom: 4px;
}
.v3-sport-feat-card .title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 14px; color: var(--navy-dk); line-height: 1.5;
  margin-bottom: 6px;
}
.v3-sport-feat-card .meta {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.5px; color: var(--mid);
}
.v3-sport-feat-soon {
  background: var(--cream); border: 1px dashed var(--line-dk);
  padding: 24px; text-align: center; border-radius: 4px;
}
.v3-sport-feat-soon p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12.5px; color: var(--mid); line-height: 1.7;
}

.v3-sport-ribbon {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 0 22px 8px;
}
.v3-sport-ribbon a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--ivory); border: 1px solid var(--line);
  padding: 14px 8px; border-radius: 4px;
  text-decoration: none; color: var(--ink);
  transition: all .15s;
}
.v3-sport-ribbon a:hover { border-color: var(--burgundy); }
.v3-sport-ribbon .icon { font-size: 20px; }
.v3-sport-ribbon .label {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 1.5px; color: var(--burgundy);
}
.v3-sport-ribbon .soon {
  font-size: 9px; letter-spacing: 1.5px; color: var(--mid);
}

.v3-sport-sibling {
  background: var(--cream);
  padding: 22px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 8px 0;
}
.v3-sport-sibling-h {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 15px; color: var(--burgundy);
  text-align: center; margin-bottom: 14px;
  letter-spacing: 1.5px;
}
.v3-sport-sibling-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.v3-sport-sibling-card {
  display: block;
  background: var(--ivory); border: 1px solid var(--gold);
  padding: 14px 12px; border-radius: 4px;
  text-decoration: none; color: var(--ink);
  text-align: center;
  transition: all .15s;
}
.v3-sport-sibling-card:hover { background: var(--gold); color: var(--ivory); }
.v3-sport-sibling-card .ic { font-size: 24px; margin-bottom: 4px; }
.v3-sport-sibling-card .name {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 13px; color: inherit;
}

.v3-sport-related {
  padding: 22px; background: var(--ivory);
  border: 1px solid var(--line); border-radius: 4px;
  margin: 8px 22px;
  text-align: center;
}
.v3-sport-related-h {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 3px; color: var(--burgundy);
  margin-bottom: 10px;
}
.v3-sport-related a {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 14px; color: var(--navy-dk); text-decoration: none;
}
.v3-sport-related a:hover { color: var(--burgundy); }

/* Sports index tile grid */
.v3-sports-index {
  padding: 22px;
}
.v3-sports-index-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.v3-sports-tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--ivory); border: 1px solid var(--line);
  padding: 18px 10px; border-radius: 4px;
  text-decoration: none; color: var(--ink);
  transition: all .15s; position: relative;
}
.v3-sports-tile:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(114,47,55,.12); border-color: var(--burgundy); }
.v3-sports-tile.is-soon { opacity: 0.62; }
.v3-sports-tile .num {
  position: absolute; top: 8px; right: 10px;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 11px; color: var(--gold-dk);
}
.v3-sports-tile .ic { color: var(--burgundy); }
.v3-sports-tile .name {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 13px; color: var(--navy-dk);
}
.v3-sports-tile .count {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 10px; letter-spacing: 1.5px; color: var(--mid);
}
.v3-sports-tile .badge-soon {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 9px; letter-spacing: 1.5px; color: var(--ivory);
  background: var(--mid); padding: 2px 6px; border-radius: 2px;
  margin-top: 2px;
}

/* ============ v3-hub-cs: 横断ハブ Coming-Soon ============ */
.v3-hub-cs {
  padding: 40px 22px 48px;
  background: var(--paper);
  text-align: center;
}
.v3-hub-cs-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  margin-bottom: 14px;
}
.v3-hub-cs-title {
  font-family: 'Noto Serif JP', serif; font-weight: 900;
  font-size: 32px; line-height: 1.4; color: var(--navy-dk);
  margin-bottom: 8px;
}
.v3-hub-cs-en {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; letter-spacing: 2px; color: var(--gold-dk);
  margin-bottom: 16px;
}
.v3-hub-cs-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 18px auto 28px; max-width: 280px;
}
.v3-hub-cs-divider .line { flex: 1; height: 1px; background: var(--gold); opacity: 0.6; }
.v3-hub-cs-divider .star { color: var(--burgundy); font-size: 14px; }
.v3-hub-cs-soon {
  display: inline-block;
  background: var(--burgundy); color: var(--ivory);
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 3px;
  padding: 6px 16px; border-radius: 2px;
  margin-bottom: 24px;
}
.v3-hub-cs-lead {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px; line-height: 1.85; color: var(--ink);
  max-width: 360px; margin: 0 auto 32px; text-align: left;
  padding: 16px 18px; background: var(--ivory);
  border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
}
.v3-hub-cs-future {
  text-align: left; max-width: 360px; margin: 0 auto 32px;
  background: var(--cream); border: 1px solid var(--line);
  padding: 18px; border-radius: 4px;
}
.v3-hub-cs-future-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 3px; color: var(--burgundy);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.v3-hub-cs-future ul {
  list-style: none; padding: 0; margin: 0;
}
.v3-hub-cs-future li {
  font-size: 12.5px; line-height: 1.7; padding: 4px 0 4px 18px;
  position: relative; color: var(--ink);
}
.v3-hub-cs-future li::before {
  content: '✦'; position: absolute; left: 0; color: var(--gold);
}
.v3-hub-cs-back {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 12px; letter-spacing: 2.5px; color: var(--burgundy);
  border: 1.5px solid var(--burgundy); padding: 12px 26px;
  text-decoration: none; border-radius: 2px; transition: all .15s;
}
.v3-hub-cs-back:hover { background: var(--burgundy); color: var(--ivory); }

/* ============ v3-breadcrumb ============ */
.v3-breadcrumb {
  padding: 12px 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--mid);
  text-transform: uppercase;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.v3-breadcrumb::-webkit-scrollbar { display: none; }
.v3-breadcrumb a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color .15s;
}
.v3-breadcrumb a:hover { color: var(--burgundy-dk); text-decoration: underline; }
.v3-breadcrumb .sep {
  margin: 0 8px;
  color: var(--gold);
  font-weight: 700;
}
.v3-breadcrumb .current {
  color: var(--ink);
  font-weight: 700;
}

/* ============ v3-doc: 文書ページ・記事ページ用 ============ */
.v3-doc {
  padding: 24px 22px 48px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--ink);
  background: var(--paper);
}
.v3-doc-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  margin-bottom: 12px; text-align: center;
}
.v3-doc-title {
  font-family: 'Noto Serif JP', serif; font-weight: 900;
  font-size: 26px; line-height: 1.4; color: var(--navy-dk);
  margin-bottom: 8px; text-align: center;
}
.v3-doc-meta {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 1.5px; color: var(--mid); text-align: center;
  margin-bottom: 24px;
}
.v3-doc-divider {
  display: flex; align-items: center; gap: 10px; margin: 20px 0 28px;
}
.v3-doc-divider .line { flex: 1; height: 1px; background: var(--gold); opacity: 0.6; }
.v3-doc-divider .star { color: var(--burgundy); font-size: 12px; }
.v3-doc-intro {
  font-size: 14px; line-height: 1.85; color: var(--ink);
  border-left: 2px solid var(--burgundy); padding: 8px 0 8px 14px;
  margin-bottom: 28px; background: var(--burgundy-l);
  border-radius: 0 4px 4px 0;
}
.v3-doc-toc {
  background: var(--ivory); border: 1px solid var(--line);
  padding: 16px 18px; margin-bottom: 32px; border-radius: 4px;
}
.v3-doc-toc-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 12px; letter-spacing: 3px; color: var(--burgundy);
  padding-bottom: 8px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.v3-doc-toc ol { padding-left: 22px; margin: 0; }
.v3-doc-toc li { font-size: 13px; line-height: 2; }
.v3-doc-toc a { color: var(--navy-dk); text-decoration: none; }
.v3-doc-toc a:hover { color: var(--burgundy); text-decoration: underline; }
.v3-doc h2 {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 17px; color: var(--navy-dk);
  margin: 36px 0 12px; padding: 8px 0 8px 12px;
  border-left: 3px solid var(--burgundy);
}
.v3-doc h3 {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 14.5px; color: var(--navy-dk);
  margin: 24px 0 10px;
}
.v3-doc p { font-size: 13.5px; line-height: 1.85; margin-bottom: 14px; color: var(--ink); }
.v3-doc ol, .v3-doc ul { padding-left: 22px; margin-bottom: 14px; }
.v3-doc li { font-size: 13.5px; line-height: 1.85; margin-bottom: 6px; }
.v3-doc table {
  width: 100%; border-collapse: collapse; margin: 12px 0 20px;
  font-size: 13px;
}
.v3-doc th, .v3-doc td {
  border: 1px solid var(--line); padding: 10px 12px; text-align: left;
  vertical-align: top; line-height: 1.7;
}
.v3-doc th {
  background: var(--ivory); font-weight: 700; color: var(--navy-dk);
  width: 30%; min-width: 100px;
}
.v3-doc a { color: var(--burgundy); text-decoration: underline; }
.v3-doc a:hover { color: var(--burgundy-dk); }
.v3-doc strong { color: var(--navy-dk); font-weight: 700; }
.v3-doc-footer-note {
  margin-top: 36px; padding: 14px;
  background: var(--cream); border: 1px solid var(--line);
  font-size: 12px; color: var(--mid); line-height: 1.7;
  border-radius: 4px;
}

/* ============ v3-list: 記事一覧ページ用 ============ */
.v3-list-head {
  padding: 28px 22px 18px;
  text-align: center;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.v3-list-head .eyebrow {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 4px; color: var(--burgundy);
  margin-bottom: 10px;
}
.v3-list-head h1 {
  font-family: 'Noto Serif JP', serif; font-weight: 900;
  font-size: 28px; color: var(--navy-dk); line-height: 1.4;
  margin-bottom: 6px;
}
.v3-list-head p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px; color: var(--mid); line-height: 1.7;
}
.v3-filter {
  padding: 18px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.v3-filter-label {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 2.5px; color: var(--burgundy);
  margin-bottom: 10px; text-align: center;
}
.v3-filter-chips {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.v3-filter-chips button {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--burgundy); background: transparent;
  color: var(--burgundy); cursor: pointer; transition: all .15s;
}
.v3-filter-chips button:hover { background: var(--burgundy-l); }
.v3-filter-chips button.active {
  background: var(--burgundy); color: var(--ivory);
}
.v3-list {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.v3-list-card {
  display: flex; gap: 14px;
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: 4px; padding: 14px; text-decoration: none;
  color: var(--ink); transition: all .15s;
  position: relative;
  border-left: 4px solid var(--burgundy);
}
.v3-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.12);
  border-color: var(--burgundy);
  border-left-color: var(--burgundy);
}
.v3-list-thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--cream); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.v3-list-info { flex: 1; min-width: 0; }
.v3-list-cat {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 10px; letter-spacing: 2px; color: var(--burgundy);
  text-transform: uppercase; margin-bottom: 4px;
}
.v3-list-title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 14px; color: var(--navy-dk); line-height: 1.5;
  margin-bottom: 6px;
}
.v3-list-date {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.5px; color: var(--mid);
}
.v3-list-empty {
  padding: 60px 22px; text-align: center;
  background: var(--ivory); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.v3-list-empty .icon { font-size: 32px; margin-bottom: 12px; }
.v3-list-empty .title {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 16px; color: var(--navy-dk); margin-bottom: 6px;
}
.v3-list-empty .desc {
  font-size: 12px; color: var(--mid);
}

/* ============ v3-article: 記事詳細用追加スタイル（v3-docを継承） ============ */
.v3-article-meta {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 11px; letter-spacing: 1.5px; color: var(--mid);
  margin-bottom: 18px; text-align: center;
}
.v3-article-lead {
  font-family: 'Noto Serif JP', serif; font-weight: 500;
  font-size: 14.5px; line-height: 1.95; color: var(--ink);
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--ivory); border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.v3-article-ai-notice {
  background: var(--cream); border: 1px dashed var(--gold-dk);
  padding: 12px 14px; border-radius: 4px;
  font-size: 11.5px; line-height: 1.6; color: var(--mid);
  margin-bottom: 22px; text-align: center;
}
.v3-article-back {
  display: inline-block; margin: 32px 0 0;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 12px; letter-spacing: 2.5px;
  color: var(--burgundy); border: 1.5px solid var(--burgundy);
  padding: 10px 22px; text-decoration: none; border-radius: 2px;
  transition: all .15s;
}
.v3-article-back:hover { background: var(--burgundy); color: var(--ivory); }
.v3-doc .v3-article-back { color: var(--burgundy); text-decoration: none; }

/* ============ v3-premier: Premier ランディング用 ============ */
.v3-premier-hero { background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dk) 100%); color: var(--ivory); padding: 36px 22px 32px; text-align: center; }
.v3-premier-hero .season { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 12px; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
.v3-premier-hero h1 { font-family: 'Noto Serif JP', serif; font-weight: 900; font-size: 32px; line-height: 1.4; margin-bottom: 12px; color: var(--ivory); }
.v3-premier-hero h1 .gold { color: var(--gold); }
.v3-premier-hero .en { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 12px; color: var(--gold); letter-spacing: 1.5px; margin-bottom: 18px; }
.v3-premier-hero p { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 13px; line-height: 1.85; color: rgba(250,246,238,0.9); margin-bottom: 24px; }
.v3-premier-hero .btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.v3-premier-hero .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding-top: 22px; border-top: 1px solid rgba(201,169,97,0.3); }
.v3-premier-hero .stat .num { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 18px; color: var(--gold); display: block; }
.v3-premier-hero .stat .lbl { font-size: 10px; color: rgba(250,246,238,0.7); margin-top: 4px; }
.btn-gold { display: inline-flex; align-items: center; justify-content: center; font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 14px; background: var(--gold); color: var(--burgundy-dk); padding: 13px 28px; border-radius: 2px; text-decoration: none; letter-spacing: 1px; transition: all .15s; }
.btn-gold:hover { background: var(--gold-dk); color: var(--ivory); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 14px; background: transparent; color: var(--ivory); border: 1.5px solid var(--gold); padding: 13px 28px; border-radius: 2px; text-decoration: none; letter-spacing: 1px; transition: all .15s; }
.btn-outline:hover { background: var(--gold); color: var(--burgundy-dk); }

.v3-premier-sec { padding: 28px 22px; background: var(--paper); }
.v3-premier-sec.alt { background: var(--ivory); }
.v3-premier-sec.dark { background: var(--ink-soft); color: var(--ivory); }
.v3-premier-sec.dark .sec-title { color: var(--ivory); }
.v3-premier-sec.dark .sec-sub { color: rgba(250,246,238,0.7); }
.v3-premier-sec .sec-eyebrow { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 11px; letter-spacing: 4px; color: var(--burgundy); margin-bottom: 8px; text-align: center; }
.v3-premier-sec.dark .sec-eyebrow { color: var(--gold); }
.v3-premier-sec .sec-title { font-family: 'Noto Serif JP', serif; font-weight: 900; font-size: 22px; color: var(--navy-dk); text-align: center; margin-bottom: 6px; }
.v3-premier-sec .sec-sub { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 12px; color: var(--mid); text-align: center; margin-bottom: 22px; }
.v3-premier-sec .sec-more { display: block; text-align: center; margin-top: 16px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 12px; letter-spacing: 2px; color: var(--burgundy); text-decoration: none; }

.v3-premier-job { display: block; background: var(--ivory); border: 1px solid var(--line); border-left: 4px solid var(--burgundy); padding: 16px; border-radius: 4px; margin-bottom: 12px; text-decoration: none; color: var(--ink); transition: all .15s; }
.v3-premier-job:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(114,47,55,0.12); }
.v3-premier-job .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.v3-premier-job .cat { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--burgundy); }
.v3-premier-job .badge { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 9px; letter-spacing: 2px; color: var(--gold); border: 1px solid var(--gold); padding: 2px 8px; border-radius: 2px; }
.v3-premier-job .title { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 14.5px; color: var(--navy-dk); margin-bottom: 6px; line-height: 1.5; }
.v3-premier-job .company { font-size: 11.5px; color: var(--mid); margin-bottom: 10px; }
.v3-premier-job .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.v3-premier-job .tag { font-size: 10.5px; padding: 3px 8px; background: var(--cream); color: var(--ink); border-radius: 2px; }
.v3-premier-job .tag.accent { background: var(--burgundy); color: var(--ivory); font-weight: 700; }

.v3-premier-hscroll { display: flex; gap: 12px; overflow-x: auto; margin: 0 -22px; padding: 0 22px 8px; scrollbar-width: none; }
.v3-premier-hscroll::-webkit-scrollbar { display: none; }
.v3-premier-exp { flex: 0 0 220px; background: var(--ivory); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; color: var(--ink); transition: all .15s; display: flex; flex-direction: column; }
.v3-premier-exp:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(114,47,55,0.12); }
.v3-premier-exp .thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 40px; position: relative; border-radius: 4px 4px 0 0; }
.v3-premier-exp .thumb-label { position: absolute; top: 8px; right: 8px; background: var(--burgundy); color: var(--ivory); font-size: 9px; padding: 3px 7px; border-radius: 2px; font-weight: 700; letter-spacing: 1px; }
.v3-premier-exp .body { padding: 12px; }
.v3-premier-exp .cat { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 10px; letter-spacing: 2px; color: var(--burgundy); margin-bottom: 4px; }
.v3-premier-exp .title { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 13px; line-height: 1.5; color: var(--navy-dk); margin-bottom: 8px; }
.v3-premier-exp .price { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 16px; color: var(--burgundy); }

.v3-premier-weekend { display: flex; gap: 14px; background: rgba(250,246,238,0.08); border: 1px solid rgba(201,169,97,0.3); padding: 14px; border-radius: 4px; margin-bottom: 12px; text-decoration: none; color: var(--ivory); transition: all .15s; }
.v3-premier-weekend:hover { background: rgba(250,246,238,0.12); }
.v3-premier-weekend .date { text-align: center; padding-right: 14px; border-right: 1px solid rgba(201,169,97,0.3); }
.v3-premier-weekend .month { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.v3-premier-weekend .day { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 28px; color: var(--ivory); line-height: 1; }
.v3-premier-weekend .info { flex: 1; }
.v3-premier-weekend .title { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.v3-premier-weekend .meta { font-size: 11px; color: rgba(250,246,238,0.7); display: flex; flex-direction: column; gap: 2px; }
.v3-premier-weekend .badge { display: inline-block; margin-top: 8px; background: var(--gold); color: var(--burgundy-dk); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 2px; letter-spacing: 1px; }

.v3-premier-plan { background: var(--ivory); border: 1px solid var(--line); padding: 22px; border-radius: 4px; margin-bottom: 14px; }
.v3-premier-plan.featured { border: 2px solid var(--gold); position: relative; }
.v3-premier-plan.featured::before { content: 'RECOMMENDED'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--burgundy-dk); font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 10px; letter-spacing: 2px; padding: 3px 12px; border-radius: 2px; }
.v3-premier-plan .name { font-family: 'Noto Serif JP', serif; font-weight: 700; font-size: 18px; color: var(--navy-dk); margin-bottom: 4px; }
.v3-premier-plan .price { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 28px; color: var(--burgundy); margin-bottom: 4px; }
.v3-premier-plan .price span { font-size: 12px; color: var(--mid); font-weight: 500; }
.v3-premier-plan .desc { font-size: 12px; color: var(--mid); line-height: 1.7; margin: 8px 0 12px; }
.v3-premier-plan ul { list-style: none; padding: 0; margin: 0; }
.v3-premier-plan li { font-size: 12.5px; line-height: 1.7; padding: 6px 0 6px 18px; position: relative; }
.v3-premier-plan li::before { content: '\2726'; position: absolute; left: 0; color: var(--gold); }

.v3-premier-cta { background: var(--burgundy); color: var(--ivory); padding: 36px 22px; text-align: center; }
.v3-premier-cta .eyebrow { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 11px; letter-spacing: 4px; color: var(--gold); margin-bottom: 10px; }
.v3-premier-cta .title { font-family: 'Noto Serif JP', serif; font-weight: 900; font-size: 22px; line-height: 1.5; margin-bottom: 12px; }
.v3-premier-cta p { font-size: 13px; line-height: 1.8; color: rgba(250,246,238,0.85); margin-bottom: 22px; }

/* === Cookie consent banner (Issue #61・Phase 0 告知バナー) === */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--ivory, #FAF6EE);
  border: 1.5px solid var(--burgundy, #722F37);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark, #2B2B2B);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner--hidden { opacity: 0; transform: translateY(8px); pointer-events: none; }
.cookie-banner-text { flex: 1; margin: 0; min-width: 0; }
.cookie-banner-link { color: var(--burgundy, #722F37); text-decoration: underline; font-weight: 700; }
.cookie-banner-close {
  flex-shrink: 0;
  background: var(--burgundy, #722F37);
  color: var(--ivory, #FAF6EE);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cookie-banner-close:hover { background: #5b252b; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 10px; padding: 12px; font-size: 12.5px; }
  .cookie-banner-close { align-self: flex-end; }
}

/* ============================================================
   PC LAYOUT — IA v3 §4
   Breakpoints: 768 (tablet) / 1024 (desktop) / 1440 (wide)
   ============================================================ */

/* PC nav (initially hidden, shown at ≥768 via media query) */
.v3-pc-nav-wrap { display: none; }
.v3-pc-nav { display: flex; align-items: center; gap: 4px; width: 100%; }
.v3-pc-nav-more { margin-left: auto; padding: 8px; color: var(--ink); }
.v3-pc-nav-more svg { display: block; }
.v3-pc-nav-more:hover { color: var(--burgundy); background: var(--ivory); border-radius: 2px; }
.v3-pc-nav-more.is-active::after { content: none; }
.v3-pc-nav-item {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 12px; letter-spacing: 2px;
  color: var(--mid); text-decoration: none;
  padding: 8px 12px; border-radius: 2px;
  transition: color .15s, background .15s;
  position: relative;
}
.v3-pc-nav-item:hover { color: var(--burgundy); }
.v3-pc-nav-item.is-active { color: var(--burgundy); }
.v3-pc-nav-item.is-active::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 2px; background: var(--burgundy);
}
.v3-pc-nav-read {
  position: relative;
  padding: 0;
}
.v3-pc-nav-link {
  display: inline-block; padding: 8px 12px;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 12px; letter-spacing: 2px;
  color: var(--mid); text-decoration: none;
  transition: color .15s;
}
.v3-pc-nav-link:hover { color: var(--burgundy); }
.v3-pc-arrow { font-size: 9px; margin-left: 2px; opacity: .7; }

/* READ Mega Menu (hover-based at PC) */
.v3-pc-mega {
  position: absolute; top: 100%; left: 0;
  min-width: 540px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
  z-index: 200;
}
.v3-pc-nav-read:hover .v3-pc-mega,
.v3-pc-nav-read:focus-within .v3-pc-mega {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.v3-pc-mega-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 2px;
  text-decoration: none; transition: background .15s;
}
.v3-pc-mega-item:hover { background: var(--cream); }
.v3-pc-mega-item .en {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2.5px; color: var(--burgundy);
}
.v3-pc-mega-item .jp {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 13px; color: var(--navy-dk);
}
.v3-pc-mega-item .state {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 9px; letter-spacing: 1.5px; color: var(--mid);
  text-transform: uppercase;
}
.v3-pc-mega-item .state[class] {} /* selector trickery placeholder */

/* PC action buttons */
.v3-pc-premier {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2.5px;
  color: #1C3A2E; text-decoration: none;
  border: 1px solid #1C3A2E;
  padding: 6px 12px; border-radius: 2px;
  transition: all .15s;
}
.v3-pc-premier:hover { background: #1C3A2E; color: var(--ivory); }
.v3-pc-login {
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  font-size: 12px; color: var(--ink); text-decoration: none;
  padding: 6px 8px;
}
.v3-pc-login:hover { color: var(--burgundy); }
.v3-pc-signup {
  font-family: 'Noto Serif JP', serif; font-weight: 700;
  font-size: 12px; color: var(--ivory); text-decoration: none;
  background: var(--navy); padding: 7px 16px; border-radius: 2px;
  box-shadow: 2px 2px 0 var(--navy-dk);
  transition: all .1s;
}
.v3-pc-signup:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--navy-dk); }

/* Tablet ≥768 */
@media (min-width: 768px) {
  .v3-shell {
    max-width: 720px;
    box-shadow: 0 0 64px rgba(0, 0, 0, 0.3);
    padding-bottom: 0;
  }
  /* Header expands, gets horizontal nav */
  .v3-header {
    flex-direction: row;
    padding: 14px 24px;
    gap: 20px;
  }
  .v3-h-menu {
    display: none;
  }
  .v3-brand {
    margin-right: auto;
  }
  .v3-pc-nav-wrap {
    display: flex; align-items: center;
    flex: 1; justify-content: space-between;
    gap: 16px;
  }
  /* Bottom nav hidden */
  .v3-nav { display: none; }
  /* Hide hero VOL/MMXXVI strip on small PC to keep cleaner look (optional) */
  /* Footer cols: 3 columns at PC (PREMIER 列なし) */
  .v3-footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  /* Cat grid: 2 cols on tablet */
  .v3-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  /* Sports index: 3 cols */
  .v3-sports-index-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  /* Related articles in 2 columns */
  .v3-related-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  }
  /* Article body: more reading width */
  .v3-doc, .v3-list-head, .v3-sport-hero {
    padding-left: 32px; padding-right: 32px;
  }
}

/* Desktop ≥1024 */
@media (min-width: 1024px) {
  .v3-shell {
    max-width: 1024px;
  }
  /* Hero 8/4 split (when applicable) */
  .v3-hero { padding: 40px 32px 24px; }
  /* Cat grid: 3 cols */
  .v3-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  /* Sports index: 4 cols */
  .v3-sports-index-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Sport hub Featured: 3 col grid */
  .v3-sport-feat {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  /* Related: 3 cols */
  .v3-related-list {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Article body */
  .v3-doc {
    padding-left: 48px; padding-right: 48px; max-width: 820px; margin: 0 auto;
  }
}

/* Wide ≥1440 */
@media (min-width: 1440px) {
  .v3-shell {
    max-width: 1280px;
  }
}

/* Premier section in drawer Forest accent — small enhancement */
.v3-drawer-section.premier a { color: #1C3A2E; }

