/* ==========================================================================
   1. RESET & BASE CONFIGURATION
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F9F6F0; 
    color: #2B2523;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden; 
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-only { display: none; }

/* ==========================================================================
   2. HEADER, HAMBURGER & DRAWER MENU
   ========================================================================== */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    height: 36px;
    width: auto;
}

.header-right-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 非ボタン：クリック不可の純粋なテキストラベル。落ち着いた黒でフラットに */
.static-label-badge {
    background-color: #111822; 
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: inline-block;
    white-space: nowrap;
}

.badge-flat-gold {
    background-color: #4A2E2B !important;
}

/* ハンバーガーメニューボタン */
.menu-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 106;
}

.menu-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) { top: 0; }
.menu-trigger span:nth-child(2) { top: 10px; }
.menu-trigger span:nth-child(3) { top: 20px; }

.menu-trigger.is-active span:nth-child(1) { transform: translateY(10px) rotate(-45deg); }
.menu-trigger.is-active span:nth-child(2) { opacity: 0; }
.menu-trigger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(45deg); }

.drawer-menu {
    position: fixed;
    top: 0;
    right: -105%;
    width: 88%; 
    max-width: 340px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 105;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden; 
    overscroll-behavior-y: contain; 
}

.drawer-menu.is-open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #EEEEEE;
    flex-shrink: 0;
}

.drawer-logo img {
    height: 32px;
    width: auto;
}

.menu-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666666;
    cursor: pointer;
    padding: 4px;
}

.drawer-nav-list {
    list-style: none;
}

.drawer-nav-list li {
    border-bottom: 1px solid #EEEEEE;
}

.drawer-nav-list a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #333333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.drawer-nav-list a span {
    white-space: nowrap; 
}

.drawer-nav-list a:hover {
    background-color: #F9F6F0;
    color: #E65F2B;
}

.nav-icon {
    font-size: 1.25rem;
    color: #0044CC; 
    width: 30px;
    text-align: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.drawer-footer-buttons {
    margin-top: auto;
    padding: 24px 16px;
    background-color: #F8F9FA;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    flex-shrink: 0;
}

.drawer-sub-btn {
    flex: 0 0 calc(50% - 5px);
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    color: #333333;
    text-decoration: none;
    text-align: center;
    padding: 10px 4px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.drawer-sub-btn:hover {
    background-color: #EEEEEE;
}

.drawer-sub-btn i {
    color: #666666;
}

.drawer-sub-btn.full-width {
    flex: 0 0 100%;
}

.drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* パンくずリスト */
.breadcrumb-nav {
    background-color: #F0EDE5;
    padding: 10px 0;
    font-size: 0.8rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.breadcrumb-list li+li::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #999;
    margin-right: 8px;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
    color: #E65F2B;
}

.breadcrumb-list li[aria-current="page"] {
    color: #4A2E2B;
    font-weight: 700;
}

/* ==========================================================================
   3. HERO SECTION (FIRST VIEW)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.orion-tour.co.jp/bustour/imoni/img/imoni-1200-001.jpg') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: slowZoomOut 12s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slowZoomOut {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(26,37,54,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

/* 非ボタン：オレンジだがフラットにしてボタン感を排除 */
.hero-static-tag {
    background-color: #4A2E2B;
    color: #FFFFFF;
    font-weight: 700;
    padding: 6px 14px;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-main-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.title-sub {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #FFD2BD;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 35px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    max-width: 650px;
}

/* 【王道CTAボタンデザイン】グラデーション＋明確な立体影で一目瞭然に */
.btn-primary-cta {
    background: linear-gradient(135deg, #E65F2B 0%, #FF4500 100%) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(230, 95, 43, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 35px rgba(230, 95, 43, 0.7) !important;
}

/* ==========================================================================
   おすすめターゲット＆魅力ポイントサマリー領域のスタイル
   ========================================================================== */
.target-point-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-box-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE5DC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74,46,43,0.03);
}

/* 非ボタン：タイトルの背景を深い黒にすることで「触れない装飾」であることを強調 */
.card-header-label.dark-label {
    background-color: #111822;
    color: #FFFFFF;
    padding: 18px 24px;
}

.card-header-label h3 {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-inner-content {
    padding: 24px;
}

.summary-check-list {
    list-style: none;
}

.summary-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
}

.summary-check-list li:last-child {
    margin-bottom: 0;
}

.summary-check-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.1rem;
}

.text-orange {
    color: #E65F2B !important; 
}

/* ==========================================================================
   4. LAYOUT COMPONENTS & FEATURE STRIP
   ========================================================================== */
.quick-features-bar {
    background-color: #1A2536; 
    color: #FFFFFF;
    padding: 35px 0;
}

.features-flex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-card i {
    font-size: 2rem;
    display: block;
}

.icon-theme { color: #FF7E47; }

.feature-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
}

.content-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.bg-light-cream {
    background-color: #F9F6F0;
}

.section-header-center {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.theater-section-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    color: #4A2E2B;
    margin-bottom: 15px;
}

.theater-section-lead {
    color: #444444;
    font-size: 1.05rem;
}

.theater-video-container {
    max-width: 1000px; 
    margin: 0 auto 45px;
    background-color: #F9F6F0;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.theater-video-container.inverted-theme {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.responsive-video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.responsive-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9; 
    border: none;
    display: block;
}

.caption-text {
    font-size: 0.85rem;
    color: #666666;
    text-align: center;
    margin-top: 14px;
    font-weight: 500;
}

.caption-text.text-light {
    color: rgba(255, 255, 255, 0.8);
}

.stat-boxes-theater-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.yamadera-history-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: left;
}

.history-card-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.history-card-item h4 {
    font-size: 1.15rem;
    color: #D4AF37; 
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-muted-gold { color: #D4AF37; }
.text-muted-gold { color: #D4AF37 !important; }

.access-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.access-info-card {
    background-color: #F9F6F0;
    border: 1px solid #EAE5DC;
    padding: 35px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-spot-title {
    font-size: 1.4rem;
    color: #4A2E2B;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-spot-title i {
    color: #4A2E2B;
}

.access-step-list {
    list-style: none;
}

.access-step-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
}

.access-step-list li:last-child {
    margin-bottom: 0;
}

.step-num {
    background-color: #4A2E2B;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.access-step-list p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
}

.access-step-list strong {
    color: #4A2E2B;
    font-weight: 700;
}

.access-bonus-notice {
    background-color: #FFFFFF;
    border-left: 4px solid #1A2536; 
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin-top: 24px;
}

.access-bonus-notice p {
    font-size: 0.88rem;
    color: #444;
    font-weight: 500;
    line-height: 1.5;
}

.access-bonus-notice i {
    color: #1A2536;
    margin-right: 4px;
}

.access-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #EAE5DC;
    min-height: 380px;
}

/* RECOMMEND (おすすめ特集) カードデザイン */
.recommend-cards-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.recommend-tour-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE5DC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recommend-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(74,46,43,0.08);
}

.rec-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 非ボタン：バッジは淡いグレーに統一しクリックを誘発させない */
.rec-static-badge {
    background-color: #EEEEEE;
    color: #555555;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 14px;
}

.rec-card-title {
    font-size: 1.1rem;
    color: #4A2E2B;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 3.3rem; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-card-text {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; 
}

/* リンクボタンとの差別化：王道のテキストリンクデザイン（下線付き・ホバー変化） */
.rec-card-link {
    color: #0044CC;
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, text-decoration 0.2s;
}

.rec-card-link:hover {
    color: #E65F2B;
    text-decoration: none;
}

.rec-card-link i {
    font-size: 0.8rem;
}

.media-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-category {
    color: #4A2E2B;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}

.center-text { text-align: center; }

.split-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.4rem;
    line-height: 1.4;
    color: #4A2E2B;
    margin-bottom: 20px;
}

.split-desc {
    color: #444444;
    margin-bottom: 20px;
}

.stat-box {
    background-color: #F9F6F0;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 5px solid #4A2E2B;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #4A2E2B;
    line-height: 1.2;
}

.stat-unit { font-size: 1rem; margin-left: 4px; font-weight: 700; }
.stat-label { font-size: 0.8rem; color: #666; font-weight: 700; margin-top: 4px;}

/* ==========================================================================
   5. YAMADERA & ZAO SPECIAL SECTIONS
   ========================================================================== */
.yamadera-parallax-section {
    padding: 100px 0;
    background: linear-gradient(rgba(74,46,43,0.85), rgba(74,46,43,0.9)), url('https://www.orion-tour.co.jp/bustour/imoni/img/imoni-640x480-002.jpg') center/cover no-repeat;
    color: #FFFFFF;
}

.center-content-box {
    max-width: 800px;
    margin: 0 auto 10px;
    text-align: center;
}

.parallax-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.emo-phrase {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: 600;
}

.parallax-desc {
    opacity: 0.9;
    font-size: 1.05rem;
}

.image-triple-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.gallery-item-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.image-quad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.image-quad-grid img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.reverse-layout {
    grid-template-columns: 1fr 1fr;
}
.reverse-layout .text-block { order: 2; }
.reverse-layout .visual-block { order: 1; }

/* ==========================================================================
   6. TIMELINE (2日間の詳細スケジュールデザイン)
   ========================================================================== */
.main-section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    text-align: center;
    color: #4A2E2B;
    margin-bottom: 40px;
}

.vertical-timeline-wrap {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding-left: 30px;
}

.vertical-timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 6px; width: 2px; height: 100%;
    background-color: #4A2E2B;
}

.day-divider-flat-tag {
    background-color: #111822;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 4px;
    display: block;
    margin-bottom: 30px;
    position: relative;
    left: -30px;
    letter-spacing: 0.05em;
    box-shadow: none;
}

.tag-dark-brown { background-color: #4A2E2B; margin-top: 30px; }

.timeline-node {
    position: relative;
    margin-bottom: 35px;
}

.timeline-node::before {
    content: '';
    position: absolute;
    top: 6px; left: -28px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 3px solid #4A2E2B;
    z-index: 2;
}

.node-time {
    font-weight: 700;
    color: #4A2E2B;
    font-size: 1.1rem;
}

.node-body {
    background-color: #FFFFFF;
    border: 1px solid #EAE5DC;
    padding: 24px;
    border-radius: 8px;
    margin-top: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.node-spot {
    font-size: 1.2rem;
    color: #4A2E2B;
    margin-bottom: 8px;
    font-weight: 700;
}

.node-text {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.7;
}

/* ==========================================================================
   7. BOOKING CTA & PRICING
   ========================================================================== */
.booking-cta-section {
    background-color: #1A2536;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.cta-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    margin: 15px 0;
}

.cta-subtext {
    opacity: 0.85;
    margin-bottom: 30px;
}

.price-summary-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 650px;
    margin: 0 auto 35px;
    padding: 35px 20px;
}

.price-card-title {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.price-display-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FF7E47; 
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.price-range-wave {
    font-size: 2.2rem;
    color: #FFFFFF;
    font-weight: 500;
    padding: 0 4px;
}

.room-capacity-prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed rgba(255,255,255,0.15);
}

.capacity-item {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.capacity-item strong { color: #FF7E47; }
.center-btn-wrap { margin-bottom: 12px; }
.btn-primary-cta.size-large { padding: 22px 55px; font-size: 1.3rem; }
.system-link-notice { font-size: 0.8rem; opacity: 0.5; }

/* ==========================================================================
   8. SPECIFICATION TABLE & WARNINGS
   ========================================================================== */
.terms-info-section {
    padding: 70px 0;
    background-color: #FFFFFF;
}

.info-table-title {
    font-size: 1.4rem;
    color: #4A2E2B;
    border-bottom: 2px solid #4A2E2B;
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.responsive-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-spec-table th, .responsive-spec-table td {
    padding: 16px;
    border-bottom: 1px solid #EAE5DC;
    text-align: left;
}

.responsive-spec-table th {
    background-color: #F9F6F0;
    color: #4A2E2B;
    width: 25%;
    font-weight: 700;
}

.attention-warning-box {
    background-color: #FFF5F2;
    border: 1px solid #FFDDD1;
    padding: 24px;
    border-radius: 8px;
    margin-top: 35px;
}

.attention-warning-box h4 {
    color: #4A2E2B;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.warning-bullet-list {
    padding-left: 20px;
    font-size: 0.85rem;
    color: #555555;
}

.warning-bullet-list li {
    margin-bottom: 8px;
}

/* ==========================================================================
   9. SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: #111822;
    color: rgba(255,255,255,0.6);
    padding: 50px 0;
    text-align: center;
}

.footer-logo-wrap img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-bottom: 24px;
}

.footer-links-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.footer-links-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-nav a:hover {
    color: #FF7E47;
    text-decoration: underline;
}

.footer-corporate-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 700px;
    margin: 0 auto 24px;
    padding-top: 24px;
}

.corp-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.corp-license {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer-copy { 
    font-size: 0.75rem; 
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

/* ==========================================================================
   10. MOBILE STICKY BAR & INTERSECTION OBSERVER ANIMATION
   ========================================================================== */
.mobile-sticky-action-bar {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: rgba(26, 37, 54, 0.96);
    padding: 12px 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    backdrop-filter: blur(8px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-sticky-action-bar.is-active {
    transform: translateY(0);
}

.sticky-price-info { display: flex; flex-direction: column; }
.sticky-label { color: #BBB; font-size: 0.7rem; font-weight: 700; }

.sticky-price { 
    color: #FF7E47; 
    font-size: 1.15rem; 
    font-weight: 900; 
}

.price-separator {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 400;
    padding: 0 4px;
}

.sticky-cta-btn {
    background: linear-gradient(135deg, #E65F2B 0%, #FF4500 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 95, 43, 0.3);
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   11. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 991px) {
    .media-split-grid, .reverse-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .reverse-layout .text-block { order: 1; }
    .reverse-layout .visual-block { order: 2; }
    .image-triple-gallery { grid-template-columns: 1fr; }
    
    .theater-video-container { padding: 12px; }
    .stat-boxes-theater-grid { grid-template-columns: 1fr 1fr; }
    
    .yamadera-history-panel { grid-template-columns: 1fr; gap: 16px; }
    
    .access-split-layout { grid-template-columns: 1fr; gap: 24px; }
    .access-map-wrapper { min-height: 300px; }
    
    .recommend-cards-carousel { grid-template-columns: 1fr 1fr; gap: 16px; }
    .target-point-wrapper { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .sp-only { display: block; }
    .header-status { display: none; } 
    
    .hero-section { height: auto; padding: 100px 0 60px; }
    .hero-main-title { font-size: 1.9rem; }
    .title-sub { font-size: 1.1rem; }
    .hero-description { font-size: 0.95rem; }
    .btn-primary-cta { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }
    
    .price-value { font-size: 2.2rem; }
    .price-range-wave { font-size: 1.5rem; }
    
    .theater-section-heading { font-size: 1.7rem; }
    .theater-section-lead { font-size: 0.95rem; text-align: left; }
    
    .features-flex-container {
        display: flex;
        overflow-x: auto;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
        gap: 12px;
    }
    .feature-card {
        flex: 0 0 65%;
        scroll-snap-align: center;
        background: rgba(255,255,255,0.04);
        padding: 20px 15px;
        border-radius: 8px;
    }
    .feature-icon-wrap {
        margin-bottom: 8px;
    }
    .feature-text {
        font-size: 0.95rem;
    }
    
    .split-heading, .parallax-heading, .main-section-title, .cta-heading { font-size: 1.6rem; }
    .emo-phrase { font-size: 1.35rem; }
    
    .stat-boxes-theater-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-box { padding: 12px; }
    .stat-number { font-size: 1.5rem; }
    
    .access-info-card { padding: 20px; }
    .access-spot-title { font-size: 1.2rem; margin-bottom: 16px; }
    .access-step-list p { font-size: 0.9rem; }
    
    .recommend-cards-carousel {
        display: flex;
        overflow-x: auto;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        gap: 16px;
    }
    
    .recommend-tour-card {
        flex: 0 0 85%; 
        scroll-snap-align: center;
    }
    
    .rec-card-title {
        min-height: auto; 
    }
    
    .footer-links-nav { gap: 10px 16px; }
    .corp-license { font-size: 0.72rem; }
    
    .room-capacity-prices { grid-template-columns: 1fr; }
    
    .responsive-spec-table th, .responsive-spec-table td {
        display: block;
        width: 100%;
    }
    .responsive-spec-table th {
        border-bottom: none;
        padding-bottom: 4px;
        padding-top: 12px;
    }
    .responsive-spec-table td {
        padding-top: 4px;
        padding-bottom: 12px;
    }
    
    body { padding-bottom: 70px; } 
}