       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

/*
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(180deg, #00183b6b 0%, #011a28ff 100%);
            /* 上下の固定バー分の余白を確保 
            padding-top: 110px;
            padding-bottom: 80px;
        }
*/

/* ========================================
   Body 共通スタイル（一括指定）
   ======================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding-top: 150px;
    padding-bottom: 80px;
    margin: 0;
}



/* ヘッダー */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;  /* 50pxに変更 */
    padding:8px;
    background: var(--harf-dark, #111111);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 999;
}


        /* 上部固定キーワードバー（PC・モバイル共通） */
        .top-keyword-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: black;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 0 0;
            border-bottom: 1px solid #e74c3c;
        }

/* キーワードバーの位置調整 */
.top-keyword-bar {
    position: fixed;
    top: 50px;  /* ヘッダーの高さ(50px)分下げる */
    left: 0;
    right: 0;
    padding:5px;
    z-index: 1000;
    /* 既存のスタイル */
}



        
        .keyword-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            background: #000;
        }
        
        .keyword-scroll-container::-webkit-scrollbar {
            height: 6px;
        }
        
        .keyword-scroll-container::-webkit-scrollbar-thumb {
            background: #e74c3c;
            border-radius: 2px;
        }
        
        .keyword-buttons {
            display: flex;
            gap: 8px;
            margin:4px;
            padding: 0 5px;
            min-width: min-content;

        }
        
        .keyword-btn {
            display: inline-block;/*追加*/
            flex-shrink: 0;
            padding: 4px 12px;
            background: white;
            border: 2px solid #fce4ec;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            text-decoration: none;
            color: #2c3e50;
        }
        
        .keyword-btn:hover {
            background: #ffe5cc;
            border-color: #e74c3c;
        }
        
        .keyword-btn.active {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }
        
        .breadcrumb {
            background: #fff;
            padding: 10px 10px;
            border-bottom: 1px solid #ddd;
        }
.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 5px;
    margin: 0;
}

.breadcrumb-item {
    white-space: nowrap;
}

.breadcrumb-separator {
    margin: 0 1px;  /* 極限まで詰める */
    padding: 0;
    font-size: 10px;
    line-height: 1;
}

/* リンクの余白も詰める */
.breadcrumb-item a {
    padding: 2px 2px;
    display: inline-block;
}
        .breadcrumb-item a:hover {
            text-decoration: underline;
        }
        .breadcrumb-separator {
            color: #999;
        }



        h1 {
            text-align: center;
            color: #eed305ff;
            background:#212123 ;/* ← 追加 */
            font-size: 20px;
            border-radius: 5px;
            border:2px solid #fff707ff;
            margin-bottom: 8px;
            font-weight: bold;
            padding:10px;
        }
        


/* h2 ホテル一覧セクションタイトル */
/* ホテル一覧セクションタイトル - 読みやすさ重視 */
.hotel-section-title {
    text-align: center;
    margin: 30px 0 20px 0;
    padding: 20px 15px;
    background:#bae8ff; /* ← 追加 */
    color: var(--accent-color);
    border-radius: 8px;
    border: 4px solid var(--hotel-border, #23272c);
    font-size: 22px;
    font-weight: bold;
    position: relative;
}

/* 背景を薄くして文字を濃く */
.hotel-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:var(--primary-color, #f6f8f9);
    z-index: 1;
}

.hotel-section-title span {
    position: relative;
    z-index: 2;
    color: var(--accent-color, #ffffff);
    text-shadow: none;
}

/* ホバー効果（控えめ）
.hotel-section-title:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} */

/* モバイル対応 */
@media (max-width: 768px) {
    .hotel-section-title {
        font-size: 1.4em;
        margin: 20px 0 15px 0;
        padding: 15px 10px;
    }
}



        .subtitle {
            text-align: center;
            color: #eed305ff;
            background: #000000ff;
            font-size: 22px;
            border-radius: 5px;
            border:2px solid #fff707ff;
            margin-bottom: 3px;
            font-weight: bold;
        }
        
        .stats-section {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .stat-item {
            background: #3498db;
            color: white;
            padding: 2px 5px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        /* 都道府県フィルター（エリア選択時のみ表示） */
        .filter-section {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .filter-title {
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 16px;
            border-left: 4px solid #3498db;
            padding-left: 10px;
        }
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
        }
        .filter-link {
            display: block;
            padding: 10px 15px;
            background: #fff;
            border: 2px solid #3498db;
            border-radius: 6px;
            text-decoration: none;
            color: #2c3e50;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }
        .filter-link:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .filter-link.current {
            background: #2c3e50;
            color: white;
            border-color: #2c3e50;
        }
        .filter-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 11px;
            font-weight: bold;
            min-width: 20px;
            text-align: center;
        }
        
        .hotel-grid { /*必須PCのホテルカード含有 */
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            /*padding:0px 0px;*/
            /*background: var(--primary-color); /* ← #d0d0d0 から変更 */
            background: var(--gradient-glass); /* ← #d0d0d0 から変更 */       
            border-radius: 12px;
            margin:10px 4px;
        }
        .hotel-card {
            background: #fff;
            border-radius: 12px;
            border:1px solid var(--hotel-border, #7f8387);
            margin:10px 4px;
            padding: 0 0px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            overflow: hidden;
        }
        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .inclusive-header {
            background:var(--harf-dark, #3b3b3b);
            color: #ffffffff;
            border-radius: 8px 8px 0px 0px;
            padding: 8px 15px;
            margin: 0;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
        }
        .hotel-content {
            padding: 10px;
        }

        h3.hotel-name {
            font-size: 21px;
            font-weight: bold;
            color:var(--harf-dark, #6d370e);
            margin-bottom: 15px;
            line-height: 1.4;
            background:var(--light-color, #bcbcbc);
            padding:10px 8px;
            border-radius:8px;
            border:1px solid var(--hotel-border, #b1538a);
            text-decoration: none;
}

        .hotel-name {
            font-size: 22px;
            font-weight: bold;
            color: #031528ff;
            margin-bottom: 15px;
            line-height: 1.4;
            background: #cad9edff;
            padding:10px 0px;
            border-radius:8px 8px 0px 0px;
            border:1px solid #4fb7ccff;
        }
        .hotel-link {
            color: #1976d2;
            text-decoration: none;
        }
        .hotel-link:hover {
            text-decoration: underline;
        }
        .location-info {
            font-size: 16px;
            color: #2d2727ff;
            margin-bottom: 15px;
        }
        .keyword-section {
            background: #fffcfcff;
            padding: 8px;
            border:1px solid #d7b26dff;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align:left;
        }
        .keyword-title {
            border-radius: 4px;
            font-weight: bold;
            background: #976283ff;
            font-size: 16px;
            color:#fff;
            padding:5px;
            margin-bottom: 8px;
            text-align: center;  /* ← これを追加 */
        }
        .keyword-phrase {
            color: #380223ff;
            font-size: 15px;
            font-weight:normal;
            margin: 4px 5px 4px 10px;
            padding-left: 15px;
            position: relative;
            text-align: left;  /* ← 明示的に左寄せ（デフォルトだが念のため） */
        }
        .keyword-phrase:before {
            content: "•";
            position: absolute;
            left: 0;
        }


/* keyword リンクボタンのスタイル */
.keyword-buttons {
    display: flex;
    justify-content: space-between; /* 左右に分散 */
    align-items: center;
    gap: 8px;
}

/* キーワード部分を左側にまとめる */
.keyword-buttons > a:not(.link-btn) {
    /* 通常のキーワードボタン */
}

/* リンクボタンを右端に */
.keyword-btn.link-btn {
    margin-left: auto; /* 自動的に右端に移動 */
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    border: 2px solid #0056b3;
    font-weight: bold;
    flex-shrink: 0; /* 縮まない */
}





        .badges-section {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }
        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .badge {
            background: #fff4e6ff;
            padding: 4px 10px;
            border:1px solid #d3b970ff;
            border-radius: 16px;
            font-size: 13px;
            color: #000000ff;
        }
        .no-hotels {
            background: #fff;
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            color: #7f8c8d;
        }
        
        /* 下部固定エリアフィルターバー */
        .bottom-filter-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: black;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 0px 0;
            border-top: 2px solid #080808ff;
            display: block !important;
            visibility: visible !important;
        }
        
        /* 都道府県選択バー（エリア選択時のみ表示） */
        .prefecture-bar {
            position: fixed;
            bottom: 53px; /* エリアバーの上に配置 */
            right: 0;
            left:0;
            background: rgb(77, 7, 73);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 4px 15px;
            border-top: 0px solid #ddd;
            border-radius: 8px 0 0 0;
            max-width: 100%;
            display: none; /* デフォルトは非表示 */
        }
        
        .prefecture-bar.active {
            display: block;
        }
        
        .prefecture-bar-title {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .prefecture-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        
        .prefecture-btn {
            padding: 6px 8px;
            background: white;
            border: 1px solid #7d4803ff;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            text-decoration: none;
            color: #2c3e50;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        
        .prefecture-btn:hover {
            background: #3498db;
            color: white;
        }
        
        .prefecture-btn.active {
            background: #007720ff;
            color: white;
            border-color: #2c3e50;
        }
        
        .prefecture-count {
            background: #e74c3c;
            color: white;
            padding: 1px 4px;
            border-radius: 8px;
            font-size: 10px;
            min-width: 16px;
            text-align: center;
        }
        
        .area-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            max-width: 100%;
            background:#000;
        }
        
        .area-scroll-container::-webkit-scrollbar {
            height: 6px;
        }
        
        .area-scroll-container::-webkit-scrollbar-track {
            background: #ab0000d6;
        }
        
        .area-scroll-container::-webkit-scrollbar-thumb {
            background: #6a5c5cff;
            border-radius: 3px;
        }
        
        .area-scroll-container::-webkit-scrollbar-thumb:hover {
            background: #2980b9;
        }
        
        .area-buttons {
            display: flex;
            gap: 10px;
            padding: 0 5px;
            min-width: min-content;
            height: 50px;
            align-items: center;
        }
        
        .area-btn {
            flex-shrink: 0;
            padding: 5px 10px;
            background: white;
            border: 2px solid #ecf0f1;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            text-decoration: none;
            color: #2c3e50;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            height: 40px;
        }
        
        .area-btn:hover {
            background: #e8f4fd;
            border-color: #3498db;
            transform: translateY(-2px);
        }
        
        .area-btn.active {
            background: #3498db;
            color: white;
            border-color: #3498db;
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
        }
        
        .area-btn-count {
            background: #e74c3c;
            color: white;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 11px;
            min-width: 18px;
            text-align: center;
            display: inline-block;
        }
        
        .area-btn.active .area-btn-count {
            background: white;
            color: #3498db;
        }

        .area-btn:last-child {
    margin-left: auto;  /* 右端に寄せる */
    flex-shrink: 0;     /* 縮まないようにする */
}
        
        @media (max-width: 768px) {
            .filter-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            .hotel-grid {
                grid-template-columns: 1fr;
            }
            /* モバイルでは都道府県バーの位置調整 */
            .prefecture-bar {
                max-width: 100%;
                border-radius: 0;
                right: 0;
                left: 0;
            }
        }


/* 既存のスタイルの最後に以下を追加 */

/* ★価格フィルターバー */
.price-filter-bar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 998;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.price-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.price-scroll-container::-webkit-scrollbar {
    height: 3px;
}

.price-scroll-container::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 2px;
}

.price-buttons {
    display: flex;
    gap: 8px;
    padding: 0 6px;
    min-width: min-content;
}

.price-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    background: white;
    border: 1px solid #2a6cadff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    color: #135c7dff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-btn:hover {
    background: #e8f5e9;
}

.price-btn.active {
    background: #28a745;
    color: white;
}

.price-btn-count {
    background: rgba(0,0,0,0.1);
    padding: 1px 4px;
    border-radius: 8px;
    font-size: 10px;
}

/* ★注目の宿セクション */
.featured-section {
    background: linear-gradient(135deg, #ffffffff, #d29e00ff);
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.featured-title {
    font-size: 22px;
    font-weight: bold;
    color: #403001ff;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.featured-hotel-card {
    background: #000;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-youtube-thumbnail {
    width: 160px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.youtube-play-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 10px;
}

.youtube-play-button:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* ★価格表示 */
.price-display {
    background: #fff0c7ff;
    color: #5a3608ff;
    padding: 4px 10px;
    border:1px solid #ddb57eff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* ★注目バッジ 
.hotel-card.is-featured {
    border: 3px solid #ffc107;
    position: relative;
}

.hotel-card.is-featured::before {
    content: "注目";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}*/

/* PC表示 */
.pc-only { display: inline; }
.sp-only { display: none; }

/* スマホ表示 */
@media (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: inline; }
}

/* ============ Feature section ============ */
/*                 注目セクション             */
/* ============ Feature section ============ */



/* feature-hotel スタイルシート */

/* メインコンテナ */
.feature-hotel {
    margin: 20px 10px 20px 10px;
    padding: 10px;
    background: white;
    border: 4px solid rgb(194, 168, 75);
    border-radius: 8px;
}

/* カテゴリタグ */
.feature-hotel__category {
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
}

/* ホテル名 */
.feature-hotel__title {
    margin: 0 0 15px 0;
    color: #333;
}

.feature-hotel__title-link {
    display: inline-block;
    font-size:20px;
    background: #17589aff;
    color: white;
    padding: 10px 40px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

.feature-hotel__title-link:hover {
    background: #145a8c;
    text-decoration: none;
}

/* サブキーワード */
.feature-hotel__sub-keyword {
    margin: 8px 0;
    color: #666;
}

/* キーワードフレーズ */
.feature-hotel__keyword-phrases {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
}

.feature-hotel__keyword-phrases strong {
    color: #1976d2;
}

.feature-hotel__keyword-list {
    margin: 5px 0;
    padding-left: 20px;
}

.feature-hotel__keyword-list li {
    margin-bottom: 3px;
}

/* エリア・都道府県 */
.feature-hotel__location {
    margin: 8px 0;
    color: #333;
}

/* インクルーシブタイプ */
.feature-hotel__inclusive-type {
    margin: 8px 0;
    color: #333;
}

/* 価格 */
.feature-hotel__price {
    margin: 8px 0;
    color: #a95514;
    font-size:18px;
    font-weight: bold;
}

.feature-hotel__price--unavailable {
    color: #999;

}

/* 評価 */
.feature-hotel__rating {
    margin: 8px 0;
    color: #ff9800;
}

/* キャッチフレーズ */
.feature-hotel__catchphrase {
    margin: 8px 0;
    color: #666;
    font-style: italic;
}

/* 季節の見どころ */
.feature-hotel__seasonal-features {
    font-size:16px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #28a745;
}

.feature-hotel__seasonal-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.feature-hotel__seasonal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-hotel__feature-item {
    background: #e8f5e8;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 15px;
    color: #073c0a;
}

/* アクティビティ */
.feature-hotel__activities {
    background: #fff3e0;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #ff9800;
}

.feature-hotel__activity-item {
    background: #ffe0b2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 15px;
    color: #562206;
}

/* 季節情報 */
.feature-hotel__seasonal-info {
    background: #f3e5f5;
    font-size:15px;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #917533;
}

.feature-hotel__seasonal-info--highlight {
    background: #fff8e1;
    border-left-color: #ff9800;
}

/* 季節イベント */
.feature-hotel__seasonal-events {
    background: #e1f5fe;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #03a9f4;
}

.feature-hotel__event-item {
    background: #b3e5fc;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    color: #033b5b;
    margin-right: 8px;
    margin-bottom: 4px;
    font-size: 15px;
    display: inline-block;
}

/* 詳細リンク */
.feature-hotel__detail-link {
    display: inline-block;
    background: #1976d2;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.feature-hotel__detail-link:hover {
    background: #1565c0;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .feature-hotel {
        margin: 10px 10px;
        padding: 15px;
    }

    .feature-hotel__seasonal-content {
        flex-direction: column;
        gap: 6px;
    }

    .feature-hotel__title-link {
        padding: 8px 20px;
        font-size: 20px;
    }
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .feature-hotel {
        margin: 15px 10px;
    }
}



/* ============ Price Chips ============ */
/*                     金額バー             */
/* ============ Price Chips ============ */
:root{
  --chip-bg: #fff;
  --chip-fg: #206db6ff;
  --chip-border: #10587cff;
  --chip-shadow: 0 2px 4px rgba(0,0,0,0.1);
  --badge-bg: #dc3545;     /* 未選択の赤バッジ */
  --badge-fg: #fff;
  --badge-selected-bg: #ffc107; /* 選択時の黄バッジ */
  --badge-selected-fg: #000;
  --chip-radius: 6px;
  --chip-pad-y: 5px;
  --chip-pad-x: 6px;
  --chip-font: 13px;
}

.price-chip-group{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

/* aタグ全体をチップ化 */
.price-chip{
  position: relative;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

/* 本体ラベル */
.price-chip__label{
  display: block;
  background: var(--chip-bg);
  color: var(--chip-fg);
  border: 2px solid var(--chip-border);
  border-radius: var(--chip-radius);
  padding: var(--chip-pad-y) var(--chip-pad-x);
  font-weight: 700;
  font-size: var(--chip-font);
  line-height: 1;
  box-shadow: var(--chip-shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}

/* 右上の件数バッジ */
.price-chip__badge{
  position: absolute;
  top: -10px;
  right: 0px;
  background: var(--badge-bg);
  color: var(--badge-fg);
  border-radius: 10px;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* ホバー・フォーカス */
.price-chip:hover .price-chip__label{
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.12);
}
.price-chip:focus-visible .price-chip__label{
  outline: 2px solid #1e7e34;
  outline-offset: 2px;
}

/* 選択状態（$selectedPrice一致時） */
.price-chip.is-selected .price-chip__label{
  background: #1e6ec3ff;
  color: #fff;
  border-color: #0b425cff;
}
.price-chip.is-selected .price-chip__badge{
  background: var(--badge-selected-bg);
  color: var(--badge-selected-fg);
}

/* 低モーション設定に配慮 */
@media (prefers-reduced-motion: reduce){
  .price-chip__label{ transition: none; }
}

/* パンくずリスト - ブロック表示版 */
.breadcrumb-block {
    background: #f8f9fa;
    padding:2px 2px;
    border-bottom: 2px solid #dee2e6;
    overflow-x: auto;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: max-content;
}

/* 各ブロックアイテム */
.breadcrumb-block-item {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.breadcrumb-block-item:hover {
    background: #e9ecef;
    border-color: #007bff;
}

/* 現在地の強調 */
.breadcrumb-block-item.current {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

/* タイプ別の色分け */
.breadcrumb-block-item.type-home {
    background: #ff0000;
}

.breadcrumb-block-item.type-main {
    background: #680363ff;
    border-color: #27003aff;
}

.breadcrumb-block-item.type-keyword {
    background: #4573a0ff;
    border-color: #1b5689ff;
}

.breadcrumb-block-item.type-area {
    background: #117789ff;
    border-color: #17a2b8;
}

.breadcrumb-block-item.type-prefecture {
    background: #277e3cff;
    border-color: #28a745;
}

/* リンクスタイル */
.breadcrumb-link {
    text-decoration: none;
    color: #fffefeff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-current {
    color: white;
}

/* 矢印 */
.breadcrumb-arrow {
    color: #6c757d;
    font-size: 18px;
    padding: 0 4px;
}

/* アイコン */
.icon-home {
    font-size: 16px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .breadcrumb-container {
        gap: 4px;
    }
    
    .breadcrumb-block-item {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    /* モバイルでは省略表示 */
    .breadcrumb-text {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .breadcrumb-block-item.current .breadcrumb-text {
        max-width: none;
    }
}

/* 横スクロールインジケーター */
.breadcrumb-block {
    position: relative;
}

.breadcrumb-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, #f8f9fa);
    pointer-events: none;
}


/* ★★★ 季節情報のCSS ★★★ */

/* 季節情報の基本スタイル */
.seasonal-info {
    margin: 12px 0;
    padding: 8px 12px;
    font-size:16px;
    background: var(--light-color, #cccccc);
    border: 1px solid var(--hotel-border),#999;
    border-radius: 4px;
}

/* 今が旬！の強調表示 */
.seasonal-info.highlight {
    background: var(--light-color, #526480);
    font-size:16px;
    margin:5px 0px;
    border: 1px solid  var(--hotel-border, #526480);
    box-shadow: 0 2px 4px var(--dark-back),#999;
}

/* 季節イベント */
.seasonal-events {
    margin: 8px 0;
    padding: 8px 12px;
    background: var(--secondary-color, #526480);
    border: 1px solid var(--hotel-border, #526480);
    border-radius: 4px;
}

/* 季節タイトル */
.seasonal-title {
    font-weight: bold;
    font-size: 16px;
    color:var(--harf-dark,#555)
    margin-bottom: 4px;
}

.seasonal-info.highlight .seasonal-title {
    color: var(--hotel-name, #526480);
}

.seasonal-events .seasonal-title {
    color:  var(--hotel-name, #526480);
}

/* 季節コンテンツ */
.seasonal-content {
    font-size: 16px;
    line-height: 1.4;
    color: var(--hotel-name, #526480);
    background:#fff;
    padding:10px;
    border-radius: 6px;
    border:1px solid #b9b99eff
}

/* イベントアイテム */
.event-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    margin: 2px 4px 2px 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight:normal;
    border: 1px solid var(--hotel-border),#999;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .seasonal-info, .seasonal-events {
        margin: 6px 0;
        padding: 6px 10px;
    }
    
    .seasonal-title {
        font-size: 16px;
        color:var(--harf-dark,#555)
    }
    
    .seasonal-content {
        font-size: 16px;
    }
}


.seasonal-features, .seasonal-activities {
    margin: 8px 0;
    padding: 6px 10px;
    background: var(--secondary-color); /* ← 追加 */
    border: 1px solid var(--hotel-border, #526480);
    border-radius: 6px;
    font-size: 14px;
}

.feature-item, .activity-item {
    display: block;
    font-size: 16px;
    font-weight:normal;
    color: var(--hotel-name, #526480);
    margin: 1px 0;
}



/* Google footer 上広告CSSセンター寄せ */
.footer-top-ad-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.footer-ad-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-ad-slot {
        width: 750px;
        height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer-ad-slot {
        width: 336px;
        height: 280px;
        margin: 0 auto;
    }
}

/* 季節別ルートカラー */
/* ファイル末尾に追加 - 季節別ルートカラー */
body.season-spring {
    --primary-color: #ffedf3;
    --secondary-color: #fff0f9;
    --accent-color: #b55768;
    --hotel-name:#7b4c37;
    --hotel-color:#eccbe4;
    --hotel-border:#ce8cbe;
    --friend-color:#d7eee2;
    --title-back:#411b4d;
    --light-color:#ffeefb;
    --harf-dark:#8a2a77;
    --dark-back:#6a366a;
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    background: var(--primary-color); /* ← 追加 */
}

body.season-summer {
    --primary-color: #e6fbff;
    --secondary-color: #c5e6ff;
    --accent-color: #4b86c8;
    --hotel-name:#2b579b;
    --hotel-color:#d2efff;
    --hotel-border:#87aadf;
    --friend-color:#fce6cd;
    --title-back:#4d2459;
    --light-color:#cff6ff;
    --harf-dark:#07649a;
    --dark-back:#07023d;
    background: var(--primary-color); /* ← 追加 */
}

body.season-autumn {
    --primary-color: #fff2e5;
    --secondary-color: #ffdccf;
    --accent-color: #b06e0b;
    --hotel-name:#8d4625;
    --hotel-color:#ffe8b3;
    --hotel-border:#edce99;
    --friend-color:#ffe1ff;
    --title-back:#703a04;
    --light-color:#fff0d7;
    --harf-dark:#7d3c19;
    --dark-back:#392201;
    background: var(--primary-color); /* ← 追加 */
}

body.season-winter {
    --primary-color: #f4f3f3;
    --secondary-color: #ffffff;
    --accent-color: #5c5c68;
    --hotel-name:#3c3c3c;
    --hotel-color:#dfdfdf;
    --hotel-border:#959595;
    --friend-color:#fff1ff;
    --title-back:#030303;
    --light-color:#f2f2f2;
    --harf-dark:#595959;
    --dark-back:#141414;
    background: var(--primary-color); /* ← 追加 */
}

/* 季節以外のデフォルトカラー */
body:not(.season-spring):not(.season-summer):not(.season-autumn):not(.season-winter) {
    --primary-color: #2c3e50;
    --secondary-color: #ffffff;
    --accent-color: #ffffff;
    background: var(--primary-color); /* ← 追加 */
}


/* ========================================
   統合されたcontainer CSS
   ======================================== */
/* 季節別カラー変数の例 */

:root {
    --spring-color: #ffb3ba;
    --summer-color: #bae1ff;
    --autumn-color: #ffdfba;
    --winter-color: #ffffba;
}



.container {
    /* レイアウト */
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 10px 4px 10px;
    padding-bottom: 40px; /* フッター分の余白 */
    
    /* カラー（季節ベースカラー優先、フォールバック付き） */
    background: var(--secondary-color, #940057);
    
    /* フェードイン効果 */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* フェードイン完了状態 */
.container.fade-in {
    opacity: 1;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .container {
        margin-top: <?= $isTwoRows ? '85px' : '60px' ?> !important;
    }
}



/* 既存の要素 
.top-keyword-bar {
    background: var(--primary-color);
}
*/
.price-btn.active {
    background: var(--primary-color);
}

.hotel-card.is-featured {
    border-color: var(--accent-color);
}


/* 季節アイコン（左下固定、下部バーの上） */
        /* 季節アイコンの基本スタイル */
        .season-icon {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            z-index: 1000;
            pointer-events: none;
            transition: all 0.8s ease-out;
            opacity: 1;
            filter: blur(0px);
            transform-origin: center center;
        }

        /* スクロール時のシンプルフェードアウト効果 */
        .season-icon.fade-out {
            opacity: 0;
            filter: blur(10px);
            transform: translate(-50%, -50%) scale(1.5);
        }

/* アイコンが存在する場合のみ表示 */
.season-icon.has-icon {
    display: block;
}

/* 季節別アニメーション */
.season-icon.spring {
    animation: flutter 3s ease-in-out infinite;
}

.season-icon.summer {
    animation: bounce 4s linear infinite;
}

.season-icon.autumn {
    animation: fall 2s ease-in-out infinite alternate;
}

.season-icon.winter {
    animation: bounce 2s infinite;
}

/* アニメーション定義 */
@keyframes flutter {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fall {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(10px) rotate(10deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .season-icon {
        bottom: 70px;
        left: 10px;
        font-size: 2.5em;
        padding: 8px;
    }
}