
        .section-title {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 10px;
            color: #111;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 12px auto 0;
        }

        .section-lead {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            font-size: 0.95rem;
        }


        /* --- 2. 【追加案4】限定キャンペーンバナー --- */
        .campaign-banner {
            background-color: #fff0f0;
            border: 2px dashed #ef4444;
            border-radius: 8px;
            padding: 20px;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .campaign-info h3 {
            margin: 0 0 5px 0;
            color: #ef4444;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .campaign-info p {
            margin: 0;
            font-size: 0.9rem;
            color: #444;
        }
        .coupon-code {
            background-color: #fff;
            padding: 4px 8px;
            border: 1px solid #fca5a5;
            font-weight: bold;
            color: #b91c1c;
            border-radius: 4px;
        }

        /* --- 3. ツアーカタログ（グリッドスタイル） --- 
        .tour-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .tour-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .tour-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .media-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            z-index: 2;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .badge-tv { color: #ef4444; border: 1px solid #fca5a5; }
        .badge-mag { color: #3b82f6; border: 1px solid #93c5fd; }
        
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background-color: #cbd5e1;
        }
        .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .media-meta {
            font-size: 0.75rem;
            color: #777;
            margin-bottom: 6px;
        }
        .tour-title {
            font-size: 1.15rem;
            margin: 0 0 10px 0;
            font-weight: bold;
        }
        .tour-desc {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .tour-spec {
            border-top: 1px solid #f1f5f9;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            font-weight: bold;
        }
        .tour-price { color: var(--primary-color); font-size: 1rem; }
        .btn-booking {
            display: block;
            text-align: center;
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .btn-booking:hover { background-color: var(--primary-hover); }
*/
        /* --- 4. 【追加案1】ロケ・取材の舞台裏 --- */
        .behind-section { background-color: #fff; }
        .behind-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
        }
        @media (max-width: 600px) { .behind-grid { grid-template-columns: 1fr; } }
        .behind-card {
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            gap: 15px;
        }
        .behind-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #cbd5e1;
            flex-shrink: 0;
            object-fit: cover;
        }
        .behind-content h4 { margin: 0 0 5px 0; font-size: 1rem; color: #111; }
        .behind-tag { font-size: 0.75rem; color: var(--accent-blue); font-weight: bold; display: block; margin-bottom: 5px; }
        .behind-text { margin: 0; font-size: 0.85rem; color: #444; }

        /* --- 5. 【追加案2】安心クオリティ --- */
        .quality-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .quality-box {
            flex: 1;
            min-width: 280px;
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            border-top: 4px solid var(--accent-blue);
        }
        .quality-box h4 { margin: 0 0 10px 0; font-size: 1.1rem; color: var(--accent-blue); }
        .quality-box p { margin: 0; font-size: 0.85rem; color: #555; }

        /* --- 6. 【追加案3】お客様の声 --- */
        .voice-section { background-color: #fff; }
        .voice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .voice-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            background-color: var(--bg-light);
        }
        .voice-header { display: flex; justify-content: space-between; font-size: 0.8rem; color: #666; margin-bottom: 10px; }
        .voice-rating { color: #f59e0b; font-weight: bold; }
        .voice-title { font-weight: bold; font-size: 0.95rem; margin-bottom: 8px; }
        .voice-text { margin: 0; font-size: 0.85rem; color: #444; }

        /* --- 7. 【追加案5】よくあるご質問（FAQ） --- */
        .faq-wrapper { max-width: 800px; margin: 0 auto; }
        details {
            background: #fff;
            padding: 15px 20px;
            border-radius: 6px;
            margin-bottom: 12px;
            border: 1px solid var(--border-color);
        }
        summary { font-weight: bold; cursor: pointer; outline: none; font-size: 0.95rem; }
        details[open] summary { margin-bottom: 10px; color: var(--primary-color); }
        details p { margin: 0; font-size: 0.85rem; color: #555; padding-left: 15px; border-left: 2px solid var(--primary-color); }

        /* --- 8. メディア関係者様窓口 --- */
        .media-contact {
            background: linear-gradient(135deg, #004488 0%, var(--accent-blue) 100%);
            color: #fff;
            text-align: center;
            border-bottom: none;
        }
        .media-contact .section-title { color: #fff; }
        .media-contact .section-title::after { background-color: #fff; }
        .media-contact p { color: #e2e8f0; max-width: 600px; margin: 0 auto 30px; font-size: 0.9rem; }
        .btn-contact {
            display: inline-block;
            background-color: #fff;
            color: var(--accent-blue);
            text-decoration: none;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: bold;
            transition: opacity 0.2s;
        }
        .btn-contact:hover { opacity: 0.9; }

/* =========================================
   1. メディア関係者向け 導線ボタン用CSS
========================================= */
.media-btn-wrapper { text-align: center; margin: 40px 0; }
.btn-media-contact {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    max-width: 90%; width: 400px;
}
.btn-media-contact:hover { background-color: #1a252f; transform: translateY(-2px); color: #fff; }
.btn-badge { display: block; font-size: 12px; color: #e67e22; margin-bottom: 5px; font-weight: bold; }
.btn-text { display: block; font-size: 16px; font-weight: bold; }
