/* ===================================================================
   Hotel Summary Page Dedicated Styles (code_artifact.html 準拠)
   2026.08.21
=================================================================== */
:root {
    --primary-navy: #1a2b4c;
    --accent-gold: #d4af37;
    --light-blue: #e3f2fd;
}

/* ヒーローセクション */
.hero-section {
    /* 上部をやや濃いめ(45%)、下部を明るめ(30%)にした自然なグラデーション */
    background: linear-gradient(180deg, rgba(20, 35, 65, 0.45) 0%, rgba(20, 35, 65, 0.3) 100%), 
                url('https://www.lovedisney.net/images/hero_hotels.png') center/cover no-repeat;
    color: #ffffff;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
}

/* タイトル文字：影を付けて写真の上でもくっきり表示 */
.hero-section h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

/* サブテキスト */
.hero-section .lead {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-size: 1.05rem;
}

/* セクションタイトル */
.section-title {
    color: var(--primary-navy);
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

/* ホテルブロック */
.hotel-block {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    scroll-margin-top: 80px; /* 固定ヘッダー潜り込み防止 */
}
.hotel-img-wrapper {
    height: 100%;
    min-height: 250px;
    background-color: #f5f5f5;
}
.hotel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hotel-title {
    color: var(--primary-navy);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

/* ホテルバッジ：デフォルトはゴールド */
.hotel-type-badge {
    background-color: var(--accent-gold);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}

/* 記事リンクリスト */
.article-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.article-list li {
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.article-list a {
    color: #2c3e50;
    text-decoration: none !important; /* 通常時の下線を無効化 */
    display: inline-block;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.article-list a:hover {
    color: #0d6efd; /* テキストカラーのみ青色に変化 */
    text-decoration: none !important; /* ホバー時の下線も完全に無効化 */
}

/* アイコン：ホバー時も下線の影響を受けず安定して表示 */
.article-list a::before {
    content: "\f0da"; /* Font Awesome 6 Free: caret-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--accent-gold);
    vertical-align: middle;
}

/* 目次リンク */
.toc-link {
    display: block;
    padding: 0.6rem 0;
    color: var(--primary-navy);
    text-decoration: none;
    border-bottom: 1px dashed #e3e3e3;
    transition: all 0.2s;
    font-weight: 500;
}
.toc-link:last-child {
    border-bottom: none;
}
.toc-link:hover {
    color: #0d6efd;
    padding-left: 0.5rem;
}
.toc-link i {
    color: #adb5bd;
    font-size: 0.9em;
}

/* レコメンドボックス */
.recommend-box {
    background-color: #ffffff;
    border-left: 5px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===================================================================
   クイック目次ナビゲーション（落ち着いたモノトーン・ミニマル仕様）
=================================================================== */
.hotel-nav-container {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    border-color: #e2e8f0 !important;
}

/* ボタンカード本体：gapと左右余白を最適化 */
.hotel-toc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.65rem 1rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1a2b4c;
    text-decoration: none;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

/* ホテル名テキスト：改行を防ぎつつバランス良く配置 */
.hotel-toc-btn .toc-name {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右側アローアイコン：押し出されないよう固定幅化 */
.hotel-toc-btn .toc-arrow {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* ホバー＆タップ時 */
.hotel-toc-btn:hover,
.hotel-toc-btn:active {
    background-color: #ffffff;
    border-color: #cbd5e1;
    color: #1a2b4c;
    box-shadow: 0 2px 8px rgba(26, 43, 76, 0.06);
}

.hotel-toc-btn:active {
    transform: scale(0.98);
}

.hotel-toc-btn:hover .toc-arrow,
.hotel-toc-btn:active .toc-arrow {
    transform: translateY(2px);
    color: #1a2b4c;
}

/* スマートフォン表示調整（幅576px未満） */
@media (max-width: 576px) {
    .hotel-toc-btn {
        padding: 0.55rem 0.75rem;
        min-height: 46px;
        gap: 0.35rem;
    }
    .hotel-toc-btn .toc-name {
        font-size: 0.8rem;
    }
}

/* ページ最上部へ戻るボタン */
.page-top-wrapper {
    position: fixed;
    right: 60px;
    bottom: 85px; 
    z-index: 1060;
    transition: opacity 0.3s;
}

.btn-scroll-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--disney-gold);
    color: #fff !important;
    border-radius: 50%; 
    text-decoration: none !important;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    border: none;
    outline: none;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-scroll-top:hover {
    background-color:var(--disney-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-scroll-top:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
    .page-top-wrapper {
        right: 15px;
        bottom: 140px;
    }
    .btn-scroll-top {
        width: 46px;
        height: 46px;
    }
}

/* ===================================================================
   宿泊予約・プランリンク（カラーアウトライン仕様）
=================================================================== */
.hotel-ota-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.02em;
}

.hotel-ota-label i {
    color: #10b981;
}

/* OTAボタンスタイル本体（1.5pxのカラーボーダー） */
.ota-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    padding: 0 0.85rem;
    background-color: #ffffff;
    border: 1.5px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

/* サイト名テキスト */
.ota-btn .ota-name {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

/* 右端矢印アイコン */
.ota-btn .ota-arrow {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

/* 各社ブランドカラー（ボーダー＆テキスト） */
.ota-rakuten {
    border-color: #bf0000;
    color: #bf0000;
}
.ota-rakuten .ota-arrow { color: #bf0000; }

.ota-ikyu {
    border-color: #00234b;
    color: #00234b;
}
.ota-ikyu .ota-arrow { color: #00234b; }

.ota-jalan {
    border-color: #ff5a00;
    color: #e65100;
}
.ota-jalan .ota-arrow { color: #e65100; }

.ota-yahoo {
    border-color: #ff0033;
    color: #ff0033;
}
.ota-yahoo .ota-arrow { color: #ff0033; }

/* ホバー＆タップ時：各ブランド色に反転 */
.ota-rakuten:hover,
.ota-rakuten:active {
    background-color: #bf0000;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(191, 0, 0, 0.25);
}

.ota-ikyu:hover,
.ota-ikyu:active {
    background-color: #00234b;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 35, 75, 0.25);
}

.ota-jalan:hover,
.ota-jalan:active {
    background-color: #ff5a00;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(255, 90, 0, 0.25);
}

.ota-yahoo:hover,
.ota-yahoo:active {
    background-color: #ff0033;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(255, 0, 51, 0.25);
}

.ota-btn:hover .ota-arrow,
.ota-btn:active .ota-arrow {
    color: #ffffff;
    transform: translateX(2px);
}

.ota-btn:active {
    transform: scale(0.98);
}

/* スマホ表示（幅576px未満） */
@media (max-width: 576px) {
    .ota-btn {
        height: 40px;
        padding: 0 0.65rem;
    }
    .ota-btn .ota-name {
        font-size: 0.78rem;
    }
}