@charset "UTF-8";

/* ============================================
   スクロールボタン（右下固定）
   ============================================ */
#scroll-btns {
    position: fixed;
    bottom: 28px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 300;
}

#scroll-btns button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(31, 41, 108, 0.6);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

#scroll-btns button.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#scroll-btns button:hover {
    background: rgba(7, 126, 201, 0.82);
    transform: translateY(-2px);
}

/* ============================================
   グローバルナビゲーション
   ============================================ */
#global-nav {
    background-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 90;
}

#global-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

#global-nav li a {
    display: block;
    color: rgba(255,255,255,0.8);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

#global-nav li a:hover,
#global-nav li a.active {
    color: #fff;
    background-color: rgba(255,255,255,0.15);
}

#global-nav li a.active {
    border-bottom: 3px solid var(--color-gold);
}

/* ============================================
   フロアマップセクション（展示エリアページ）
   ============================================ */
.floor-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.floor-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 4px solid var(--color-primary);
}

.floor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 14px;
}

.floor-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.floor-spots {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #444;
    line-height: 2.1;
}

.floor-spots li::before {
    content: "● ";
    color: var(--color-accent);
    font-size: 9px;
    vertical-align: middle;
}

.venue-section {
    border-top: 2px solid #e0e4ee;
    padding-top: 48px;
}

.venue-section-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 28px;
    text-align: center;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.venue-card {
    background: #f0f4ff;
    border-radius: var(--border-radius);
    padding: 22px 20px;
    border-left: 4px solid var(--color-accent);
}

.venue-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.venue-text {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

.venue-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.venue-btn {
    font-size: 18px;
    padding: 20px 32px;
}

/* ============================================
   モデルコースセクション（展示エリアページ）
   ============================================ */
.course-label {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}

.course-steps {
    display: flex;
    flex-direction: column;
}

.course-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e0e4ee;
}

.course-step:first-child {
    padding-top: 0;
}

.course-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-num {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.course-info-box {
    background: linear-gradient(160deg, #e0f5ee, #d0ede4);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    text-align: center;
    position: sticky;
    top: 72px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.course-info-box--couple {
    background: linear-gradient(160deg, #eaecf8, #d8dcf2);
}

.course-info-box--friends {
    background: linear-gradient(160deg, #fff8e1, #ffeec0);
}

.course-info-icon {
    font-size: 52px;
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.course-info-title {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(31,41,108,0.12);
}

.course-info-list {
    text-align: left;
    font-size: 14px;
    color: #444;
    line-height: 2.2;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.course-info-list li::before {
    content: "✓ ";
    color: var(--color-accent);
    font-weight: bold;
}

.course-info-btn {
    font-size: 15px;
    padding: 14px 20px;
    display: inline-block;
    margin-top: 24px;
}

/* ============================================
   スクロールマージン（スティッキーナビ対応）
   ============================================ */
#floormap,
#zones,
#annual-pass,
#seasonal,
#map,
#course-family,
#course-couple,
#course-friends,
#schedule,
#admission,
#group,
#transport,
#parking,
#shop,
#restaurant {
    scroll-margin-top: 52px;
}

/* ============================================
   パンくずリスト
   ============================================ */
.breadcrumb {
    background-color: #f5f7fa;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #e0e4ee;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #999;
}

.breadcrumb li + li::before {
    content: "›";
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb a {
    color: var(--color-primary);
    transition: all 0.2s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   ページヒーロー
   ============================================ */
.page-hero {
    position: relative;
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,41,108,0.78) 0%, rgba(7,126,201,0.55) 100%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #fff;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ============================================
   セクション共通
   ============================================ */
.page-section {
    padding: 80px 0;
}

.page-section-alt {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.section-lead {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-muted);
    margin-top: 20px;
    margin-bottom: 60px;
    line-height: 1.9;
}

/* ============================================
   カード
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.card-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.card-body {
    padding: 20px;
}

.card-label {
    font-size: 11px;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* ============================================
   タグ
   ============================================ */
.tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 6px;
    margin-bottom: 6px;
}

.tag-blue   { background-color: #e0eaf8; color: var(--color-primary); }
.tag-cyan   { background-color: #e0f4fa; color: #0277bd; }
.tag-green  { background-color: #e0f5ee; color: #0a7d55; }
.tag-orange { background-color: #fff3e0; color: #e65100; }
.tag-pink   { background-color: #fce4ec; color: #c2185b; }

/* ============================================
   ゾーンレイアウト（展示エリア）
   ============================================ */
.zone {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid #e0e4ee;
}

.zone:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zone:nth-child(even) {
    flex-direction: row-reverse;
}

.zone-img {
    flex: 0 0 460px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.zone-img-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.zone-body {
    flex: 1;
    padding-top: 16px;
}

.zone-number {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.zone-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.zone-text {
    font-size: 15px;
    color: #444;
    line-height: 2.0;
    margin-bottom: 24px;
}

.zone-link {
    display: inline-block;
    color: var(--color-accent);
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s;
}

.zone-link:hover {
    color: var(--color-primary);
}

/* ============================================
   スケジュールテーブル
   ============================================ */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.schedule-table th {
    background-color: var(--color-primary);
    color: #fff;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
}

.schedule-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8ecf4;
    text-align: center;
    vertical-align: middle;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:nth-child(even) td {
    background-color: #f9f9fc;
}

.schedule-table tbody tr:hover td {
    background-color: #f0f4ff;
}

.show-name {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 16px;
}

.show-time {
    font-weight: bold;
    color: var(--color-accent);
}

/* ============================================
   ニュースリスト
   ============================================ */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e4ee;
    transition: all 0.2s;
}

.news-item:hover {
    padding-left: 6px;
}

.news-date {
    flex: 0 0 110px;
    font-size: 13px;
    color: #888;
    font-weight: bold;
    padding-top: 4px;
}

.news-body {
    flex: 1;
}

.news-title {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: underline;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.news-title:hover {
    color: var(--color-gold);
}

.news-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   会社概要テーブル
   ============================================ */
.about-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.about-table th,
.about-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e0e4ee;
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.about-table th {
    width: 200px;
    color: var(--color-primary);
    font-weight: bold;
    background-color: #f0f4ff;
    white-space: nowrap;
}

/* ============================================
   チケット料金ページ
   ============================================ */
.ticket-box {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 36px;
    border-top: 4px solid var(--color-accent);
    transition: all 0.3s;
}

.ticket-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.ticket-box-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e4ee;
}

.ticket-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #333;
}

.ticket-price-row:last-child {
    border-bottom: none;
}

.ticket-price {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-accent);
}

.ticket-note {
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    margin-top: 32px;
    padding: 20px;
    background: #f5f7fa;
    border-radius: var(--border-radius);
}

.ticket-note ul {
    padding-left: 20px;
}

.ticket-note li {
    list-style: disc;
    margin-bottom: 6px;
}

/* ============================================
   アクセス（交通手段カード）
   ============================================ */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.transport-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 4px solid var(--color-primary);
}

.transport-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.transport-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.transport-text {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    text-align: left;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media all and (max-width: 692px) {
    #global-nav {
        display: none;
    }

    .page-hero {
        padding: 60px 16px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .page-section,
    .page-section-alt {
        padding: 50px 16px;
    }

    .section-lead {
        margin-bottom: 36px;
    }

    .card-grid,
    .card-grid-2,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .zone {
        flex-direction: column !important;
        gap: 24px;
    }

    .zone-img {
        flex: none;
        width: 100%;
    }

    .zone-img-placeholder {
        height: 220px;
        font-size: 56px;
    }

    .zone-title {
        font-size: 24px;
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .about-table th {
        width: 120px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-info-box {
        position: static;
    }

    .course-info-btn {
        width: 100%;
        text-align: center;
    }

    .floor-layout,
    .venue-grid {
        grid-template-columns: 1fr;
    }
}
