/* ============================================================
   すべてのスタイルを .baseball-site 配下にスコープ
   CMS既存のbody/html指定には影響しません
   !important は一切使用しない（成功事例に倣う）
============================================================ */

.baseball-site * { box-sizing: border-box; margin: 0; padding: 0; }

/* h1〜h4 / section / footer への CMS干渉を打ち消す
   ※ color/font-sizeは継承しない（個別クラスで上書きするため）*/
.baseball-site h1,
.baseball-site h2,
.baseball-site h3,
.baseball-site h4 {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  background-color: transparent;
  box-shadow: none;
  text-decoration: none;
  text-transform: none;
}

.baseball-site section,
.baseball-site footer {
  margin: 0;
  padding: 0;
  border: none;
}

.baseball-site {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
               "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bs-navy:        #0b1f3b;
  --bs-blue:        #0284c7;
  --bs-blue-dark:   #0369a1;
  --bs-light-bg:    #f0f9ff;
  --bs-orange:      #ff6b00;
  --bs-orange-dark: #ea5d00;
  --bs-page-bg:     #f8fafc;
  --bs-gray-50:     #f9fafb;
  --bs-gray-100:    #f3f4f6;
  --bs-gray-200:    #e5e7eb;
  --bs-gray-400:    #9ca3af;
  --bs-gray-500:    #6b7280;
  --bs-gray-600:    #4b5563;
  --bs-gray-700:    #374151;
  --bs-gray-800:    #1f2937;
  --bs-gray-900:    #111827;
  --bs-gray-950:    #030712;
  --bs-radius-sm:   8px;
  --bs-radius-md:   12px;
  --bs-radius-lg:   16px;
  --bs-radius-full: 9999px;
  --bs-shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --bs-shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --bs-shadow-lg:   0 8px 32px rgba(0,0,0,.13);
  --bs-shadow-xl:   0 12px 40px rgba(0,0,0,.16);
  --bs-max: 1120px;
  --bs-px:          28px;
}

html { scroll-behavior: smooth; }

/* ============================================================
   a / img リセット
============================================================ */
.baseball-site a { text-decoration: none; color: inherit; }
.baseball-site img { display: block; max-width: 100%; height: auto; border: none; }

/* ============================================================
   アニメーション
============================================================ */
@keyframes bs-pulse-orange {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(255,107,0,.4); }
  50%       { transform: scale(1.03); box-shadow: 0 4px 30px rgba(255,107,0,.7); }
}
@keyframes bs-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* ============================================================
   コンテナ — 成功事例と同じ設計
   max-width + margin: 0 auto + padding のみ
============================================================ */
.baseball-site .container {
  max-width: var(--bs-max);
  margin: 0 auto;
  padding: 0 var(--bs-px);
}

/* ============================================================
   セクション共通 — 成功事例と同じ padding: 80px 0 設計
============================================================ */
.baseball-site section {
  padding: 80px 0;
  background: transparent;
  border: none;
  margin: 0;
}

.baseball-site .section-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bs-blue);
  margin-bottom: 6px;
}
.baseball-site .section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--bs-navy) !important;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border: none;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif !important;
  text-align: inherit;
  display: block;
  text-decoration: none;
  text-transform: none;
  box-shadow: none;
  border-radius: 0;
}
.baseball-site .section-divider {
  width: 48px;
  height: 4px;
  background: var(--bs-orange);
  border-radius: var(--bs-radius-full);
  margin: 12px auto 0;
}
.baseball-site .section-head { text-align: center; margin-bottom: 40px; }
.baseball-site .section-head p {
  color: var(--bs-gray-600);
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
}

/* ============================================================
   ボタン
============================================================ */
.baseball-site .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--bs-radius-md);
  cursor: pointer;
  transition: background .2s;
  text-align: center;
  text-decoration: none;
  border: none;
}
.baseball-site .btn-primary {
  background: var(--bs-blue);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}
.baseball-site .btn-primary:hover { background: var(--bs-blue-dark); color: #fff; }
.baseball-site .btn-orange {
  background: var(--bs-orange);
  color: #fff;
  font-weight: 800;
  padding: 14px;
  font-size: 16px;
  border-radius: var(--bs-radius-md);
}
.baseball-site .btn-orange:hover { background: var(--bs-orange-dark); color: #fff; }
.baseball-site .btn-white {
  background: #fff;
  color: var(--bs-blue);
  font-weight: 800;
  padding: 12px 28px;
  box-shadow: var(--bs-shadow-md);
}
.baseball-site .btn-white:hover { background: var(--bs-gray-100); }
.baseball-site .btn-outline-blue {
  background: #fff;
  color: var(--bs-blue);
  border: 2px solid var(--bs-blue);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--bs-radius-full);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.baseball-site .btn-outline-blue:hover { background: var(--bs-gray-50); }
.baseball-site .btn-pulse { animation: bs-pulse-orange 2.5s infinite ease-in-out; }
.baseball-site .btn-block { display: flex; width: 100%; }

/* ============================================================
   バッジ
============================================================ */
.baseball-site .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
}
.baseball-site .badge-red      { background: #ef4444; color: #fff; }
.baseball-site .badge-blue     { background: #3b82f6; color: #fff; }
.baseball-site .badge-orange   { background: var(--bs-orange); color: #fff; }
.baseball-site .badge-navy     { background: var(--bs-navy); color: #fff; }
.baseball-site .badge-gray     { background: var(--bs-gray-500); color: #fff; }
.baseball-site .badge-amber    { background: #f59e0b; color: #fff; }
.baseball-site .badge-teal     { background: #14b8a6; color: #fff; }
.baseball-site .badge-teal-soft{ background: #f0fdfa; color: #0d9488; }
.baseball-site .badge-purple   { background: #a855f7; color: #fff; }
.baseball-site .badge-live {
  background: #ef4444; color: #fff;
  font-size: 11px; padding: 4px 10px;
  border-radius: var(--bs-radius-full);
  text-transform: uppercase; letter-spacing: .05em;
}
.baseball-site .badge-pill { border-radius: var(--bs-radius-full); }

/* ============================================================
   カード
============================================================ */
.baseball-site .card {
  background: #fff;
  border-radius: var(--bs-radius-lg);
  border: 1px solid var(--bs-gray-100);
  box-shadow: var(--bs-shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.baseball-site .card:hover { transform: translateY(-4px); box-shadow: var(--bs-shadow-xl); }
.baseball-site .card-footer {
  padding: 20px;
  background: var(--bs-gray-50);
  border-top: 1px solid var(--bs-gray-100);
}

/* ============================================================
   斜めクリップ
============================================================ */
.baseball-site .clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%); }
.baseball-site .clip-both   { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
@media (max-width: 768px) {
  .baseball-site .clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
  .baseball-site .clip-both   { clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%); }
}

/* ============================================================
   ヘッダー
============================================================ */
.baseball-site .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--bs-gray-100);
  box-shadow: var(--bs-shadow-sm);
}
.baseball-site .header-inner {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 var(--bs-px) !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px;
}
.baseball-site .header-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.baseball-site .header-logo .ch-badge {
  background: var(--bs-orange); color: #fff;
  font-size: 11px; font-weight: 900;
  padding: 3px 7px; border-radius: 4px; white-space: nowrap;
}
.baseball-site .header-logo .site-name {
  font-weight: 900; font-size: 16px;
  letter-spacing: .04em; color: var(--bs-navy);
}
/* ハンバーガー：完全に非表示 */
.baseball-site .hamburger { display: none !important; }


.baseball-site .header-nav { display: none !important; }

/* CTAボタン */
.baseball-site .header-cta {
  display: inline-block;
  background: var(--bs-orange); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--bs-radius-full);
  transition: background .2s; white-space: nowrap; flex-shrink: 0; text-decoration: none;
}
.baseball-site .header-cta:hover { background: var(--bs-orange-dark); color: #fff; }
@media (min-width: 640px) {
  .baseball-site .header-cta { font-size: 13px; padding: 6px 14px; }
}

/* ============================================================
   ① ヒーロー
============================================================ */
.baseball-site .hero {
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(0, 112, 255, 0.8), rgba(59, 177, 238, 0.5)),
    url('../bg2.jpg');
  background-size: cover;
  background-position: 70% bottom;
  color: #fff;
  overflow: visible;
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  .baseball-site .hero {
    padding: 80px 0 100px;
    overflow: hidden;
    background-image:
      linear-gradient(to bottom, rgba(0, 112, 255, 0.8), rgba(59, 177, 238, 0.5)), 
      url('../bg2.jpg');
    background-position: center bottom;
  }
}
.baseball-site .hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,107,0,.1), transparent 60%);
  pointer-events: none;
}
.baseball-site .hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 768px) { .baseball-site .hero-grid { grid-template-columns: 3fr 2fr; gap: 48px; } }
.baseball-site .hero-text { text-align: center; }
@media (min-width: 768px) { .baseball-site .hero-text { text-align: left; } }
.baseball-site .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 6px 14px; border-radius: var(--bs-radius-full); margin-bottom: 16px;
}
.baseball-site .hero-h1 {
  font-size: 38px; font-weight: 900;
  letter-spacing: -.03em; line-height: 1.15; margin: 0 0 16px;
  color: #fff !important;
  background: none !important;
  background-color: transparent !important;
  border: none;
  padding: 0;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  position: static;
}
@media (min-width: 480px)  { .baseball-site .hero-h1 { font-size: 46px; } }
@media (min-width: 768px)  { .baseball-site .hero-h1 { font-size: 54px; } }
@media (min-width: 1024px) { .baseball-site .hero-h1 { font-size: 64px; } }
.baseball-site .hero-h1 .accent { color: #fde047; }
.baseball-site .hero-lead {
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.88); margin: 0 0 24px; line-height: 1.7;
}
.baseball-site .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 480px) { .baseball-site .hero-actions { flex-direction: row; justify-content: center; } }
@media (min-width: 768px) { .baseball-site .hero-actions { justify-content: flex-start; } }
.baseball-site .hero-cta {
  background: var(--bs-orange); color: #fff; font-weight: 900; font-size: 19px;
  padding: 16px 36px; border-radius: var(--bs-radius-md);
  display: inline-flex; align-items: center; gap: 6px;
  width: 100%; justify-content: center; transition: background .2s; text-decoration: none;
}
.baseball-site .hero-cta:hover { background: var(--bs-orange-dark); color: #fff; }
@media (min-width: 480px) { .baseball-site .hero-cta { width: auto; } }
.baseball-site .hero-note { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); }
.baseball-site .hero-visual { display: flex; justify-content: center; align-items: center; }

.baseball-site .hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.baseball-site .hero-glow-1, .baseball-site .hero-glow-2 { display: none; }

.baseball-site .hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s;
}
.baseball-site .hero-mascot:hover { transform: scale(1.04); }

/* 応援キャスターバー */
.baseball-site .mascot-caption {
  /* SP: 非表示 */
  display: none !important;
}
@media (min-width: 768px) {
  /* PC: 写真の下端に表示 */
  .baseball-site .mascot-caption {
    display: block !important;
    visibility: visible !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(29,78,216,.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    padding: 10px 12px;
    letter-spacing: .12em;
  }
}

.baseball-site .mascot-badge {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: #fde047; color: var(--bs-navy); font-weight: 900; font-size: 11px;
  padding: 5px 10px; border-radius: 6px;
  border: 2px solid var(--bs-navy); transform: rotate(3deg); box-shadow: var(--bs-shadow-sm);
}

/* ============================================================
   放送日程
============================================================ */
.baseball-site .schedule-section {
  position: relative; z-index: 20;
  margin-top: -80px;
  padding: 0 var(--bs-px) 60px;
}
@media (min-width: 768px) {
  .baseball-site .schedule-section {
    margin-top: -60px;
    padding-top: 0;
  }
}
.baseball-site .schedule-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff; border: 1px solid var(--bs-gray-200);
  border-radius: 20px; padding: 24px;
  box-shadow: var(--bs-shadow-xl); position: relative; overflow: hidden;
}
@media (min-width: 640px) { .baseball-site .schedule-card { padding: 32px; } }
.baseball-site .schedule-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: linear-gradient(to right, #38bdf8, #0284c7);
  border-radius: 20px 20px 0 0;
}
.baseball-site .schedule-header {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--bs-gray-100);
}
@media (min-width: 640px) { .baseball-site .schedule-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.baseball-site .schedule-header h3 { font-size: 20px; font-weight: 900; color: var(--bs-navy); display: flex; align-items: center; gap: 6px; margin: 0; }
@media (min-width: 640px) { .baseball-site .schedule-header h3 { font-size: 24px; } }
.baseball-site .schedule-tag {
  display: inline-block; background: var(--bs-light-bg); border: 1px solid #bae6fd;
  color: var(--bs-blue); font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--bs-radius-full); align-self: flex-start; white-space: nowrap;
}
@media (min-width: 640px) { .baseball-site .schedule-tag { align-self: auto; } }
.baseball-site .schedule-list { display: flex; flex-direction: column; gap: 4px; }
.baseball-site .schedule-row {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px; border-radius: var(--bs-radius-lg);
  border: 1px solid transparent; transition: background .2s, border-color .2s;
}
@media (min-width: 640px) { .baseball-site .schedule-row { flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 12px; } }
.baseball-site .schedule-row:hover { background: var(--bs-light-bg); border-color: #bae6fd; }
.baseball-site .schedule-row-left { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.baseball-site .schedule-time { font-weight: 700; color: var(--bs-navy); font-size: 17px; }
.baseball-site .schedule-title { font-size: 17px; font-weight: 700; color: var(--bs-gray-700); flex: 1; line-height: 1.5; margin: 0; }
@media (min-width: 640px) { .baseball-site .schedule-title { text-align: right; } }
.baseball-site .schedule-link {
  font-size: 14px; font-weight: 700; color: var(--bs-blue);
  display: flex; align-items: center; gap: 2px;
  white-space: nowrap; align-self: flex-end; transition: color .2s; text-decoration: none;
}
@media (min-width: 640px) { .baseball-site .schedule-link { align-self: auto; } }
.baseball-site .schedule-link:hover { color: var(--bs-orange); }

/* ============================================================
   ② 番組ラインナップ
============================================================ */
.baseball-site .lineup-section { background: #fff; }
.baseball-site section.lineup-section { background: #fff; }
.baseball-site .lineup-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .baseball-site .lineup-grid { grid-template-columns: 1fr 1fr; } }
.baseball-site .lineup-card { display: flex; flex-direction: column; }
.baseball-site .lineup-eyecatch {
  /* 640x270 のアスペクト比に合わせる */
  aspect-ratio: 640 / 270;
  height: auto;
  position: relative;
  display: flex; align-items: center; justify-content: center; padding: 0;
  overflow: hidden;
}
.baseball-site .lineup-eyecatch .badge-live { position: absolute; top: 10px; left: 10px; z-index: 1; }
.baseball-site .lineup-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.baseball-site .lineup-eyecatch-blue { background: linear-gradient(135deg, #60a5fa, #0284c7, #1e40af); }
.baseball-site .lineup-eyecatch-warm { background: linear-gradient(135deg, #fb923c, #f59e0b); }
.baseball-site .lineup-body { padding: 24px; flex: 1; }
.baseball-site .lineup-air { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.baseball-site .lineup-air.blue   { color: var(--bs-blue); }
.baseball-site .lineup-air.orange { color: var(--bs-orange); }
.baseball-site .lineup-body h4 { font-size: 22px; font-weight: 800; color: var(--bs-navy); margin: 0 0 10px; line-height: 1.4; }
.baseball-site .lineup-body p  { font-size: 17px; color: var(--bs-gray-600); font-weight: 500; margin: 0; }

/* ============================================================
   ③ 応援メッセージ
============================================================ */
.baseball-site .message-section { background: var(--bs-light-bg); }
.baseball-site section.message-section { background: var(--bs-light-bg); }
.baseball-site .message-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .baseball-site .message-grid { grid-template-columns: 1fr 1fr; } }
.baseball-site .message-card {
  background: #fff; border-radius: 20px; padding: 28px;
  box-shadow: var(--bs-shadow-xl); border: 1px solid var(--bs-gray-100);
  display: flex; flex-direction: column; justify-content: space-between;
}
.baseball-site .message-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.baseball-site .message-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.baseball-site .message-icon-orange { background: var(--bs-orange); color: #fff; }
.baseball-site .message-icon-black  { background: #000; color: #fff; font-size: 13px; }
.baseball-site .message-card-head h3 { font-size: 19px; font-weight: 700; color: var(--bs-navy); margin: 0; }
.baseball-site .message-card > p { font-size: 17px; color: var(--bs-gray-600); line-height: 1.7; font-weight: 500; margin: 0 0 20px; }
.baseball-site .message-banner {
  display: block; border-radius: 14px; overflow: hidden;
  box-shadow: var(--bs-shadow-md); border: 1px solid var(--bs-gray-100);
  transition: transform .3s; margin-bottom: 20px; text-decoration: none;
}
.baseball-site .message-banner:hover { transform: scale(1.02); }
.baseball-site .message-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 280 / 90;
  object-fit: cover;
}
.baseball-site .hashtag-box {
  background: var(--bs-gray-50); border: 1px solid var(--bs-gray-200);
  border-radius: 14px; padding: 20px; text-align: center; margin-bottom: 20px;
}
.baseball-site .hashtag-box .label { font-size: 12px; color: var(--bs-gray-500); font-weight: 700; display: block; margin-bottom: 6px; }
.baseball-site .hashtag-box .tag {
  display: inline-block; background: #fff; border: 1px solid #bae6fd; color: var(--bs-blue);
  font-weight: 900; font-size: 20px; padding: 6px 16px;
  border-radius: 8px; box-shadow: var(--bs-shadow-sm);
}
.baseball-site .hashtag-box .note { font-size: 12px; color: var(--bs-gray-400); font-weight: 500; display: block; margin-top: 10px; }
.baseball-site .btn-x {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #000; color: #fff; font-weight: 800; padding: 14px;
  border-radius: var(--bs-radius-md); font-size: 16px; transition: background .2s; text-decoration: none;
  letter-spacing: .02em;
}
.baseball-site .btn-x:hover { background: #1a1a1a; color: #fff; }

/* ============================================================
   ④ ニュース
============================================================ */
.baseball-site .news-section { background: #fff; }

/* ============================================================
   ニュースリスト — CMS出力構造に完全準拠
   div.sports-news > ul.page_list > li.heightLine-a02
     > p > a > img
     > div.txCommon02 > p.date + h3
============================================================ */
.baseball-site .sports-news { width: 100%; }

.baseball-site ul.page_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .baseball-site ul.page_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 479px) {
  .baseball-site ul.page_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* li */
.baseball-site ul.page_list li.heightLine-a02 {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bs-gray-100);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.baseball-site ul.page_list li.heightLine-a02:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* サムネイル: p > a > img */
.baseball-site ul.page_list li.heightLine-a02 > p {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
.baseball-site ul.page_list li.heightLine-a02 > p > a {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.baseball-site ul.page_list li.heightLine-a02 > p > a > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  transition: transform .3s;
}
.baseball-site ul.page_list li.heightLine-a02:hover > p > a > img {
  transform: scale(1.05);
}

/* テキストブロック: div.txCommon02 */
.baseball-site ul.page_list li.heightLine-a02 .txCommon02 {
  padding: 10px 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 日付: p.date */
.baseball-site ul.page_list li.heightLine-a02 .txCommon02 p.date {
  font-size: 11px;
  color: var(--bs-gray-400);
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* タイトル: h3 */
.baseball-site ul.page_list li.heightLine-a02 .txCommon02 h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--bs-navy);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  border: none;
  background: none !important;
  background-color: transparent !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
@media (min-width: 640px) {
  .baseball-site ul.page_list li.heightLine-a02 .txCommon02 h3 {
    font-size: 14px;
  }
}
.baseball-site ul.page_list li.heightLine-a02:hover .txCommon02 h3 {
  color: var(--bs-orange);
}

.baseball-site .news-more { text-align: center; margin-top: 40px; }

/* ============================================================
   ⑤ キャスター
============================================================ */
.baseball-site .caster-section { background: var(--bs-page-bg); }
.baseball-site section.caster-section { background: var(--bs-page-bg); }
.baseball-site .caster-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .baseball-site .caster-grid { grid-template-columns: repeat(3, 1fr); } }
.baseball-site .caster-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--bs-shadow-xl); border: 1px solid var(--bs-gray-100); display: flex; flex-direction: column;
}
.baseball-site .caster-header {
  position: relative;
  /* パディングを絞って背景色の面積を減らす */
  padding: 20px 24px 24px;
  display: flex; flex-direction: column; align-items: center; color: #fff;
}
.baseball-site .caster-header::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.05); pointer-events: none; }
.baseball-site .caster-header-blue   { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.baseball-site .caster-header-orange { background: linear-gradient(135deg, #fbbf24, #ff6b00); }
.baseball-site .caster-header-green  { background: linear-gradient(135deg, #34d399, #059669); }
.baseball-site .caster-role-badge.green { color: #059669; }
.baseball-site .caster-avatar {
  /* 写真を大きくして存在感を出す */
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  border: 4px solid #fff; box-shadow: 0 6px 24px rgba(0,0,0,.25);
  background: #fff; margin-bottom: 14px; position: relative; z-index: 1;
}
.baseball-site .caster-avatar svg { width: 100%; height: 100%; }
.baseball-site .caster-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.baseball-site .caster-header-info { text-align: center; position: relative; z-index: 1; }
.baseball-site .caster-role-badge {
  display: inline-block; background: #fff; font-size: 11px; font-weight: 800;
  padding: 2px 7px; border-radius: var(--bs-radius-full); margin-bottom: 3px;
}
.baseball-site .caster-role-badge.blue   { color: var(--bs-blue); }
.baseball-site .caster-role-badge.orange { color: var(--bs-orange); }
.baseball-site .caster-name { font-size: 22px; font-weight: 800; letter-spacing: .08em; margin: 0; }
.baseball-site .caster-name-en, .baseball-site .caster-prof { font-size: 12px; opacity: .85; margin: 3px 0 0; font-weight: 500; }
.baseball-site .caster-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.baseball-site .caster-quote {
  background: var(--bs-gray-50); border: 1px solid var(--bs-gray-100); border-radius: 12px;
  padding: 14px 18px; font-style: italic; font-size: 14px; font-weight: 600;
  color: var(--bs-gray-700); line-height: 1.8; margin: 0 0 16px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.04);
}
.baseball-site .caster-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.baseball-site .caster-role-text { font-size: 12px; color: var(--bs-gray-400); font-weight: 500; }
.baseball-site .caster-link {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 700; color: var(--bs-blue);
  white-space: nowrap; transition: color .2s; text-decoration: none;
}
.baseball-site .caster-link:hover { color: var(--bs-blue-dark); }

/* ============================================================
   ⑥ 特設コンテンツ
============================================================ */
.baseball-site .special-section {
  background: var(--bs-light-bg);
  border-top: 1px solid var(--bs-gray-100);
  border-bottom: 1px solid var(--bs-gray-100);
}
.baseball-site .special-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .baseball-site .special-grid { grid-template-columns: repeat(3, 1fr); } }
.baseball-site .special-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--bs-gray-100);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: visible !important;
  transition: transform .25s, box-shadow .25s;
}
.baseball-site .special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
}
/* 画像の角丸はthumb側で制御 */
.baseball-site .special-thumb {
  position: relative;
  background: var(--bs-gray-50);
  border-bottom: 1px solid var(--bs-gray-100);
  overflow: hidden !important;
}
.baseball-site .special-thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 640 / 165;
  object-fit: cover;
  transition: transform .5s;
}
.baseball-site .special-card:hover .special-thumb img { transform: scale(1.03); }
.baseball-site .special-thumb .badge { position: absolute; top: 6px; left: 6px; }
.baseball-site .special-body { padding: 20px; flex: 1; }
.baseball-site .special-body h4 { font-weight: 800; color: var(--bs-navy); font-size: 19px; margin: 0 0 6px; }
.baseball-site .special-body p  { font-size: 16px; color: var(--bs-gray-500); line-height: 1.65; font-weight: 500; margin: 0; }
.baseball-site .special-footer  { padding: 0 20px 20px; }

/* ============================================================
   ⑦ フッター前CTA
============================================================ */
.baseball-site .pre-footer-cta {
  background: linear-gradient(135deg, #1d4ed8, #0284c7, #38bdf8);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.baseball-site .pre-footer-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 320px; height: 320px;
  background: rgba(255,255,255,.08); border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.baseball-site .pre-footer-inner {
  max-width: var(--bs-max);
  margin: 0 auto;
  padding: 0 var(--bs-px);
  position: relative; z-index: 1;
}
.baseball-site .pre-footer-cta .eyebrow {
  display: inline-block; background: var(--bs-orange); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 14px;
  border-radius: var(--bs-radius-full); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 14px;
}
.baseball-site .pre-footer-cta h2 {
  font-size: 32px; font-weight: 900; line-height: 1.3; margin: 0 0 16px;
  color: #fff !important;
  background: none !important;
  background-color: transparent !important;
  border: none;
  padding: 0;
  font-family: inherit;
  text-decoration: none;
  text-transform: none;
}
@media (min-width: 640px) { .baseball-site .pre-footer-cta h2 { font-size: 44px; } }
@media (min-width: 1024px) { .baseball-site .pre-footer-cta h2 { font-size: 50px; } }
.baseball-site .pre-footer-cta h2 .accent { color: #fef08a; }
.baseball-site .pre-footer-cta > .pre-footer-inner > p {
  color: rgba(255,255,255,.88); font-size: 17px; font-weight: 600;
  margin: 0 0 28px; line-height: 1.75;
}
.baseball-site .pre-footer-btns {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
@media (min-width: 480px) { .baseball-site .pre-footer-btns { flex-direction: row; justify-content: center; } }
.baseball-site .pre-footer-btns .btn {
  border-radius: var(--bs-radius-md); padding: 14px 32px; font-weight: 800; font-size: 17px;
}

/* ============================================================
   フッター
============================================================ */
.baseball-site .site-footer {
  background: var(--bs-gray-950); color: var(--bs-gray-400);
  border-top: 1px solid #1f2937;
}
.baseball-site footer {
  padding: 40px 0;
  text-align: center;
}
.baseball-site .footer-inner {
  max-width: var(--bs-max);
  margin: 0 auto;
  padding: 0 var(--bs-px);
}
.baseball-site .footer-logo { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 20px; }
.baseball-site .footer-logo .ch-badge { background: var(--bs-orange); color: #fff; font-size: 11px; font-weight: 900; padding: 3px 7px; border-radius: 4px; }
.baseball-site .footer-logo .name { color: #fff; font-weight: 800; letter-spacing: .08em; font-size: 16px; }
.baseball-site .footer-nav { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; font-size: 15px; flex-wrap: wrap; }
.baseball-site .footer-nav a { transition: color .2s; text-decoration: none; color: var(--bs-gray-400); }
.baseball-site .footer-nav a:hover { color: #fff; }
.baseball-site .footer-notice { font-size: 14px; color: var(--bs-gray-500); line-height: 1.8; font-weight: 500; margin-bottom: 20px; }
.baseball-site .footer-hr { border: none; border-top: 1px solid #1f2937; margin: 20px 0; }
.baseball-site .footer-copy { font-size: 14px; color: #374151; font-weight: 600; }

/* ============================================================
   SVGアイコン
============================================================ */
.baseball-site .icon-sm { width: 13px; height: 13px; }
.baseball-site .icon-md { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .baseball-site section { padding: 60px 0; }
  .baseball-site .schedule-section { padding-bottom: 40px; }
  .baseball-site .pre-footer-cta { /* sectionを継承 */ }
}

@media (max-width: 480px) {
  .baseball-site .container { padding: 0 16px; }
  .baseball-site .schedule-section { padding-left: 16px; padding-right: 16px; }
  .baseball-site .schedule-card { padding: 20px; }
  .baseball-site .pre-footer-inner { padding: 0 16px; }
  .baseball-site .footer-inner { padding: 0 16px; }
}
