/*
Theme Name: Kanagawa SSL
Theme URI: https://kanagawa-ssl.example.jp
Author: Kanagawa Football Association
Author URI: https://kanagawa-ssl.example.jp
Description: 神奈川県社会人サッカーリーグ 公式テーマ - 神奈川県サッカー協会第1種社会人部会
Version: 1.0.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kanagawa-ssl
Tags: sports, soccer, football, japanese, responsive
*/

/* ====================================================
   CSS CUSTOM PROPERTIES
==================================================== */
:root {
  --primary: #0077B6;
  --primary-dark: #005A8E;
  --primary-light: #48CAE4;
  --sky: #90E0EF;
  --ice: #CAF0F8;
  --white: #FFFFFF;
  --off-white: #F0F8FF;
  --gray-light: #E8F4FD;
  --gray: #6B8FA8;
  --dark: #0D2B3E;
  --accent: #F77F00;
  --accent2: #00B4D8;
  --text: #1A3A4F;
  --text-light: #5C7A8E;
  --header-height: 105px;
}

/* ====================================================
   RESET & BASE
==================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ====================================================
   TYPOGRAPHY
==================================================== */
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.entry-content h2 { font-size: 1.5rem; margin: 2em 0 0.8em; padding-left: 14px; border-left: 4px solid var(--primary); }
.entry-content h3 { font-size: 1.2rem; margin: 1.6em 0 0.6em; color: var(--primary-dark); }
.entry-content p { margin-bottom: 1.2em; }
.entry-content ul, .entry-content ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.entry-content ul li { list-style: disc; margin-bottom: 0.4em; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.4em; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: 0.9rem; }
.entry-content table th { background: var(--primary); color: white; padding: 10px 14px; text-align: left; }
.entry-content table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-light); }
.entry-content table tr:nth-child(even) td { background: var(--off-white); }

/* ====================================================
   LAYOUT CONTAINERS
==================================================== */
.site-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content-area { padding: 56px 0; }

.site-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.site-main-wrapper.full-width {
  grid-template-columns: 1fr;
}

/* ====================================================
   TICKER
==================================================== */
.site-ticker {
  background: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding: 10px 0;
  overflow: hidden;
}

.site-ticker__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-ticker__label {
  display: inline-flex;
  align-items: center;
  padding: 2px 14px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  flex-shrink: 0;
  border-radius: 2px;
}

.site-ticker__track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.site-ticker__text {
  display: inline-block;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  animation: ticker-scroll 40s linear infinite;
}

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

/* ====================================================
   HEADER
==================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 24px rgba(0,119,182,0.12);
}

.site-header__top {
  background: var(--primary);
  padding: 6px 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.site-header__top-org {
  font-family: 'Barlow Condensed', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-header__top-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-header__top-link {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.site-header__top-link:hover { color: white; }

.site-header__main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 10px 24px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* LOGO */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo__image {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
}

.site-logo__org {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.site-logo__main {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.site-logo__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* NAVIGATION — デスクトップ水平メニュー */
.site-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
  gap: 2px;
}

.menu-item > a {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.menu-item > a:hover,
.menu-item.current-menu-item > a {
  color: var(--primary);
  background: var(--gray-light);
}

/* デスクトップ ドロップダウン */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: white;
  border: 1px solid var(--ice);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 8px 8px;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,119,182,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .menu-item a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.15s;
  border-radius: 0;
}
.sub-menu .menu-item:last-child a { border-bottom: none; }
.sub-menu .menu-item a:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 22px;
}

/* ====================================================
   HAMBURGER BUTTON
==================================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
  z-index: 1100;
  border-radius: 6px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--gray-light); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .2s, width .3s;
  transform-origin: center;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(2) { margin-bottom: 6px; }

/* ×アニメーション */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================================================
   DRAWER OVERLAY
==================================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,43,62,.5);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  transition: opacity .3s;
}
.nav-overlay.is-visible {
  display: block;
}
.nav-overlay.is-active {
  opacity: 1;
}

/* ====================================================
   DRAWER PANEL
==================================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: var(--dark);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nav-drawer.is-open {
  transform: translateX(0);
}

/* ドロワーヘッダー */
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.nav-drawer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  line-height: 1;
  transition: background .2s;
}
.nav-drawer__close:hover { background: rgba(255,255,255,.15); }

/* ドロワー本体スクロール */
.nav-drawer__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 0 32px;
}
.nav-drawer__body::-webkit-scrollbar { width: 4px; }
.nav-drawer__body::-webkit-scrollbar-track { background: transparent; }
.nav-drawer__body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

/* ドロワー メニュー */
.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* トップレベル */
.drawer-menu > .menu-item > a,
.drawer-menu > .menu-item > .drawer-item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s, color .2s;
  cursor: pointer;
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}
.drawer-menu > .menu-item > a:hover,
.drawer-menu > .menu-item > .drawer-item-btn:hover {
  background: rgba(255,255,255,.06);
  color: var(--primary-light);
}
.drawer-menu > .menu-item.current-menu-item > a {
  color: var(--primary-light);
  background: rgba(0,119,182,.15);
}

/* 矢印 */
.drawer-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,.5);
}
.drawer-menu > .menu-item.is-expanded > .drawer-item-btn .drawer-arrow {
  transform: rotate(90deg);
  background: rgba(0,119,182,.3);
  color: var(--primary-light);
}

/* サブメニュー（アコーディオン） */
.drawer-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  background: rgba(0,0,0,.25);
}
.drawer-menu > .menu-item.is-expanded > .drawer-sub {
  max-height: 800px;
}

.drawer-sub .menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 40px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s, color .15s, padding-left .15s;
}
.drawer-sub .menu-item a::before {
  content: '›';
  color: var(--primary-light);
  font-size: 14px;
  flex-shrink: 0;
  opacity: .7;
}
.drawer-sub .menu-item a:hover {
  background: rgba(255,255,255,.05);
  color: white;
  padding-left: 48px;
}
.drawer-sub .menu-item:last-child a { border-bottom: none; }

/* ドロワー フッターリンク */
.nav-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.nav-drawer__foot a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.nav-drawer__foot a:hover { color: rgba(255,255,255,.8); }

/* ====================================================
   PAGE OFFSET (fixed header)
==================================================== */
body.has-fixed-header {
  padding-top: var(--header-height);
}

/* ====================================================
   HERO (front page)
==================================================== */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }

.hero__slide--1 { background: linear-gradient(135deg, #0D2B3E 0%, #0077B6 45%, #00B4D8 100%); }
.hero__slide--2 { background: linear-gradient(135deg, #005A8E 0%, #0096C7 50%, #48CAE4 100%); }
.hero__slide--3 { background: linear-gradient(135deg, #0077B6 0%, #023E58 55%, #0D2B3E 100%); }

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.hero__ball {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.07;
  z-index: 1;
}

.hero__content {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero__badge span {
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero__title {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s 0.1s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__title span { color: var(--sky); display: block; }

.hero__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero__indicators {
  position: absolute;
  bottom: 24px;
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero__dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero__dot.is-active { width: 40px; background: white; }

/* ====================================================
   BUTTONS
==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--primary);
  color: white;
}
.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ====================================================
   QUICK LINKS BAR
==================================================== */
.quick-links {
  background: var(--primary);
}

.quick-links__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.quick-link:hover::before { transform: translateY(0); }
.quick-link:last-child { border-right: none; }

.quick-link__icon { font-size: 26px; position: relative; z-index: 1; }
.quick-link__label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; position: relative; z-index: 1; }

/* ====================================================
   SECTION HEADERS
==================================================== */
.section-block {
  padding: 64px 0;
}

.section-block--bg {
  background: var(--off-white);
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-title__en {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title__jp {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.section-title__line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.section-title__bar {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.more-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s;
}
.more-link:hover { border-bottom-color: var(--primary); }

/* ====================================================
   NEWS
==================================================== */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.news-main {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-main__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.news-main__thumb {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-main__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,30,50,0.85) 0%, rgba(5,30,50,0.1) 60%);
}

.news-main__content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}

.news-tag--championship { background: var(--accent); }
.news-tag--info { background: var(--accent2); }

.news-main__title {
  font-size: 20px;
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-main__date {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow', sans-serif;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: white;
  transition: all 0.2s;
  border-left: 4px solid transparent;
}
.news-item:hover {
  background: var(--off-white);
  border-left-color: var(--primary);
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-item__date {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
}

.news-item__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====================================================
   LEAGUE DIVISIONS
==================================================== */
.league-divisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.league-division {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,119,182,0.08);
  transition: all 0.3s;
  border: 1px solid var(--ice);
}

.league-division:hover {
  box-shadow: 0 8px 32px rgba(0,119,182,0.16);
  transform: translateY(-4px);
}

.division__header {
  background: var(--primary);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.division__header--2 { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.division__header--3 { background: linear-gradient(135deg, #0D2B3E, var(--primary-dark)); }

.division__name {
  font-size: 17px;
  font-weight: 900;
  color: white;
  line-height: 1.4;
}
.division__name small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1px;
}

.division__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.division__body { padding: 16px 20px; }

.division__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.group-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--off-white);
  border: 1px solid var(--ice);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
}
.group-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.division__links {
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}

.division__link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.division__link-btn:hover { background: var(--primary); color: white; }

/* 1部カード専用：2×2グリッドリンク */
.division__links--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* 1部カード専用：2行×2列（2部・3部と同じボタン幅） */
.division__links--div1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ====================================================
   CHAMPIONSHIP CARDS
==================================================== */
.championships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.champ-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s;
}
.champ-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,119,182,0.2);
}

.champ-card--1 { background: linear-gradient(135deg, #0D2B3E, #0077B6); }
.champ-card--2 { background: linear-gradient(135deg, #003F5C, #0096C7); }
.champ-card--3 { background: linear-gradient(135deg, #023E58, #48CAE4); }

.champ-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,20,35,0.9) 0%, rgba(5,20,35,0.1) 70%);
}

.champ-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(60deg, white 0px, white 1px, transparent 1px, transparent 30px);
}

.champ-card__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  opacity: 0.15;
}

.champ-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.champ-card__label {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--accent);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}

.champ-card__title {
  font-size: 16px;
  font-weight: 900;
  color: white;
  line-height: 1.5;
}

.champ-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--sky);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ====================================================
   SCHEDULE TABLE
==================================================== */
.schedule-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
  overflow-x: auto;
  scrollbar-width: none;
}
.schedule-tabs::-webkit-scrollbar { display: none; }

.schedule-tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.schedule-tab.is-active,
.schedule-tab:hover { color: var(--primary); border-bottom-color: var(--primary); }

.schedule-table-wrap { overflow-x: auto; }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}

.schedule-table th {
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.schedule-table tr:nth-child(even) td { background: var(--off-white); }
.schedule-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-light);
}

.match-date { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; color: var(--primary); }
.match-kickoff { display: block; font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 600; color: var(--text-light); margin-top: 2px; }
.match-teams { font-weight: 700; }
.match-score { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: 2px; }
.match-score--upcoming { font-size: 14px; color: var(--primary); letter-spacing: 4px; font-weight: 700; }
.venue-tag { display: inline-flex; padding: 3px 8px; background: var(--off-white); border: 1px solid var(--ice); border-radius: 3px; font-size: 11px; color: var(--text-light); }

/* ====================================================
   STANDINGS TABLE
==================================================== */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.standings-table th {
  background: var(--primary);
  color: white;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.standings-table th:first-child,
.standings-table th:nth-child(2) { text-align: left; }

.standings-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}
.standings-table td:first-child,
.standings-table td:nth-child(2) { text-align: left; }

.standings-table tr:nth-child(even) td { background: var(--off-white); }

.standings-table .rank { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; color: var(--primary); }
.standings-table .team-name { font-weight: 700; }
.standings-table .pts { font-weight: 900; font-size: 16px; color: var(--dark); }
.standings-table tr.promotion td { background: rgba(0,119,182,0.06); }
.standings-table tr.relegation td { background: rgba(247,127,0,0.06); }

/* ====================================================
   SNS BAR
==================================================== */
.sns-bar {
  background: var(--primary);
  padding: 28px 24px;
}

.sns-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sns-bar__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sns-bar__links { display: flex; gap: 14px; }

.sns-bar__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s;
}
.sns-bar__link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

/* ====================================================
   INFO CARDS
==================================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: white;
  border: 1px solid var(--ice);
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid var(--primary);
}

.info-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card__icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-link {
  display: block;
  font-size: 13px;
  color: var(--primary);
  padding: 9px 14px;
  background: var(--off-white);
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.info-link:hover { background: var(--primary); color: white; }
.info-link:last-child { margin-bottom: 0; }

/* ====================================================
   PAGE HERO (inner pages)
==================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow', sans-serif;
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: white; }
.page-hero__breadcrumb span { opacity: 0.5; }

.page-hero__title {
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.page-hero__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ====================================================
   SIDEBAR
==================================================== */
.widget-area { display: flex; flex-direction: column; gap: 24px; }

.widget {
  background: white;
  border: 1px solid var(--ice);
  border-radius: 8px;
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.widget__title {
  font-size: 13px;
  font-weight: 900;
  color: white;
  background: var(--primary);
  padding: 12px 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}

.widget__body { padding: 16px; }

.widget-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}
.widget-news-item:last-child { border-bottom: none; }

.widget-news-item__date { font-size: 11px; color: var(--text-light); font-family: 'Barlow', sans-serif; font-weight: 600; }
.widget-news-item__title { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.5; }
.widget-news-item:hover .widget-news-item__title { color: var(--primary); }

/* ====================================================
   SINGLE POST
==================================================== */
.single-post__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-light);
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.single-post__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}

.single-post__date {
  font-size: 13px;
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  margin-top: 10px;
}

.single-post__thumb {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 32px;
}

/* ====================================================
   PAGINATION
==================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 0;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--ice);
  color: var(--text);
  transition: all 0.2s;
}

.pagination a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: white; border-color: var(--primary); }

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 32px;
}

.site-footer__inner { max-width: 1200px; margin: 0 auto; }

.site-footer__top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }

.site-footer__logo { display: flex; align-items: center; gap: 14px; }
.site-footer__logo img { width: 52px; height: 52px; filter: brightness(0) invert(1); opacity: 0.9; }

.site-footer__logo-text { font-size: 15px; font-weight: 900; color: white; line-height: 1.4; }
.site-footer__logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-footer__desc { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.5); }

.site-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.site-footer__nav-section h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer__nav-section a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color 0.2s;
}
.site-footer__nav-section a:hover { color: var(--primary-light); }

.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copyright { font-size: 11px; color: rgba(255,255,255,0.35); font-family: 'Barlow', sans-serif; }

.site-footer__links { display: flex; gap: 20px; }
.site-footer__links a { font-size: 11px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.site-footer__links a:hover { color: rgba(255,255,255,0.8); }

/* ====================================================
   ANIMATIONS
==================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   ADMIN BAR OFFSET
==================================================== */
.admin-bar .site-header { top: 32px; }

/* ====================================================
   RESPONSIVE — TABLET (≤1024px)
==================================================== */
@media (max-width: 1024px) {
  :root { --header-height: 90px; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  /* デスクトップ用ドロップダウンはモバイルで非表示 */
  .site-nav .sub-menu { display: none !important; }

  .hero__title { font-size: 40px; }
  .hero__content { left: 40px; }
  .hero__indicators { left: 40px; }

  .quick-links__inner { grid-template-columns: repeat(5, 1fr); }

  .news-featured { grid-template-columns: 1fr; }
  .league-divisions { grid-template-columns: 1fr 1fr; }
  .championships-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  .site-main-wrapper { grid-template-columns: 1fr; }

  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__nav-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤767px)
==================================================== */
@media (max-width: 767px) {
  :root { --header-height: 72px; }

  .site-header__top { display: none; }
  .site-header__main { padding: 8px 16px; }

  .site-logo__image { width: 44px; height: 44px; }
  .site-logo__main { font-size: 13px; }
  .site-logo__org { font-size: 9px; }
  .site-logo__sub { font-size: 9px; }

  .hero { height: 480px; }
  .hero__title { font-size: 30px; }
  .hero__content { left: 20px; right: 20px; max-width: 100%; }
  .hero__indicators { left: 20px; }
  .hero__ball { display: none; }
  .hero__subtitle { font-size: 13px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .quick-links__inner { grid-template-columns: repeat(5, 1fr); }
  .quick-link { padding: 14px 8px; }
  .quick-link__icon { font-size: 20px; }
  .quick-link__label { font-size: 10px; }

  .section-block { padding: 40px 0; }
  .site-container { padding: 0 16px; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title__jp { font-size: 22px; }

  .news-featured { grid-template-columns: 1fr; }
  .league-divisions { grid-template-columns: 1fr; }
  .championships-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  .schedule-tabs { gap: 0; }
  .schedule-tab { padding: 8px 12px; font-size: 12px; }

  .page-hero { padding: 40px 16px; }
  .page-hero__title { font-size: 24px; }

  .site-main-wrapper { padding: 24px 16px; }

  .site-footer__nav-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }

  .sns-bar__inner { flex-direction: column; gap: 16px; }
}

/* ====================================================
   PRINT
==================================================== */
@media print {
  .site-header, .site-footer, .sns-bar, .quick-links, .hero { display: none; }
  body { padding-top: 0 !important; }
  .site-main-wrapper { grid-template-columns: 1fr; }
}

/* ====================================================
   HEADER LAYOUT FIX — デスクトップ横並び強制
==================================================== */
@media (min-width: 1025px) {
  .site-header__top {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-header__main {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .site-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    margin-left: auto !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-logo {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
}

/* ====================================================
   ABOUT PAGE — 組織概要
==================================================== */

/* ---- HERO ---- */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,119,182,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0,180,216,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #030d1a 0%, #0d2b3e 50%, #051828 100%);
}

.about-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}

.about-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--primary-light);
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: aboutFadeUp 0.8s 0.1s ease both;
}

.about-hero__eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--primary-light);
  opacity: 0.6;
}

.about-hero__title {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  animation: aboutFadeUp 0.8s 0.2s ease both;
  text-shadow: 0 4px 40px rgba(0,119,182,0.4);
}

.about-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-bottom: 56px;
  animation: aboutFadeUp 0.8s 0.3s ease both;
}

.about-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: aboutFadeUp 0.8s 0.5s ease both;
}

.about-hero__scroll span {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
}

.about-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.about-hero__accent-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(0,119,182,0.15);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-hero__accent-circle--2 {
  width: 900px;
  height: 900px;
  border-color: rgba(0,119,182,0.07);
  right: -350px;
}

/* ---- MISSION ---- */
.about-mission {
  background: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: 'MISSION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  color: var(--gray-light);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
}

.about-mission__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.about-mission__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-mission__quote {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.about-mission__quote em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.about-mission__quote em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-mission__body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- SECTION HEADER (共通) ---- */
.about-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-section-header__en {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-section-header__jp {
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-section-header__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- INFO TABLE ---- */
.about-info {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
}

.about-table-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,119,182,0.08);
}

.about-table th,
.about-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: top;
}

.about-table tr:last-child th,
.about-table tr:last-child td {
  border-bottom: none;
}

.about-table th {
  width: 200px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--off-white);
  white-space: nowrap;
}

.about-table td {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.about-table tr:hover td { background: var(--off-white); }

/* ---- ACTIVITIES ---- */
.about-activities {
  padding: 96px 0;
  background: white;
}

.about-activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-activity-card {
  position: relative;
  padding: 36px 28px;
  background: white;
  border: 1px solid var(--ice);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.about-activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.about-activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,119,182,0.12);
  border-color: var(--primary-light);
}

.about-activity-card:hover::before { transform: scaleX(1); }

.about-activity-card__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: -2px;
  transition: color 0.3s;
}

.about-activity-card:hover .about-activity-card__number {
  color: var(--ice);
}

.about-activity-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.about-activity-card__title {
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.about-activity-card__body {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

/* ---- LEAGUE PYRAMID ---- */
.about-league {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about-league::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.about-league .about-section-header__jp { color: white; }
.about-league .about-section-header__en { color: var(--primary-light); }

.about-league__pyramid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-pyramid-tier {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.about-pyramid-tier:hover { transform: scale(1.01); }

.about-pyramid-tier__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: white;
  white-space: nowrap;
  min-width: 100px;
  letter-spacing: 1px;
}

.about-pyramid-tier--1 .about-pyramid-tier__label { background: var(--primary); }
.about-pyramid-tier--2 .about-pyramid-tier__label { background: #0062a3; }
.about-pyramid-tier--3 .about-pyramid-tier__label { background: #004d80; }

.about-pyramid-tier__content {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
}

.about-pyramid-tier--1 .about-pyramid-tier__content { background: rgba(0,119,182,0.15); }
.about-pyramid-tier--2 .about-pyramid-tier__content { background: rgba(0,98,163,0.15); }
.about-pyramid-tier--3 .about-pyramid-tier__content { background: rgba(0,77,128,0.15); }

.about-pyramid-tier__name {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.about-pyramid-tier__arrow {
  font-size: 11px;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: auto;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
}

/* ---- CHAMPIONSHIPS ---- */
.about-championships {
  padding: 96px 0;
  background: white;
}

.about-champ-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-champ-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.2s;
}

.about-champ-item:first-child { border-top: 1px solid var(--gray-light); }

.about-champ-item:hover { padding-left: 12px; }

.about-champ-item__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--ice);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  transition: color 0.2s;
}

.about-champ-item:hover .about-champ-item__num { color: var(--primary-light); }

.about-champ-item__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

.about-champ-item__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

/* ---- CTA ---- */
.about-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-cta__title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-cta__body {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 36px;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.about-cta__btn--primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.about-cta__btn--primary:hover {
  background: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.about-cta__btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.about-cta__btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ---- ANIMATIONS ---- */
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-activities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .about-hero__title { letter-spacing: -1px; }
  .about-mission { padding: 64px 0; }
  .about-mission__quote { font-size: 22px; }
  .about-info,
  .about-activities,
  .about-league,
  .about-championships,
  .about-cta { padding: 64px 0; }
  .about-activities__grid { grid-template-columns: 1fr; }
  .about-table th { width: 120px; padding: 14px 16px; }
  .about-table td { padding: 14px 16px; }
  .about-pyramid-tier__label { min-width: 72px; padding: 16px 16px; font-size: 16px; }
  .about-pyramid-tier__content { padding: 16px; gap: 6px; }
  .about-champ-item { flex-direction: column; gap: 16px; }
  .about-champ-item__num { font-size: 28px; width: auto; text-align: left; }
  .about-cta__title { font-size: 26px; }
  .about-section-header__jp { font-size: 24px; }
}