@charset "UTF-8";

/* =========================================
   1. 変数定義・基本設定
========================================= */
:root {
    --orion-blue: #003399;
    --theme-ocean: #004d80;   
    --theme-sunset: #f28500;  
    --theme-accent: #ffb347;  
    --bg-light: #f4f7f6;
    --text-main: #333333;
    
    /* プラン別カラー */
    --plan-night: #2c3e50;    
    --plan-hotel: #008080;    

    --main-grad: linear-gradient(135deg, var(--theme-ocean) 0%, #002244 100%);
    --btn-grad: linear-gradient(135deg, var(--theme-sunset) 0%, #d35400 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    padding-bottom: 90px;
}

/* =========================================
   2. ヘッダー ＆ ドロワーメニュー
========================================= */
.global-header { background: #fff; border-bottom: 3px solid var(--theme-sunset); padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 15px; }
.header-logo img { height: 35px; width: auto; display: block; }
.hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 5px; color: var(--orion-blue); font-size: 1.5rem; }

.header-nav { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.header-nav a { color: var(--theme-ocean); text-decoration: none; font-weight: bold; font-size: 14px; transition: color 0.3s; }
.header-nav a:hover { color: var(--theme-sunset); }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(3px); }
.menu-overlay.open { opacity: 1; visibility: visible; }
.drawer-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; z-index: 9999; box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: right 0.3s ease; display: flex; flex-direction: column; }
.drawer-menu.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #eee; }
.drawer-header img { height: 25px; }
.close-btn { background: none; border: none; font-size: 1.5rem; color: #666; cursor: pointer; }
.drawer-content { overflow-y: auto; padding: 0; margin: 0; list-style: none; flex-grow: 1; }
.drawer-content li { border-bottom: 1px solid #f0f0f0; }
.drawer-content a { display: block; padding: 15px 20px; color: var(--text-main); text-decoration: none; font-weight: bold; font-size: 15px; }
.drawer-content a::after { content: "＞"; float: right; color: #ccc; font-size: 12px; margin-top: 3px; }

/* =========================================
   3. パンくずリスト
========================================= */
.breadcrumbs { background-color: #fff; border-bottom: 1px solid #eaeaea; padding: 10px 0; font-size: 12px; color: #666; }
.breadcrumbs-inner { max-width: 1100px; margin: 0 auto; padding: 0 15px; display: flex; flex-wrap: wrap; }
.breadcrumbs a { color: var(--orion-blue); text-decoration: none; }
.breadcrumbs span { margin: 0 8px; color: #ccc; font-size: 10px; }

/* =========================================
   4. LP コンテンツ共通スタイル
========================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; color: var(--theme-ocean); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: bold; position: relative; }
.section-title::after { content: ''; display: block; width: 50px; height: 3px; background-color: var(--theme-sunset); margin: 15px auto 0; }

.mincho { font-family: 'Shippori Mincho', serif; font-weight: 700; }

/* ヒーローエリア */
.hero { 
    background: linear-gradient(rgba(0, 77, 128, 0.5), rgba(0, 0, 0, 0.2)), url('https://www.orion-tour.co.jp/bustour/kashiwazaki-hanabi/img/kashiwazaki-hanabi1200x900-004.jpg') center/cover;
    height: 60vh; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); line-height: 1.4; }
.hero p { font-size: clamp(1rem, 3vw, 1.4rem); text-shadow: 1px 1px 6px rgba(0,0,0,0.8); font-weight: bold; color: var(--theme-accent); }

/* ページ内ナビ */
.page-nav { background: #fff; padding: 25px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.03); text-align: center; margin-bottom: 20px;}
.page-nav p { font-weight: bold; margin-bottom: 15px; color: var(--theme-ocean); font-size: 1.1rem; }
.nav-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.nav-btn { flex: 1; min-width: 250px; max-width: 350px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 15px 10px; border-radius: 8px; color: #fff; font-weight: bold; text-decoration: none; transition: 0.3s; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
.nav-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-night { background-color: var(--plan-night); }
.btn-hotel { background-color: var(--plan-hotel); }

/* --- お祭りの魅力（特徴） --- */
.feature-intro { text-align: center; max-width: 900px; margin: 0 auto 40px; font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px;}
.feature-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--theme-ocean); }
.feature-card h3 { color: var(--theme-sunset); font-size: 1.2rem; margin-bottom: 10px; border-bottom: 1px dashed #ddd; padding-bottom: 10px;}
.feature-card p { font-size: 0.95rem; margin: 0; }

.yatai-box { background: #fffcf2; border: 1px solid #fde7a9; border-radius: 12px; padding: 30px; display: flex; gap: 25px; align-items: center; margin-bottom: 60px;}
.yatai-box img { width: 180px; height: 180px; border-radius: 8px; object-fit: cover; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* 写真横スライダー & 動画 */
.visual-area { padding: 10px 0 0 0; }
.horizontal-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 15px; }
.horizontal-slider .visual-box { flex: 0 0 85%; aspect-ratio: 4 / 3; background-color: #eee; border-radius: 8px; overflow: hidden; position: relative; scroll-snap-align: center; }
.visual-box img { width: 100%; height: 100%; object-fit: cover; }
.video-container { width: 100%; aspect-ratio: 16 / 9; background-color: #000; border-radius: 8px; overflow: hidden; margin-top: 15px; }
.video-container iframe { width: 100%; height: 100%; border: none; }
.video-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 15px; }

/* ギャラリーセクション */
.gallery-section { background: var(--plan-night); padding: 60px 0; color: #fff; margin-bottom: 60px;}
.gallery-section .section-title { color: var(--theme-accent); }
.gallery-section .section-title::after { background-color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.3); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* --- プラン詳細カード --- */
.plan-block { margin-bottom: 60px; scroll-margin-top: 80px;}
.plan-header { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid; display: flex; align-items: center; gap: 10px; font-weight: bold; }
.plan-night .plan-header { border-color: var(--plan-night); color: var(--plan-night); }
.plan-hotel .plan-header { border-color: var(--plan-hotel); color: var(--plan-hotel); }

.plan-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); display: flex; flex-direction: column; }
.plan-title { background: var(--theme-ocean); color: #fff; padding: 20px; font-size: 1.15rem; font-weight: bold; line-height: 1.5; }
.plan-hotel .plan-title { background: var(--plan-hotel); }

.plan-body { padding: 30px; }
.info-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: 1fr; gap: 15px; }
.info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; }
.info-label { font-weight: bold; color: var(--theme-ocean); min-width: 70px; background: #eef2f7; padding: 2px 8px; border-radius: 4px; text-align: center; font-size: 0.9rem;}
.price-text { color: var(--theme-sunset); font-weight: bold; font-size: 1.5rem; }

/* スケジュール（プラン内） */
.timeline { border-left: 3px solid var(--theme-sunset); margin: 20px 0 20px 15px; padding-left: 20px; }
.tl-item { position: relative; margin-bottom: 20px; }
.tl-item::before { content: ''; position: absolute; left: -28px; top: 5px; width: 14px; height: 14px; background: #fff; border: 3px solid var(--theme-sunset); border-radius: 50%; }
.tl-day { font-weight: bold; color: var(--theme-ocean); margin-bottom: 5px; font-size: 1.1rem;}
.tl-content p { margin: 0 0 5px; font-size: 0.95rem; }
.meal-tag { display: inline-block; font-size: 11px; padding: 2px 6px; border-radius: 3px; margin-right: 5px; background: #eee; color: #666; }
.meal-on { background: #ffe0b2; color: #d35400; font-weight: bold; }

/* おすすめポイント */
.plan-points { background: #fdfdfd; border: 1px solid #eee; border-radius: 8px; padding: 20px; margin-bottom: 20px; }
.plan-points h4 { color: var(--theme-sunset); margin-top: 0; margin-bottom: 15px; font-size: 1.1rem; }
.plan-points ul { padding-left: 20px; margin: 0; font-size: 0.95rem; }
.plan-points li { margin-bottom: 8px; }

/* 観覧席アコーディオン */
.seat-accordion { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 20px; overflow: hidden; }
.seat-accordion summary { padding: 15px 20px; font-weight: bold; color: var(--theme-ocean); background-color: #f8f9fa; cursor: pointer; list-style: none; position: relative; border-bottom: 1px solid transparent; font-size: 1.05rem; }
.seat-accordion summary::-webkit-details-marker { display: none; }
.seat-accordion summary::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #999; transition: transform 0.3s; }
.seat-accordion[open] summary { border-bottom: 1px solid #e0e0e0; }
.seat-accordion[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.seat-accordion-content { padding: 20px; }
.seat-accordion-content img { width: 100%; border-radius: 8px; margin-bottom: 15px; display: block; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.seat-accordion-content h4 { font-size: 1.1rem; color: #333; margin-bottom: 10px; font-weight: bold; }
.seat-accordion-content p { font-size: 0.95rem; color: #333; margin-bottom: 15px; line-height: 1.6; }
.seat-accordion-content .note-list { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #666; }
.seat-accordion-content .note-list li { position: relative; padding-left: 1em; margin-bottom: 6px; line-height: 1.5; }
.seat-accordion-content .note-list li::before { content: "・"; position: absolute; left: 0; }

/* --- 料金表デザイン --- */
.price-table-wrap { background: #fff; border: 1px solid #e1e4e8; border-radius: 8px; margin: 0 auto 25px; max-width: 600px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); overflow: hidden; }
.lp-table { width: 100%; border-collapse: collapse; margin-bottom: 0; }
.lp-table th, .lp-table td { padding: 18px 15px; text-align: center; border-bottom: 1px solid #eee; border-right: 1px solid #eee; vertical-align: middle;}
.lp-table th:last-child, .lp-table td:last-child { border-right: none; }
.lp-table tr:last-child th, .lp-table tr:last-child td { border-bottom: none; }
.lp-table th { background-color: #fbfcfd; color: var(--theme-ocean); font-weight: bold; width: 50%; font-size: 1rem; }
.lp-table td { font-size: 1.4rem; font-weight: bold; color: var(--theme-sunset); width: 50%; }

.plan-action { text-align: center; margin-top: 10px; }
.btn { display: inline-block; background: var(--btn-grad); color: #fff; padding: 16px 45px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.15rem; transition: 0.3s; box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(211, 84, 0, 0.4); }

/* ホテル・観光ハイライト（宿泊プラン） */
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
.highlight-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.highlight-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.highlight-card-body { padding: 20px; }
.highlight-card h4 { color: var(--theme-ocean); margin: 0 0 10px; font-size: 1.1rem; border-bottom: 2px solid var(--theme-sunset); padding-bottom: 8px; }
.highlight-card p { font-size: 0.9rem; color: #555; margin: 0; line-height: 1.6; }

.hotel-info-box { background: #fcfcfc; border: 1px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 20px;}
.hotel-info-box h4 { color: var(--theme-ocean); font-size: 1.2rem; margin-top: 0; margin-bottom: 15px; border-left: 4px solid var(--theme-sunset); padding-left: 10px;}
.hotel-info-box p { font-size: 0.95rem; color: #444; margin-bottom: 15px;}
.hotel-amenity-list { background: #fff; border: 1px dashed #ccc; padding: 15px; border-radius: 6px; font-size: 0.9rem;}
.hotel-amenity-list ul { padding-left: 20px; margin: 0; color: #555;}

/* --- マップ・集合場所デザイン --- */
.map-card-design { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 25px; margin: 0 auto 60px; max-width: 900px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.map-card-title { font-size: 1.15rem; color: #333; margin-top: 0; margin-bottom: 20px; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.map-card-title i { color: #e53935; font-size: 1.3rem; }
.map-card-subtitle { font-size: 1.1rem; font-weight: bold; color: #333; margin-bottom: 15px; }
.map-card-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.map-card-list li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.95rem; color: #555; line-height: 1.6; }
.map-card-list li::before { content: '≫'; position: absolute; left: 0; top: 0; color: #e53935; font-weight: bold; font-family: "MS PMincho", serif; font-size: 1.1rem; }
.map-card-iframe { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 8px; overflow: hidden; border: 1px solid #eee; }
.map-card-iframe iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* --- 徹底比較セクション --- */
.comparison-section { background: #fff5e6; padding: 60px 0; border-top: 2px dashed #f28500; border-bottom: 2px dashed #f28500; margin-bottom: 60px; }
.writer-intro { max-width: 800px; margin: 0 auto 30px; background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative; }
.writer-intro p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 10px; color: #444; }
.writer-intro p:last-child { margin-bottom: 0; }
.writer-icon { font-size: 2rem; color: var(--theme-sunset); margin-bottom: 10px; text-align: center; }

.compare-table-wrap { max-width: 900px; margin: 0 auto 40px; overflow-x: auto; }
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.compare-table th, .compare-table td { padding: 15px; text-align: center; border: 1px solid #eee; vertical-align: middle; }
.compare-table th { background-color: #f9f9f9; color: var(--theme-ocean); font-weight: bold; width: 20%; }
.compare-table .th-night { background-color: var(--plan-night); color: #fff; font-size: 1.1rem; width: 40%; }
.compare-table .th-hotel { background-color: var(--plan-hotel); color: #fff; font-size: 1.1rem; width: 40%; }
.compare-table td.strong-text { font-weight: bold; color: var(--theme-sunset); }
.compare-table td { font-size: 0.95rem; }

.plan-explain-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 30px; }
.explain-box { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 5px solid; }
.explain-box.night { border-color: var(--plan-night); }
.explain-box.hotel { border-color: var(--plan-hotel); }
.explain-box h3 { font-size: 1.3rem; margin-top: 0; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.explain-box.night h3 { color: var(--plan-night); }
.explain-box.hotel h3 { color: var(--plan-hotel); }
.explain-point { background: #fdfdfd; border: 1px solid #eee; padding: 15px; border-radius: 8px; margin-bottom: 15px; }
.explain-point h4 { margin: 0 0 8px; font-size: 1rem; color: var(--theme-ocean); }
.explain-point p { margin: 0; font-size: 0.95rem; color: #555; }
.pros-cons { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
.pros-cons > div { flex: 1; min-width: 200px; background: #fafafa; padding: 15px; border-radius: 8px; }
.pros-cons h5 { margin: 0 0 10px; font-size: 1rem; }
.pros-cons .pros h5 { color: #2ecc71; }
.pros-cons .cons h5 { color: #e74c3c; }
.pros-cons ul { padding-left: 20px; margin: 0; font-size: 0.9rem; }
.target-box { margin-top: 20px; background: #fff9f9; padding: 15px; border-radius: 8px; border-left: 4px solid var(--theme-sunset); font-weight: bold; color: #444; }

/* --- 準備・FAQ --- */
.prep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
.prep-card { background: #fff; padding: 20px; border-radius: 8px; border: 1px solid #ddd; }
.prep-card h3 { color: var(--theme-ocean); font-size: 1.1rem; margin-bottom: 15px; border-bottom: 2px solid var(--theme-sunset); padding-bottom: 5px;}
.prep-card ul { padding-left: 20px; margin: 0; font-size: 0.9rem; }
.prep-card li { margin-bottom: 8px; }

.notice-wrap details { margin-bottom: 10px; background: #fff; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.notice-wrap summary { background: #f8fafc; padding: 15px 20px; font-weight: bold; cursor: pointer; list-style: none; position: relative; color: var(--theme-ocean);}
.notice-wrap summary::-webkit-details-marker { display: none; }
.notice-wrap summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; transition: transform 0.3s; color: #999; }
.notice-wrap details[open] summary::after { transform: rotate(180deg); }
.notice-content { padding: 20px; font-size: 0.95rem; color: #555; border-top: 1px solid #ddd; line-height: 1.6; }
.notice-content ul { padding-left: 20px; margin: 0; }
.notice-content li { margin-bottom: 8px; }

/* --- おすすめ人気特集 --- */
.other-features { max-width: 1000px; margin: 0 auto; padding: 0 20px 60px; }
.other-feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.other-feature-card { display: block; border-radius: 12px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.05); background: #fff; transition: transform 0.3s; }
.other-feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(15, 28, 63, 0.1); }
.other-feature-card img { width: 100%; height: 200px; object-fit: cover; }
.other-feature-text { padding: 15px; font-size: 1rem; font-weight: bold; color: var(--theme-navy); text-align: center; line-height: 1.4; border-top: 3px solid var(--theme-gold); }

/* =========================================
   5. フッター ＆ 固定ボタン
========================================= */
.global-footer { background: #080d1f; color: #fff; padding: 40px 0 20px; text-align: center; font-size: 13px;}
.footer-links { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.footer-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--theme-accent); }
.company-info { margin-bottom: 10px; line-height: 1.6; color: #aaa;}
.copyright { color: #888; }

.fixed-bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 10px; display: flex; justify-content: center; gap: 10px; z-index: 9999; backdrop-filter: blur(5px); }
.fixed-btn { flex: 1; max-width: 300px; text-align: center; color: #fff; text-decoration: none; font-weight: bold; padding: 12px 10px; border-radius: 8px; font-size: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.2); }
.f-btn-night { background: var(--plan-night); }
.f-btn-hotel { background: var(--plan-hotel); }

/* =========================================
   6. レスポンシブ
========================================= */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .hamburger-btn { display: block; }
    .hero { height: 50vh; min-height: 350px; }
    .plan-card { flex-direction: column; }
    .yatai-box { flex-direction: column; text-align: center; }
    .yatai-box img { width: 100%; height: auto; }
    .compare-table th, .compare-table td { font-size: 0.85rem; }
    .map-card-wrapper { padding-bottom: 75%; }
}
@media (min-width: 769px) {
    .plan-card { display: grid; grid-template-columns: 1fr; }
    .plan-body { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .plan-action { grid-column: 1 / -1; }
    .plan-explain-grid { grid-template-columns: 1fr 1fr; }
    .horizontal-slider .visual-box { flex: 0 0 47%; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .other-feature-grid { grid-template-columns: 1fr 1fr; }
}