/* ============================================
 * shop-list ページ  ★v5 整理版 (ファイル丸ごと差し替え)
 * /assets/shop_list.css
 *
 * PC: 左サイドフィルタ + 右メイン (2カラム)
 * SP: 1カラム + 下から出てくるボトムシートフィルタ
 *
 * 店舗カード構造 (v6):
 *   .shop-card-column
 *   ├── .shop-card__head_listpage  (3カラム: サムネ / 店名+エリア・タグ / ★)
 *   ├── .shop-card__cols           (通常店: 左セラピストグリッド + 右データ)
 *   │     ├── .shop-card__tgrid       PC: 無料3枚(1行)/有料6枚(2行) ※CSS制御・SPは全件(無料4/有料8)
 *   │     └── .shop-card__side        案内状況 → データ → スタッツ → 割引タイル3枚
 *   ├── .shop-card__main           (個人店のみ: pv レイアウト、末尾に割引タイル3枚)
 *   └── .shop-card__footer
 *       └── .shop-card__tabs          下段タブ: ニュース / メッセージ / 口コミ
 *
 * .shop-card__promo-block / .promo-row: 活性している種別(TS/CP/EV)だけを白背景1ブロックに
 * 1行ずつ積む。色は種別バッジ1箇所だけ(ワンポイント)。0件ならブロックごと非出力。
 *
 * ※ 旧 .promo-ticket* / .promo-bar* / .promo-card* / .shop-card__promo-list /
 *    .shop-card__tabs--promo / .shop-card__therapists / .shop-card__thumb* /
 *    .shop-card__stats--pc/--sp / .shop-card__news / .status-badge* は削除済み
 * ============================================ */


/* ============================================
 * パンくず
 * ============================================ */
.shop-list-breadcrumb {
    background: var(--bg-surface);
    font-size: 1.1rem;
    padding: 8px 16px;
    border-bottom: 0.5px solid rgba(201, 168, 108, 0.12);
}

.shop-list-breadcrumb__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-list-breadcrumb__link {
    color: rgba(201, 168, 108, 0.7);
}

.shop-list-breadcrumb__link:hover {
    color: var(--gold);
}

.shop-list-breadcrumb__sep {
    color: rgba(201, 168, 108, 0.3);
    margin: 0 6px;
}

.shop-list-breadcrumb__current {
    color: rgba(255, 255, 255, 0.55);
}


/* ============================================
 * ページタイトル
 * ============================================ */
.shop-list-head {
    border-bottom: 0.5px solid rgba(201, 168, 108, 0.12);
    padding: 35px 16px 20px 16px;
}

.shop-list-head__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 16px;
}

.shop-list-head__title {
    font-size: 2rem;
}

.shop-list-head__desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-primary);
}
.shop-list-head__desc b{
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0.2rem;
    font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
    .shop-list-head {
        padding: 20px 10px;
    }
    .shop-list-head__inner{
        padding: 0;
        width: 100%;
    }
    .shop-list-head__title {
        font-size: 1.6rem;
    }
    .shop-list-head__desc{
        font-size: 1.1rem;
        line-height: 1.7;
    }
    .shop-list-head__desc b{
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   menespark - エリアナビ (area_ladder.php)
   ※ html{font-size:62.5%} 前提 (1rem = 10px)

   旧 .area-ladder__* は廃止。段ごとの opacity による明暗も廃止
   （押してほしいリンクが暗くなっていたため）。
   ========================================================================== */

.area-nav {
    margin-bottom: 1.6rem;
}

/* ---- 段 ---- */
.area-nav__row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: .8rem 0;
}

.area-nav__row--main {

    /* padding: 1.2rem 1.4rem; */
    /* background: var(--bg-surface); */
    /* border: 0.5px solid var(--gold-border); */
    /* border-radius: var(--radius-lg); */
}

.area-nav__label {
    flex: 0 0 6.4rem;
    padding-top: .8rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--shop-text-dim);
}

.area-nav__chips {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

/* ---- 段の区切り (▼) ---- */
.area-nav__arrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    /* padding: .2rem 0 .2rem 7.4rem; */
}

.area-nav__arrow span {
    flex: 1;
    height: 1px;
    background: var(--gold-border);
}

.area-nav__arrow i {
    font-size: 1.4rem;
    color: var(--gold);
}

/* ---- チップ ---- */
.area-nav__chip {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    min-height: 3.6rem;
    padding: .7rem 1.5rem;
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    background: var(--ap-panel);
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    color: #e8d5a8;
    transition: background .15s, border-color .15s, color .15s;
}

.area-nav__chip:hover {
    background: rgba(201, 168, 108, 0.28);
    border-color: var(--gold);
    color: var(--gold);
    text-decoration: none;
}

.area-nav__chip-num {
    font-size: 1.1rem;
    font-style: normal;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
}

.area-nav__chip:hover .area-nav__chip-num {
    color: var(--gold);
}

/* 現在地: 塗りつぶし・押せないことを明示 */
.area-nav__chip.is-current {
    background: var(--gold);
    border-color: var(--gold);
    color: #14110f;
    font-weight: 600;
    cursor: default;
}

.area-nav__chip.is-current .area-nav__chip-num {
    color: rgba(20, 17, 15, 0.65);
}

/* 都道府県の段は一回り小さく（主役は人気エリア） */
.area-nav__chips--pref .area-nav__chip {
    min-height: 3.2rem;
    padding: .6rem 1.3rem;
    font-size: 1.2rem;
    background: transparent;
    background: var(--ap-panel);
    border: 1px solid var(--ap-line);
    border-radius: var(--ap-radius);
    color: var(--text-secondary);
}

.area-nav__chips--pref .area-nav__chip:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--gold);
}

.area-nav__chips--pref .area-nav__chip.is-current {
    background: var(--gold);
    border-color: var(--gold);
    color: #14110f;
}


/* ---- SP ---- */
@media (max-width: 767.98px) {
    .area-nav {
        margin-bottom: 1.2rem;
    }

    .area-nav__row {
        padding: 5px 0;
        flex-direction: column;
    }

    .area-nav__label {
        flex: none;
        padding-top: 0;
    }

    .area-nav__arrow {
        padding-left: 0;
    }

    .area-nav__chips {
        gap: .6rem;
    }

    .area-nav__chip {
        min-height: 3.4rem;
        padding: .7rem 1.3rem;
        font-size: 1rem;
    }
    .area-nav__chips--pref .area-nav__chip {
        font-size: 1.1rem;
    }


    /* 都道府県は折り返さず横スクロール */
    .area-nav__chips--pref {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: .3rem;
        scrollbar-width: none;
    }

    .area-nav__chips--pref::-webkit-scrollbar {
        display: none;
    }

}

/* ---- 現在地 (市区町村ページのパンくず) ---- */
.area-nav__here {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    padding: 8px 0;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.area-nav__here-up {
    color: var(--text-secondary);
    text-decoration: none;
}

.area-nav__here-up:hover {
    color: var(--gold);
    text-decoration: underline;
}

.area-nav__here-sep {
    font-size: 1rem;
    color: var(--text-muted);
}

.area-nav__here-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}



/* ============================================
 * メインレイアウト
 * ============================================ */
.shop-list-layout {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .shop-list-layout {
        grid-template-columns: 300px 1fr;
        gap: 24px;
        padding: 24px 16px;
        align-items: start;
    }
}
@media (max-width: 767.98px) {
    .shop-list-layout {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0;
        padding: 0 10px;
    }
}

/* ============================================
 * メインエリア
 * ============================================ */
.shop-list-main {
    min-width: 0;
}

/* ============================================
 * SP用 絞り込みボタン
 *   → 2026-08-19 廃止。エリアナビの「さらに詳しく」(.area-nav__all) に統合
 * ============================================ */

/* ============================================
 * 適用中タグ
 * ============================================ */
.applied-tags {
    display: flex;
    background: #000;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
    min-height: 26px;
}

.applied-tags.is-empty {
    display: none;
}

.applied-tags__label {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-right: 4px;
}

/* デフォルト */
.applied-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px 2px 10px;
    background: var(--gold-pale);
    border: 0.5px solid var(--gold-border);
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: var(--radius-pill);
    line-height: 1.6;
}

/* 都道府県: ゴールド塗りつぶし */
.applied-tag--pref {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-base);
    font-size: 1.2rem;
    padding: 3px 10px 3px 12px;
    font-weight: 500;
}

.applied-tag--pref .applied-tag__remove {
    color: var(--bg-base);
}

.applied-tag--pref .applied-tag__remove:hover {
    color: var(--bg-base);
}

/* 市区町村/ジャンル/ステータス/キーワード: 一回り小さく */
.applied-tag--area_s,
.applied-tag--genre,
.applied-tag--status,
.applied-tag--keyword {
    font-size: 1.05rem;
    padding: 2px 7px 2px 9px;
}

.applied-tag__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 2.4rem;
    margin: -2px -6px -2px 2px;
    padding: 0 6px;
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.7;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.15s;
}

.applied-tag__remove:hover {
    opacity: 1;
    color: var(--gold);
    text-decoration: none;
}

.applied-tag--none {
    background: transparent;
    border: 0.5px dashed rgba(201, 168, 108, 0.25);
    color: var(--text-muted);
}


/* ============================================
 * 件数 + 並び替え
 * ============================================ */
.result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.result-bar__count {
    font-size: 1.4rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.result-bar__count strong {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-red);
    margin: 0 2px;
}

.result-bar__sort {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.result-bar__sort::-webkit-scrollbar {
    display: none;
}

.sort-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    min-height: 3.6rem;
    padding: 8px 15px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: background .15s, color .15s;
}

.sort-btn:hover {
    color: var(--gold);
}

.sort-btn.is-active {
    background: var(--gold-pale);
    color: var(--gold);
    font-weight: bold;
}


/* ============================================
 * お店リスト
 * ============================================ */
.shop-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 639px) {
    .shop-list {
        gap: 10px;
    }
}
/* ============================================
 * 店舗カード v5
 * ============================================ */
:root {
    --ts-yellow: #f2b705;   /* タイムサービス基調色 (黄) */
}

.shop-card-column {
    display: flex;
    flex-direction: column;
    /* background: var(--bg-surface); */
    background: transparent;
    /* border: 1px solid var(--ap-line) !important; */
    border-radius: var(--ap-radius);
}

/* ===== ヘッダー: 3カラム (サムネ / 店名+エリア・タグ / ★) ===== */
.shop-card__head_listpage{
    display: flex;
    align-items: center;
    background: #1f1f24;
    gap: 10px;
    /* border-bottom: 1px solid var(--ap-line) !important; */
    border-radius: 8px;
    padding: 12px 14px;

}

@media (min-width: 640px) {
    .shop-card__head_listpage {
        padding: 12px 30px;
    }
}

/* サムネイル (3カラム目の追加要素) */
.shop-card__head-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 0.5px solid var(--gold-border);
    background: var(--bg-base);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-deco);
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
}

.shop-card__head-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card__head-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.shop-card__head-sub {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.shop-card__name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.shop-card__name:hover {
    font-weight: bold;
    text-decoration: underline;
}

.shop-card__area {
    font-size: 1.2rem;
    color: var(--shop-text-dim);
    white-space: nowrap;
}

.shop-card__tag {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid var(--lp-gold-line);
    background: rgba(201, 168, 108, 0.12);
    color: var(--lp-gold-light);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ---- お気に入り★ボタン ---- */
.shop-card__fav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.15s;
    padding: 0;
    line-height: 1;
}

.shop-card__fav:hover,
.shop-card__fav.is-active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale);
}

.shop-card__fav.is-active:hover {
    background: rgba(201, 168, 108, 0.2);
}

.shop-card__fav.is-just-activated i {
    animation: fav-pop 0.3s ease-out;
}

@keyframes fav-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

/* ---- お気に入り★ 押下エフェクト（リング波紋 + 粒子） ---- */
.shop-card__fav {
    position: relative;
    overflow: visible;
}

.shop-card__fav i {
    transition: color .15s, transform .35s cubic-bezier(.2, 1.6, .4, 1);
}

.shop-card__fav.is-fx-pop {
    animation: shop-fav-fx-pop .4s cubic-bezier(.2, 1.4, .35, 1);
}

@keyframes shop-fav-fx-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.shop-card__fav.is-fx-pop i {
    transform: scale(1.45) rotate(-8deg);
}

.shop-fav-fx-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transform: translate(-50%, -50%) scale(.4);
    opacity: .9;
    pointer-events: none;
    z-index: 5;
    animation: shop-fav-fx-ring-out .55s ease-out forwards;
}

@keyframes shop-fav-fx-ring-out {
    to { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}

.shop-fav-fx-spark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 5;
    animation: shop-fav-fx-spark-fly .6s ease-out forwards;
}

@keyframes shop-fav-fx-spark-fly {
    0%   { transform: translate(-50%, -50%) translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) translate(var(--dx), var(--dy)) scale(.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .shop-card__fav.is-fx-pop,
    .shop-card__fav.is-fx-pop i {
        animation: none;
        transform: none;
    }
    .shop-fav-fx-ring,
    .shop-fav-fx-spark { display: none; }
}


/* ============================================
 * 通常店本体: 2カラム (左グリッド / 右データ)
 * ============================================ */
.shop-card__cols {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 15px;
    padding: 14px 30px 0;
    align-items: start;
}

/* ---- 左: セラピスト写真グリッド ----
 * マークアップは無料4件/有料8件を全件出力 (データ取得側の上限どおり)。
 * PC表示件数はここでCSS制御: 無料=3列1段(3枚) / 有料=3列2段(6枚)。
 * SPは下部 @media(max-width:639px) で4列・全件表示に上書き。
 */
.shop-card__tgrid {
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 640px) {
    /* 無料店: 4件中3件目までのみ表示 (3列×1行) */
    .shop-card__tgrid > .shop-card__therapist:nth-child(n+4) {
        display: none;
    }

    /* 有料店: 8件中6件目までのみ表示 (3列×2行) */
    .shop-card__tgrid--paid > .shop-card__therapist:nth-child(n+4) {
        display: block;
    }
    .shop-card__tgrid--paid > .shop-card__therapist:nth-child(n+7) {
        display: none;
    }
}

.shop-card__therapist {
    display: block;
    text-decoration: none;
    position: relative;
}

.shop-card__therapist img,
.shop-card__therapist-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
    background: var(--bg-surface);
    border: 0.5px solid rgba(201, 168, 108, 0.15);
    transition: opacity 0.15s, border-color 0.15s;
}

.shop-card__therapist:hover img {
    border-color: var(--gold);
    opacity: 0.9;
}

/* 出勤中/即案内中: バッジではなくゴールド枠で表示 */
.shop-card__therapist.is-active img {
    border: 2px solid var(--gold);
}

/* 名前オーバーレイ */
.shop-card__therapist-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.9rem;
    text-align: center;
    padding: 12px 4px 4px;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-card__tgrid-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    font-size: 1.2rem;
    color: var(--text-muted);
    background: #1f1f24;
    border: 0.5px dashed rgba(201, 168, 108, 0.2);
    border-radius: 8px;
}

/* ---- 右カラム ---- */
.shop-card__side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    align-self: stretch;
}

/* 右上: 案内状況バッジの位置補正 */
.shop-card__avail--side {
    padding: 0 !important;
}

.shop-card__avail--side .avail-badge {
    width: auto;
    flex: 0 0 auto;
    max-width: none;
    padding: 5px 14px;
}

/* ---- 右中: 基本データ ---- */
.shop-card__data {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.shop-card__data-row {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 15px;
    align-items: center;
    font-size: 1.2rem;
}

.shop-card__data-row dt {
    color: var(--shop-text-dim);
    border: 1px solid #2a2a30;
    background: #1f1f24;
    gap: 5px;
    padding: 0.8rem;
    font-size: 1.1rem;
    display: flex;
}

.shop-card__data-row dt i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.shop-card__data-row dd {
    color: var(--text-primary);
    margin: 0;
    word-break: break-all;
}

/* ---- 右下: スタッツ4個 (PC/SP共通・1回だけ描画) ---- */
.shop-card__stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: 4px;
    background: #1f1f24;
    border: 1px solid #2a2a30;
    margin-top: auto;
}

.shop-card__stat {
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-right: 1px solid #2a2a30;
    text-align: center;
    line-height: 1.2;
}
.shop-card__stat :last-child{
    border: none;
}
.shop-card__stat-label {
    font-size: 1.1rem;
    color: var(--shop-text-dim);
    letter-spacing: 0.02em;
}

.shop-card__stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

/* 本日出勤 + 即案内: 緑 */
/* 本日出勤: 緑 */
.shop-card__stat--today i,
.shop-card__stat--today .shop-card__stat-num {
    color: #5aad7a;
}
/* ============================================
 * 割引カード (.lpc = list promo card)
 * クーポン / イベント の新しい方を1件だけ表示する (最大1枚)。
 * 3カラム: 種別バッジ / タイトル・対象者(利用条件) / 割引額・期間
 * 背景は種別のイメージカラー。色トークンは県トップと共通の
 * style.css :root --promo-cpn-* / --promo-ts-* / --promo-ev-*
 * ============================================ */
.shop-card__promo-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* クーポン = 赤 (割引率・割引額・特典すべて同じ色) */
.lpc--cpn {
    --lpc-deep: var(--promo-cpn-deep);
    --lpc-pale: var(--promo-cpn-pale);
    --lpc-on: var(--promo-cpn-on);
    --lpc-line: var(--promo-cpn-line);
}

/* タイムセール = 黄 */
.lpc--ts {
    --lpc-deep: var(--promo-ts-deep);
    --lpc-pale: var(--promo-ts-pale);
    --lpc-on: var(--promo-ts-on);
    --lpc-line: var(--promo-ts-line);
}

/* イベント = 青 */
.lpc--ev {
    --lpc-deep: var(--promo-ev-deep);
    --lpc-pale: var(--promo-ev-pale);
    --lpc-on: var(--promo-ev-on);
    --lpc-line: var(--promo-ev-line);
}

.lpc {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr) 8.6rem;
    gap: 1rem;
    align-items: stretch;
    padding: 1.1rem 1.2rem 1.1rem 0;
    background: var(--lpc-pale);
    border: 1px solid var(--lpc-line);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.15s, background 0.15s;
}

.lpc:hover {
    border-color: var(--lpc-deep);
    background: var(--lpc-pale);
}

/* ---- 左: 種別バッジ ---- */
.lpc__badge {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 3px;
    border-radius: 0 6px 6px 0;
    background: var(--lpc-deep);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.lpc__badge i {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.lpc__badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    word-break: break-all;
}

/* ---- 中央: タイトル / メタ ---- */
.lpc__main {
    min-width: 0;
    padding: 1px 0;
}

.lpc__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ap-text);
    line-height: 1.4;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lpc__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 8px;
    margin-top: 5px;
}

.lpc__aud {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    max-width: 100%;
    padding: 2px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--lpc-line);
    color: var(--lpc-on);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lpc__limit {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--shop-text-dim);;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lpc__limit i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ---- 右: 値 / 開催状況（幅は全種別で固定） ---- */
.lpc__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: -1.1rem 0;
    padding: 1.1rem 0 1.1rem 1rem;
    border-left: 1px solid var(--lpc-line);
    text-align: right;
    box-sizing: border-box;
}

.lpc__value {
    color: var(--lpc-on);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lpc__value b {
    font-size: 2.2rem;
    font-weight: 900;
}

.lpc__value small {
    font-size: 1.2rem;
    font-weight: 800;
}

.lpc__value s {
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ap-muted);
}

/* 特典テキストは 5文字 × 2行 = 10文字 */
.lpc__value--text {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
    white-space: normal;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lpc__value--date {
    font-size: 1.5rem;
    font-weight: 900;
    white-space: normal;
}

.lpc__state {
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ap-muted);
    white-space: nowrap;
}

.lpc__state--active {
    color: #5aad7a;
}

.lpc__state--before {
    color: var(--ap-gold-light);
}

/* ---- SP ---- */
@media (max-width: 639px) {
    .lpc {
        grid-template-columns: 2.8rem minmax(0, 1fr) 7.6rem;
        gap: 1rem;
        padding: 1rem 1.1rem 1rem 0;
    }

    /* バッジは細い縦リボンに */
    .lpc__badge {
        flex-direction: row;
        gap: 0;
        padding: 8px 0;
        writing-mode: vertical-rl;
        letter-spacing: 0.1em;
    }

    .lpc__badge i {
        display: none;
    }

    .lpc__badge-text {
        display: block;
        font-size: 1rem;
        letter-spacing: 0.1em;
        word-break: normal;
        overflow: hidden;
    }

    .lpc__title {
        font-size: 1.25rem;
    }

    .lpc__meta {
        gap: 4px 7px;
        margin-top: 4px;
    }

    .lpc__side {
        margin: -1rem 0;
        padding: 1rem 0 1rem 1rem;
    }

    .lpc__value b {
        font-size: 2rem;
    }

    .lpc__value small {
        font-size: 1.1rem;
    }

    .lpc__value--text,
    .lpc__value--date {
        font-size: 1.3rem;
    }
}
/* ============================================
 * カードフッター
 * ============================================ */
.shop-card__footer {
    margin-top: 10px;
    padding: 0 30px 14px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
 * 下段タブ (ニュース / メッセージ / 口コミ)  ※JSなし・ラジオ切替
 * ============================================ */
.shop-card__tabs {
    position: relative;
}

.shop-card__tab-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.shop-card__tab-nav {
    display: grid;
    background: #1f1f24;
    gap: 4px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 6px 6px 0 0;
    border: 1px solid var(--ap-line);
}

.shop-card__tab {
    font-size: 1.2rem;
    color: var(--white-transparent07);
    justify-content: center;
    padding: 7px 0px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    border-right: 1px solid var(--gold-border);
    margin-bottom: -0.5px;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s;
}

.shop-card__tab i {
    font-size: 1.2rem;
}

.shop-card__tab:hover {
    color: var(--gold);
}

.shop-card__tab-panels {
    padding: 20px 30px;
    border: 1px solid var(--ap-line);
    border-radius: 0 0 6px 6px;
}

.shop-card__tab-panel {
    display: none;
}

/* ラジオ checked → 対応するタブ/パネルを表示 (最大3タブ) */
.shop-card__tab-radio:nth-of-type(1):checked ~ .shop-card__tab-nav .shop-card__tab:nth-child(1),
.shop-card__tab-radio:nth-of-type(2):checked ~ .shop-card__tab-nav .shop-card__tab:nth-child(2),
.shop-card__tab-radio:nth-of-type(3):checked ~ .shop-card__tab-nav .shop-card__tab:nth-child(3) {
    color: var(--lp-gold-light);
    border-bottom-color: var(--gold);
    font-weight: 600;
}

.shop-card__tab-radio:nth-of-type(1):checked ~ .shop-card__tab-panels .shop-card__tab-panel:nth-child(1),
.shop-card__tab-radio:nth-of-type(2):checked ~ .shop-card__tab-panels .shop-card__tab-panel:nth-child(2),
.shop-card__tab-radio:nth-of-type(3):checked ~ .shop-card__tab-panels .shop-card__tab-panel:nth-child(3) {
    display: block;
}

/* パネル内容 */
.shop-card__tab-label {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--lp-gold-light);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.shop-card__tab-text {
    font-size: 1.2rem;
    color: var(--shop-text-dim);
    line-height: 1.5;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-card__review-date{
    margin-left: auto;
}

.shop-card__tab-meta {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-card__tab-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--gold);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.shop-card__tab-rating i {
    font-size: 1rem;
}

.shop-card__tab-empty {
    font-size: 1.15rem;
    color: var(--text-muted);
    padding: 6px 0;
}

@media (max-width: 600px) {
.shop-card__tab-text {
    font-size: 1.1rem;
}
}


/* ============================================
 * 個人店(private): 大型バナー + 写真4 + データ
 * ============================================ */
.shop-card--private .shop-card__main {
    display: block;
    padding: 12px 14px;
}

@media (min-width: 640px) {
    .shop-card--private .shop-card__main {
        padding: 12px 30px 0 30px;
    }
}

.shop-card__pv {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

/* ---- 上段: バナー + 写真4 ---- */
.shop-card__pv-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .shop-card__pv-top {
        grid-template-columns: 1.5fr 1fr;
    }

}

/* ---- メインバナー 16:9 ---- */
.shop-card__pv-banner {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-surface);
    border: 0.5px solid var(--gold-border);
    border-radius: var(--radius-6);
    overflow: hidden;
}

.shop-card__pv-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- 写真4枚: PC 2×2 / SP 4×1 ---- */
.shop-card__pv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

@media (min-width: 640px) {
    .shop-card__pv-grid {
        grid-template-rows: repeat(2, 1fr);
        aspect-ratio: 16 / 9;
    }

    .shop-card__pv-photo {
        aspect-ratio: auto;
        min-height: 0;
    }
}

.shop-card__pv-photo {
    display: block;
    aspect-ratio: 1;
    background: var(--bg-surface);
    border: 0.5px solid var(--gold-border);
    border-radius: var(--radius-6);
    overflow: hidden;
}

.shop-card__pv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* ---- PC: 2列×2段。左(16:9バナー)と高さを揃える ----
   左は 1.5fr / 右は 1fr なので、右カラム幅を W とすると
   左の幅は 1.5W + gap。左の高さ = (1.5W + 10px) * 9/16。
   右をその高さにするには、右グリッドの比率を
   16 : (9 * 1.5) = 16 : 13.5 にすればよい（gapぶんは誤差）。
   ※ .shop-card__pv-photo の aspect-ratio: 1 を打ち消すので
     必ずその定義より後ろに置くこと（同詳細度は後勝ち） */
@media (min-width: 640px) {
    .shop-card__pv-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        aspect-ratio: 16 / 13.5;
    }

    .shop-card__pv-photo {
        aspect-ratio: auto;
        min-height: 0;
    }
}

/* バナー: 写真無し時のノーイメージ (ストライプ) */
.shop-card__pv-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201, 168, 108, 0.03) 8px, rgba(201, 168, 108, 0.03) 16px);
}

/* ---- 下段: SP=縦積み(スタッツ→データ→サマリー) / PC=2カラム ---- */
.shop-card__pv-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-card__pv-list {
    order: 2;
    padding-top: 12px;
}

/* データリスト (ラベル 値) */
.shop-card__pv-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-width: 0;
}

.shop-card__pv-list .row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    font-size: 1.2rem;
    align-items: center;
}

.shop-card__pv-list dt {
    display: flex;
    align-items: center;
    color: var(--shop-text-dim);
    border: 1px solid #2a2a30;
    background: #1f1f24;
    gap: 5px;
    padding: 0.8rem;
    font-size: 1.1rem;
}

.shop-card__pv-list dt i {
    font-size: 1.1rem;
    flex-shrink: 0;
    flex-shrink: 0;
}

.shop-card__pv-list dd {
    margin: 0;
    color: var(--text-primary);
    word-break: break-all;
}

.shop-card__pv-reserve {
    order: 3;
    min-width: 0;
}

.shop-card__stats--pv {
    order: 1;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-radius: 4px;
    background: #1f1f24;
    border: 1px solid #2a2a30;
}

/* 状態テキストは数値より小さめに（時間表記が折り返さない幅で） */
.shop-card__stats--pv .shop-card__stat-txt {
    font-size: 1.2rem;
    line-height: 1.3;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* 個人店スタッツ: 活動時間は休みでも緑で統一 */
.shop-card__stats--pv .shop-card__stat--today .shop-card__stat-num {
    color: #5aad7a;
}
/* 個人店の割引カード + バッジ (SP=サマリーの下 / PC=スタッツの下) */
.shop-card__pv-promo {
    order: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.shop-card__pv-promo .shop-card__pbadges {
    margin-top: 0;
}

/* ---- PC: データ(左) / スタッツ(右) の2カラム。サマリーは下に全幅 ---- */
@media (min-width: 640px) {
    .shop-card__pv-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "list stats"
            "list promo"
            "rsv  rsv";
        gap: 10px;
        align-items: start;
    }

    .shop-card__pv-list {
        grid-area: list;
        padding-top: 0;
        border-top: 0;
    }

    .shop-card__stats--pv {
        grid-area: stats;
    }

    .shop-card__pv-promo {
        grid-area: promo;
    }

    .shop-card__pv-reserve {
        grid-area: rsv;
    }
}
@media (max-width: 639px) {
    .shop-card--private .shop-card__pv-top {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    .shop-card__pv{
        gap: 6px;
    }
    .shop-card__pv-photo {
        border-radius: 0;
    }
    /* .user-shop の枠を解除し、中の子を pv-top 直下の並びへ流す */
    .shop-card--private .user-shop {
        display: contents;
    }
    .shop-card--private .shop-card__main {
        padding: 12px 10px 0;
    }
    .shop-card--private .shop-card__pv-banner   {
        order: 1;
        margin: 0;
    } /* ヒーロー */
    .shop-card--private .shop-card__pv-grid     {
        order: 2;
        gap: 3px;
    } /* サブバナー */

    .shop-card--private .shop-card__promo-block { order: 4; } /* 割引 */
    .shop-card__pv-promo{
        gap: 6px;
    }
    .shop-card__pv-list{
        gap: 0;
    }
    .shop-card__pv-list .row {
        font-size: 1.1rem;
    }
    .shop-card__stats--pv {
        min-width: 0;
    }

    .shop-card__stats--pv .shop-card__stat-txt {
        font-size: 1rem;
    }
    .shop-card__pv-bottom {
        gap: 6px;
    }

    .shop-card__pv-list,
    .shop-card__pv-reserve {
        padding-top: 0px;
    }
}


/* ============================================
 * 案内状況 (3つ常時表示 / 該当だけ点灯)
 * ============================================ */
@keyframes badge-pulse {
    0%,
    100% {
        box-shadow: 0 1px 3px rgba(90, 173, 122, 0.35);
    }

    50% {
        box-shadow: 0 1px 8px rgba(90, 173, 122, 0.65);
    }
}

@media (prefers-reduced-motion: reduce) {
    .avail-badge--instant.is-active {
        animation: none;
    }
}

.shop-card__avail {
    display: flex;
    gap: 6px;
    padding: 12px 0 0 0;
}
@media (min-width: 640px) {
    .shop-card__avail {
        padding: 12px 30px 0;
    }
}

.avail-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 1px 15px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .02em;
    /* 基本: 薄暗い */
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    transition: background .2s, color .2s, border-color .2s;
}

/* 該当状態だけ点灯 */
.avail-badge--instant.is-active {
    background: rgba(90, 173, 122, 0.9);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 1px 4px rgba(90, 173, 122, .45);
    animation: badge-pulse 1.8s ease-in-out infinite;
}
.avail-badge--limited.is-active {
    background: linear-gradient(135deg, #e07a1a, #f0932b);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 1px 4px rgba(240, 147, 43, .4);
}
.avail-badge--soldout.is-active {
    background: linear-gradient(135deg, #c9342f, #d94444);
    color: #fff;
    border-color: transparent;
}
@media (max-width: 639px) {
    .avail-badge{
        padding: 1px 10px;
    }
    .shop-card__avail {
        padding: 12px 10px 0 10px;
    }
}
/* ============================================
 * 特徴バッジ (カード可 / 出張可)
 * ============================================ */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 9px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    line-height: 1.5;
}
.feature-badge i { font-size: 1rem; line-height: 1; }
.feature-badge--card { background: rgba(74, 114, 176, .16); color: #7aa0d0; border: 0.5px solid rgba(74, 114, 176, .3); }
.feature-badge--trip { background: rgba(74, 173, 134, .16); color: #6cc39c; border: 0.5px solid rgba(74, 173, 134, .3); }



/* ============================================
 * 結果なし
 * ============================================ */
.shop-list-empty {
    padding: 50px 0px;
    text-align: center;
    color: var(--shop-text-dim);
    line-height: 1.6;
    background: var(--bg-card);
    border: 0.5px dashed rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-md);
}

.shop-list-empty p {
    margin: 4px 0;
}


/* ============================================
 * ページネーション
 * ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.pagination__btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid var(--gold-border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 0 8px;
}

.pagination__btn:hover {
    background: var(--gold-pale);
    color: var(--gold);
    border-color: var(--gold);
}

.pagination__btn.is-active {
    background: var(--gold);
    color: var(--bg-base);
    border-color: var(--gold);
}

.pagination__btn--gap {
    border: none;
    color: var(--text-muted);
    pointer-events: none;
}


/* ============================================
 * SP一括上書き (max-width: 639px)
 * ============================================ */
@media (max-width: 639px) {

    /* ---- ヘッダー ---- */
    .shop-card__head-thumb {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 1.6rem;
    }

    .shop-card__name {
        font-size: 1.6rem;
    }

    .shop-card__head-sub {
        gap: 6px;
    }

    .shop-card__fav {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }



    /* ---- 本体: 縦積み (グリッド → データ) ---- */
    .shop-card__cols {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 10px 0;
    }

    /* グリッド: 4列・全件表示 (無料4名=1行 / 有料8名=2行) */
    /* SPは1行の横スライド。3.5枚見せて、残りは横に流す
       （grid-auto-flow: column にすると自動生成される列に幅が要るので
         grid-auto-columns で1枚ぶんの幅を決める） */
    .shop-card__tgrid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% - 3px * 3) / 3.5);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .shop-card__tgrid::-webkit-scrollbar {
        display: none;
    }

    .shop-card__therapist {
        scroll-snap-align: start;
    }
    .shop-card__therapist {
        min-width: 0;
    }
    .shop-card__therapist.is-active img {
        border-width: 1.5px;
    }

    .shop-card__therapist-name {
        font-size: 0.95rem;
    }

    .shop-card__side {
        gap: 6px;
    }

    .shop-card__avail--side .avail-badge {
        max-width: none;
        font-size: 1.1rem;
    }

    /* ---- データ: アイコンのみ ---- */
    .shop-card__data {
        width: 100%;
        gap: 0;
    }

    /* アイコンのみだと意味が伝わらないのでラベルは残す (幅を詰めて対応) */
    .shop-card__data-row dt {
        display: flex;
        font-size: 1rem;
        align-items: center;
        gap: 4px;
    }

    .shop-card__data-row dt i {
        font-size: 1rem;
        line-height: 1;
        flex-shrink: 0;
    }
    .shop-card__data-row dd {
        font-size: 1.1rem;
    }


    /* ---- スタッツ ---- */
    .shop-card__stat {
        padding: 6px 4px;
    }

    .shop-card__stat i {
        font-size: 1.2rem;
    }

    .shop-card__stat-label {
        font-size: 1.05rem;
    }

    .shop-card__stat-num {
        font-size: 1.4rem;
    }

    /* ---- フッター ---- */
    .shop-card__footer {
        padding: 0px 10px 12px 10px;
        margin-top: 6px;
    }

    /* ---- 件数表示 ---- */
    .result-bar__count strong {
        font-size: 1.6rem;
    }


    /* ---- 下段タブ ---- */
    .shop-card__tabs {
        padding: 0;
        margin: 0;
    }

    .shop-card__tab {
        font-size: 1.1rem;
    }

    .shop-card__tab i {
        font-size: 1rem;
    }

    .shop-card__tab-panels {
        padding: 10px;
    }
}

/* ---- seoよう市町村コメント ---- */
.area-seo {
    margin: 32px auto 0;
    padding: 24px 16px;
    max-width: 880px;
}
.area-seo__heading {
    font-size: 1.8rem;
    color: var(--gold, #c9a86c);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.25);
}
.area-seo__body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--shop-text-dim);
}
.area-seo__body p {
    margin-bottom: 1em;
}


/* ───────── お店 ネット予約 週サマリー（カード内） ───────── */

.shop-hl-card__head{
    margin-bottom: 1px;
    color: var(--shop-text-dim);
}
.sws__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    list-style: none;
    padding: 0;
}
.sws__day {
    text-align: center;
}
.sws__cell {
    display: block;
    padding: 5px 0;
    border-radius: 6px;
    border: 1px solid #2a2a30;
    background: #1f1f24;
    text-decoration: none;
}
.sws__cell--link {
    background: rgba(201, 168, 108, .08);
    border-color: #3a3a42;
    transition: background .12s ease, border-color .12s ease;
}
.sws__cell--link:hover,
.sws__cell--link:focus {
    background: rgba(201, 168, 108, .22);
    border-color: #d1c8b6;
    outline: none;
}
.sws__day.is-today .sws__cell {
    border-color: #c9a86c;
}
.sws__date {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
}
.sws__date small { color: #9c968b; }
.sws__date.is-sun { color: #d98b8b; }
.sws__date.is-sat { color: #8fb0e0; }
.sws__sym {
    display: block;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1px;
}

/* 記号カラー（3箇所統一） */
.sws-sym--open { color: var(--accent-geen); }
.sws-sym--few  { color: #c9a86c; }
.sws-sym--full { color: var(--accent-red); }
.sws-sym--off  { color: var(--shop-text-dim); }

.sws .shop-hl-card__title {
    font-size: 1rem;
    font-weight: 500;
}
/* SP: 7日→6日（カード内サマリー） */
@media (max-width: 600px) {
    .sws__days {
        grid-template-columns: repeat(6, 1fr);
    }
    .sws__day:nth-child(7) {
        display: none;
    }
    .sws__date{
        font-size: 0.9rem;
    }
}

/* ---- 2026-08-19 追加: 一覧ページ h1 直下のリード文 ---- */
.shop-list-head__lead {
    line-height: 1.8;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.shop-list-head__lead b {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0.2rem;
    font-variant-numeric: tabular-nums;
}

.shop-list-head__updated {
    font-size: 1.1rem;
    color: var(--text-muted);
}
@media (max-width: 600px) {
.shop-list-head__lead b {
    font-size: 1.4rem;
}
.shop-list-head__lead{
    font-size: 1.1rem;
}
.shop-list-head__updated{
    display: block;
    font-size: 1rem;
}
}
/* ============================================
 * v7 追加分
 *   1. ヘッダー (店舗タイプ + 市区町村(最寄駅))
 *   2. 左カラムのラッパー
 *   3. 割引バッジ (PC=サムネ下 / SP=予算の下)
 *   4. データ行の中に入れた特徴バッジ
 * ============================================ */

/* ---- 1. ヘッダー ---- */
.shop-card__head-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}


/* ---- 2. 左カラム (グリッド + PCバッジ) ---- */
.shop-card__colL {
    min-width: 0;
}

/* ---- 3. 割引バッジ ---- */
.shop-card__pbadges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.shop-card__pbadges--sp {
    display: none;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.promo-badge small {
    margin-left: 3px;
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    opacity: 0.85;
}
.promo-badge--ts {
    background: var(--promo-ts-deep);
    color: #fff;
}

.promo-badge--cpn {
    background: var(--promo-cpn-deep);
    color: #fff;
}

.promo-badge--ev {
    background: var(--promo-ev-deep);
    color: #fff;
}

/* ---- 4. データ行の中の特徴バッジ ---- */
.shop-card__data-row dd .feature-badge,
.shop-card__pv-list dd .feature-badge {
    margin-left: 6px;
    vertical-align: middle;
}

/* ---- SP ---- */
@media (max-width: 639px) {
    .shop-card__pbadges--pc {
        display: none;
    }

    .shop-card__pbadges--sp {
        display: flex;
        margin-top: 6px;
    }

    .shop-card__data-row dd .feature-badge,
    .shop-card__pv-list dd .feature-badge {
        margin-left: 4px;
    }
}
