/* =============================================
   カラートークン
   ============================================= */
:root {
  /* ブランドカラー */
  --color-primary:        #1a472a;   /* プレミアリーググリーン */
  --color-primary-dark:   #0f2d1a;
  --color-primary-light:  #2d6a42;
  --color-accent:         #e8c84a;   /* ゴールド */
  --color-accent-dark:    #c9a830;
  --color-accent-light:   #f5db7a;

  /* ニュートラル */
  --color-bg:             #0a0e0a;   /* ほぼ黒のダークグリーン */
  --color-surface:        #111811;
  --color-surface-2:      #182018;
  --color-surface-3:      #1e281e;
  --color-border:         #2a3a2a;
  --color-border-light:   #3a4e3a;

  /* テキスト */
  --color-text:           #e8f0e8;   /* オフホワイト */
  --color-text-muted:     #94a894;
  --color-text-faint:     #6a7e6a;

  /* セマンティック */
  --color-win:            #4ade80;
  --color-draw:           #e8c84a;
  --color-loss:           #f87171;

  /* スペーシング */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:   12px;
  --sp-base: 16px;
  --sp-lg:   24px;
  --sp-xl:   32px;
  --sp-2xl:  48px;
  --sp-3xl:  64px;
  --sp-4xl:  96px;

  /* タイポグラフィ */
  --font-sans: 'Helvetica Neue', 'Arial', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-en:   'Impact', 'Franklin Gothic Heavy', 'Arial Narrow', sans-serif;

  /* ボーダー半径 */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* シャドウ */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.6);
  --shadow-glow: 0 0 24px rgba(232,200,74,.15);

  /* トランジション */
  --tr-fast:    100ms ease-out;
  --tr-base:    150ms ease-out;
  --tr-slow:    250ms ease-out;
}

/* =============================================
   リセット & ベース
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* 禁則処理 */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div {
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* アクセシビリティ: フォーカス */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =============================================
   レイアウトユーティリティ
   ============================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-base);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-xl); }
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--sp-2xl); }
}

.section {
  padding-block: var(--sp-4xl);
}

@media (min-width: 768px) {
  .section { padding-block: 80px; }
}

/* =============================================
   ヘッダー
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-base);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

@media (min-width: 768px) {
  .header-inner { padding-inline: var(--sp-xl); }
}

/* ロゴ */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
  transition: opacity var(--tr-base);
}
.site-logo:hover { opacity: .8; }

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-accent);
}

.logo-sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

/* ナビ */
.site-nav { margin-left: auto; }

.nav-list {
  display: none;
  gap: var(--sp-xs);
}

@media (min-width: 768px) {
  .nav-list { display: flex; }
}

.nav-link {
  display: block;
  padding: var(--sp-sm) var(--sp-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--tr-base), background var(--tr-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.nav-link.is-active {
  color: var(--color-accent);
}

/* ハンバーガー */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--sp-sm);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--tr-base);
}

.nav-toggle:hover { background: var(--color-surface-2); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--tr-slow), opacity var(--tr-base);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-nav {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav-list {
  padding: var(--sp-sm) var(--sp-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.mobile-nav-link {
  display: block;
  padding: var(--sp-md) var(--sp-base);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--tr-base), background var(--tr-base);
}

.mobile-nav-link:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* =============================================
   ヒーロー
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* サッカーピッチ背景 */
.hero-pitch {
  position: absolute;
  inset: 0;
  background:
    /* 中央ライン */
    linear-gradient(to bottom, transparent calc(50% - 1px), rgba(255,255,255,.06) calc(50% - 1px), rgba(255,255,255,.06) calc(50% + 1px), transparent calc(50% + 1px)),
    /* センターサークル */
    radial-gradient(circle at 50% 50%, transparent 19%, rgba(255,255,255,.06) 19%, rgba(255,255,255,.06) 20%, transparent 20%),
    /* フィールドカラー（縦縞） */
    repeating-linear-gradient(
      90deg,
      rgba(26,71,42,.3) 0,
      rgba(26,71,42,.3) 12.5%,
      rgba(15,45,26,.3) 12.5%,
      rgba(15,45,26,.3) 25%
    ),
    linear-gradient(160deg, #0a1a0a 0%, #081408 50%, #050d05 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,10,.4) 0%,
    rgba(10,14,10,.2) 40%,
    rgba(10,14,10,.7) 80%,
    rgba(10,14,10,.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--sp-base);
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: var(--sp-xs) var(--sp-md);
  background: rgba(232,200,74,.15);
  border: 1px solid rgba(232,200,74,.4);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: var(--sp-lg);
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.hero-title-en {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(232,200,74,.3);
  line-height: 1;
}

.hero-title-ja {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .1em;
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-xl);
  max-width: 65ch;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ボール装飾 */
.hero-ball {
  position: absolute;
  z-index: 1;
  font-size: 120px;
  opacity: .04;
  right: -40px;
  bottom: 80px;
  animation: ball-float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-ball {
    font-size: 240px;
    right: 5%;
    bottom: 10%;
    opacity: .06;
  }
}

@keyframes ball-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(15deg); }
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--color-text-faint);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-faint), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ボタン
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-lg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--tr-base), color var(--tr-base), border-color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  min-width: 44px;
}

.btn:active { transform: translateY(1px); }

.btn-lg {
  padding: var(--sp-md) var(--sp-xl);
  font-size: 15px;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  box-shadow: 0 4px 20px rgba(232,200,74,.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* =============================================
   ティッカーバー
   ============================================= */
.ticker-bar {
  background: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding-inline: var(--sp-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-right: 1px solid rgba(255,255,255,.15);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  padding-inline: var(--sp-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(255,255,255,.3);
  padding-inline: var(--sp-sm);
}

/* =============================================
   セクション共通
   ============================================= */
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-2xl);
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
  }
}

.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--color-accent);
  background: rgba(232,200,74,.1);
  padding: var(--sp-xs) var(--sp-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
  align-self: flex-start;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-title { flex: 1; }
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  transition: opacity var(--tr-base);
  white-space: nowrap;
  margin-left: auto;
}
.section-link:hover { opacity: .7; }

/* =============================================
   順位表
   ============================================= */
.standings-preview {
  background: var(--color-surface);
}

.standings-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.standings-season {
  padding: var(--sp-md) var(--sp-lg);
  font-size: 13px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-3);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.standings-table th {
  padding: var(--sp-md) var(--sp-base);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--color-text-muted);
  text-align: center;
  background: var(--color-surface-3);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.standings-table td {
  padding: var(--sp-md) var(--sp-base);
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--tr-base);
}

.standings-table tbody tr:last-child td {
  border-bottom: none;
}

.standings-table tbody tr:hover td {
  background: var(--color-surface-3);
}

.rank-top td {
  background: rgba(232,200,74,.05);
}

.col-rank { width: 52px; }
.col-team { text-align: left !important; }
.col-num  { width: 44px; }
.col-pts  { width: 64px; }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  background: var(--color-surface-3);
  color: var(--color-text-muted);
}

.rank-badge.rank-1 {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.rank-badge.rank-2 {
  background: #c0c0c0;
  color: #1a1a1a;
}

.rank-badge.rank-3 {
  background: #cd7f32;
  color: #fff;
}

.team-name {
  font-weight: 600;
  color: var(--color-text);
}

.col-pts strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
}

/* =============================================
   試合結果
   ============================================= */
.results-section {
  background: var(--color-bg);
}

.results-grid {
  display: grid;
  gap: var(--sp-base);
}

@media (min-width: 640px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}

.match-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
}

.match-card:hover {
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.match-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.match-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.match-round {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px var(--sp-sm);
  background: rgba(232,200,74,.1);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
}

.match-body {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.team {
  flex: 1;
  min-width: 0;
}

.team.home .team-name { text-align: right; }
.team.away .team-name { text-align: left; }

.team .team-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.score-box {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  flex-shrink: 0;
}

.score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-surface-2);
  border-radius: var(--radius-sm);
}

.score-sep {
  font-size: 14px;
  color: var(--color-text-muted);
}

.match-venue {
  font-size: 12px;
  color: var(--color-text-faint);
}

/* =============================================
   次節予告
   ============================================= */
.next-match-section {
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.next-match-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,71,42,.3) 0%, transparent 70%);
  pointer-events: none;
}

.next-match-grid {
  display: grid;
  gap: var(--sp-base);
}

@media (min-width: 640px) {
  .next-match-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .next-match-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.next-match-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.next-match-card.featured {
  border-color: rgba(232,200,74,.4);
  background: linear-gradient(135deg, rgba(232,200,74,.05) 0%, var(--color-surface-2) 100%);
  box-shadow: var(--shadow-glow);
}

.next-match-badge {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px var(--sp-sm);
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
}

.next-match-body {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin: var(--sp-md) 0;
}

.team-rank {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--sp-xs);
}

.vs-box {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

.vs {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .05em;
}

.kickoff {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* =============================================
   リーグ概要
   ============================================= */
.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  gap: var(--sp-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-lg);
  max-width: 65ch;
}

.about-stats {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  margin-top: var(--sp-xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-xs);
}

.stat-num {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ピッチ図 */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pitch-diagram {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  background: linear-gradient(
    180deg,
    rgba(26,71,42,.6) 0%,
    rgba(15,45,26,.6) 50%,
    rgba(26,71,42,.6) 100%
  );
  border: 2px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pitch-lines {
  position: absolute;
  inset: 0;
}

.pitch-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}

.pitch-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
}

.pitch-halfway {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.pitch-penalty-top {
  position: absolute;
  top: 5%;
  left: 25%;
  right: 25%;
  height: 18%;
  border: 1px solid rgba(255,255,255,.2);
  border-top: none;
}

.pitch-penalty-bottom {
  position: absolute;
  bottom: 5%;
  left: 25%;
  right: 25%;
  height: 18%;
  border: 1px solid rgba(255,255,255,.2);
  border-bottom: none;
}

.pitch-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  animation: ball-float 4s ease-in-out infinite;
}

/* =============================================
   フッター
   ============================================= */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--sp-2xl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.footer-nav { margin-left: 0; }

@media (min-width: 768px) {
  .footer-nav { margin-left: auto; }
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-base);
}

.footer-nav-list a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--tr-base);
}
.footer-nav-list a:hover { color: var(--color-accent); }

.footer-copy {
  font-size: 12px;
  color: var(--color-text-faint);
  width: 100%;
}

@media (min-width: 768px) {
  .footer-copy { width: auto; }
}

/* =============================================
   順位表ページ（standings.html）
   ============================================= */
.page-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,71,42,.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-md);
}

.page-breadcrumb a {
  color: var(--color-accent);
  transition: opacity var(--tr-base);
}
.page-breadcrumb a:hover { opacity: .7; }

.page-breadcrumb-sep {
  color: var(--color-text-faint);
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-sm);
}

.page-desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* フィルタータブ */
.filter-tabs {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.filter-tab {
  padding: var(--sp-sm) var(--sp-base);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--tr-base), background var(--tr-base), border-color var(--tr-base);
  min-height: 40px;
}

.filter-tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-light);
}

.filter-tab.is-active {
  color: var(--color-primary-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* =============================================
   スケジュールページ
   ============================================= */
.match-day-group {
  margin-bottom: var(--sp-2xl);
}

.match-day-header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-base);
}

.match-day-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.match-day-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* =============================================
   チームページ
   ============================================= */
.teams-grid {
  display: grid;
  gap: var(--sp-base);
}

@media (min-width: 640px) {
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .teams-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  transition: border-color var(--tr-base), box-shadow var(--tr-base), transform var(--tr-base);
}

.team-card:hover {
  border-color: rgba(232,200,74,.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.team-crest {
  font-size: 48px;
  margin-bottom: var(--sp-md);
}

.team-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--sp-xs);
}

.team-card-city {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* =============================================
   モーション軽減
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
