@charset "utf-8";
/* ============================================================================
   e-Sports TODAY — サイトデザイン（2026-09 リニューアル）

   出典: docs/design/esports_today_redesign.html / docs/design/site.png
   旧テーマ（TCD Gorgeous）の CSS は読み込まない。このファイルが唯一の
   スタイル定義で、全ページがここだけを参照する。

   目次
     1.  トークン・リセット
     2.  レイアウト・セクション
     3.  ヘッダー / モバイルメニュー
     4.  ティッカー
     5.  ヒーロー（トップ）
     6.  カード類（ニュース・特集・タイル）
     7.  一覧（アーカイブ・検索）
     8.  記事本文
     9.  コラム
     10. プレスリリース
     11. チーム / プレイヤー
     12. サイドバー
     13. ページネーション・パンくず
     14. フォーム
     15. フッター
     16. ユーティリティ
   ========================================================================= */

/* =========================================================================
   1. トークン・リセット
   ========================================================================= */
:root {
  --blue: #0868ff;
  --blue-2: #0a4fc7;
  --blue-3: #063a94;
  --cyan: #00b8ff;
  --navy: #07214a;
  --text: #0d1b33;
  --muted: #66758c;
  --line: #dbe4ef;
  --line-2: #edf1f6;
  --soft: #f5f8fc;
  --soft-blue: #eef6ff;
  --white: #fff;
  --green: #12a66a;
  --red: #ff3858;
  --yellow: #f2c94c;
  --purple: #7c4dff;
  --shadow: 0 8px 26px rgba(17, 47, 93, .08);
  --shadow-sm: 0 2px 10px rgba(18, 52, 89, .03);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1280px;
  --font: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.4; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* 画像を敷き詰めるコンテナ（比率固定） */
.ratio { position: relative; overflow: hidden; background: var(--soft-blue); }
.ratio > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-16x9 { padding-top: 56.25%; }
.ratio-4x3 { padding-top: 75%; }
.ratio-1x1 { padding-top: 100%; }

/* =========================================================================
   2. レイアウト・セクション
   ========================================================================= */
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 26px 0; }
.section-tint { background: #fbfdff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; margin-bottom: 14px; flex-wrap: wrap;
}
.section-title {
  margin: 0; font-size: 20px; line-height: 1.2; font-weight: 900;
  letter-spacing: .02em; color: var(--blue-2);
}
.section-title small { display: block; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-top: 4px; }
.section-link { font-size: 13px; color: var(--blue); font-weight: 800; white-space: nowrap; }
.eyebrow { font-size: 11px; font-weight: 900; letter-spacing: .05em; color: var(--blue); }
.meta { font-size: 12px; color: var(--muted); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.card:hover { border-color: #c4d6ee; }

/* 本文 + サイドバーの 2 カラム */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; align-items: start; padding: 26px 0 40px; }
.layout-narrow { display: block; max-width: 820px; margin: 0 auto; padding: 26px 0 40px; }
.layout-wide { display: block; padding: 26px 0 40px; }

/* =========================================================================
   3. ヘッダー / モバイルメニュー
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-main { height: 72px; display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { display: block; height: 40px; width: auto; }
.site-tagline { font-size: 11px; color: var(--muted); font-weight: 700; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 22px; margin-left: 14px; font-size: 14px; font-weight: 800; }
.main-nav a { white-space: nowrap; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.current { color: var(--blue); border-bottom-color: var(--blue); }
.header-actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px;
  background: #fff; color: #263853; font-size: 13px; font-weight: 800; cursor: pointer;
  min-height: 40px;
}
.pill:hover { border-color: var(--blue); color: var(--blue); }
.pill .icon { font-size: 15px; line-height: 1; }

/* ヘッダー内検索 */
.header-search { position: relative; }
.header-search form { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 0 6px 0 14px; height: 40px; }
.header-search input { border: 0; background: none; width: 168px; font-size: 13px; padding: 0; min-width: 0; }
.header-search input:focus { outline: none; }
.header-search button { border: 0; background: none; cursor: pointer; color: var(--blue); font-size: 15px; padding: 0 8px; height: 100%; }

/* モバイルメニュー（ドロワー） */
.nav-toggle { display: none; }
.drawer {
  position: fixed; inset: 0; z-index: 100; background: rgba(7, 33, 74, .45);
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88%, 340px);
  background: #fff; padding: 18px 20px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .22s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.drawer-close { border: 0; background: none; font-size: 26px; line-height: 1; cursor: pointer; color: var(--muted); padding: 6px; }
.drawer-panel .drawer-label { font-size: 11px; font-weight: 900; color: var(--blue); letter-spacing: .05em; margin: 16px 0 4px; }
.drawer-panel a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line-2); font-weight: 800; font-size: 15px; }
.drawer-search { display: flex; margin: 8px 0 4px; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.drawer-search input { flex: 1; min-width: 0; border: 0; padding: 12px 16px; font-size: 15px; }
.drawer-search input:focus { outline: none; }
.drawer-search button { border: 0; background: var(--blue); color: #fff; font-weight: 900; padding: 0 18px; cursor: pointer; }

/* =========================================================================
   4. ティッカー
   ========================================================================= */
.ticker-wrap { border-bottom: 1px solid var(--line); background: #fbfdff; }
.ticker { min-height: 46px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; font-size: 12px; }
.ticker-title { font-weight: 900; color: var(--blue); white-space: nowrap; letter-spacing: .04em; }
.ticker-track { display: flex; gap: 0; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.ticker-track::-webkit-scrollbar { display: none; }
.ticker-item { padding: 0 18px; border-left: 1px solid var(--line); font-weight: 700; color: #44516a; }
.ticker-item:first-child { border-left: 0; padding-left: 0; }
.ticker-item .date { color: var(--muted); margin-right: 8px; }
.ticker-more { color: var(--blue); font-weight: 900; white-space: nowrap; }

/* =========================================================================
   5. ヒーロー
   ========================================================================= */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr); gap: 18px; }
.hero-main { position: relative; min-height: 430px; border-radius: 18px; overflow: hidden; background: #112e57; display: block; }
.hero-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 18, 45, .05) 30%, rgba(0, 18, 45, .88) 100%); }
.hero-badge { position: absolute; z-index: 2; left: 18px; top: 18px; background: #15c0ff; color: #fff; font-size: 12px; font-weight: 900; padding: 8px 12px; border-radius: 999px; }
.hero-copy { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; color: #fff; }
.hero-copy .category { font-size: 12px; color: #86dbff; font-weight: 900; }
.hero-copy h2 { font-size: 34px; line-height: 1.25; margin: 8px 0 10px; max-width: 820px; color: #fff; }
.hero-copy p { margin: 0; color: #e9f3ff; line-height: 1.7; font-size: 14px; }
.hero-copy .meta { color: #b9d6f5; margin-top: 8px; }
.hero-dots { position: absolute; z-index: 3; left: 26px; bottom: 12px; display: flex; gap: 8px; }
.hero-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .45); cursor: pointer;
}
.hero-dots button.active { background: #1ec7ff; }

.side-news { display: grid; gap: 12px; align-content: start; }
.side-story { display: grid; grid-template-columns: 42% 1fr; min-height: 128px; }
.side-story .story-thumb { display: block; position: relative; overflow: hidden; background: var(--soft-blue); }
.side-story .story-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.side-story .story-body { padding: 14px 34px 14px 16px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.side-story h3 { font-size: 15px; line-height: 1.5; margin: 5px 0 0; }
.side-story .arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 22px; }

/* =========================================================================
   6. カード類
   ========================================================================= */
/* ニュース 2 カラムグリッド */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.news-grid-1 { grid-template-columns: 1fr; }
.news-card { display: grid; grid-template-columns: 180px 1fr; min-height: 128px; }
.news-card .thumb { display: block; position: relative; overflow: hidden; background: var(--soft-blue); }
.news-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-card .content { padding: 14px 34px 14px 16px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.news-card h3 { font-size: 16px; line-height: 1.5; margin: 4px 0 6px; }
.news-card p { margin: 0 0 6px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.news-card .arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 22px; }

/* 縦型カード（3〜4 列） */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tile-card .thumb { display: block; position: relative; padding-top: 56.25%; overflow: hidden; background: var(--soft-blue); }
.tile-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile-card .content { padding: 14px 16px 16px; }
.tile-card h3 { font-size: 15px; line-height: 1.5; margin: 5px 0 6px; }
.tile-card p { margin: 0 0 6px; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* カテゴリータイル */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.game-tile {
  min-height: 116px; border-radius: 12px; overflow: hidden; display: flex; align-items: flex-end;
  padding: 16px 18px; color: #fff; font-weight: 900; position: relative; background: #0a2f62;
}
.game-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.game-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3, 20, 48, .12) 30%, rgba(3, 20, 48, .82) 100%);
}
.game-tile span { position: relative; z-index: 1; font-size: 16px; line-height: 1.3; text-shadow: 0 1px 6px rgba(0, 0, 0, .5); }
.game-tile small { display: block; font-size: 11px; font-weight: 700; opacity: .85; margin-top: 3px; letter-spacing: .06em; }
.game-tile:hover { color: #fff; }
.game-tile:hover img { transform: scale(1.05); }

/* 特集カード */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 220px; border-radius: 14px; overflow: hidden; background: #0a2f62; display: block; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 20, 48, .03), rgba(3, 20, 48, .9)); }
.feature-copy { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; color: #fff; }
.feature-copy .eyebrow { color: #86dbff; }
.feature-copy h3 { margin: 6px 0; font-size: 19px; line-height: 1.45; color: #fff; }
.feature-copy p { margin: 0; font-size: 12px; color: #e7f2ff; line-height: 1.6; }

/* バッジ */
.badge { display: inline-block; border-radius: 999px; padding: 4px 9px; font-size: 10px; font-weight: 900; letter-spacing: .02em; }
.badge.blue { background: var(--soft-blue); color: var(--blue-2); }
.badge.red { background: #fff0f3; color: var(--red); }
.badge.green { background: #effaf5; color: var(--green); }
.badge.yellow { background: #fff8d6; color: #8f7400; }
.badge.purple { background: #f4efff; color: var(--purple); }
.badge.gray { background: var(--soft); color: var(--muted); }

/* イベントカード（外部のイベント情報） */
.event-card .thumb { padding-top: 52%; }
.event-card .event-source { color: var(--muted); }
.event-card .content { padding: 13px 15px 15px; }

/* プロフィール一覧のロゴ */
.profile-card { position: relative; }
.profile-card .profile-logo {
  float: right; width: 116px; height: 66px; margin: 0 0 8px 14px; border-radius: 10px;
  overflow: hidden; background: #fff; border: 1px solid var(--line); display: grid; place-items: center;
}
.profile-card .profile-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.profile-detail-logo {
  width: 260px; max-width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); margin: 0 0 20px;
}
.profile-detail-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* 横スクロール行 */
.scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 12px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
.scroller > * { scroll-snap-align: start; }

/* =========================================================================
   7. 一覧（アーカイブ・検索）
   ========================================================================= */
.page-head { padding: 26px 0 6px; }
.page-head h1 { font-size: 27px; line-height: 1.35; }
.page-head .lead { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.archive-list { display: grid; gap: 12px; }
.empty-note { padding: 40px 16px; text-align: center; color: var(--muted); font-size: 14px; background: var(--soft); border-radius: var(--radius); }

/* セクション導入文 */
.section-lead { margin: 0 0 18px; padding: 16px 18px; background: var(--soft-blue); border: 1px solid #d8e8fb; border-left: 4px solid var(--blue); border-radius: var(--radius-sm); font-size: 13.5px; line-height: 1.9; color: #33465f; }
.section-lead p { margin: 0 0 8px; }
.section-lead p:last-child { margin: 0; }

/* =========================================================================
   8. 記事本文
   ========================================================================= */
.article-head { margin-bottom: 20px; }
.article-head h1 { font-size: 30px; line-height: 1.4; margin: 10px 0 12px; }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.article-meta .date { font-weight: 800; color: var(--blue-2); }
.article-meta a { font-weight: 800; }
.article-hero { border-radius: var(--radius); overflow: hidden; margin: 0 0 24px; background: var(--soft-blue); }
.article-hero img { display: block; width: 100%; height: auto; }

.article-body { font-size: 16px; line-height: 1.95; }
.article-body > *:first-child { margin-top: 0; }
.article-body p { margin: 0 0 1.6em; }
.article-body h2 { clear: both; margin: 2.2em 0 .9em; padding: 12px 0 12px 16px; font-size: 21px; line-height: 1.5; color: #12243a; border-left: 5px solid var(--blue); background: var(--soft-blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body h3 { margin: 1.9em 0 .8em; padding: 0 0 8px; font-size: 18px; line-height: 1.6; color: #12243a; border-bottom: 1px solid var(--line); }
.article-body h4 { margin: 1.6em 0 .7em; font-size: 16px; }
.article-body ul, .article-body ol { margin: 0 0 1.6em; padding-left: 1.6em; }
.article-body li { margin: 0 0 .5em; }
.article-body blockquote { margin: 0 0 1.6em; padding: 14px 18px; background: var(--soft); border-left: 4px solid var(--line); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: #46566d; font-size: 14px; }
.article-body blockquote p:last-child { margin: 0; }
.article-body a { color: var(--blue); border-bottom: 1px solid rgba(8, 104, 255, .3); }
.article-body a:hover { border-bottom-color: var(--blue); }
.article-body img { border-radius: var(--radius-sm); margin: 0 0 1.2em; }
.article-body figure { margin: 0 0 1.8em; }
.article-body figcaption { margin: 8px 0 0; font-size: 12px; color: var(--muted); line-height: 1.7; }
.article-body code { background: var(--soft); padding: 2px 6px; border-radius: 5px; font-size: 13px; font-family: Consolas, Menlo, monospace; }
.article-body strong { font-weight: 800; color: #0b1b30; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.8em; font-size: 13.5px; line-height: 1.8; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.article-body th { background: var(--soft-blue); color: #1c3550; font-weight: 800; }
.article-body tr:nth-child(even) td { background: #fafcfe; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.8em; }
.table-scroll table { margin: 0; }
/* 旧 WordPress 記事の残置クラス */
.article-body .wp-caption { max-width: 100%; }
.article-body iframe { max-width: 100%; }

/* タグ */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.tag-list a { display: inline-block; padding: 6px 12px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }
.tag-list a:hover { background: var(--soft-blue); border-color: var(--blue); }

/* シェア */
.share { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.share a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px; font-size: 12px; font-weight: 800; color: #fff; min-height: 40px; }
.share a:hover { opacity: .88; color: #fff; }
.share .tw { background: #14171a; }
.share .fb { background: #1877f2; }
.share .hb { background: #00a4de; }
.share .ln { background: #06c755; }

/* 前後の記事 */
.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0 0; }
.prevnext a { display: block; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; line-height: 1.6; }
.prevnext .label { display: block; font-size: 11px; color: var(--blue); font-weight: 900; margin-bottom: 4px; }
.prevnext .next { text-align: right; }

/* 関連コンテンツ（内部リンク） */
.cross-links { margin: 28px 0 0; padding: 18px 20px; background: var(--soft-blue); border: 1px solid #d8e8fb; border-radius: var(--radius); }
.cross-links .cross-title { margin: 0 0 12px; font-size: 14px; font-weight: 900; color: var(--blue-2); }
.cross-links ul { list-style: none; margin: 0; padding: 0; }
.cross-links li { margin: 0 0 10px; font-size: 14px; line-height: 1.6; display: flex; gap: 10px; align-items: baseline; }
.cross-links li:last-child { margin: 0; }
.cross-kind { flex: none; display: inline-block; min-width: 62px; padding: 3px 8px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 900; text-align: center; border-radius: 999px; }
.cross-links a { font-weight: 700; }

/* =========================================================================
   9. コラム
   ========================================================================= */
.column-lead { margin: 0 0 26px; font-size: 17px; line-height: 2; color: #223449; }
.column-lead p { margin: 0 0 1.1em; }
.column-lead p:last-child { margin: 0; }

.column-toc { margin: 0 0 32px; padding: 20px 22px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.column-toc .toc-title { margin: 0 0 12px; font-size: 14px; font-weight: 900; color: var(--blue-2); }
.column-toc ol { margin: 0; padding-left: 1.4em; }
.column-toc li { margin: 0 0 8px; font-size: 13.5px; line-height: 1.7; }
.column-toc a { color: #2a3f5c; }
.column-toc a:hover { color: var(--blue); }

.column-sources { margin: 36px 0 0; padding: 20px 22px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; line-height: 1.9; }
.column-sources h2, .column-sources .sources-title { margin: 0 0 10px !important; padding: 0 !important; font-size: 14px; font-weight: 900; color: var(--blue-2); background: none !important; border: 0 !important; }
.column-sources ul { margin: 0; padding-left: 1.3em; }
.column-sources li { margin: 0 0 6px; }
.column-note { margin: 14px 0 0; font-size: 11.5px; color: var(--muted); line-height: 1.8; }

/* =========================================================================
   10. プレスリリース
   ========================================================================= */
.press-source { margin: 0 0 24px; padding: 14px 18px; background: #fbf7f2; border: 1px solid #ecdfcd; border-radius: var(--radius-sm); font-size: 12.5px; line-height: 1.9; color: #5a4b38; }
.press-source .source-label { display: inline-block; margin: 0 8px 0 0; padding: 2px 9px; background: #8a6d3b; color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; }
.press-source a { color: #8a5a1b; font-weight: 700; word-break: break-all; }
.press-source.bottom { margin: 28px 0 0; }
.press-notice { margin: 0 0 20px; padding: 18px 20px; background: var(--soft-blue); border: 1px solid #d8e8fb; border-radius: var(--radius); font-size: 14px; line-height: 1.9; }
.press-hero { margin: 0 0 22px; border-radius: var(--radius); overflow: hidden; background: var(--soft-blue); }
.press-hero img { display: block; width: 100%; height: auto; }
.press-body { font-size: 15px; line-height: 1.95; }
.press-body p { margin: 0 0 1.4em; }
.press-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 0 0 1.2em; }
.press-body table { max-width: 100%; border-collapse: collapse; font-size: 13px; margin: 0 0 1.4em; }
.press-body th, .press-body td { border: 1px solid var(--line); padding: 8px 11px; }
.press-body a { color: var(--blue); }

/* =========================================================================
   11. チーム / プレイヤー
   ========================================================================= */
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.profile-card { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.profile-card h3 { font-size: 17px; line-height: 1.4; }
.profile-card .sub { font-size: 11.5px; color: var(--muted); }
.profile-card p { margin: 0; font-size: 13px; color: #40506a; line-height: 1.75; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.profile-tags span { display: inline-block; background: var(--soft); border: 1px solid var(--line); padding: 3px 9px; font-size: 11px; border-radius: 999px; color: #46566d; }

.profile-table { width: 100%; border-collapse: collapse; margin: 0 0 26px; font-size: 14px; line-height: 1.8; }
.profile-table th, .profile-table td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }
.profile-table th { background: var(--soft-blue); width: 160px; color: #1c3550; font-weight: 800; }
.profile-updated { font-size: 12px; color: var(--muted); margin: 0 0 18px; }
.achievement-list { list-style: none; margin: 0 0 1.8em; padding: 0; }
.achievement-list li { border-left: 3px solid var(--blue); padding: 6px 0 6px 14px; margin: 0 0 10px; font-size: 14px; line-height: 1.8; }
.achievement-list .year { font-weight: 900; color: var(--blue-2); margin-right: 10px; }
.official-links { list-style: none; margin: 0 0 1.8em; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.official-links a { display: inline-block; padding: 9px 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; min-height: 40px; line-height: 22px; }
.official-links a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* トップの spotlight 行 */
.spotlight-card { padding: 14px; display: flex; align-items: center; gap: 14px; min-height: 104px; }
.spotlight-face {
  flex: none; width: 104px; height: 62px; border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid var(--line); display: grid; place-items: center;
}
.spotlight-face img { width: 100%; height: 100%; object-fit: contain; display: block; }
.spotlight-face.is-monogram { background: linear-gradient(135deg, #0a4fc7, #0868ff); border-color: transparent; }
.spotlight-face.is-monogram span { color: #fff; font-size: 24px; font-weight: 900; line-height: 1; }
.spotlight-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.spotlight-body .badge { align-self: flex-start; }
.spotlight-card .name { font-size: 15px; font-weight: 900; line-height: 1.4; }
.spotlight-card .role { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* =========================================================================
   12. サイドバー
   ========================================================================= */
.sidebar { display: grid; gap: 18px; align-content: start; position: sticky; top: 92px; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 20px; }
.widget-title { font-size: 13px; font-weight: 900; color: var(--blue-2); letter-spacing: .04em; margin: 0 0 14px; padding: 0 0 10px; border-bottom: 2px solid var(--soft-blue); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { border-top: 1px solid var(--line-2); }
.widget li:first-child { border-top: 0; }
.widget li a { display: block; padding: 10px 0; font-size: 13.5px; line-height: 1.6; font-weight: 700; }
.widget .more { display: block; margin-top: 12px; text-align: right; font-size: 12px; font-weight: 900; color: var(--blue); }

/* サイドの記事リスト */
.rank-list { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.rank-list li { display: grid; grid-template-columns: 26px 60px 1fr; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line-2); }
.rank-list li:first-child { border-top: 0; }
.rank-list li::before {
  counter-increment: rank; content: counter(rank); display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 7px; background: var(--blue); color: #fff; font-weight: 900; font-size: 11px;
}
.rank-list .thumb { position: relative; padding-top: 66%; border-radius: 7px; overflow: hidden; background: var(--soft-blue); }
.rank-list .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rank-list a { font-size: 12.5px; line-height: 1.5; font-weight: 700; }

/* タグクラウド */
.tagcloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tagcloud a { display: inline-block; padding: 5px 11px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }
.tagcloud a:hover { background: var(--soft-blue); border-color: var(--blue); }

/* サイド広告など生 HTML 枠 */
.widget-html img { border-radius: var(--radius-sm); }

/* =========================================================================
   13. ページネーション・パンくず
   ========================================================================= */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; margin: 30px 0 0; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; min-height: 42px; padding: 0 12px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 800; background: #fff;
}
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: #fff; }
.pagination .dots { border: 0; min-width: 20px; }

.breadcrumb-wrap { border-bottom: 1px solid var(--line-2); background: #fbfdff; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 10px 0; font-size: 11.5px; color: var(--muted); }
.breadcrumb li + li::before { content: "\203A"; margin: 0 8px; color: #b9c6d6; }
.breadcrumb a { font-weight: 700; }
.breadcrumb .current { color: #47566b; }

/* =========================================================================
   14. フォーム
   ========================================================================= */
.form-block { max-width: 660px; }
.form-row { margin: 0 0 18px; }
.form-row label, .form-label { display: block; font-size: 13px; font-weight: 800; margin: 0 0 7px; }
.form-row input[type="text"], .form-row input[type="email"], .form-row textarea, .form-block input[type="text"], .form-block input[type="email"], .form-block textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px; background: #fff; min-height: 48px;
}
.form-row textarea, .form-block textarea { min-height: 180px; line-height: 1.8; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8, 104, 255, .12); }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff; border: 0; border-radius: 999px;
  padding: 13px 34px; font-size: 15px; font-weight: 900; cursor: pointer; min-height: 50px;
}
.btn-primary:hover { background: var(--blue-2); color: #fff; }
.form-error { color: var(--red); font-size: 12.5px; font-weight: 700; margin: 6px 0 0; }
.form-alert { background: #fff0f3; border: 1px solid #ffd3dc; color: #b3243f; padding: 14px 16px; border-radius: var(--radius-sm); margin: 0 0 20px; font-size: 13.5px; }
.company-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.9; }
.company-table th, .company-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.company-table th { background: var(--soft-blue); width: 180px; font-weight: 800; color: #1c3550; }

/* =========================================================================
   15. フッター
   ========================================================================= */
.cta-band { padding: 26px 0 32px; }
.cta-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: linear-gradient(135deg, #0b376e, #065096); border-radius: 16px; color: #fff; overflow: hidden;
}
.cta-inner > div { padding: 26px 30px; }
.cta-inner h3 { margin: 0 0 6px; font-size: 17px; color: #fff; }
.cta-inner p { font-size: 12.5px; color: #d8e8ff; margin: 0 0 14px; line-height: 1.8; }
.cta-inner .btn-light { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; border-radius: 999px; background: #0b73ff; color: #fff; font-weight: 900; font-size: 14px; }
.cta-inner .btn-light:hover { background: #fff; color: var(--blue-2); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); padding: 10px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 800; color: #fff; min-height: 42px; display: inline-flex; align-items: center; }
.social-pill:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.site-footer { border-top: 1px solid var(--line); background: #fbfdff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; padding: 40px 0; }
.footer-brand img { height: 38px; width: auto; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 12px; color: #657489; line-height: 1.9; margin: 0; }
.footer-grid h4 { font-size: 12px; margin: 0 0 12px; color: var(--blue-2); letter-spacing: .04em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li a { display: block; font-size: 12.5px; color: #657489; line-height: 2.1; }
.footer-grid li a:hover { color: var(--blue); }
.copyright { border-top: 1px solid var(--line); padding: 18px 0; font-size: 11.5px; color: #7a8799; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(8, 104, 255, .92); color: #fff; display: grid; place-items: center;
  font-size: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .2s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { color: #fff; background: var(--blue-2); }

/* =========================================================================
   16. ユーティリティ
   ========================================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media (max-width: 1120px) {
  .main-nav { gap: 14px; margin-left: 8px; font-size: 13px; }
  .header-search input { width: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .side-news { grid-template-columns: repeat(3, 1fr); }
  .side-story { grid-template-columns: 1fr; min-height: 0; }
  .side-story .story-thumb { padding-top: 52%; }
  .layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 22px; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-main { height: 62px; gap: 12px; }
  .main-nav, .header-search, .site-tagline { display: none; }
  .nav-toggle { display: inline-flex; }
  .layout { grid-template-columns: 1fr; gap: 30px; }
  .sidebar { position: static; }
  .ticker { grid-template-columns: auto 1fr; }
  .ticker-more { display: none; }
  .hero-main { min-height: 340px; }
  .hero-copy h2 { font-size: 26px; }
  .side-news { grid-template-columns: 1fr; }
  .side-story { grid-template-columns: 130px 1fr; }
  .side-story .story-thumb { padding-top: 0; }
  .news-grid { grid-template-columns: 1fr; }
  .tile-grid, .tile-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .article-head h1 { font-size: 24px; }
  .article-body { font-size: 16px; line-height: 1.9; }
  .article-body h2 { font-size: 19px; }
  .article-body h3 { font-size: 17px; }
  .profile-table th { width: 110px; }
  .company-table th { width: 120px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .logo img { height: 34px; }
  .section { padding: 20px 0; }
  .section-title { font-size: 17px; }
  .hero-main { min-height: 300px; border-radius: 14px; }
  .hero-copy { left: 16px; right: 16px; bottom: 16px; }
  .hero-copy h2 { font-size: 21px; }
  .hero-copy p { display: none; }
  .side-story { grid-template-columns: 112px 1fr; }
  .side-story h3 { font-size: 14px; }
  .news-card { grid-template-columns: 118px 1fr; }
  .news-card h3 { font-size: 14.5px; }
  .news-card p { display: none; }
  .news-card .content { padding: 12px 26px 12px 13px; }
  .tile-grid, .tile-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .prevnext { grid-template-columns: 1fr; }
  .article-head h1 { font-size: 21px; }
  .article-body table { font-size: 12.5px; }
  .cta-inner > div { padding: 22px; }
  .profile-table, .profile-table tbody, .profile-table tr, .profile-table th, .profile-table td { display: block; width: auto; }
  .profile-table th { border-bottom: 0; }
  .profile-table td { border-top: 0; margin-bottom: -1px; }
  .company-table, .company-table tbody, .company-table tr, .company-table th, .company-table td { display: block; width: auto; }
  .company-table th { border-bottom: 0; }
  .company-table td { border-top: 0; }
}

@media print {
  .site-header, .ticker-wrap, .sidebar, .site-footer, .cta-band, .share, .to-top, .cross-links { display: none !important; }
  .layout { display: block; }
}

/* ブラウザ既定の検索フィールド装飾を消す（見た目を揃えるため） */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { -webkit-appearance: none; appearance: none; }
input[type="search"] { -webkit-appearance: none; appearance: none; }
.header-search button svg, .pill svg { display: block; }

/* サイトマップページ */
.sitemap { columns: 2; column-gap: 34px; }
.sitemap-group { break-inside: avoid; margin: 0 0 26px; }
.sitemap-group h2 { font-size: 14px; font-weight: 900; color: var(--blue-2); margin: 0 0 10px; padding: 0 0 8px; border-bottom: 2px solid var(--soft-blue); }
.sitemap-group ul { list-style: none; margin: 0; padding: 0; }
.sitemap-group li { font-size: 13.5px; line-height: 1.9; }
.sitemap-group li a { border-bottom: 1px dotted transparent; }
.sitemap-group li a:hover { border-bottom-color: var(--blue); }
@media (max-width: 900px) { .sitemap { columns: 1; } }
