/*
Theme Name: WAVE34 Custom Theme
Theme URI: https://office-tt.net/wave34/
Author: Antigravity
Description: Custom WordPress Theme for Sport Plaza WAVE34 with dedicated updates management dashboard.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: wave34-theme
*/
/* ===================================================
   スポーツプラザWAVE34 - ホームページ制作スタイルシート
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #162d54;
  --navy-600: #1e3a6a;
  --navy-500: #274a85;
  --navy-400: #3a6ab5;
  --navy-300: #5d8fd4;
  --navy-200: #93b5e5;
  --navy-100: #c9daf2;
  --navy-50:  #e8f0fa;

  --orange-600: #d15a00;
  --orange-500: #f07000;
  --orange-400: #ff8c1a;
  --orange-300: #ffa94d;
  --orange-200: #ffc078;
  --orange-100: #ffe0b2;
  --orange-50:  #fff3e0;

  --yellow-500: #f5b800;
  --yellow-400: #ffd233;
  --yellow-300: #ffe066;

  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --success: #2ecc71;
  --danger: #e74c3c;
  --line-green: #06C755;
  --line-green-dark: #05a648;
  --line-green-light: #e6f9ed;

  /* Typography */
  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-en: 'Outfit', var(--font-jp);

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1100px;
  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.14);
  --shadow-xl: 0 16px 64px rgba(10, 22, 40, 0.18);
  --shadow-glow-orange: 0 4px 30px rgba(240, 112, 0, 0.35);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-jp);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-title .section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 400;
}

.section-title .accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-400));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* --- Temporary/Placeholder styles --- */
.placeholder-text {
  background: var(--orange-50);
  border: 1px dashed var(--orange-300);
  color: var(--orange-600);
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 4px;
  font-weight: 500;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.96);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-glow-orange);
}

.logo .logo-text-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--orange-300);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns-links-header {
  display: flex;
  gap: 6px;
}

.sns-btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.sns-btn-circle:hover {
  transform: scale(1.1);
}

.sns-btn-circle.x-sns:hover { background: var(--navy-900); border-color: var(--white); }
.sns-btn-circle.insta-sns:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  border-color: transparent;
}

.sns-btn-circle svg {
  width: 16px;
  height: 16px;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-orange);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(240, 112, 0, 0.45);
}

.btn-phone .phone-icon {
  font-size: 1rem;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

/* ===================================================
   HERO / FIRST VIEW
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 37.5vw;
  min-height: 510px;
  max-height: 730px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.05) 40%, rgba(10, 22, 40, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  margin-top: 45px;
}

.hero-brand {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ff3366, #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 51, 102, 0.6));
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 51, 102, 0.4));
  }
  100% {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(255, 51, 102, 0.8));
  }
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.25;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 0 15px rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

.hero .hero-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  letter-spacing: 0.08em;
}

/* Helper Class for Mobile Break */
.sp-block {
  display: inline;
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .hero-brand {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .hero .hero-sub {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
}

.hero-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.hero-btn.primary { background: linear-gradient(135deg, var(--orange-500), var(--orange-400)); color: var(--white); box-shadow: var(--shadow-glow-orange); }
.hero-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240, 112, 0, 0.4); }

.hero-btn.secondary { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(10px); }
.hero-btn.secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.hero-btn.line-btn { background: var(--line-green); color: var(--white); }
.hero-btn.line-btn:hover { background: var(--line-green-dark); transform: translateY(-2px); }

.hero-btn.map-btn { background: var(--white); color: var(--navy-800); }
.hero-btn.map-btn:hover { background: var(--gray-100); transform: translateY(-2px); }

.hero-btn svg {
  width: 20px;
  height: 20px;
}

/* ===================================================
   CONGESTION STATUS COMPONENT
   =================================================== */
.congestion-section {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.congestion-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border-left: 5px solid var(--navy-800);
  padding: 16px 28px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  gap: 20px;
}

.congestion-status-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.congestion-badge {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--white);
  white-space: nowrap;
}

/* Congestion Colors */
.congestion-badge.status-empty { background-color: var(--success); }
.congestion-badge.status-normal { background-color: var(--yellow-400); color: var(--navy-800); }
.congestion-badge.status-busy { background-color: var(--danger); }
.congestion-badge.status-reserved { background-color: var(--orange-500); }
.congestion-badge.status-none { background-color: var(--gray-500); }

.congestion-text {
  font-weight: 700;
  color: var(--navy-800);
}

.congestion-note {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ===================================================
   PRICING / TABLES
   =================================================== */
.pricing-section {
  background: var(--gray-50);
}

.price-table-wrap {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th, .price-table td {
  padding: 16px 24px;
  text-align: center;
}

.price-table thead th {
  background: var(--navy-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

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

.price-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy-800);
  text-align: left;
}

.price-amount {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-700);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-300);
}

.pricing-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.pricing-card .pack-price {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-500);
  margin-bottom: 12px;
}

.pricing-card .pack-price span {
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card .pack-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   AMUSEMENT / FACILITIES SECTION (ができること)
   =================================================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facility-img {
  height: 200px;
  overflow: hidden;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-info {
  padding: 24px;
}

.facility-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.facility-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   BEGINNERS SECTION (初めての方へ)
   =================================================== */
.beginners-section {
  background: var(--navy-50);
}

.beginners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.beginners-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
}

.beginners-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.beginners-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.beginners-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===================================================
   LINE PROMOTION
   =================================================== */
.line-section {
  background: linear-gradient(135deg, var(--line-green), #04b34d);
  color: var(--white);
}

.line-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.line-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.line-info p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.8;
  margin-bottom: 24px;
}

.line-qr-box {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex-shrink: 0;
  width: 220px;
  transition: var(--transition);
  cursor: pointer;
}

.line-qr-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===================================================
   ACCESS / CONTACT
   =================================================== */
.access-section {
  background: var(--gray-50);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  aspect-ratio: 16/10;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-info-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.access-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.access-info-details h4 {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.access-info-details p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
}

.access-info-details p.phone-large {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: var(--orange-500);
}

.btn-google-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  margin-top: 10px;
}

.btn-google-map:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-google-map svg {
  width: 18px;
  height: 18px;
  color: #ea4335;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--orange-300);
}

.footer-copy {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

/* ===================================================
   SMARTPHONE BOTTOM FIXED CTA BAR
   =================================================== */
.bottom-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-900);
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  border-top: 2px solid var(--orange-500);
}

.bottom-cta-inner {
  display: flex;
  flex-direction: column;
}

.bottom-cta-line-row {
  background: var(--line-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-cta-line-row:hover {
  background: var(--line-green-dark);
}

.bottom-cta-line-row .cta-icon {
  font-size: 1.15rem;
}

.bottom-cta-sub-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bottom-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 6px 2px;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.bottom-cta-item:last-child {
  border-right: none;
}

.bottom-cta-item .cta-icon {
  font-size: 1.05rem;
  margin-bottom: 1px;
}

.bottom-cta-item.cta-phone {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
}

/* ===================================================
   PAGES SPECIFIC STYLES (Simple Layouts)
   =================================================== */
.page-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 120px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--navy-100);
}

.subpage-container {
  padding: 60px 0;
}

.simple-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.simple-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 12px;
  border-left: 4px solid var(--orange-500);
  padding-left: 12px;
}

.simple-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* Calendar styling for Subpage */
.embed-calendar-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}

.embed-calendar-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .embed-calendar-wrap {
    aspect-ratio: 4/5;
  }
}

/* Simple Gallery */
.simple-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.simple-gallery-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.simple-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* Tablet & Smaller */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero .hero-sub { font-size: 1rem; }
  
  .facility-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .beginners-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .simple-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* Smartphone & Smaller */
@media (max-width: 600px) {
  :root {
    --section-padding: 48px 0;
  }
  
  body {
    padding-bottom: 56px; /* Space for bottom fixed CTA */
  }

  .bottom-cta-bar {
    display: block;
  }
  
  .header-inner { height: 60px; }
  .logo { font-size: 1rem; }
  .logo .logo-icon { width: 36px; height: 36px; font-size: 1.15rem; border-radius: 8px; }
  
  .sns-links-header { display: none; }
  .btn-phone { display: none; }

  .hero {
    position: relative;
    width: 100%;
    height: 142vw;
    min-height: auto;
    max-height: none;
    overflow: hidden;
    background: var(--navy-900);
  }

  .hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px;
    padding-top: 44vw;
    box-sizing: border-box;
    margin-top: 0;
  }
  
  .sp-block {
    display: block;
  }

  .hero h1 {
    font-size: 7.5vw;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1.5vw;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 255, 255, 0.25);
  }

  .hero .hero-sub {
    font-size: 3.8vw;
    line-height: 1.5;
    margin-bottom: 2vw;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  .hero-brand {
    font-size: 10vw;
    margin-bottom: 3.5vw;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 15px rgba(255, 51, 102, 0.6));
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    width: auto;
    margin-top: 0;
  }

  .hero-buttons .btn {
    padding: 2vw 5.5vw;
    font-size: 3.3vw;
    border-radius: 40px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .hero-buttons .btn .btn-icon {
    font-size: 3.2vw;
  }
  
  .congestion-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  .facility-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .line-card { flex-direction: column; text-align: center; gap: 24px; }
  .simple-gallery-grid { grid-template-columns: 1fr; }
  
  .page-header h1 { font-size: 1.8rem; }

  /* Footer Links Horizontal Wrap on Mobile */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
}

/* ===================================================
   NEWS FEED & LIST STYLES (お知らせ関連)
   =================================================== */
.news-section-top {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.news-list-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.news-item-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.news-item-top:hover {
  background: var(--gray-50);
}

.news-item-top .news-date-top {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-500);
  white-space: nowrap;
}

.news-item-top .news-tag-top {
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.news-item-top .news-title-top {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .news-item-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Detailed News Card inside news.html */
.news-detail-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.news-detail-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 16px;
}

.news-detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.news-detail-date {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--gray-500);
}

.news-detail-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.4;
}

.news-detail-body {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 24px;
}

.news-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.news-detail-gallery img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-200);
}

/* --- Adjusted Facility Card layout (Centering 5 items) --- */
.facility-grid-center {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.facility-grid-center .facility-card {
  width: calc(33.333% - 16px);
  min-width: 280px;
}

@media (max-width: 900px) {
  .facility-grid-center .facility-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .facility-grid-center .facility-card {
    width: 100%;
  }
}

/* ===================================================
   NEWS ACCORDION (お知らせアコーディオン)
   =================================================== */
.news-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.news-accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.news-accordion-item:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
}

.news-accordion-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.news-accordion-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
}

.news-accordion-date {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--gray-500);
  font-size: 0.95rem;
  white-space: nowrap;
}

.news-accordion-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.4;
}

.news-accordion-icon {
  font-size: 1.2rem;
  color: var(--navy-500);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.news-accordion-item.active .news-accordion-icon {
  transform: rotate(180deg);
}

.news-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition) ease-out, padding var(--transition) ease-out;
  padding: 0 24px;
  background: var(--gray-50);
  border-top: 0 solid var(--gray-200);
}

.news-accordion-item.active .news-accordion-content {
  max-height: 2000px; /* 十分な高さを確保 */
  padding: 24px;
  border-top: 1px solid var(--gray-200);
}

.news-accordion-body {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.8;
}

/* ===================================================
   STUDENT WARNING & CAMPAIGN (警告とキャンペーンバナー)
   =================================================== */
.student-warning {
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.9rem;
}

.student-warning-badge {
  background: var(--danger);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.campaign-card-col {
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-300));
  border-radius: var(--border-radius-sm);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.campaign-card-col::before {
  content: '★';
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 8rem;
  opacity: 0.08;
  color: var(--white);
}

.campaign-day {
  font-weight: 800;
  color: var(--navy-800);
  font-size: 0.85rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}

.campaign-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.campaign-target {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.campaign-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange-600);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 8px;
}

.campaign-note {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 700;
}

/* Horizontal scroll indicators for tables on mobile */
.price-table-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .price-table {
    min-width: 500px; /* スクロールさせるための最小幅 */
  }
  .campaign-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   HERO SCROLL DOWN BUTTON
   =================================================== */
.btn-scroll-down {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: var(--shadow-glow-orange);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-scroll-down:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 15px rgba(240, 112, 0, 0.2);
}

.btn-scroll-down svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* ===================================================
   MEMBERSHIP & EVENTS SUBPAGES ADDITIONS
   =================================================== */
.member-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.member-fee-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  text-align: center;
}

.member-fee-card h4 {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.member-fee-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-800);
  font-family: var(--font-en);
}

.member-benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.member-benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 12px;
  border-left: 5px solid var(--orange-500);
  padding-left: 12px;
}

.member-benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-600);
  margin-bottom: 16px;
}

.membership-discount-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.membership-discount-table th, .membership-discount-table td {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.membership-discount-table th {
  background: var(--navy-50);
  color: var(--navy-800);
  font-weight: 700;
}

.membership-discount-table tr:hover {
  background: var(--gray-50);
}

/* events.html specialized styling */
.event-info-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.event-info-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--navy-800);
  padding-bottom: 8px;
}

.event-info-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-600);
  margin-top: 20px;
  margin-bottom: 10px;
}

.hdcp-calc-box {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin-top: 16px;
}

.hdcp-formula {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid var(--navy-100);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .member-fee-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   PC BOTTOM FIXED LINE FOLLOW BANNER (PC用下部固定追従LINEバナー)
   =================================================== */
.fixed-line-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--line-green);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #05a648;
  padding: 14px 24px;
}

.fixed-line-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fixed-line-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.fixed-line-banner-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.fixed-line-banner-text {
  text-align: left;
}

.fixed-line-banner-main {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fixed-line-banner-badge {
  background: var(--white);
  color: var(--line-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

.fixed-line-banner-sub {
  font-size: 0.82rem;
  opacity: 0.9;
  line-height: 1.4;
}

.btn-fixed-line-add {
  background: var(--white);
  color: var(--line-green-dark);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-fixed-line-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: var(--gray-50);
}

.btn-fixed-line-add svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Global paddings to avoid overlaying --- */
body {
  padding-bottom: 90px; /* PC用固定追従バナーの高さ分空ける */
}

/* Hide fixed banner on mobile and adjust body padding */
@media (max-width: 600px) {
  .fixed-line-banner {
    display: none;
  }
  
  body {
    padding-bottom: 95px; /* スマホ用2段固定CTAの高さ分空ける */
  }
}






/* WAVE34で楽しめること (Features) */
.features-scroll-wrapper {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 10px 20px 20px 20px;
  scrollbar-width: none; /* Firefox */
}
.features-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.features-grid {
  display: flex;
  gap: 20px;
  width: max-content;
}

.feature-card {
  width: 280px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-img-wrapper {
  width: 100%;
  height: 180px;
  position: relative;
  background: var(--gray-100);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(255, 102, 51, 0.3);
}

.feature-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-body p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.feature-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  border-top: 1px dashed var(--gray-200);
  padding-top: 10px;
  margin: 0;
}

/* PC Style */
@media (min-width: 992px) {
  .features-scroll-wrapper {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
  }
  .feature-card {
    width: 100%;
  }
}


/* === Lessons Subpage Styles === */
.pros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}

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

.pro-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-200);
}

.pro-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pro-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 4px;
}

.pro-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-500);
  margin-bottom: 8px;
}

.pro-summary {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
}

.pro-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-600);
  text-decoration: underline;
}

.pro-link:hover {
  color: var(--orange-500);
}

.lessons-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.lesson-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.lesson-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy-200);
}

.lesson-card-header {
  padding: 24px;
  position: relative;
}

.lesson-badge-row {
  margin-bottom: 12px;
}

.lesson-target-badge {
  background: var(--navy-50);
  color: var(--navy-600);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}

.lesson-card-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 16px;
  line-height: 1.4;
}

.lesson-quick-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  margin-bottom: 18px;
  padding: 0;
  list-style: none;
}

@media (min-width: 576px) {
  .lesson-quick-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lesson-quick-info li {
  font-size: 0.88rem;
  color: var(--gray-700);
}

.lesson-quick-info li strong {
  color: var(--navy-800);
  margin-right: 6px;
}

.lesson-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.lesson-toggle-btn:hover {
  background: var(--navy-50);
  border-color: var(--navy-200);
  color: var(--navy-600);
}

.lesson-toggle-btn .toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  fill: currentColor;
}

.lesson-card.active .lesson-toggle-btn {
  background: var(--navy-600);
  border-color: var(--navy-600);
  color: var(--white);
}

.lesson-card.active .lesson-toggle-btn .toggle-icon {
  transform: rotate(180deg);
}

.lesson-card-details {
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.lesson-details-inner {
  padding: 24px;
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.7;
}

.lesson-detail-item {
  margin-bottom: 14px;
}

.lesson-detail-item:last-child {
  margin-bottom: 0;
}

.lesson-detail-label {
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 4px;
  display: block;
}

.lesson-detail-notes {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
  color: var(--gray-600);
  font-size: 0.85rem;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

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

.purpose-card {
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.purpose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-300);
}

.purpose-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.purpose-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.purpose-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.faq-container {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 12px;
}

.faq-q {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 1;
}

.faq-question {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-800);
  flex-grow: 1;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-wrapper {
  border-top: 0 solid var(--gray-100);
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer-wrapper {
  border-top-width: 1px;
}

.faq-answer {
  padding: 18px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--gray-50);
}

.faq-a {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-600);
  line-height: 1;
}

.faq-answer p {
  margin: 0;
  flex-grow: 1;
}

/* Custom styling for PHP-based top news cards */
.news-list-top-container {
  max-width: 800px;
  margin: 0 auto 24px;
}
.news-item-top-card {
  transition: all 0.3s ease !important;
}
.news-item-top-card:hover {
  background: var(--gray-100) !important;
  border-color: var(--navy-300) !important;
  box-shadow: var(--shadow-sm) !important;
  transform: translateY(-2px);
}
.news-item-top-card:hover .news-title-top {
  color: var(--orange-500) !important;
}

/* ===================================================
   CHARACTER GUIDE SECTION (ナミちゃん＆ピンロボ案内)
   =================================================== */
.character-guide-section {
  padding: 80px 0;
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.character-guide-section * {
  box-sizing: border-box;
}

.nobrk {
  display: inline-block;
  white-space: nowrap;
}

.guide-box-wrapper {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px; /* Reduced wrapper padding to expand desktop box width to 1020px */
}

/* PC Layout */
.guide-box-pc {
  position: relative;
  background: #f0f7ff;
  border: 2px solid var(--navy-800);
  border-radius: var(--border-radius);
  padding: 40px 90px; /* Reduced padding inside box to maximize cards horizontal area */
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}

.guide-char-left {
  position: absolute;
  left: -145px; /* Shifted outward to prevent overlapping the first card content */
  bottom: -2px;
  height: 380px;
  width: auto;
  object-fit: contain;
  z-index: 5;
}

.guide-char-right {
  position: absolute;
  right: -125px; /* Shifted outward to prevent overlapping the last card content */
  bottom: -2px;
  height: 320px;
  width: auto;
  object-fit: contain;
  z-index: 5;
}

.guide-content-pc {
  width: 100%;
}

.guide-header h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.guide-header p {
  font-size: 0.98rem;
  color: var(--navy-800);
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
}

.guide-cards-grid-pc {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.guide-card {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 195px;
  justify-content: flex-start;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-400);
}

.guide-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.45rem;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.guide-icon-circle svg {
  width: 24px;
  height: 24px;
}

.bg-orange { background-color: #f97316; }
.bg-teal { background-color: #0d9488; }
.bg-green { background-color: #059669; }
.bg-gold { background-color: #eab308; }
.bg-blue { background-color: #2563eb; }
.bg-purple { background-color: #8b5cf6; }

.guide-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
  white-space: nowrap;
}

.guide-card-desc {
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* SP Layout (Hidden by default) */
.guide-box-sp {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .guide-box-wrapper {
    padding: 0 30px;
  }
  .guide-box-pc {
    padding: 40px 110px; /* Increased side padding for 3-column safety layout */
  }
  .guide-cards-grid-pc {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Switch to 3 columns x 2 rows layout */
  }
  .guide-char-left {
    left: -100px; /* Scaled and adjusted positioning */
    height: 340px;
  }
  .guide-char-right {
    right: -85px; /* Scaled and adjusted positioning */
    height: 290px;
  }
}

@media (max-width: 960px) {
  .guide-box-wrapper {
    padding: 0 20px;
  }
  .guide-box-pc {
    padding: 40px 100px; /* Safe padding for cards */
  }
  .guide-cards-grid-pc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .guide-char-left {
    left: -85px;
    height: 300px;
  }
  .guide-char-right {
    right: -75px;
    height: 250px;
  }
}

@media (max-width: 820px) {
  .character-guide-section {
    padding: 50px 0;
  }
  
  .guide-box-wrapper {
    padding: 0 16px;
  }
  
  .guide-box-pc {
    display: none;
  }
  
  .guide-box-sp {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0 auto;
    background: #f0f7ff;
    border: 2px solid var(--navy-800);
    border-radius: var(--border-radius);
    padding: 55px 16px 20px 16px;
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
  }
  
  .guide-char-sp-left-wrapper {
    position: absolute;
    left: -12px;
    top: -76px;
    height: 128px;
    width: 110px;
    overflow: hidden;
    z-index: 5;
  }
  
  .guide-char-sp-left-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.65);
    transform-origin: top center;
  }
  
  .guide-char-sp-right-wrapper {
    position: absolute;
    right: -10px;
    top: -68px;
    height: 116px;
    width: 100px;
    overflow: hidden;
    z-index: 5;
  }
  
  .guide-char-sp-right-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.45);
    transform-origin: top center;
  }
  
  .guide-header-sp {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--navy-200);
    padding-bottom: 12px;
    text-align: center;
  }
  
  .guide-title-sp {
    width: 100%;
  }
  
  .guide-title-sp h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0 auto 6px auto;
    line-height: 1.3;
    max-width: 60%;
  }
  
  .guide-title-sp p {
    font-size: 0.75rem;
    color: var(--navy-800);
    font-weight: 700;
    margin: 8px 0 0 0;
    line-height: 1.4;
  }
  
  .guide-cards-grid-sp {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }
  
  .guide-card-sp {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 12px 6px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    width: 100%;
  }
  
  .guide-card-sp:active {
    transform: scale(0.98);
  }
  
  .full-width-card-sp {
    grid-column: span 2;
  }
  
  .guide-card-sp .guide-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
    margin-bottom: 0;
    margin-right: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    flex-shrink: 0;
  }
  
  .guide-card-sp .guide-icon-circle svg {
    width: 16px;
    height: 16px;
  }
  
  .guide-card-content-sp {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  
  .guide-card-content-sp h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0;
    line-height: 1.25;
    word-break: break-all;
  }
  
  .guide-card-content-sp p {
    font-size: 0.65rem;
    color: var(--gray-500);
    margin: 2px 0 0 0;
    line-height: 1.35;
    word-break: break-all;
  }
  
  .guide-arrow-sp {
    color: var(--navy-400);
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 2px;
    flex-shrink: 0;
  }
}

/* ===================================================
   PROSHOP GALLERY GRID (プロショップ案内 2列ギャラリー)
   =================================================== */
.proshop-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.proshop-gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  background-color: var(--gray-100);
}

.proshop-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.proshop-gallery-item img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .proshop-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===================================================
   PROSHOP FORMAL PRICE LIST STYLES (プロショップ加工賃・料金表)
   =================================================== */
.btn-price-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: var(--navy-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(10, 22, 40, 0.15);
}

.btn-price-jump:hover {
  background-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 51, 0.3);
}

.proshop-price-section {
  scroll-margin-top: 80px;
}

.proshop-price-notice {
  background: var(--navy-50);
  border-left: 4px solid var(--orange-400);
  padding: 14px 18px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.proshop-price-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.price-accordion-item[open] {
  border-color: var(--orange-300);
}

.price-accordion-trigger {
  padding: 16px 20px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.price-accordion-trigger::-webkit-details-marker {
  display: none;
}

.price-accordion-trigger:hover {
  background: var(--navy-800);
}

.accordion-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-arrow {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  color: var(--orange-400);
}

.price-accordion-item[open] .accordion-arrow {
  transform: rotate(180deg);
}

.price-accordion-content {
  padding: 20px;
  background: var(--white);
}

.cat-note-banner {
  background: #fff9db;
  border: 1px solid #ffe066;
  color: #856404;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-subcat-group {
  margin-bottom: 20px;
}

.price-subcat-group:last-child {
  margin-bottom: 0;
}

.price-subcat-title {
  font-size: 0.98rem;
  color: var(--navy-800);
  font-weight: 800;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--navy-100);
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-subcat-title span {
  color: var(--orange-500);
  font-size: 0.8rem;
}

/* PC Table View */
.price-table-pc-wrap {
  display: block;
  overflow-x: auto;
}

.price-table-pc {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.price-table-pc th {
  background: var(--navy-800);
  color: var(--white);
  padding: 10px 12px;
  font-weight: 700;
  text-align: left;
  border: 1px solid var(--navy-700);
}

.price-table-pc th.col-p1,
.price-table-pc th.col-p2,
.price-table-pc th.col-price {
  text-align: right;
  width: 22%;
}

.price-table-pc th.col-cond {
  width: 15%;
}

.price-table-pc td {
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  vertical-align: middle;
}

.price-table-pc tbody tr:nth-child(even) {
  background-color: var(--gray-50);
}

.price-table-pc tbody tr:hover {
  background-color: rgba(255, 102, 51, 0.04);
}

.price-table-pc .td-p1,
.price-table-pc .td-p2,
.price-table-pc .td-price,
.price-table-pc .td-price-common {
  text-align: right;
  font-weight: 800;
  color: var(--navy-900);
}

.price-table-pc .tr-heading-only td {
  background: var(--navy-50) !important;
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.95rem;
  border-left: 4px solid var(--orange-500);
}

.price-table-pc .tr-note-only td {
  background: #fdf2e9 !important;
  color: #c05621;
  font-weight: 700;
  font-size: 0.88rem;
}

.price-val.is-free {
  color: var(--orange-500);
  font-weight: 900;
  background: rgba(255, 102, 51, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* SP Card View */
.price-cards-sp {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.sp-card-heading {
  background: var(--navy-50);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--orange-500);
  margin-top: 6px;
}

.sp-card-note {
  background: #fdf2e9;
  color: #c05621;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

.sp-price-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.sp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.sp-card-name {
  font-weight: 800;
  color: var(--navy-900);
  font-size: 0.93rem;
  line-height: 1.4;
}

.sp-card-cond {
  font-size: 0.78rem;
  background: var(--navy-50);
  color: var(--navy-700);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.sp-card-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--gray-50);
  padding: 8px 10px;
  border-radius: 6px;
}

.sp-compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.sp-compare-col .col-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 700;
}

.sp-card-common-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 6px;
}

.sp-card-common-price .price-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 700;
}

.sp-card-subnote {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed var(--gray-200);
}

@media (max-width: 768px) {
  .price-table-pc-wrap {
    display: none;
  }
  
  .price-cards-sp {
    display: flex;
  }
  
  .price-accordion-content {
    padding: 12px;
  }
  
  .price-accordion-trigger {
    padding: 14px 16px;
    font-size: 0.98rem;
  }
}

/* Tournament Main Image Responsive Positioning */
.tournament-main-img {
  border-radius: var(--border-radius-sm);
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: center 30%; /* Optimal for PC (prevents bowling ball and bowler head from being cut off) */
}

@media (max-width: 768px) {
  .tournament-main-img {
    object-position: center 15%; /* Optimal for smartphone screen vertical layouts */
  }
}

/* Event Card Hover Effects */
.event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}
.event-card-img {
  transition: transform 0.5s ease !important;
}
.event-card:hover .event-card-img {
  transform: scale(1.05);
}

.events-grid-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Event List Mobile Carousel */
@media (max-width: 768px) {
  .events-grid-top {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 20px !important;
    padding: 10px 20px 20px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    scroll-padding: 20px !important;
  }
  .events-grid-top::-webkit-scrollbar {
    display: none !important;
  }
  .events-grid-top .event-card {
    flex: 0 0 78% !important;
    scroll-snap-align: start !important;
    max-width: 290px !important;
  }
}

/* Event Detail Body Styles for Easy Posting */
.news-detail-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  border-bottom: 2px solid var(--orange-500);
  padding-bottom: 6px;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.news-detail-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-800);
  border-left: 4px solid var(--orange-500);
  padding-left: 10px;
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-detail-body table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 24px !important;
  background: var(--white) !important;
  border: 1px solid var(--gray-200) !important;
  box-sizing: border-box !important;
}
.news-detail-body th {
  background: var(--gray-100) !important;
  color: var(--navy-900) !important;
  font-weight: 700 !important;
  padding: 10px 14px !important;
  border: 1px solid var(--gray-200) !important;
  text-align: left !important;
  font-size: 0.95rem !important;
}
.news-detail-body td {
  padding: 10px 14px !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--gray-800) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}
.news-detail-body ul {
  padding-left: 20px !important;
  margin-bottom: 24px !important;
}
.news-detail-body li {
  margin-bottom: 6px !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
  color: var(--gray-700) !important;
}

@media (max-width: 576px) {
  .news-detail-body table, 
  .news-detail-body tbody, 
  .news-detail-body tr, 
  .news-detail-body th, 
  .news-detail-body td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .news-detail-body tr {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
  }
  .news-detail-body th {
    border-bottom: none !important;
    background: var(--gray-50) !important;
    padding-bottom: 4px !important;
  }
  .news-detail-body td {
    padding-top: 4px !important;
  }
}



