@charset "utf-8";
/* ============================================================
   IPSS SNOWBOARD SCHOOL — トップページ専用スタイル
   style.css を継承し、トップページのみに適用
   ============================================================ */

/* ===== カスタムプロパティ ===== */
:root {
  --navy:        #000e22;
  --navy-mid:    #00365e;
  --accent:      #1e88e5;
  --accent-lt:   #e3f2fd;
  --orange:      #e65100;
  --orange-mid:  #ff8f00;
  --white:       #ffffff;
  --off-white:   #f7f9fb;
  --border:      #d4dae3;
  --text-muted:  #5a6475;
  --r-sm:  6px;
  --r-md: 10px;
  --r-lg: 16px;
  --sh-sm: 0 2px 8px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
}

/* ===== 全体リセット補完 ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin-bottom: 0; }

/* ===== Google Fonts ===== */
/* Montserrat は <link> で読み込む */

/* ================================================================
   HEADER（既存 style.css を上書き）
   ================================================================ */

/* 既存ヘッダーを完全上書きして sticky 化 */
#site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  width: 100%;
  background-color: var(--navy);
  border-bottom: 3px solid var(--navy-mid);
  height: auto !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 68px;
  gap: 12px;
}

/* ロゴエリア */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
  vertical-align: top;
  border-radius: 4px;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.header-logo-text .site-caption {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  white-space: nowrap;
}
.header-logo-text .site-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
  white-space: nowrap;
}

/* グローバルナビ */
#site-gnav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
#site-gnav ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 68px;
}
#site-gnav ul li {
  height: 100%;
  position: relative;
}
#site-gnav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","游明朝",YuMincho,serif;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: background .2s, border-color .2s;
}
#site-gnav ul li a:hover {
  background-color: rgba(255,255,255,.08);
  border-bottom-color: #daff00;
  color: var(--white);
}

/* 翻訳バー */
.header-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  flex-shrink: 0;
}
.header-lang a {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.header-lang a:hover,
.header-lang a.selected {
  background: var(--navy-mid);
  color: var(--white);
}

/* 予約ボタン */
.btn-reserve-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  border-bottom: none !important;
}
.btn-reserve-header:hover {
  background: #1565c0;
  color: var(--white);
  border-bottom: none !important;
}

/* ハンバーガーボタン（PC非表示） */
.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 4px;
  flex-shrink: 0;
}
.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
}
.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: transform .25s;
}
.hamburger-icon::before { top: -7px; }
.hamburger-icon::after  { top:  7px; }

/* スマホ用ドロワー */
#mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
}
#mobile-drawer.open { display: block; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--navy);
  overflow-y: auto;
  padding: 20px 20px 40px;
}
.drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  padding: 0;
}
.drawer-panel a {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.drawer-panel a:hover { color: var(--white); }
.drawer-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.drawer-lang a {
  flex: none;
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
}


/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides {
  position: relative;
  width: 100%;
}
/* ベース画像でheightを確保 */
.hero-slides img.hero-base {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0; /* 透明なスペーサー */
  pointer-events: none;
  min-height: 300px;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide-img.active { opacity: 1; }
.hero-slide-img:nth-child(2) { background-image: url('https://ipss-sbs.com/img/top_image_01.jpg'); }
.hero-slide-img:nth-child(3) { background-image: url('https://ipss-sbs.com/img/top_image_02.jpg'); }
.hero-slide-img:nth-child(4) { background-image: url('https://ipss-sbs.com/img/top_image_03.jpg'); }

/* オーバーレイ — 左側だけに薄くかける */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,14,34,.55) 0%, rgba(0,14,34,.18) 45%, transparent 65%);
  pointer-events: none;
}

/* コンテンツ */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5% 0 5%;
  max-width: 660px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Montserrat', "メイリオ", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-title span { color: #90caf9; }
.hero-sub {
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-weight: bold;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background: #1565c0; transform: translateY(-2px); color: #fff; }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-weight: bold;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,.5);
  text-decoration: none;
  transition: background .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }

/* スライドドット */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background .3s, width .3s;
}
.hero-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}


/* ================================================================
   早割キャンペーン
   ================================================================ */
#early-bird {
  background: linear-gradient(100deg, #bf360c 0%, #e65100 40%, #ff8f00 75%, #ffa000 100%);
  position: relative;
  overflow: hidden;
  margin-top: 5px;
  padding: 0;
}
#early-bird::before {
  content: 'SALE';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  pointer-events: none;
  letter-spacing: .04em;
  white-space: nowrap;
}
.early-bird-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
}
.early-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.28);
  color: var(--white);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.early-bird-text h2 {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: bold;
  color: var(--white);
  margin-bottom: 4px;
  font-family: "メイリオ", sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
  line-height: 1.4;
  padding: 0;
  border: none;
  background: none;
}
.early-bird-text p {
  font-size: 13px;
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.5;
}
.early-offers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.offer-pill {
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.55);
  border-radius: var(--r-md);
  padding: 12px 20px;
  text-align: center;
  min-width: 120px;
}
.offer-pill .period {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: rgba(255,255,255,.85);
  margin-bottom: 3px;
  letter-spacing: .04em;
}
.offer-pill .discount {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0,0,0,.15);
}
.offer-pill .off-label {
  font-size: 13px;
  font-weight: bold;
  color: var(--white);
}
.btn-earlybird {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-weight: bold;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: background .2s, transform .15s;
}
.btn-earlybird:hover {
  background: #fff8e1;
  color: var(--orange);
  transform: translateY(-2px);
}


/* ================================================================
   共通セクション
   ================================================================ */
.top-section {
  padding: 72px 0;
}
.top-section--alt { background: var(--off-white); }
.top-section--dark { background: var(--navy); color: var(--white); }
.top-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec-label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.top-section--dark .sec-label { color: #90caf9; }
.sec-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: bold;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: "メイリオ",sans-serif;
  padding: 0;
  border: none;
  background: none;
}
.top-section--dark .sec-title { color: var(--white); }
.sec-lead {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.top-section--dark .sec-lead { color: rgba(255,255,255,.7); }


/* ================================================================
   予約導線
   ================================================================ */
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reserve-card {
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 24px 32px;
  text-align: center;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.reserve-card:hover {
  border-color: var(--accent);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.reserve-icon {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.reserve-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: "メイリオ", sans-serif;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  letter-spacing: 0;
  border-radius: 0;
}
.reserve-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-reserve-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: bold;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-reserve-card:hover {
  background: var(--accent);
  color: var(--white);
}


/* ================================================================
   IPSSが選ばれる理由（アイコン版・小カード）
   ================================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.reason-text .reason-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 2px;
}
.reason-text h3 {
  font-size: 15px;
  font-weight: bold;
  color: var(--navy);
  line-height: 1.45;
  font-family: "メイリオ", sans-serif;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  letter-spacing: 0;
}


/* ================================================================
   レッスンメニュー
   ================================================================ */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lesson-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.lesson-card-img {
  height: 155px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.lesson-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
}
.lesson-card-body {
  padding: 16px;
}
.lesson-card-body h3 {
  font-size: 14px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 6px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: 0;
  font-family: "メイリオ", sans-serif;
  color: #044760;
}
.lesson-card-body p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.btn-card-link {
  font-size: 12px;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: gap .2s;
}
.btn-card-link:hover { gap: 7px; color: #1565c0; }
.lessons-cta {
  text-align: center;
  margin-top: 32px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: bold;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }


/* ================================================================
   キャンプ特集
   ================================================================ */
.camp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.camp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.camp-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-camp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: bold;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-camp:hover { background: #e3f2fd; transform: translateY(-2px); color: var(--navy); }
.camp-cards { display: grid; gap: 10px; }
.camp-item-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background .2s;
}
.camp-item-card:hover { background: rgba(255,255,255,.18); }
.camp-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(100,181,246,.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.camp-item-card h4 {
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 2px;
  font-family: "メイリオ", sans-serif;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: 0;
}
.camp-item-card p {
  font-size: 12px;
  color: rgba(255,255,255,.58);
  margin: 0;
}


/* ================================================================
   シーズン実績
   ================================================================ */
#stats {
  background: var(--accent);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit { font-size: 16px; font-weight: bold; }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}
.stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,.58);
  margin-top: 2px;
}


/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--navy);
  font-family: "メイリオ", sans-serif;
  text-align: left;
}
.faq-q-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-chevron {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }
.faq-cta { text-align: center; margin-top: 28px; }


/* ================================================================
   お知らせ
   ================================================================ */
.news-list {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--off-white); }
.news-date {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 78px;
}
.news-badge {
  font-size: 10px;
  font-weight: bold;
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.news-badge--info { background: #e3f2fd; color: #1565c0; }
.news-badge--new  { background: #e8f5e9; color: #2e7d32; }
.news-title { font-size: 13px; color: var(--navy); flex: 1; }


/* ================================================================
   アクセス
   ================================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.access-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
}
.access-map iframe { width: 100%; height: 100%; border: 0; }
.access-info h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 14px;
  font-family: "メイリオ", sans-serif;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: 0;
}
.access-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.access-table tr { border-bottom: 1px solid var(--border); }
.access-table td { padding: 10px 0; vertical-align: top; }
.access-table td:first-child { color: var(--text-muted); width: 90px; font-weight: bold; }


/* ================================================================
   フッター（既存 style.css の footer_box を再利用しつつ上書き）
   ================================================================ */
#site-footer {
  background: #002744;
  color: rgba(255,255,255,.75);
  padding: 44px 0 0;
  border-top: 10px solid #f6f6f6;
}
/* 既存 footer スタイルを活かしつつ、wrapper 幅を統一 */
#site-footer .footer_box {
  max-width: 1100px;
  width: 100%;
  padding: 0 24px 30px;
}
#site-footer .footer_box .box_in {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
#site-footer .footer_box .box_in .foot_right {
  width: 240px;
  flex-shrink: 0;
  text-align: left;
}
#site-footer .footer_box .box_in .foot_right img.foot_logo {
  width: 80px;
  margin: 0 0 12px 0;
}
#site-footer .footer_box .box_in ul {
  width: 200px;
  flex-shrink: 0;
  margin-right: 0;
}
#site-footer address { color: rgba(255,255,255,.4); }


/* ================================================================
   ページトップ
   ================================================================ */
#to_top a {
  background-color: rgba(0,34,83,.85);
}


/* ================================================================
   スクロールリビール
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   レスポンシブ
   ================================================================ */
@media (max-width: 1100px) {
  .header-inner { height: 60px; }
  #site-gnav { display: none; }
  .header-lang { display: none; }
  .btn-reserve-header { display: none; }
  .header-menu-toggle { display: block; }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .camp-inner { grid-template-columns: 1fr; gap: 32px; }
  .access-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-grid { grid-template-columns: 1fr; }
  #site-footer .footer_box .box_in { flex-direction: column; }
  #site-footer .footer_box .box_in ul { width: 100%; }
  #site-footer .footer_box .box_in .foot_right { width: 100%; }
}

@media (max-width: 680px) {
  .top-section { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat-item:last-child { border-bottom: none; }
  .lessons-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { justify-content: center; }
  .early-bird-inner { flex-direction: column; align-items: flex-start; }
  .early-offers { width: 100%; }
  .offer-pill { flex: 1; min-width: 100px; }
  .btn-earlybird { width: 100%; justify-content: center; }
  .news-item { flex-direction: column; align-items: flex-start; gap: 6px; }
}
