/* ============================================================
   FC SAGAMI — Main Stylesheet
   完全書き直し版 / PC優先・スマホ対応
   ============================================================ */

/* ===== 変数 ===== */
:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --mid:     #1c1c1c;
  --gray:    #2a2a2a;
  --silver:  #888888;
  --light:   #f0f0ee;
  --white:   #ffffff;
  --offwhite:#f5f5f3;
  --muted:   rgba(10,10,10,0.45);
  --faint:   rgba(10,10,10,0.1);
  --faint2:  rgba(10,10,10,0.18);

  /* セクション背景トークン */
  --bg-dark:   #0a0a0a;
  --bg-mid:    #141414;
  --bg-light:  #f5f5f3;
  --bg-white:  #ffffff;
  --text-dark: #ffffff;
  --text-light: #0a0a0a;

  /* ===== チームカラー(紫アクセント) ===== */
  /* 線・ホバー・小さなアクセントにのみ使用。ベタ塗り禁止 */
  --accent:        #6b4fb5;  /* メインの紫(中明度) */
  --accent-deep:   #4a3585;  /* ホバー・濃い線用 */
  --accent-soft:   #a89cd6;  /* 暗背景上の小文字用 */
  --accent-faint:  rgba(107, 79, 181, 0.15); /* ふんわり背景用 */
}

/* ===== リセット ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px;
  padding: 0 0 0 32px;
  display: flex; align-items: center; gap: 0;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: #fff;
  flex-shrink: 0; margin-right: 0;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  height: 100%;
}

.nav-logo img { height: 32px; width: auto; }

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.2em; color: #fff;
}

/* セクションタブ — 白背景 */
.nav-sections {
  display: flex; list-style: none;
  flex: 1; height: 100%;
  margin: 0; padding: 0 0 0 0;
  gap: 0;
  background: #ffffff;
}

.nav-sections li { height: 100%; display: flex; align-items: stretch; }

.nav-sections a {
  display: flex; align-items: center;
  padding: 0 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  border-right: 1px solid rgba(10,10,10,0.06);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-sections a:hover { color: #0a0a0a; background: rgba(10,10,10,0.04); }
.nav-sections a.active { color: #0a0a0a; border-bottom-color: #0a0a0a; background: rgba(10,10,10,0.03); }

/* MENUボタン — 黒背景エリア */
.menu-btn {
  flex-shrink: 0; height: 100%;
  background: #0a0a0a; border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 0 24px;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.3s;
}
.menu-btn:hover { background: #fff; color: #0a0a0a; }

.menu-icon { display: inline-flex; flex-direction: column; gap: 3px; }
.menu-icon span { display: block; width: 14px; height: 1px; background: currentColor; }

/* ===== メニューオーバーレイ ===== */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-inner {
  min-height: 100vh;
  padding: 100px 60px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  position: relative;
}

.menu-close {
  position: absolute; top: 28px; right: 40px;
  background: none; border: 1px solid var(--faint2);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 10px 18px;
  transition: all 0.3s;
}
.menu-close:hover { background: var(--white); color: var(--black); }

.menu-list { list-style: none; padding: 40px 0; }

.menu-list li {
  border-top: 1px solid var(--faint);
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.5s, transform 0.5s;
}
.menu-list li:last-child { border-bottom: 1px solid var(--faint); }
.menu-overlay.open .menu-list li { opacity: 1; transform: none; }
.menu-overlay.open .menu-list li:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.open .menu-list li:nth-child(2) { transition-delay: 0.13s; }
.menu-overlay.open .menu-list li:nth-child(3) { transition-delay: 0.18s; }
.menu-overlay.open .menu-list li:nth-child(4) { transition-delay: 0.23s; }
.menu-overlay.open .menu-list li:nth-child(5) { transition-delay: 0.28s; }
.menu-overlay.open .menu-list li:nth-child(6) { transition-delay: 0.33s; }
.menu-overlay.open .menu-list li:nth-child(7) { transition-delay: 0.38s; }

.menu-list a {
  display: flex; align-items: baseline; gap: 32px;
  padding: 24px 0;
  text-decoration: none; color: var(--white);
  transition: padding-left 0.3s;
}
.menu-list a:hover { padding-left: 20px; }

.menu-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; color: var(--muted);
  min-width: 36px;
}

.menu-label-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1; letter-spacing: 0.05em;
}

.menu-label-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 13px;
  color: var(--muted); margin-left: auto; padding-left: 32px;
}

.menu-footer {
  padding-top: 32px; border-top: 1px solid var(--faint);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
}
.menu-footer a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--white); }

/* ===== 共通セクション ===== */
section.section {
  padding: 120px 48px;
  border-top: 1px solid var(--faint);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--white);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.2; margin-bottom: 14px;
}

.section-title-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 64px;
}

/* ===== PAGE HERO (サブページ) ===== */
.page-hero {
  padding: 120px 48px 56px;
  border-bottom: 1px solid var(--faint);
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 119px,
    rgba(242,242,240,0.025) 119px, rgba(242,242,240,0.025) 120px
  );
  pointer-events: none;
}

.page-hero .section-inner { position: relative; z-index: 1; }

.page-hero-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.15; margin-bottom: 12px;
}

.page-hero .section-title-en { margin-bottom: 0; }

/* ===== CTA ボタン ===== */
.page-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--faint2);
  transition: all 0.3s;
}
.page-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ===== 動画フル幅 ===== */
.hero-video-fullwidth {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.hero-video-fullwidth iframe,
.hero-video-fullwidth video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.hero-video-placeholder-fullwidth {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(10,10,10,0.1);
  display: flex; align-items: center; justify-content: center;
}

.hero-video-placeholder-fullwidth .hero-video-placeholder-inner {
  text-align: center; color: rgba(10,10,10,0.35); padding: 40px;
}
.hero-video-placeholder-fullwidth svg { margin-bottom: 16px; opacity: 0.3; stroke: #0a0a0a; }
.hero-video-placeholder-fullwidth p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; line-height: 2;
  color: rgba(10,10,10,0.4);
}

/* ===== ピックアップ横スライド ===== */
.pickup-section {
  padding: 56px 0;
  background: var(--dark);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.pickup-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px;
}

.pickup-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}

.pickup-nav { display: flex; gap: 8px; }

.pickup-arrow {
  background: var(--black); border: 1px solid var(--faint2);
  color: var(--white);
  width: 36px; height: 36px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.pickup-arrow:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.pickup-slider {
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
}
.pickup-slider::-webkit-scrollbar { display: none; }

.pickup-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px;
  width: max-content;
  min-width: max-content;
}

.pickup-card {
  flex: 0 0 220px !important;
  width: 220px !important;
  max-width: 220px;
  scroll-snap-align: start;
  background: var(--black); border: 1px solid var(--faint);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.pickup-card--link { text-decoration: none; color: var(--white); }
.pickup-card--link:hover { border-color: var(--white); transform: translateY(-3px); }

.pickup-thumb {
  width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: var(--mid); flex-shrink: 0;
}
.pickup-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pickup-card--link:hover .pickup-thumb img { transform: scale(1.04); }
.pickup-thumb--empty { width: 100%; height: 100%; background: var(--mid); }

.pickup-text {
  padding: 14px 16px 18px;
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}

.pickup-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 14px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.pickup-excerpt {
  font-size: 11px; line-height: 1.7; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.pickup-cta {
  margin-top: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.pickup-card--link:hover .pickup-cta { color: var(--white); }

/* ===== MATCH SPLIT (ホーム) ===== */
.match-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-bottom: 8px;
}

.match-block { display: flex; flex-direction: column; gap: 14px; }

.match-block-label {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--faint2);
}

.match-block-label-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.match-block-label-dot--next   { background: var(--white); }
.match-block-label-dot--result { background: var(--muted); }

.match-block-label-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.12em; line-height: 1;
}

.match-block-label-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 13px;
  color: var(--muted); margin-left: 4px;
}

/* ===== MATCH CARD ===== */
.match-list { border-top: 1px solid var(--faint2); }

.match-card {
  background: var(--dark);
  border: 1px solid var(--faint); border-top: none;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.match-card:first-child { border-top: 1px solid var(--faint); }
.match-card:hover { border-color: var(--faint2); }

.match-card.win::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--white);
}

.match-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--faint);
  background: rgba(242,242,240,0.025);
}

.match-card-comp {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted);
}

.match-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; color: var(--white);
}
.match-card-day { color: var(--muted); margin-left: 4px; }

.match-card-body {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  padding: 24px 24px;
  gap: 0;
}

.match-team {
  display: flex; flex-direction: column; gap: 10px;
}
.match-team--home { align-items: flex-start; }
.match-team--away { align-items: flex-end; }

.match-team-emblem {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}

.match-team-emblem img {
  max-width: 64px; max-height: 64px;
  width: auto; height: auto;
  object-fit: contain;
  filter: brightness(0.9); transition: filter 0.3s;
}
.match-card:hover .match-team-emblem img { filter: brightness(1); }

.match-team-emblem-placeholder {
  width: 64px; height: 64px;
  border: 1px solid var(--faint2); border-radius: 50%;
  background: var(--mid);
  display: flex; align-items: center; justify-content: center;
}
.match-team-emblem-placeholder span {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: 24px; color: var(--muted);
}

.match-team-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 16px; line-height: 1.3;
}

.match-team-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}

.match-card-center {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}

.match-score-board {
  display: flex; align-items: center; gap: 10px;
}

.match-score-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; line-height: 1; color: var(--muted);
}
.match-score-num.match-score--win { color: var(--white); font-size: 60px; }
.match-score-num.match-score--loss { color: rgba(242,242,240,0.28); }

.match-score-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--muted); line-height: 1;
}

.match-result-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 4px 12px; border: 1px solid var(--faint2); color: var(--muted);
}
.match-result-badge--win { border-color: var(--white); color: var(--white); }
.match-result-badge--loss { opacity: 0.5; }

.match-kickoff { text-align: center; }
.match-kickoff-vs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; line-height: 1;
  color: var(--faint2); letter-spacing: 0.05em;
}
.match-kickoff-date {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px; color: var(--muted); margin-top: 4px;
}
.match-kickoff-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.15em;
  color: var(--white); margin-top: 4px;
}

.match-score-tbd {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px; color: var(--muted);
}

.match-venue-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px; color: var(--muted); letter-spacing: 0.04em;
}

.match-note {
  margin-top: 28px; font-size: 13px;
  color: var(--muted); font-style: italic;
  border-left: 2px solid var(--faint2); padding-left: 18px;
}

/* ===== Match ページ タブ ===== */
.match-page-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--faint);
  margin-bottom: 40px;
}

.match-page-tab {
  background: none; border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 18px 36px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.3s;
}
.match-page-tab:hover .match-page-tab-en { color: var(--white); }
.match-page-tab:hover .match-page-tab-jp { color: var(--white); }
.match-page-tab.active { border-bottom-color: var(--white); }

.match-page-tab-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.1em;
  color: var(--muted); line-height: 1; transition: color 0.3s;
}
.match-page-tab.active .match-page-tab-en { color: var(--white); }

.match-page-tab-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 13px;
  color: var(--muted); transition: color 0.3s;
}
.match-page-tab.active .match-page-tab-jp { color: var(--white); }

.match-page-tab-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--white);
  background: var(--mid); border: 1px solid var(--faint2);
  padding: 2px 7px; line-height: 1.4;
}

.match-page-panel { display: none; }
.match-page-panel.active { display: block; }

.match-empty {
  padding: 60px 0; text-align: center;
  color: var(--muted);
  font-family: 'Shippori Mincho', serif; font-size: 16px; line-height: 2;
  border-top: 1px solid var(--faint2);
}

/* ===== NEWS ===== */
.news-section { background: var(--dark); }
.news-list { border-top: 1px solid var(--faint2); }

.news-item {
  display: grid;
  grid-template-columns: 130px 110px 1fr 24px;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--faint);
  text-decoration: none; color: inherit;
  transition: padding-left 0.3s;
}
.news-item:hover { padding-left: 12px; }

.news-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--muted);
}

.news-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--faint2); color: var(--muted);
  display: inline-block; text-align: center; white-space: nowrap;
}
.news-cat.club { border-color: var(--white); color: var(--white); }

.news-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 16px;
  color: rgba(242,242,240,0.88); transition: color 0.3s;
}
.news-item:hover .news-title { color: var(--white); }

.news-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: var(--muted);
  transition: color 0.3s, transform 0.3s;
}
.news-item:hover .news-arrow { color: var(--white); transform: translateX(4px); }

/* ===== EXPLORE ===== */
.explore {
  padding: 100px 48px;
  background: var(--black);
  border-top: 1px solid var(--faint);
}

.explore-inner { max-width: 1200px; margin: 0 auto; }
.explore-head { margin-bottom: 48px; }

.explore-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.3;
}

.explore-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--faint); border: 1px solid var(--faint);
}

.explore-tile {
  background: var(--black); padding: 28px 22px;
  text-decoration: none; color: var(--white);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px; position: relative; overflow: hidden;
  transition: background 0.3s;
}
.explore-tile:hover { background: var(--mid); }
.explore-tile::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.explore-tile:hover::after { transform: scaleX(1); }

.explore-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; color: var(--muted);
}
.explore-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.05em;
}
.explore-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 13px;
  color: rgba(242,242,240,0.7);
}
.explore-arrow {
  margin-top: auto;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--muted);
  transition: color 0.3s, transform 0.3s;
}
.explore-tile:hover .explore-arrow { color: var(--white); transform: translateX(4px); }

/* ===== PARTNER ===== */
.partner-section { background: var(--dark); }
.p-tier { margin-bottom: 56px; }

.p-tier-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.p-tier-line { height: 1px; background: var(--faint2); margin-bottom: 24px; }

.p-main {
  padding: 48px 40px; background: var(--black);
  border: 1px solid var(--faint2); text-align: center;
}
.p-main-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 8px;
}
.p-main-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted);
}

.p-main--link { display: block; text-decoration: none; color: var(--white); transition: all 0.3s; }
.p-main--link:hover { border-color: var(--white); background: var(--mid); }

.p-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.partner {
  padding: 24px 22px; background: var(--black);
  border: 1px solid var(--faint); transition: all 0.3s;
}
.partner:hover { border-color: var(--white); }

.partner--link { text-decoration: none; color: var(--white); display: block; }
.partner-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 18px; line-height: 1.4; margin-bottom: 8px;
}
.partner-role { font-size: 12px; color: var(--muted); line-height: 1.7; }

.partner-link-cta {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--faint);
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s;
}
.partner--link:hover .partner-link-cta { color: var(--white); }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 48px; text-align: center;
  border-top: 1px solid var(--faint);
}

.contact-mega {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 12vw, 180px);
  line-height: 0.85; letter-spacing: 0.04em;
  color: transparent; -webkit-text-stroke: 1.5px var(--white);
  margin: 28px 0;
}

.contact-sub {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(242,242,240,0.8);
  max-width: 680px; margin: 0 auto 40px; line-height: 2;
}

.contact-info {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; max-width: 760px; margin: 0 auto 28px;
  background: var(--faint); border: 1px solid var(--faint);
}

.c-item { background: var(--black); padding: 28px 24px; text-align: left; }

.c-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}

.c-val {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 18px; word-break: break-all;
}
.c-val a { color: var(--white); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.c-val a:hover { border-color: var(--white); }

.c-social { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.c-social a {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 10px 20px; border: 1px solid var(--faint2);
  transition: all 0.3s;
}
.c-social a:hover { background: var(--white); color: var(--black); }

/* ===== FOOTER ===== */
footer { padding: 64px 48px 32px; border-top: 1px solid var(--faint2); }

.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 40px; border-bottom: 1px solid var(--faint);
}

.footer-logo { max-width: 240px; height: auto; margin-bottom: 18px; }

.footer-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px; line-height: 2; color: var(--muted); max-width: 300px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

.footer-col a {
  display: block; font-size: 13px;
  color: rgba(242,242,240,0.65); text-decoration: none;
  margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,242,240,0.28);
}

/* ===== STAFF 写真 ===== */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.staff-card {
  background: var(--dark); border: 1px solid var(--faint);
  overflow: hidden; position: relative;
  transition: all 0.3s;
}
.staff-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--white);
  transition: width 0.4s;
}
.staff-card:hover::after { width: 100%; }

.staff-photo {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: var(--mid);
}
.staff-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s; filter: grayscale(15%);
}
.staff-card:hover .staff-photo img { transform: scale(1.04); filter: none; }

.staff-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.staff-photo-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid var(--white); padding: 10px 18px;
}
.staff-card:hover .staff-photo-overlay { opacity: 1; }

.staff-photo--empty {
  width: 100%; aspect-ratio: 4 / 3; background: var(--mid);
  display: flex; align-items: center; justify-content: center;
}
.staff-photo--empty span {
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: rgba(242,242,240,0.12);
}

.staff-info { padding: 24px 24px 28px; }

.staff-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--faint);
}
.staff-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: 24px; margin-bottom: 4px;
}
.staff-name-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.staff-bio { font-size: 13px; line-height: 1.9; color: rgba(242,242,240,0.72); }

/* ===== TEAM タブ ===== */
.team-subnav {
  display: flex; gap: 4px; margin-bottom: 56px;
  border-bottom: 1px solid var(--faint);
}
.team-subnav button {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 14px 28px; border: none; background: transparent;
  color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.3s;
}
.team-subnav button.active { color: var(--white); border-bottom-color: var(--white); }
.team-subnav button:hover { color: var(--white); }

.team-panel { display: none; }
.team-panel.active { display: block; }

/* ===== ROSTER ===== */
.roster-group { margin-bottom: 48px; }

.roster-group-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--faint2);
}
.roster-pos { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; }
.roster-pos-name { font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 16px; }
.roster-count {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--muted);
}

.roster-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--faint); border: 1px solid var(--faint);
}

.player {
  background: var(--dark); overflow: hidden; position: relative;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.player:hover { background: var(--mid); }

.player-photo {
  position: relative; width: 100%; aspect-ratio: 3 / 4;
  overflow: hidden; background: var(--mid); flex-shrink: 0;
}
.player-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s; filter: grayscale(15%);
}
.player:hover .player-photo img { transform: scale(1.04); filter: none; }

.player-photo--empty {
  width: 100%; height: 100%; background: var(--mid);
  display: flex; align-items: center; justify-content: center;
}
.player-num-overlay {
  font-family: 'Bebas Neue', sans-serif; font-size: 80px;
  color: rgba(242,242,240,0.1); line-height: 1;
}

.player-num-badge {
  position: absolute; bottom: 8px; left: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1;
  background: rgba(12,12,12,0.72); padding: 3px 9px;
  backdrop-filter: blur(4px);
}

.player-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.player-photo-overlay span {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  border: 1px solid var(--white);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.player:hover .player-photo-overlay { opacity: 1; }

.player .player-cap {
  position: absolute; top: 8px; right: 8px; left: auto; z-index: 3;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px; letter-spacing: 0.18em;
  border: 1px solid var(--white); padding: 2px 6px;
}

.player-info { padding: 14px 14px 16px; flex: 1; }
.player-name-jp {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 15px; margin-bottom: 4px;
}
.player-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em; color: var(--muted);
}

/* ===== HOMETOWN ===== */
.ht-intro {
  max-width: 720px; font-size: 16px; line-height: 2.1;
  color: rgba(242,242,240,0.8); margin-bottom: 64px;
}

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 0; }

.pillar {
  padding: 36px 28px; border: 1px solid var(--faint); transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--white); }

.pillar-icon { width: 44px; height: 44px; margin-bottom: 20px; }

.pillar-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}

.pillar-ttl {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: 20px; line-height: 1.4; margin-bottom: 16px;
}

.pillar-desc { font-size: 13px; line-height: 1.9; color: var(--muted); margin-bottom: 18px; }

.pillar-list { list-style: none; font-size: 12px; color: rgba(242,242,240,0.75); }
.pillar-list li {
  padding: 7px 0 7px 16px; position: relative;
  border-top: 1px solid var(--faint);
}
.pillar-list li::before { content: '—'; position: absolute; left: 0; color: var(--white); }

.pillar--link { display: block; text-decoration: none; color: var(--white); }
.pillar-cta {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--faint);
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s, padding-left 0.3s;
}
.pillar--link:hover .pillar-cta { color: var(--white); padding-left: 8px; }

.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.voice {
  padding: 28px 24px;
  border-left: 3px solid var(--white); background: var(--dark);
}
.voice-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.voice-txt {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px; line-height: 1.9; margin-bottom: 16px;
}
.voice-by {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.15em; color: var(--muted);
}

/* ===== CLUB ===== */
.club-section { background: var(--dark); }

.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.club-left .big-statement {
  font-family: 'Shippori Mincho', serif;
  font-weight: 800; font-size: clamp(26px, 3vw, 40px);
  line-height: 1.6; margin-bottom: 40px;
}

.club-body p {
  font-size: 16px; line-height: 2.1;
  color: rgba(242,242,240,0.8); margin-bottom: 20px;
}

.club-right {
  display: flex; flex-direction: column;
  border: 1px solid var(--faint2); background: var(--black);
}

.fact-row {
  padding: 20px 24px; border-bottom: 1px solid var(--faint);
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.fact-row:last-child { border-bottom: none; }

.fact-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
}
.fact-val {
  font-family: 'Shippori Mincho', serif; font-weight: 700; font-size: 15px; text-align: right;
}

.values {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--faint); border: 1px solid var(--faint);
}
.val-card { background: var(--black); padding: 36px 28px; }
.val-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 0.9;
  color: rgba(242,242,240,0.07); margin-bottom: 14px;
}
.val-title { font-family: 'Shippori Mincho', serif; font-weight: 800; font-size: 24px; margin-bottom: 12px; }
.val-desc { font-size: 13px; line-height: 1.9; color: var(--muted); }

/* ===== Club本文 ===== */
.club-content {
  max-width: 900px; font-size: 16px; line-height: 2;
  color: rgba(242,242,240,0.88);
}
.club-content h2 {
  font-family: 'Shippori Mincho', serif; font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.3;
  margin: 64px 0 0; padding: 0 0 16px 16px;
  border-left: 4px solid var(--white); position: relative;
}
.club-content h2::before {
  content: ''; position: absolute; top: -32px; left: 0;
  width: 48px; height: 1px; background: rgba(242,242,240,0.25);
}
.club-content h3 { font-family: 'Shippori Mincho', serif; font-weight: 800; font-size: 20px; margin: 40px 0 12px; }
.club-content p { margin-bottom: 22px; }
.club-content > p:first-child::first-letter {
  font-family: 'Shippori Mincho', serif; font-size: 52px; font-weight: 800;
  float: left; line-height: 1; padding: 4px 10px 0 0;
}
.club-content a { color: var(--white); border-bottom: 1px solid var(--faint2); text-decoration: none; transition: border-color 0.3s; }
.club-content a:hover { border-color: var(--white); }
.club-content ul, .club-content ol { margin: 0 0 22px 22px; }
.club-content blockquote {
  margin: 36px 0; padding: 22px 28px;
  border-left: 3px solid var(--white); background: var(--dark);
}
.club-content hr { border: none; border-top: 1px solid var(--faint); margin: 40px 0; }
.club-content strong { color: var(--white); }
.club-content img, .club-content figure img { max-width: 100%; height: auto; margin: 28px 0; }

/* Club ページ hero写真 */
.club-hero-photo {
  position: relative; width: 100%; overflow: hidden; background: var(--mid);
  border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
}
.club-hero-photo img {
  width: 100%; height: 560px;
  object-fit: cover; object-position: center;
  filter: brightness(0.82);
}
.club-hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,12,12,0.7) 100%);
  display: flex; align-items: flex-end; padding: 36px 48px;
}
.club-hero-photo-label { display: flex; align-items: baseline; gap: 18px; }
.club-hero-photo-label-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 40px); letter-spacing: 0.12em; line-height: 1;
}
.club-hero-photo-label-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em; color: rgba(242,242,240,0.55); text-transform: uppercase;
}

/* Club 本文内 h2後の写真 */
.club-content h2 + figure { margin-top: 0 !important; margin-bottom: 40px; overflow: hidden; position: relative; }
.club-content h2 + figure img, .club-content h2 + .wp-block-image img {
  width: 100%; height: 400px; object-fit: cover; object-position: center;
  filter: brightness(0.88); transition: transform 0.6s, filter 0.4s;
}
.club-content h2 + figure:hover img { transform: scale(1.02); filter: brightness(1); }
.club-content h2 + figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,12,0.5) 100%);
  pointer-events: none;
}

/* ===== モーダル ===== */
.fcs-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 500;
  backdrop-filter: blur(4px);
}
.fcs-modal-overlay.open { display: block; }

.fcs-modal {
  display: none; position: fixed;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 600;
  width: min(880px, 90vw); max-height: 88vh;
  overflow-y: auto;
  background: var(--dark); border: 1px solid var(--faint2);
}
.fcs-modal.open { display: block; }

.fcs-modal-inner { position: relative; }

.fcs-modal-close {
  position: sticky; top: 0; float: right;
  background: var(--black); border: none; color: var(--white);
  font-size: 22px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; z-index: 2;
}
.fcs-modal-close:hover { background: var(--mid); }

.fcs-modal-body { display: grid; grid-template-columns: 1fr 1.4fr; }

.fcs-modal-photo {
  position: relative; overflow: hidden; background: var(--mid);
}
.fcs-modal-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.fcs-modal-photo--player { aspect-ratio: 3 / 4; }

.fcs-modal-num {
  position: absolute; bottom: 14px; left: 14px;
  font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1;
  background: rgba(12,12,12,0.7); padding: 3px 12px;
  backdrop-filter: blur(4px);
}

.fcs-modal-content {
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
}

.fcs-modal-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.fcs-modal-name {
  font-family: 'Shippori Mincho', serif; font-weight: 800;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.2; margin: 0;
}
.fcs-modal-name-en {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.fcs-modal-bio {
  margin-top: 6px; font-size: 14px; line-height: 1.95;
  color: rgba(242,242,240,0.78);
  padding-top: 18px; border-top: 1px solid var(--faint);
}

/* ===== お問い合わせ / 選手募集バナー ===== */
.contact-banner {
  border-top: 1px solid var(--faint);
  padding: 48px;
}

.contact-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 36px 48px;
  border: 1px solid var(--faint2); background: var(--dark);
  position: relative; overflow: hidden;
}

.contact-banner-emblem {
  position: absolute; right: -24px; top: 50%; transform: translateY(-50%);
  width: 160px; opacity: 0.05; pointer-events: none;
}
.contact-banner-emblem img { width: 100%; height: auto; }

.contact-banner-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-banner-title {
  font-family: 'Shippori Mincho', serif; font-weight: 800; font-size: 26px; margin-bottom: 8px;
}
.contact-banner-desc { font-size: 13px; line-height: 1.8; color: var(--muted); }

.contact-banner-btn {
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 14px 28px; border: 1px solid var(--white);
  transition: all 0.3s; white-space: nowrap;
}
.contact-banner-btn:hover { background: var(--white); color: var(--black); }

/* ===== Match ページ タブ追加レスポンシブ ===== */
/* ===== アニメーション ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== スマホ対応 ===== */
@media (max-width: 900px) {
  /* Nav */
  .nav { padding: 0 0 0 20px; height: 52px; }
  .nav-logo { padding-right: 20px; border-right: none; }
  .nav-logo-text { display: none; }
  .nav-sections { display: none; }
  .menu-btn { padding: 0 18px; height: 100%; margin-left: auto; font-size: 10px; border-left: 1px solid rgba(255,255,255,0.1); }

  /* セクション余白 */
  section.section { padding: 80px 20px; }
  .contact { padding: 80px 20px; }
  footer { padding: 48px 20px 24px; }
  .explore { padding: 72px 20px; }

  /* page-hero */
  .page-hero { padding: 120px 20px 44px; }

  /* グリッド */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .club-grid { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .voices { grid-template-columns: 1fr; }
  .p-list { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }

  /* match */
  .match-split { grid-template-columns: 1fr; gap: 36px; }
  .match-card-head { padding: 10px 16px; }
  .match-card-body { padding: 18px 16px; grid-template-columns: 1fr 120px 1fr; }
  .match-team-emblem { width: 48px; height: 48px; }
  .match-team-emblem img { max-width: 48px; max-height: 48px; }
  .match-team-emblem-placeholder { width: 48px; height: 48px; }
  .match-team-name { font-size: 14px; }
  .match-score-num { font-size: 40px; }
  .match-score-num.match-score--win { font-size: 48px; }
  .match-card-center { min-width: 80px; }

  /* news */
  .news-item { grid-template-columns: 100px 1fr; gap: 14px; }
  .news-cat, .news-arrow { display: none; }

  /* menu */
  .menu-inner { padding: 80px 24px 40px; }
  .menu-label-jp { display: none; }
  .menu-close { top: 18px; right: 20px; }

  /* pickup */
  .pickup-inner { padding: 0 20px; }
  .pickup-card { flex: 0 0 200px !important; width: 200px !important; }

  /* modal */
  .fcs-modal { width: 94vw; }
  .fcs-modal-body { grid-template-columns: 1fr; }
  .fcs-modal-photo { max-height: 260px; aspect-ratio: auto; }
  .fcs-modal-content { padding: 24px 20px; }

  /* banner */
  .contact-banner { padding: 40px 20px; }
  .contact-banner-inner { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .contact-banner-btn { width: 100%; text-align: center; }

  /* club */
  .club-hero-photo img { height: 260px; }
  .club-hero-photo-overlay { padding: 20px; }

  /* match page tabs */
  .match-page-tab { padding: 14px 18px; }
  .match-page-tab-en { font-size: 20px; }
  .match-page-tab-jp { display: none; }
}

@media (max-width: 500px) {
  .explore-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .pickup-card { flex: 0 0 180px !important; width: 180px !important; }
}

/* Contact info 1列版(電話なし) */
.contact-info--single {
  grid-template-columns: 1fr !important;
  max-width: 560px;
}

/* ===== Pillar 写真対応 ===== */
.pillar {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mid);
  flex-shrink: 0;
}

.pillar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(15%) brightness(0.9);
  transition: filter 0.4s, transform 0.5s;
}

.pillar--link:hover .pillar-photo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

.pillar-photo--empty {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--mid);
  position: relative;
}

.pillar-photo--empty::after {
  content: 'No Image';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint2);
}

.pillar-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ピラーの内側要素はbodyに委ねる */
.pillar .pillar-cta { margin-top: auto; }

/* SVGアイコンは不要になったので非表示 */
.pillar .pillar-icon { display: none; }

/* ===== SNS カード ===== */
.sns-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 40px auto 0;
}

.sns-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px;
  background: var(--black);
  border: 1px solid var(--faint2);
  text-decoration: none;
  color: var(--white);
  text-align: left;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.sns-card:hover {
  background: var(--mid);
  border-color: var(--white);
  transform: translateY(-2px);
}

.sns-card-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--faint2);
  transition: all 0.3s;
}
.sns-card:hover .sns-card-icon {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Xは塗りつぶしアイコン */
.sns-card--x .sns-card-icon { color: var(--white); }
/* Instagramは線アイコン */
.sns-card--ig .sns-card-icon { color: var(--white); }

.sns-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sns-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted);
}

.sns-card-name {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700; font-size: 18px;
  color: var(--white);
}

.sns-card-arrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.3s, color 0.3s;
}
.sns-card:hover .sns-card-arrow {
  color: var(--white);
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .sns-cards { grid-template-columns: 1fr; }
}

/* =============================================================
   白黒コントラスト デザインシステム
   奇数セクション = 黒背景/白文字
   偶数セクション = 白背景/黒文字
   ============================================================= */

/* ===== セクション カラーバリアント ===== */

/* 白背景セクション */
.section--white {
  background: var(--bg-white);
  color: var(--text-light);
  border-top: 1px solid rgba(10,10,10,0.1);
}
.section--white .section-eyebrow { color: rgba(10,10,10,0.4); }
.section--white .section-eyebrow::before { background: var(--text-light); }
.section--white .section-title { color: var(--text-light); }
.section--white .section-title-en { color: rgba(10,10,10,0.4); }

/* オフホワイト背景セクション */
.section--offwhite {
  background: var(--bg-light);
  color: var(--text-light);
  border-top: 1px solid rgba(10,10,10,0.08);
}
.section--offwhite .section-eyebrow { color: rgba(10,10,10,0.4); }
.section--offwhite .section-eyebrow::before { background: var(--text-light); }
.section--offwhite .section-title { color: var(--text-light); }
.section--offwhite .section-title-en { color: rgba(10,10,10,0.4); }

/* ===== ピックアップ 白背景版 ===== */
.pickup-section--white {
  background: var(--bg-white);
  border-top: 1px solid rgba(10,10,10,0.1);
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.pickup-section--white .section-eyebrow { color: rgba(10,10,10,0.4); }
.pickup-section--white .section-eyebrow::before { background: #0a0a0a; }
.pickup-section--white .pickup-arrow {
  background: #0a0a0a; border-color: #0a0a0a; color: #fff;
}
.pickup-section--white .pickup-arrow:hover {
  background: #fff; color: #0a0a0a; border-color: #0a0a0a;
}
.pickup-section--white .pickup-card {
  background: var(--bg-light);
  border-color: rgba(10,10,10,0.12);
  color: var(--text-light);
}
.pickup-section--white .pickup-card--link { color: var(--text-light); }
.pickup-section--white .pickup-card--link:hover { border-color: #0a0a0a; }
.pickup-section--white .pickup-title { color: #0a0a0a; }
.pickup-section--white .pickup-excerpt { color: rgba(10,10,10,0.55); }
.pickup-section--white .pickup-cta { color: rgba(10,10,10,0.4); }
.pickup-section--white .pickup-card--link:hover .pickup-cta { color: #0a0a0a; }

/* ===== MATCHセクション 白背景版 ===== */
.section--white .match-block-label-en { color: #0a0a0a; }
.section--white .match-block-label-jp { color: rgba(10,10,10,0.45); }
.section--white .match-block-label-dot--next { background: #0a0a0a; }
.section--white .match-block-label-dot--result { background: rgba(10,10,10,0.35); }
.section--white .match-block-label { border-bottom-color: rgba(10,10,10,0.15); }
.section--white .match-card {
  background: var(--bg-light);
  border-color: rgba(10,10,10,0.12);
}
.section--white .match-card:first-child { border-top-color: rgba(10,10,10,0.12); }
.section--white .match-card:hover { border-color: rgba(10,10,10,0.3); }
.section--white .match-card-head {
  border-bottom-color: rgba(10,10,10,0.08);
  background: rgba(10,10,10,0.03);
}
.section--white .match-card-comp { color: rgba(10,10,10,0.4); }
.section--white .match-card-date { color: #0a0a0a; }
.section--white .match-card-day { color: rgba(10,10,10,0.45); }
.section--white .match-team-name { color: #0a0a0a; }
.section--white .match-team-label { color: rgba(10,10,10,0.4); }
.section--white .match-score-num { color: rgba(10,10,10,0.35); }
.section--white .match-score-num.match-score--win { color: #0a0a0a; }
.section--white .match-score-sep { color: rgba(10,10,10,0.3); }
.section--white .match-kickoff-vs { color: rgba(10,10,10,0.15); }
.section--white .match-kickoff-date { color: rgba(10,10,10,0.5); }
.section--white .match-kickoff-time { color: #0a0a0a; }
.section--white .match-result-badge { border-color: rgba(10,10,10,0.2); color: rgba(10,10,10,0.5); }
.section--white .match-result-badge--win { border-color: #0a0a0a; color: #0a0a0a; }
.section--white .match-venue-text { color: rgba(10,10,10,0.45); }
.section--white .match-card.win::before { background: #0a0a0a; }
.section--white .page-cta {
  color: #0a0a0a; border-color: rgba(10,10,10,0.3);
}
.section--white .page-cta:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

/* ===== NEWS 白背景版 ===== */
.section--offwhite .news-list { border-top-color: rgba(10,10,10,0.1); }
.section--offwhite .news-item { border-bottom-color: rgba(10,10,10,0.08); }
.section--offwhite .news-item:hover { background: rgba(10,10,10,0.03); }
.section--offwhite .news-date { color: rgba(10,10,10,0.45); }
.section--offwhite .news-cat { border-color: rgba(10,10,10,0.2); color: rgba(10,10,10,0.5); }
.section--offwhite .news-cat.club { border-color: #0a0a0a; color: #0a0a0a; }
.section--offwhite .news-title { color: #0a0a0a; }
.section--offwhite .news-arrow { color: rgba(10,10,10,0.3); }
.section--offwhite .news-item:hover .news-title { color: #0a0a0a; }
.section--offwhite .news-item:hover .news-arrow { color: #0a0a0a; }
.section--offwhite .page-cta { color: #0a0a0a; border-color: rgba(10,10,10,0.3); }
.section--offwhite .page-cta:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

/* ===== EXPLORE 白黒グリッド版 ===== */
.explore--bw {
  background: var(--bg-white);
  border-top: 1px solid rgba(10,10,10,0.1);
}
.explore--bw .explore-title { color: #0a0a0a; }
.explore--bw .section-eyebrow { color: rgba(10,10,10,0.4); }
.explore--bw .section-eyebrow::before { background: #0a0a0a; }
.explore--bw .explore-grid { background: rgba(10,10,10,0.1); border-color: rgba(10,10,10,0.1); }
.explore--bw .explore-tile {
  background: var(--bg-white); color: #0a0a0a;
}
.explore--bw .explore-tile:hover { background: #0a0a0a; color: #fff; }
.explore--bw .explore-num { color: rgba(10,10,10,0.35); }
.explore--bw .explore-tile:hover .explore-num { color: rgba(255,255,255,0.45); }
.explore--bw .explore-arrow { color: rgba(10,10,10,0.3); }
.explore--bw .explore-tile:hover .explore-arrow { color: #fff; }
.explore--bw .explore-tile::after { background: #0a0a0a; }
.explore--bw .explore-tile:hover::after { background: #fff; }

/* ===== CONTACT 白背景版 ===== */
.contact--bw {
  background: var(--bg-white);
  border-top: 1px solid rgba(10,10,10,0.1);
}
.contact--bw .section-eyebrow { color: rgba(10,10,10,0.4); }
.contact--bw .section-eyebrow::before { background: #0a0a0a; }
.contact--bw .contact-mega {
  color: transparent;
  -webkit-text-stroke: 1.5px #0a0a0a;
}
.contact--bw .contact-sub { color: rgba(10,10,10,0.7); }
.contact--bw .c-item { background: var(--bg-light); }
.contact--bw .c-lbl { color: rgba(10,10,10,0.45); }
.contact--bw .c-val { color: #0a0a0a; }
.contact--bw .c-val a { color: #0a0a0a; }
.contact--bw .sns-card {
  background: var(--bg-light);
  border-color: rgba(10,10,10,0.12);
  color: #0a0a0a;
}
.contact--bw .sns-card:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.contact--bw .sns-card-icon { border-color: rgba(10,10,10,0.2); color: #0a0a0a; }
.contact--bw .sns-card:hover .sns-card-icon { background: #fff; color: #0a0a0a; border-color: #fff; }
.contact--bw .sns-card-label { color: rgba(10,10,10,0.45); }
.contact--bw .sns-card:hover .sns-card-label { color: rgba(255,255,255,0.6); }
.contact--bw .sns-card-name { color: #0a0a0a; }
.contact--bw .sns-card:hover .sns-card-name { color: #fff; }
.contact--bw .sns-card-arrow { color: rgba(10,10,10,0.3); }
.contact--bw .sns-card:hover .sns-card-arrow { color: #fff; }

/* ===== FOOTER 黒版 ===== */
footer .footer-bw-divider {
  height: 4px;
  background: linear-gradient(90deg, #0a0a0a 0%, #555 50%, #0a0a0a 100%);
}

/* ===== 区切りライン(白黒交互セクション間) ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,10,10,0.2), transparent);
}


/* ============================================================
   ▼▼▼ デザインアップデート v2 — Photo Hero / Moments / 紫アクセント
   ============================================================ */

/* ===== PHOTO HERO (動画なし時のヒーロー) ===== */
.photo-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 56px);
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #0a0a0a;
}

.photo-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
  filter: saturate(0.92) contrast(1.08);
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.04); }
}

.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.05) 50%, rgba(10,10,10,0.4) 100%);
}

.photo-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 8vw 8vw;
  color: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeIn 0.9s 0.2s ease-out forwards;
}

.photo-hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.photo-hero-eyebrow-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
}

.photo-hero-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(36px, 6.4vw, 84px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  opacity: 0;
  animation: heroFadeIn 1.1s 0.45s ease-out forwards;
}

.photo-hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin: 0 0 36px;
  opacity: 0;
  animation: heroFadeIn 1.1s 0.7s ease-out forwards;
}

.photo-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1.1s 0.95s ease-out forwards;
}

.photo-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: all 0.25s ease;
}

.photo-hero-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}

.photo-hero-cta--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.photo-hero-cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.photo-hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 8vw;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
}

.photo-hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.photo-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -20px; left: 0;
  width: 100%; height: 20px;
  background: #fff;
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: -20px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 60px; opacity: 0; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOMENTS セクション ===== */
.moments-section {
  background: #0a0a0a;
  color: #fff;
  padding: 110px 0 110px;
  position: relative;
  overflow: hidden;
}

.moments-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.4;
}

.moments-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
}

.moments-header {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.moments-eyebrow {
  color: var(--accent-soft) !important;
  margin-bottom: 12px;
}

.moments-eyebrow::before {
  background: var(--accent) !important;
}

.moments-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
  grid-column: 1;
}

.moments-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin: 0;
  grid-column: 2;
  white-space: nowrap;
  align-self: end;
  padding-bottom: 8px;
  border-right: 1px solid var(--accent);
  padding-right: 16px;
}

/* ===== ストリップ(Ken Burns シネマティック) ===== */
.moments-stage {
  position: relative;
  width: 100%;
  height: clamp(380px, 56vw, 620px);
  overflow: hidden;
  background: #000;
  margin-bottom: 18px;
}

/* メイン画像レイヤー(複数枚を重ねてフェード) */
.moments-frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.0);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: contrast(1.05) saturate(0.92);
}

.moments-frame.is-active {
  opacity: 1;
  /* Ken Burns: ゆっくり拡大しながら微妙にパン */
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

/* ステージ上のオーバーレイ(下部に向かって暗くなる) */
.moments-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 55%,
    rgba(10,10,10,0.55) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ステージ右上: フレームカウンター */
.moments-counter {
  position: absolute;
  top: 24px; right: 28px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
}

.moments-counter-num {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}

.moments-counter-sep {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.moments-counter-total {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ステージ左下: 紫の極細プログレスバー */
.moments-progress-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 4;
  transition: width 0.1s linear;
}

/* サムネイル列 */
.moments-thumbs {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 78px;
}

.moments-thumb {
  flex: 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.7) brightness(0.55);
  transition: filter 0.5s ease, transform 0.4s ease;
  border: 0;
  padding: 0;
}

.moments-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.moments-thumb:hover {
  filter: grayscale(0) brightness(0.85);
}

.moments-thumb.is-active {
  filter: grayscale(0) brightness(1);
}

.moments-thumb.is-active::after {
  border-color: var(--accent);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .moments-section { padding: 64px 0; }
  .moments-header {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }
  .moments-sub {
    grid-column: 1;
    border-right: none;
    border-left: 1px solid var(--accent);
    padding-right: 0;
    padding-left: 12px;
  }
  .moments-stage {
    height: clamp(280px, 70vw, 380px);
  }
  .moments-counter {
    top: 14px; right: 14px;
  }
  .moments-counter-num { font-size: 22px; }
  .moments-thumbs { height: 56px; gap: 5px; }
  .photo-hero {
    height: calc(100vh - 56px);
    min-height: 480px;
  }
  .photo-hero-content { padding: 0 6vw 12vw 6vw; }
  .photo-hero-scroll { display: none; }
}

/* ===== 紫アクセント — 既存要素にちょこっと効かせる ===== */
/* CTAボタンのホバー時に紫枠 */
.page-cta:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* Exploreタイル: ホバー時に紫の細線 */
.explore-tile:hover {
  border-color: var(--accent) !important;
}
.explore-tile:hover .explore-arrow {
  color: var(--accent) !important;
}

/* SNSカードのフォロー文字ホバー */
.sns-card:hover .sns-card-arrow {
  color: var(--accent) !important;
}

/* footer リンクのホバー */
.menu-footer a:hover,
footer a:hover {
  color: var(--accent-soft) !important;
}

/* (Matchセクション背景・Contact紫線は既存デザインを尊重するため削除) */

/* ============================================================
   ▼▼▼ 視認性修正 v3 — 黒背景上での文字・線の見え方を改善
   ============================================================ */

/* 黒背景セクション専用の補助カラー */
:root {
  --muted-on-dark:  rgba(255,255,255,0.55);  /* 暗背景上の補助テキスト */
  --faint-on-dark:  rgba(255,255,255,0.14);  /* 暗背景上の細い線 */
  --faint2-on-dark: rgba(255,255,255,0.22);  /* 暗背景上のもう少し見える線 */
}

/* ===== Partnerセクション(黒背景)の視認性修正 ===== */
.partner-section .p-tier-lbl {
  color: var(--muted-on-dark);
  font-size: 12px;
}

.partner-section .p-tier-line {
  background: var(--faint2-on-dark);
  height: 1px;
}

/* ティア間の区切りをはっきりさせる */
.partner-section .p-tier {
  margin-bottom: 72px;
  padding-top: 8px;
}
.partner-section .p-tier + .p-tier {
  border-top: 1px solid var(--faint-on-dark);
  padding-top: 56px;
}

.partner-section .partner {
  border-color: var(--faint2-on-dark);
}
.partner-section .partner:hover {
  border-color: var(--accent);
}

.partner-section .partner-role {
  color: var(--muted-on-dark);
}

.partner-section .partner-link-cta {
  color: var(--muted-on-dark);
  border-top-color: var(--faint-on-dark);
}

.partner-section .p-main {
  border-color: var(--faint2-on-dark);
}
.partner-section .p-main--link:hover {
  border-color: var(--accent);
}

.partner-section .p-main-lbl {
  color: var(--muted-on-dark);
  font-size: 12px;
}

/* ===== Teamタブ(黒背景)の視認性修正 ===== */
.team-subnav {
  border-bottom-color: var(--faint2-on-dark);
}

.team-subnav button {
  color: rgba(255,255,255,0.55);  /* 非アクティブも明るく */
  font-size: 13px;
}

.team-subnav button.active {
  color: var(--white);
  border-bottom-color: var(--accent);  /* 紫ハイライトでわかりやすく */
}

.team-subnav button:hover {
  color: var(--white);
}

/* ===== Staffカード(黒背景上)の視認性修正 ===== */
.staff-role {
  color: rgba(255,255,255,0.7);          /* 役職:しっかり読める明度 */
  border-bottom-color: var(--faint-on-dark);
}

.staff-name-en {
  color: rgba(255,255,255,0.55);         /* 英字名:控えめだが見える */
}

/* ===== Roster(選手一覧)の視認性修正 ===== */
.roster-group-head {
  border-bottom-color: var(--faint2-on-dark);
}

.roster-count {
  color: rgba(255,255,255,0.55);
}

.roster-grid {
  background: var(--faint2-on-dark);  /* 区切り線がよく見える */
  border-color: var(--faint2-on-dark);
}

.player-small {
  color: rgba(255,255,255,0.6);   /* 選手のローマ字をはっきり */
  letter-spacing: 0.16em;
}

/* ============================================================
   ▼▼▼ NEXT MATCH ヒーローバナー (グランパス風) v4
   ============================================================ */
.nm-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  padding: 56px 0;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* 上端に紫の細いアクセントライン */
.nm-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent) 30%,
    var(--accent) 70%,
    transparent 100%);
  opacity: 0.7;
}

.nm-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ===== 共通ラベル ===== */
.nm-hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.nm-hero-label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(107,79,181,0.18);
  animation: nmPulse 2s ease-in-out infinite;
}

.nm-hero-label-dot--result {
  background: rgba(255,255,255,0.55);
  box-shadow: none;
  animation: none;
}

@keyframes nmPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(107,79,181,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(107,79,181,0.0); }
}

.nm-hero-label-en {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: #fff;
}

.nm-hero-label-jp {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}

/* ===== 左大ブロック: NEXT MATCH ===== */
.nm-hero-main {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 40px 32px;
  position: relative;
  overflow: hidden;
}

/* 大背景に紫の薄いグラデーション(右上から斜め) */
.nm-hero-main::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right,
    rgba(107,79,181,0.10) 0%,
    transparent 60%);
  pointer-events: none;
}

.nm-hero-main > * {
  position: relative;
  z-index: 1;
}

.nm-hero-comp {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.nm-hero-date {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.nm-hero-date-md {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.nm-hero-date-y {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
}

.nm-hero-date-dow {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
}

.nm-hero-date-time {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: #fff;
  margin-left: auto;
}

/* チームカード行 */
.nm-hero-cards {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nm-hero-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.nm-hero-team-emblem {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-hero-team-emblem img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nm-hero-team-emblem-placeholder {
  width: 84px;
  height: 84px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-hero-team-emblem-placeholder span {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 32px;
  color: rgba(255,255,255,0.4);
}

.nm-hero-team-label {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.nm-hero-team-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.3;
  max-width: 200px;
}

/* VS */
.nm-hero-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nm-hero-vs-text {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}

.nm-hero-vs-line {
  width: 36px;
  height: 1px;
  background: var(--accent);
}

/* 会場 */
.nm-hero-venue {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.nm-hero-venue-icon {
  color: var(--accent);
  font-size: 8px;
  transform: rotate(45deg);
  display: inline-block;
}

.nm-hero-venue-name {
  letter-spacing: 0.05em;
}

/* CTAボタン */
.nm-hero-cta-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nm-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-decoration: none;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  transition: all 0.2s ease;
}

.nm-hero-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.nm-hero-cta--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

.nm-hero-cta--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: #fff;
  color: #fff;
}

/* 空状態 */
.nm-hero-empty {
  padding: 20px 0;
}

.nm-hero-empty-text {
  font-size: 22px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin: 16px 0 24px;
}

/* ===== 右小ブロック: LAST RESULT ===== */
.nm-hero-side {
  display: flex;
  flex-direction: column;
}

.nm-hero-result {
  flex: 1;
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 28px 24px;
  position: relative;
  transition: all 0.25s ease;
}

.nm-hero-result:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.045);
}

/* 結果カードの左上に勝敗バッジ */
.nm-hero-result-badge {
  display: inline-block;
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.nm-hero-result--win .nm-hero-result-badge {
  background: var(--accent);
  color: #fff;
}

.nm-hero-result--loss .nm-hero-result-badge {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.nm-hero-result--draw .nm-hero-result-badge {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nm-hero-result--win {
  border-left: 3px solid var(--accent);
}

.nm-hero-result-date {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.nm-hero-result-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.nm-hero-result-team {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.nm-hero-result-score .nm-hero-result-team:first-child { text-align: right; }
.nm-hero-result-score .nm-hero-result-team:last-child  { text-align: left; }

.nm-hero-result-nums {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0 14px;
  line-height: 1;
}

.nm-hero-result-link {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}

.nm-hero-result:hover .nm-hero-result-link {
  color: var(--accent);
}

.nm-hero-result--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.nm-hero-result-empty {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 900px) {
  .nm-hero { padding: 36px 0; }
  .nm-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 5vw;
  }
  .nm-hero-main { padding: 24px 22px 22px; }
  .nm-hero-date-md { font-size: 44px; }
  .nm-hero-date-y { font-size: 14px; }
  .nm-hero-date-dow { font-size: 14px; padding: 3px 7px; }
  .nm-hero-date-time { font-size: 16px; margin-left: 0; width: 100%; }
  .nm-hero-cards {
    grid-template-columns: 1fr 60px 1fr;
    gap: 10px;
  }
  .nm-hero-team-emblem,
  .nm-hero-team-emblem-placeholder { width: 60px; height: 60px; }
  .nm-hero-team-emblem-placeholder span { font-size: 22px; }
  .nm-hero-team-name { font-size: 13px; max-width: 130px; }
  .nm-hero-vs-text { font-size: 22px; }
  .nm-hero-result { padding: 22px 20px 20px; }
  .nm-hero-result-nums { font-size: 26px; padding: 0 10px; }
  .nm-hero-result-team { font-size: 11px; }
}
