@charset "UTF-8";

/* =========================================
   1. 変数定義・基本設定（ポップオレンジ＆ネイビー）
========================================= */
:root {
  --park-bg-base: #ffffff;      
  --park-bg-light: #fff8f5;     /* 柔らかなパステルオレンジの背景 */
  --park-navy: #0e1b3d;         /* 花火が映える綺麗な夜空ネイビー */
  --park-orange: #ff7e36;       /* 元気でかわいいポップオレンジ */
  --park-orange-light: #ffedd5;  /* ハイライト用ライトオレンジ */
  --park-gold: #f39c12;         /* きらきら星屑のハニーゴールド */
  --park-text-main: #2c3e50;    
  --park-text-sub: #576574;     /* コントラストを高めたサブテキストカラー */
  --park-border: #fed7aa;
  --park-border-dark: #fdba74;
}

* { box-sizing: border-box; }

body.orange-park-body {
  font-family: 'Quicksand', 'Noto Sans JP', sans-serif;
  margin: 0; padding: 0; 
  padding-top: 65px; 
  padding-bottom: 90px; 
  background-color: var(--park-bg-base); 
  color: var(--park-text-main);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
}

/* ポップでかわいい見出しフォント */
.font-cute {
  font-family: 'Quicksand', 'Noto Sans JP', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.park-section-bg { 
  background-color: var(--park-bg-light); 
  border-top: 2px dashed var(--park-border-dark); 
  border-bottom: 2px dashed var(--park-border-dark); 
}

/* アニメーション演出 */
.reveal-element {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-element.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* =========================================
   2. ヘッダー＆ドロワー（ロゴの色を完全保護）
========================================= */
.global-header {
  background: #ffffff;
  border-bottom: 4px solid var(--park-orange);
  position: fixed; top: 0; left: 0; width: 100%; height: 65px; z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 126, 54, 0.1);
}
.header-inner {
  max-width: 1000px; margin: 0 auto; height: 100%;
  display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}
.header-logo { display: flex; align-items: center; height: 100%; }
.header-logo img {
  display: block; max-height: 35px; width: auto;
  filter: none; 
}
.hamburger-btn {
  font-size: 1.5rem; color: var(--park-orange); cursor: pointer;
  background: none; border: none; padding: 5px;
  display: flex; align-items: center; justify-content: center; height: 100%;
}

/* ドロワー */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(14, 27, 61, 0.5); backdrop-filter: blur(2px); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.menu-overlay.is-active { opacity: 1; visibility: visible; }
.drawer-menu { position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100%; background: #ffffff; z-index: 9999; border-left: 4px solid var(--park-orange); display: flex; flex-direction: column; transition: right 0.3s ease; }
.drawer-menu.is-open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--park-border); }
.drawer-header img { filter: none; }
.close-btn { background: none; border: none; font-size: 1.6rem; color: var(--park-orange); cursor: pointer; }
.drawer-content { overflow-y: auto; padding: 10px 0; margin: 0; list-style: none; flex-grow: 1; }
.drawer-content li { border-bottom: 1px solid var(--park-border); }
.drawer-content a { display: flex; align-items: center; padding: 16px 24px; color: var(--park-text-main); text-decoration: none; font-size: 0.95rem; font-weight: 700; }
.drawer-content a:hover { color: var(--park-orange); background: var(--park-bg-light); }
.drawer-content a i { width: 25px; color: var(--park-orange); text-align: center; margin-right: 12px; }
.drawer-footer { background: var(--park-bg-light); padding: 20px; text-align: center; border-top: 1px solid var(--park-border); }
.drawer-footer a { display: inline-block; background: #ffffff; border: 2px solid var(--park-orange); color: var(--park-orange); text-decoration: none; padding: 8px 16px; border-radius: 30px; font-size: 0.8rem; margin: 5px; font-weight: bold; }
body.menu-open { overflow: hidden; }

/* =========================================
   3. パンくずリスト
========================================= */
.breadcrumbs {
  width: 100%; background-color: var(--park-bg-light); border-bottom: 1px solid var(--park-border);
}
.breadcrumbs-inner {
  max-width: 1000px; margin: 0 auto; padding: 12px 20px;
  font-size: 12px; color: var(--park-text-sub); font-weight: 700;
  white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.breadcrumbs-inner::-webkit-scrollbar { display: none; }
.breadcrumbs a { color: var(--park-orange); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* =========================================
   4. レイアウト・メイン・コンポーネント
========================================= */
.lp-container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 16px; }
.lp-section { padding: 40px 0; }

.park-section-header { text-align: center; margin-bottom: 30px; }
.park-section-title {
  font-size: clamp(20px, 5vw, 28px); color: var(--park-navy); margin: 0;
  display: inline-block; position: relative; line-height: 1.5;
}
.park-section-title::before, .park-section-title::after {
  content: '✦'; position: absolute; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--park-orange);
}
.park-section-title::before { left: -30px; }
.park-section-title::after { right: -30px; }
.park-section-sub { font-size: 13.5px; color: #d97706; margin: 10px 0 0; text-align: center; font-weight: 900; }

/* ぷっくり丸いテーマパーク風ボタン */
.park-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #ffa366 0%, var(--park-orange) 100%);
  color: #ffffff !important; font-size: 18px; font-weight: 900; text-decoration: none;
  padding: 16px 30px; border-radius: 50px; border: none; width: 100%;
  box-shadow: 0 6px 18px rgba(255, 126, 54, 0.4);
  transition: all 0.3s ease;
}
.park-btn-primary:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 126, 54, 0.6);
}

/* ヒーローセクション */
.lp-hero { position: relative; width: 100%; min-height: 480px; padding: 80px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.lp-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(14,27,61,0.5) 0%, rgba(14,27,61,0.2) 50%, rgba(14,27,61,0.85) 100%); z-index: 1; } 
.lp-hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 100%; color: #fff; }
.park-hero-catch span { font-size: 14px; font-weight: 900; color: #ffffff; background: var(--park-orange); padding: 8px 24px; display: inline-block; letter-spacing: 0.05em; border-radius: 50px; box-shadow: 0 4px 12px rgba(255, 126, 54, 0.3); }
.hero-title-container { position: relative; width: 100%; padding: 0 10px; margin: 20px 0; }
.park-hero-title { font-size: clamp(24px, 6.5vw, 38px); line-height: 1.4; margin: 0; letter-spacing: 0.02em; text-shadow: 0 4px 12px rgba(14,27,61,0.8); }
.park-hero-title .highlight { display: inline-block; color: #ffffff; font-weight: 900; background: linear-gradient(transparent 50%, var(--park-orange) 50%); padding: 0 8px; margin: 5px 0; border-radius: 4px; }
.park-hero-badge { background: rgba(255,255,255,0.95); color: var(--park-navy); border: 3px solid var(--park-orange); padding: 12px 24px; font-size: 15px; font-weight: 900; display: inline-block; border-radius: 50px; box-shadow: 0 6px 15px rgba(0,0,0,0.15); }

/* おすすめポイント */
.park-point-box { background: #fff; border: 3px solid var(--park-border-dark); padding: 25px 16px; max-width: 820px; margin: -40px auto 40px; position: relative; z-index: 10; box-shadow: 0 12px 35px rgba(255,126,54,0.12); border-radius: 16px; }
.park-point-title { font-size: 20px; text-align: center; margin: 0 0 25px; color: var(--park-orange); }
.park-point-list { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }
.park-point-list li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.7; text-align: left; color: var(--park-text-main); font-weight: 700; }
.park-point-list li::before { content: '⭐'; position: absolute; left: 0; top: 0; font-size: 16px; color: var(--park-gold); }
.park-point-list li span { color: var(--park-orange); font-weight: 900; }

/* メリットグリッド */
.benefit-grid { display: flex; flex-direction: column; gap: 20px; }
.park-card { background: #fff; border: 2px dashed var(--park-border-dark); padding: 25px 16px; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,0.02); border-radius: 16px; }
.park-icon { font-size: 20px; font-weight: 900; color: var(--park-orange); margin-bottom: 12px; display: block; background: var(--park-orange-light); padding: 5px 12px; border-radius: 50px; }
.park-card h3 { font-size: 18px; margin: 0 0 12px; color: var(--park-navy); font-weight: 900; }
.park-card p { font-size: 13.5px; color: var(--park-text-sub); margin: 0; text-align: left; line-height: 1.75; font-weight: 500; }

/* カルーセルスライダー */
.park-feature-block { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--park-border); box-shadow: 0 10px 30px rgba(255,126,54,0.05); border-radius: 16px; overflow: hidden; }
.park-visual-header { padding: 20px 16px 12px; text-align: center; background-color: var(--park-bg-light); border-bottom: 1px solid var(--park-border); }
.park-feature-title { font-size: 18px; color: var(--park-navy); margin: 0; }
.visual-area { padding: 16px; }
.carousel-wrapper { width: 100%; position: relative; }
.carousel-container { position: relative; width: 100%; overflow: hidden; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.horizontal-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; } 
.horizontal-slider::-webkit-scrollbar { display: none; }
.visual-box { flex: 0 0 100%; width: 100%; aspect-ratio: 4 / 3; scroll-snap-align: start; }
.visual-box img { width: 100%; height: 100%; object-fit: cover; }
.park-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; background: #ffffff; border: 2px solid var(--park-border-dark); color: var(--park-orange); font-size: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.park-carousel-btn.prev { left: 8px; } .park-carousel-btn.next { right: 8px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin: 12px 0 0; padding-bottom: 5px; }
.carousel-dots .dot { width: 10px; height: 10px; background: #e2e8f0; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.carousel-dots .dot.active { background: var(--park-orange); width: 22px; border-radius: 10px; }
.park-feature-content { padding: 20px 16px 25px; }
.park-feature-subtitle { font-size: 16px; color: var(--park-navy); margin: 0 0 12px; border-left: 4px solid var(--park-orange); padding-left: 10px; font-weight: 900; }
.park-desc-text { font-size: 14px; color: #334155; line-height: 1.8; margin: 0 0 15px; text-align: left; font-weight: 500; }
.park-notice-box { padding: 16px; border-radius: 12px; background: var(--park-bg-light); margin-top: 20px; border: 2px dashed var(--park-orange); }
.park-notice-box .notice-title { margin: 0 0 8px; color: var(--park-orange); font-weight: 900; font-size: 14px; }

/* 料金ボックス */
.park-price-container { display: block; width: 100%; max-width: 600px; margin: 0 auto 30px; background: #ffffff; border: 3px solid var(--park-border-dark); box-shadow: 0 12px 30px rgba(255,126,54,0.08); overflow: hidden; border-radius: 16px; }
.park-price-header { background: linear-gradient(135deg, #ffa366 0%, var(--park-orange) 100%); color: #ffffff; text-align: center; padding: 16px; font-size: 18px; font-weight: 900; letter-spacing: 0.05em; }
.park-price-body { padding: 25px 16px; text-align: center; background: #ffffff; }
.price-target { margin: 0 0 12px; font-size: 13.5px; font-weight: 700; color: var(--park-text-sub); }
.price-display { display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.price-amount { font-size: clamp(36px, 8vw, 50px); color: var(--park-orange) !important; font-weight: 900; line-height: 1; }
.price-unit { font-size: 15px; font-weight: bold; color: var(--park-text-main); margin-left: 4px; }
.park-included-box { background: var(--park-bg-light); border-radius: 12px; padding: 16px; text-align: left; margin-top: 20px; }
.included-title { font-size: 14px; font-weight: 900; color: var(--park-navy); margin-bottom: 12px; }
.included-list { list-style: none; padding: 0; margin: 0; font-size: 13.5px; color: #334155; font-weight: 700; }
.included-list li { margin-bottom: 8px; display: flex; gap: 8px; line-height: 1.5; }
.included-list i { color: var(--park-orange); margin-top: 3px; }

/* 発着コース切り替えタブ */
.park-course-tabs { display: flex; gap: 10px; max-width: 600px; margin: 0 auto 25px; }
.course-tab-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 10px 8px; border-radius: 16px; border: 2px solid var(--park-border-dark);
  background: #ffffff; color: var(--park-text-sub); font-weight: 900; font-size: 13px;
  font-family: inherit; line-height: 1.4; cursor: pointer; transition: all 0.25s ease;
}
.course-tab-btn:hover { border-color: var(--park-orange); }
.course-tab-btn .tab-price { font-size: 15px; color: var(--park-orange); font-weight: 900; }
.course-tab-btn.is-active {
  background: linear-gradient(135deg, #ffa366 0%, var(--park-orange) 100%);
  border-color: var(--park-orange); color: #ffffff;
  box-shadow: 0 6px 15px rgba(255, 126, 54, 0.35);
}
.course-tab-btn.is-active .tab-price { color: #ffffff; }
.course-panel[hidden] { display: none; }

/* タイムライン */
.park-schedule-box { max-width: 820px; margin: 0 auto; }
.park-schedule-badge { display: table; margin: 0 auto 25px; background: var(--park-orange-light); color: var(--park-orange); font-size: 15px; padding: 8px 24px; font-weight: 900; border-radius: 50px; }
.park-timeline { position: relative; padding-left: 16px; margin: 0; list-style: none; }
.park-timeline::after { content: ''; position: absolute; top: 5px; left: 2px; width: 2px; height: calc(100% - 20px); background: var(--park-border-dark); }
.park-timeline-step { display: flex; flex-direction: column; position: relative; margin-bottom: 25px; }
.park-timeline-step::before { content: ''; position: absolute; left: -18px; top: 6px; width: 8px; height: 8px; background: #fff; border: 3px solid var(--park-orange); border-radius: 50%; z-index: 2; }
.park-timeline-step.main-event-step::before { content: '★'; font-size: 12px; font-weight: 900; left: -22px; top: 3px; color: var(--park-gold); background: none; border: none; z-index: 3; }
.step-time { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.park-day-label { font-size: 11px; font-weight: 900; padding: 3px 8px; background: var(--park-navy); color: #fff; border-radius: 4px; }
.time-num { font-size: 15.5px; color: var(--park-navy); font-weight: 900; }
.park-tl-card { padding: 18px 16px; background: #fff; border: 1px solid var(--park-border); border-radius: 12px; box-shadow: 0 4px 10px rgba(255,126,54,0.02); }
.park-card-highlight { border: 2px solid var(--park-orange); background: var(--park-bg-light); }
.step-title { font-size: 15.5px; font-weight: 900; color: var(--park-navy); margin: 0 0 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.highlight-title { font-size: 17px; color: var(--park-orange); }
.park-step-desc { font-size: 13.5px; color: #334155; margin: 0; line-height: 1.6; font-weight: 700; }
.park-badge { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 900; }
.badge-orange { background: var(--park-orange-light); color: var(--park-orange); }
.badge-navy { background: #e0e7ff; color: var(--park-navy); }
.badge-gray { background: #f1f5f9; color: #475569; }
.duration-tag { display: inline-block; background: #fff; border: 1px solid var(--park-border-dark); color: var(--park-text-main); font-size: 12px; padding: 4px 10px; margin-top: 8px; border-radius: 4px; font-weight: 700; }
.tag-orange { border-color: var(--park-orange); color: var(--park-orange); }
.meal-summary { margin-top: 12px; border-top: 1px dashed var(--park-border); padding-top: 10px; display: flex; gap: 12px; font-size: 12px; color: var(--park-text-sub); font-weight: 700; }

/* 条件テーブル */
.park-data-table-wrap { max-width: 820px; margin: 35px auto 0; padding: 18px 14px; background: #fff; border: 2px dashed var(--park-border-dark); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.01); width: 100%; overflow: hidden; }
.park-table-caption { font-size: 18px; font-weight: 900; margin: 0 0 16px; color: var(--park-navy); }
.park-structured-table { width: 100%; border-collapse: collapse; font-size: 13.5px; font-weight: 700; }
.park-structured-table th, .park-structured-table td { padding: 12px 10px; border-bottom: 1px solid var(--park-border); text-align: left; }
.park-structured-table th { background: var(--park-bg-light); color: var(--park-orange); width: 30%; word-break: keep-all; }
.park-structured-table td { color: var(--park-text-main); }

/* =========================================
   5. 集合場所・アクセスマップスタイル（スマホはみ出し完全解消版）
========================================= */
.park-map-card {
  background: #ffffff;
  border: 2px solid var(--park-border-dark);
  border-radius: 16px;
  padding: 20px 14px; /* スマホ画面用に左右paddingをスリム化 */
  box-shadow: 0 10px 25px rgba(14, 27, 61, 0.08);
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  box-sizing: border-box; /* 要素サイズを枠線内に強制収容 */
}

.park-map-info {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.map-location-title {
  font-size: clamp(18px, 4.5vw, 22px); /* スマホ画面の文字溢れを自動縮小 */
  color: var(--park-navy);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  word-break: break-word;
}

.map-location-title i {
  color: var(--park-orange);
  flex-shrink: 0;
}

.map-address-text {
  font-size: 13.5px;
  color: var(--park-text-main);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}

.map-notice-text {
  font-size: 13px;
  color: #1e293b;
  background: #fff7ed;
  border: 1px solid var(--park-border);
  border-top: 4px solid var(--park-orange);
  padding: 12px 14px;
  border-radius: 8px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  line-height: 1.65;
  text-align: center;
  box-sizing: border-box;
}

.map-notice-text strong {
  color: #d97706;
  font-weight: 900;
}

/* アスペクト比16:9を保ちスマホ画面に絶対収めるマップ領域 */
.park-map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%; /* スマホで見やすいようアスペクト比を微調整 */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--park-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--park-bg-light);
  box-sizing: border-box;
}

.park-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* アコーディオン */
.park-accordion-wrap { max-width: 820px; margin: 0 auto; }
.park-accordion { margin-bottom: 12px; border: 1px solid var(--park-border); background: #fff; border-radius: 12px; overflow: hidden; }
.park-accordion-summary { padding: 16px 14px; font-weight: 900; cursor: pointer; font-size: 14px; display: flex; justify-content: space-between; align-items: center; color: var(--park-navy); gap: 10px; }
.park-accordion-summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--park-orange); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.park-accordion[open] .park-accordion-summary::after { transform: rotate(180deg); }
.park-accordion-content { padding: 16px 14px; font-size: 13.5px; color: #334155; border-top: 1px dashed var(--park-border); background: #fafafa; font-weight: 700; }
.park-accordion-content ul { padding-left: 18px; margin: 0; }
.park-accordion-content li { margin-bottom: 8px; line-height: 1.6; }

/* 固定予約バー */
.wafu-fixed-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; padding: 10px 12px; background: rgba(255, 255, 255, 0.98); border-top: 3px solid var(--park-orange); box-shadow: 0 -4px 15px rgba(255, 126, 54, 0.15); }
.fixed-bottom-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; }
.wafu-fixed-bar .park-btn-primary { box-shadow: none; padding: 12px 20px; font-size: 15px; }

/* =========================================
   6. フッター（ネイビーベースで引き締め）
========================================= */
.global-footer {
  background-color: var(--park-navy);
  border-top: 4px solid var(--park-orange);
  padding: 40px 16px;
  width: 100%;
  color: #f8fafc;
}
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-links-list {
  list-style: none; padding: 0; margin: 0 0 20px 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
}
.footer-links-list a {
  color: #94a3b8; text-decoration: none; font-size: 12.5px; font-weight: 700; transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--park-orange); text-decoration: underline; }
.footer-company-info { font-size: 11px; line-height: 1.7; color: #94a3b8; margin: 0 0 18px 0; font-weight: 500; }
.footer-copyright { font-size: 11px; color: #64748b; margin: 0; }

/* =========================================
   7. メディアクエリ（PC最適化）
========================================= */
@media screen and (min-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-section { padding: 65px 0; }
  .park-section-header { margin-bottom: 50px; }
  .park-section-title { font-size: 30px; }
  
  .park-point-box { padding: 45px 40px; margin: -60px auto 55px; }
  .park-point-title { font-size: 22px; }
  .park-point-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 35px; }
  
  .benefit-grid { grid-template-columns: 1fr 1fr 1fr; gap: 25px; flex-direction: row; }
  .hero-title-container { padding: 0 40px; margin: 35px 0; }
  .visual-area { padding: 25px 30px; }
  .park-feature-content { padding: 30px 30px 40px; }

  /* タイムラインPC */
  .park-timeline { padding-left: 0; }
  .park-timeline::after { left: 105px; }
  .park-timeline-step { flex-direction: row; margin-bottom: 35px; align-items: start; }
  .park-timeline-step::before { left: 101px; top: 22px; width: 8px; height: 8px; border-width: 3px; }
  .park-timeline-step.main-event-step::before { left: 97px; top: 14px; font-size: 15px; }
  .step-time { width: 105px; flex-shrink: 0; padding-right: 25px; text-align: right; flex-direction: column; align-items: flex-end; justify-content: flex-start; padding-top: 14px; margin-bottom: 0; gap: 4px; }
  .time-num { text-align: right; width: 100%; font-size: 15.5px; }
  .step-content { padding-left: 25px; flex-grow: 1; }
  
  /* テーブルPC */
  .park-data-table-wrap { padding: 40px; margin-top: 55px; }
  .park-structured-table { font-size: 14.5px; }
  .park-structured-table th { padding: 18px 20px; width: 22%; }
  .park-structured-table td { padding: 18px 20px; }

  /* マップPC */
  .park-map-card { padding: 40px; }
  .map-location-title { font-size: 22px; }
  .map-notice-text { font-size: 14px; }
  .park-map-wrapper { padding-top: 56.25%; }
}