@charset "UTF-8";

/* =========================================
   1. 変数定義・基本設定
========================================= */
:root {
    --orion-blue: #003399;
    --primary-navy: #0a1128;
    --accent-gold: #fdb813;
    --accent-red: #ff2e63;
    --bg-light: #f4f7f6;
    --color-kanto: #4CAF50;
    --color-osaka: #2196F3;
    --color-nagoya: #9C27B0;
    --color-fukuoka: #e91e63;

    /* ツアーLP用追加変数 */
    --lp-primary: #e60012;
    --lp-secondary: #0c1e45;
    --lp-accent: #ffda00;
    --lp-text: #333333;
}

* { box-sizing: border-box; }

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0; padding: 0; padding-bottom: 110px; 
    background-color: var(--bg-light); color: #333;
    overflow-x: hidden;
}

/* =========================================
   2. ヘッダー ＆ ドロワーメニュー
========================================= */
.global-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: relative; z-index: 1000; }
.header-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.header-logo img { height: 35px; width: auto; display: block; }
.hamburger-btn { font-size: 1.5rem; color: var(--orion-blue); cursor: pointer; background: none; border: none; padding: 5px; transition: opacity 0.3s; }
.hamburger-btn:hover { opacity: 0.7; }

.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: 0.3s; }
.menu-overlay.open { opacity: 1; visibility: visible; }

.drawer-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100%; 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: 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: flex; align-items: center; padding: 15px 20px; color: #333; text-decoration: none; font-weight: bold; font-size: 0.95rem; transition: 0.3s; }
.drawer-content a i { width: 25px; color: var(--orion-blue); text-align: center; margin-right: 10px; font-size: 1.1rem; }
.drawer-footer { background: #f8f9fa; padding: 20px; text-align: center; }
.drawer-footer a { display: inline-block; background: #fff; border: 1px solid #ccc; color: #555; text-decoration: none; padding: 8px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; margin: 0 5px 10px; }

/* =========================================
   3. パンくずリスト
========================================= */
.breadcrumbs { width: 100%; max-width: 1000px; margin: 0 auto; padding: 15px 20px; font-size: 12px; color: #666; background-color: #fff; border-bottom: 1px solid #ddd; }
.breadcrumbs a { color: var(--orion-blue); text-decoration: none; }

/* =========================================
   4. ランディングページ（詳細）スタイル
========================================= */
.tour-lp-main { font-family: "Noto Sans JP", sans-serif; color: var(--lp-text); line-height: 1.8; }
.tour-lp-main img { max-width: 100%; height: auto; display: block; }
.mincho { font-family: 'Shippori Mincho', serif; font-weight: 700; }
.lp-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* ヒーローセクション */
.lp-hero { position: relative; width: 100%; height: 60vh; min-height: 400px; background: #222; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; color: #fff; }
.lp-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://www.orion-tour.co.jp/bustour/festival/img/yamagasa800x450-001.jpg'); background-size: cover; background-position: center; opacity: 0.6; }
.lp-hero-content { position: relative; z-index: 1; padding: 20px; width: 100%; }
.lp-hero-catch { font-size: 16px; color: var(--lp-accent); font-weight: bold; margin-bottom: 10px; letter-spacing: 0.1em; }
.lp-hero-title { font-size: clamp(24px, 5vw, 48px); line-height: 1.3; margin: 0 0 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

/* セクションタイトル */
.lp-section { padding: 60px 0; }
.lp-section-bg-dark { background-color: var(--lp-secondary); color: #fff; }
.lp-section-title { text-align: center; font-size: 28px; margin-bottom: 40px; color: var(--lp-secondary); position: relative; }
.lp-section-bg-dark .lp-section-title { color: #fff; }
.lp-section-title::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--lp-primary); margin: 15px auto 0; }

/* おすすめポイント */
.point-box { background: #fff; border: 2px solid var(--lp-primary); border-radius: 12px; padding: 30px; max-width: 800px; margin: -50px auto 40px; position: relative; z-index: 10; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.point-box-title { color: var(--lp-primary); font-size: 22px; text-align: center; margin-top: 0; margin-bottom: 20px; }
.point-list { display: grid; grid-template-columns: 1fr; gap: 12px; list-style: none; padding: 0; margin: 0; }
.point-list li { position: relative; padding-left: 30px; font-weight: bold; color: #444; font-size: 15px; }
/* ★修正点：チェックマークを黄色から視認性の高い赤に変更 */
.point-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--lp-primary); }

/* バスツアーのメリット */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
.benefit-card { background: #fff; border-radius: 12px; padding: 25px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-top: 4px solid var(--lp-primary); }
.benefit-icon { font-size: 40px; color: var(--lp-primary); margin-bottom: 15px; }
.benefit-card h3 { font-size: 18px; color: var(--lp-secondary); margin: 0 0 10px; }
.benefit-card p { font-size: 14px; color: #555; margin: 0; text-align: left; }

/* 写真横スライダー & 動画 */
.feature-block { margin-bottom: 60px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); max-width: 800px; margin-left: auto; margin-right: auto; }
.visual-header { padding: 30px 30px 10px 30px; }
.feature-title { font-size: 24px; color: var(--lp-primary); margin: 0; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.visual-area { padding: 10px 30px 0 30px; }
.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: 4 / 3; background-color: #000; border-radius: 8px; overflow: hidden; margin-top: 15px; }
.video-container iframe { width: 100%; height: 100%; border: none; }

.feature-content { padding: 25px 30px 40px 30px; }
.feature-subtitle { font-size: 19px; font-weight: bold; color: var(--lp-secondary); margin: 30px 0 15px; border-left: 5px solid var(--lp-primary); padding-left: 12px; background: #f9f9f9; padding-top: 5px; padding-bottom: 5px; }
.matsuri-desc-text { font-size: 15px; color: #444; text-align: justify; margin-bottom: 15px; line-height: 1.8;}

/* グルメ・名物情報 */
.gourmet-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
.gourmet-card { display: flex; align-items: flex-start; gap: 15px; background: #fffcf2; border-radius: 8px; padding: 15px; border: 1px solid #fde7a9; }
.gourmet-icon { width: 50px; height: 50px; background: var(--lp-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--lp-secondary); flex-shrink: 0; }
.gourmet-text h4 { margin: 0 0 5px; font-size: 16px; color: var(--lp-primary); }
.gourmet-text p { margin: 0; font-size: 13px; color: #555; }

/* スケジュール */
.timeline { position: relative; padding-left: 30px; margin-bottom: 40px; border-left: 4px solid var(--lp-primary); }
.tl-item { position: relative; margin-bottom: 30px; padding-left: 10px; }
.tl-item::before { content: ''; position: absolute; left: -46px; top: 0; width: 20px; height: 20px; background: #fff; border: 4px solid var(--lp-primary); border-radius: 50%; }
.tl-day { font-size: 20px; font-weight: bold; color: var(--lp-primary); margin-bottom: 10px; }
.tl-content { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); font-size: 15px; }
.meal-tag { display: inline-block; background: #eef2f7; color: #555; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-right: 5px; border: 1px solid #d1d9e6; }
.meal-on { background: #fff4e5; color: #d35400; border-color: #ffccbc; font-weight: bold; }

/* ★修正点：料金表の統一感と視認性向上 */
.lp-table { width: 100%; border-collapse: collapse; background: #fff; margin-bottom: 20px; }
.lp-table th, .lp-table td { border: 1px solid #ddd; padding: 15px; text-align: center; }
.lp-table th { background-color: var(--lp-secondary); color: #fff; width: 40%; font-size: 15px; }
.lp-table td { font-size: 22px; font-weight: bold; color: var(--lp-primary); }

/* 集合場所・マップ */
.map-section { background: #fff; border: 1px solid #ddd; border-radius: 12px; padding: 25px; margin-top: 20px; }
.map-wrapper { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 15px; }
.map-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0; }
.map-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: #4285F4; border: 2px solid #4285F4; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: bold; transition: 0.3s; margin-top: 15px; }
@media screen and (min-width: 768px) { .map-btn { display: none; } }

/* アクセス道順（ステップ） */
.access-steps { padding: 0; margin: 15px 0 20px; list-style: none; }
.access-steps li { position: relative; padding-left: 25px; margin-bottom: 10px; font-size: 14px; color: #444; }
.access-steps li::before { content: '\f101'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--lp-primary); }

/* 注意事項アコーディオン */
.attention-wrap { background: #fff; border-radius: 8px; }
.attention-details { margin-bottom: 10px; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.attention-summary { background: #f8fafc; padding: 15px 20px; font-weight: bold; cursor: pointer; list-style: none; position: relative; }
.attention-summary::-webkit-details-marker { display: none; }
.attention-summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; transition: transform 0.3s; color: #999; }
.attention-details[open] .attention-summary::after { transform: rotate(180deg); }
.attention-content { padding: 20px; font-size: 14px; color: #555; border-top: 1px solid #ddd; line-height: 1.6; }
.attention-content ul { padding-left: 20px; margin: 0; }
.attention-content li { margin-bottom: 8px; }

/* おすすめ人気特集 */
.other-features { max-width: 1000px; margin: 0 auto; padding: 0 20px 60px; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.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; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.feature-card img { width: 100%; height: 200px; object-fit: cover; }
.feature-text { padding: 15px; font-size: 15px; font-weight: bold; color: var(--primary-navy); text-align: center; line-height: 1.4; }

/* =========================================
   5. 追従型ボトムボタン
========================================= */
.fixed-bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 -2px 15px rgba(0,0,0,0.15); z-index: 9999; padding: 15px 20px; backdrop-filter: blur(8px); }
.fixed-bottom-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: center; }
.fixed-btn { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); color: #fff; font-size: 18px; font-weight: bold; padding: 15px 40px; border-radius: 50px; text-decoration: none; width: 100%; max-width: 400px; text-align: center; box-shadow: 0 5px 15px rgba(230,0,18,0.3); transition: all 0.3s ease;}
.fixed-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(230,0,18,0.4); color: #fff;}

/* =========================================
   6. フッター
========================================= */
.global-footer { background: var(--orion-blue); color: #fff; padding: 40px 20px 20px; font-size: 0.8rem; text-align: center;}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-links { list-style: none; padding: 0; margin: 0 0 25px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 30px; }
.footer-links a { color: #fff; text-decoration: none; opacity: 0.8; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.company-info { opacity: 0.85; margin: 0 0 10px; font-size: 0.75rem; line-height: 1.5; }
.copyright { opacity: 0.6; margin: 0; font-size: 0.7rem; }

/* =========================================
   7. レスポンシブ用メディアクエリ
========================================= */
@media screen and (min-width: 768px) {
    .point-list { grid-template-columns: 1fr 1fr; }
    .benefit-grid { grid-template-columns: 1fr 1fr 1fr; }
    .gourmet-grid { grid-template-columns: 1fr 1fr; }
    .horizontal-slider .visual-box { flex: 0 0 47%; }
    .timeline-wrapper { display: flex; gap: 40px; }
    .timeline-wrapper > div { width: 50%; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
}