

        * {
            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: 60px;
            padding-bottom: 80px;
        }
        
        /* 上部固定キーワードバー（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: 2px solid #e74c3c;
        }
        
        .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 6px;
            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;
        }


/*キーワードリンク右寄せボタン*/
.keyword-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start; /* 左寄せベース */
}

/* 最後のリンクボタンだけ右端に押しやる */
.keyword-btn.link-btn {
    margin-left: auto; /* これでtext-align:rightと同じ効果 */
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    border: 2px solid #0056b3;
    font-weight: bold;
    flex-shrink: 0;
}

.keyword-btn.link-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-1px);
}

/*　モバイル用 */
@media (max-width: 768px) {
    .keyword-btn.link-btn {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
    }
}





        
        .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;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 60px; /* 価格バーの高さ分 */
            padding: 10px 10px 4px 10px;
            /* フッター分の余白を追加で確保 */
            padding-bottom: 40px;
            opacity: 0; 
            transition: opacity 0.5s;
        }


        h1 {
            text-align: center;
            color: #eed305ff;
            background: #000000ff;
            font-size: 21px;
            border-radius: 5px;
            border:2px solid #fff707ff;
            margin-bottom: 3px;
            font-weight: bold;
            padding: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 {
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    gap: 20px;
    justify-content: center;
    width: 100%;
        }
        .hotel-card {
            background: #fff;
            border-radius: 12px;
            margin:0 10px;
            padding: 0;
            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: #203a5fff;
            color: #ffffffff;
            padding: 8px 15px;
            margin: 0;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
        }
        .hotel-content {
            padding: 20px;
        }

        h3.hotel-name {
            font-size: 21px;
            font-weight: bold;
            color: #031528ff;
            margin-bottom: 15px;
            line-height: 1.4;
            background: #cad9edff;
            padding:10px;
            border-radius:8px;
            border:1px solid #4fb7ccff;
            text-decoration: none;
}

        .hotel-name {
            font-size: 22px;
            font-weight: bold;
            color: #031528ff;
            margin-bottom: 15px;
            line-height: 1.4;
            background: #cad9edff;
            padding:10px;
            border-radius:8px;
            border:1px solid #4fb7ccff;
        }
        .hotel-link {
            color: #1976d2;
            text-decoration: none;
        }
        .hotel-link:hover {
            text-decoration: underline;
        }
        .location-info {
            font-size: 14px;
            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;
        }
        .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: 56px; /* エリアバーの上に配置 */
            right: 0;
            left:0;
            background: #384d61ff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 4px 15px;
            border-top: 1px 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 15px;
    min-width: min-content;
}

.price-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    background: white;
    border: 1px solid #2a6cadff;
    border-radius: 15px;
    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: 10px;
    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: 14px;
    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; }
}


/* ============ 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: 20px;
  --chip-pad-y: 5px;
  --chip-pad-x: 6px;
  --chip-font: 14px;
}

.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: 1px solid var(--chip-border);
  border-radius:6px;
  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: -5px;
  background: var(--badge-bg);
  color: var(--badge-fg);
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 13px;
  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;
}

