/* ==========================================================================
   DERI HOTEL NAVI — style.css
   ========================================================================== */

/* ==========================================================================
   テーマ変数 — 男性モード
   ========================================================================== */
:root {
    --accent: #c9a84c;
    --accent-light: #e8c97a;
    --accent-dim: #a08030;
    --accent-bg: rgba(201,168,76,0.07);
    --accent-glow: rgba(201,168,76,0.18);

    --bg: #faf8f4;
    --bg-2: #ffffff;
    --bg-3: #f5f2ec;
    --bg-4: #ede8df;

    --text: #1a1410;
    --text-2: #6a5a4a;
    --text-3: #a09080;

    --border: rgba(180,140,80,0.15);
    --border-strong: rgba(180,140,80,0.38);
    --card-shadow: 0 2px 16px rgba(180,140,80,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 32px rgba(180,140,80,0.16), 0 2px 8px rgba(0,0,0,0.07);

    --radius: 4px;
    --radius-lg: 10px;
}

/* ==========================================================================
   テーマ変数 — 男性モード（デリヘル）深緋・金
   ========================================================================== */
[data-mode="men"] {
    --accent: #9b2d35;
    --accent-light: #c45565;
    --accent-dim: #7a1f2a;
    --accent-bg: rgba(155,45,53,0.07);
    --accent-glow: rgba(155,45,53,0.18);
    --border: rgba(155,45,53,0.14);
    --border-strong: rgba(155,45,53,0.34);
    --card-shadow: 0 2px 16px rgba(155,45,53,0.08), 0 1px 4px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 8px 32px rgba(155,45,53,0.15), 0 2px 8px rgba(0,0,0,0.09);
}

/* ==========================================================================
   テーマ変数 — 女性モード（女風）ローズレッド・ピンク白 — 異性への官能
   ========================================================================== */
[data-mode="women"] {
    --accent: #b5627a;
    --accent-light: #d4899e;
    --accent-dim: #8f3d5a;
    --accent-bg: rgba(181,98,122,0.07);
    --accent-glow: rgba(181,98,122,0.18);
    --bg: #fdf8f9;
    --bg-2: #ffffff;
    --bg-3: #f8f0f2;
    --bg-4: #f0e4e8;
    --text: #2a1a20;
    --text-2: #5a3a46;
    --text-3: #9a7a86;
    --border: rgba(181,98,122,0.18);
    --border-strong: rgba(181,98,122,0.38);
    --card-shadow: 0 2px 16px rgba(181,98,122,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 32px rgba(181,98,122,0.15), 0 2px 8px rgba(0,0,0,0.07);
}

/* ==========================================================================
   テーマ変数 — 男性同士モード ネイビー・コバルトブルー・シルバー
   ========================================================================== */
[data-mode="men_same"] {
    --accent: #2a5a8f;
    --accent-light: #5a8abf;
    --accent-dim: #1a3d6b;
    --accent-bg: rgba(42,90,143,0.07);
    --accent-glow: rgba(42,90,143,0.18);
    --bg: #f8f9fc;
    --bg-2: #ffffff;
    --bg-3: #f0f2f8;
    --bg-4: #e2e8f2;
    --text: #0e1824;
    --text-2: #3a4a62;
    --text-3: #7a8aa8;
    --border: rgba(42,90,143,0.15);
    --border-strong: rgba(42,90,143,0.35);
    --card-shadow: 0 2px 16px rgba(42,90,143,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 32px rgba(42,90,143,0.15), 0 2px 8px rgba(0,0,0,0.07);
}

/* ==========================================================================
   テーマ変数 — 女性同士モード ミディアムパープル・ラベンダー白 — 神秘と親密
   ========================================================================== */
[data-mode="women_same"] {
    --accent: #8a5a9e;
    --accent-light: #b08ac4;
    --accent-dim: #6a3a80;
    --accent-bg: rgba(138,90,158,0.07);
    --accent-glow: rgba(138,90,158,0.18);
    --bg: #faf8fc;
    --bg-2: #ffffff;
    --bg-3: #f4f0f8;
    --bg-4: #e8e0f0;
    --text: #1a1428;
    --text-2: #4a3a5e;
    --text-3: #8a7a9a;
    --border: rgba(138,90,158,0.18);
    --border-strong: rgba(138,90,158,0.38);
    --card-shadow: 0 2px 16px rgba(138,90,158,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 8px 32px rgba(138,90,158,0.15), 0 2px 8px rgba(0,0,0,0.07);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }

/* 女性モード: 明朝体（デフォルト） */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* 男性モード・男性同士: ゴシック体 */
[data-mode="men"] body,
body[data-mode="men"],
body[data-mode="men_same"] {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

/* ==========================================================================
   モードバッジ（ヘッダー内）
   ========================================================================== */
.mode-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    background: var(--accent-bg);
    color: var(--accent-dim);
    border: 1px solid var(--border-strong);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.portal-header {
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.portal-header::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent-light) 50%, var(--accent) 80%, transparent);
    transition: background 0.4s;
}

.header-inner {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== ゲートへ戻るボタン（おしゃれ版） ===== */
.btn-to-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 12px;
    background: var(--bg-3);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 52px;
}
.btn-to-gate::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.btn-to-gate:hover::after { transform: scaleX(1); }
.btn-to-gate:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-to-gate:active { transform: translateY(0); box-shadow: none; }

.btn-gate-icon { font-size: 15px; line-height: 1; }
.btn-gate-text {
    font-size: 9px;
    font-weight: 600;
    color: var(--accent-dim);
    letter-spacing: 1px;
    transition: color 0.2s;
}
.btn-to-gate:hover .btn-gate-text { color: var(--accent); }

.header-logo { flex: 1; text-align: center; }

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}
.logo-text em { font-style: italic; color: var(--accent); transition: color 0.4s; }

.lang-buttons { display: flex; gap: 3px; }

.lang-btn {
    padding: 5px 7px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-3);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.lang-btn:hover, .lang-btn.active {
    border-color: var(--border-strong);
    color: var(--accent);
    background: var(--accent-bg);
}

/* 男性/女性専用バー */
.mode-title-bar {
    text-align: center;
    padding: 5px 14px 6px;
    border-top: 1px solid var(--border);
}
.mode-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.mode-label.men  { color: #c9a84c; }
.mode-label.women { color: #c47a88; }

/* ==========================================================================
   エリア選択
   ========================================================================== */
.area-section {
    background: var(--bg-2);
    margin: 14px;
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.breadcrumb-item { font-size: 11px; color: var(--text-3); }
.breadcrumb-item.active { color: var(--accent); font-weight: 500; }
.breadcrumb-sep { color: var(--text-3); font-size: 11px; }

.area-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.area-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    flex: 1;
}

/* ===== 1つ前へ戻るボタン ===== */
.btn-area-back {
    display: none; /* JSで flex に切り替え */
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 20px;  /* pill shape */
    color: var(--text-2);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
}
.btn-area-back:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(-2px);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-area-back:active { transform: translateX(0); }

.back-arrow { font-size: 14px; line-height: 1; }
.back-text { letter-spacing: 0.5px; }

/* エリアグリッド */
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.area-grid.col-2 { grid-template-columns: repeat(2,1fr); }
.area-grid.region-level { grid-template-columns: repeat(3,1fr); }

.area-btn {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.25s ease both;
}
.area-btn:hover {
    background: var(--bg-2);
    border-color: var(--border-strong);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}
.area-btn:active { transform: translateY(0); box-shadow: none; }

.area-btn.has-children::after {
    content: '›';
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-3);
    transition: color 0.2s;
}
.area-btn.has-children:hover::after { color: var(--accent); }

.area-btn.all-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px var(--accent-glow);
}
.area-btn.all-btn:hover {
    background: var(--accent-dim);
    border-color: var(--accent-dim);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   検索ツール群（1行レイアウト）
   ========================================================================== */
.search-tools {
    padding: 6px 14px 10px;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
}

.search-wrapper {
    flex: 2;
    display: flex;
    align-items: center;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 12px;
    transition: all 0.2s;
    box-shadow: var(--card-shadow);
    min-width: 0;
}
.search-wrapper:focus-within {
    border-color: var(--border-strong);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-icon { font-size: 13px; color: var(--text-3); flex-shrink: 0; }

.search-input-lux {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0 12px 7px;
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.search-input-lux::placeholder { color: var(--text-3); }

.search-clear {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-3);
    font-size: 11px;
    cursor: pointer;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.search-clear:hover { border-color: var(--border-strong); color: var(--text-2); }

/* ===== 現在地ボタン ===== */
.btn-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 6px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
    width: 60px;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}
.btn-location::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-location:hover::before { opacity: 1; }
.btn-location:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}
.btn-location:active { transform: translateY(0); }
.btn-location.loading .btn-location-icon { animation: spin 1s linear infinite; display: inline-block; }

.btn-location-icon { font-size: 18px; line-height: 1; position: relative; z-index: 1; }
.btn-location-label {
    font-size: 10px;
    color: var(--text-2);
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.2s;
}
.btn-location:hover .btn-location-label { color: var(--accent); }

/* 最寄駅検索 */
.station-search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 10px;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: var(--card-shadow);
    min-width: 0;
}
.station-search-wrapper:focus-within {
    border-color: var(--border-strong);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.station-icon { font-size: 13px; flex-shrink: 0; }

.station-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--text);
    font-size: 12px;
    font-family: inherit;
    outline: none;
    min-width: 0;
}
.station-input::placeholder { color: var(--text-3); }

/* ホテル追加ボタン（未掲載ホテル情報提供） */
.btn-add-hotel {
    flex-shrink: 0;
    width: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    background: transparent;
    border: 1.5px solid var(--border-strong, rgba(180,150,100,0.4));
    border-radius: var(--radius-lg, 12px);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.btn-add-hotel:hover {
    background: var(--accent-glow, rgba(201,168,76,0.1));
    border-color: var(--accent, #c9a84c);
}
.btn-add-hotel-icon { font-size: 15px; line-height: 1; }
.btn-add-hotel-label { font-size: 9px; font-weight: 700; color: var(--accent, #c9a84c); text-align: center; line-height: 1.4; }
.label-short { display: none; }

/* ==========================================================================
   ステータス・リスト
   ========================================================================== */
.result-status {
    padding: 4px 14px 6px;
    font-size: 12px;
    color: var(--text-3);
    max-width: 640px;
    margin: 0 auto;
}
.result-status strong { color: var(--accent); font-weight: 700; }

.hotel-list-container {
    padding: 0 14px 100px;
    max-width: 640px;
    margin: 0 auto;
}

.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 36px; margin-bottom: 14px; opacity: 0.3; }
.empty-text { color: var(--text-3); font-size: 13px; line-height: 2; }

/* ホテルカード */
.hotel-card-lux {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
    animation: fadeInUp 0.3s ease both;
    box-shadow: var(--card-shadow);
}
.hotel-card-lux::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.hotel-card-lux:hover::before { opacity: 1; }
.hotel-card-lux:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.hotel-card-body { padding: 16px; }

.hotel-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.hotel-name { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.5; flex: 1; }

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    background: var(--accent-bg);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: var(--radius);
    white-space: nowrap;
    flex-shrink: 0;
}
.hotel-rating-star { color: var(--accent); font-size: 10px; }
.hotel-rating-score { color: var(--accent-dim); font-size: 12px; font-weight: 700; }

.hotel-info-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px;
}
.hotel-info-icon { font-size: 11px; width: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.hotel-info-text { font-size: 12px; color: var(--text-2); line-height: 1.6; }

.hotel-distance-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-bg);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--accent-dim);
    font-weight: 700;
    margin-bottom: 8px;
}

.hotel-card-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.hotel-price-label { font-size: 10px; color: var(--text-3); margin-bottom: 2px; letter-spacing: 0.5px; }
.hotel-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    transition: color 0.4s;
}

/* ==========================================================================
   ローディング
   ========================================================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250,248,244,0.88);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    gap: 16px;
}

.loading-spinner {
    width: 36px; height: 36px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.loading-text { font-size: 11px; color: var(--text-3); letter-spacing: 2px; }

/* ==========================================================================
   アニメーション
   ========================================================================== */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.area-btn:nth-child(1)  { animation-delay: 0.00s; }
.area-btn:nth-child(2)  { animation-delay: 0.03s; }
.area-btn:nth-child(3)  { animation-delay: 0.06s; }
.area-btn:nth-child(4)  { animation-delay: 0.09s; }
.area-btn:nth-child(5)  { animation-delay: 0.12s; }
.area-btn:nth-child(6)  { animation-delay: 0.15s; }
.area-btn:nth-child(7)  { animation-delay: 0.18s; }
.area-btn:nth-child(8)  { animation-delay: 0.21s; }
.area-btn:nth-child(9)  { animation-delay: 0.24s; }
.area-btn:nth-child(10) { animation-delay: 0.27s; }

.hotel-card-lux:nth-child(1) { animation-delay: 0.00s; }
.hotel-card-lux:nth-child(2) { animation-delay: 0.05s; }
.hotel-card-lux:nth-child(3) { animation-delay: 0.10s; }
.hotel-card-lux:nth-child(4) { animation-delay: 0.15s; }
.hotel-card-lux:nth-child(5) { animation-delay: 0.20s; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-3); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }

/* ==========================================================================
   投稿サマリー（ホテルカード内）
   ========================================================================== */

/* カードをクリッカブルに */
.hotel-card-lux {
    cursor: pointer;
}

/* 呼べる率バー */
.report-bar-wrap {
    margin: 10px 0 4px;
}

.report-bar {
    height: 6px;
    background: rgba(220,60,60,0.12);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.report-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf7a, #6dd89a);
    border-radius: 3px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.report-counts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.report-can {
    font-size: 11px;
    font-weight: 700;
    color: #3a9a60;
}

.report-cannot {
    font-size: 11px;
    font-weight: 700;
    color: #c05050;
}

.report-shop {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-dim);
    background: var(--accent-bg);
    border: 1px solid var(--border);
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: auto;
}

/* 投稿なし */
.report-none {
    margin: 10px 0 4px;
    font-size: 11px;
    color: var(--text-3);
    font-style: italic;
    cursor: pointer;
    transition: color 0.2s;
}
.hotel-card-lux:hover .report-none { color: var(--accent); }

/* フッターの詳細リンク */
.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hotel-detail-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: var(--accent-dim);
    transition: color 0.2s;
    white-space: nowrap;
}
.hotel-card-lux:hover .hotel-detail-link { color: var(--accent); }

/* ==========================================================================
   ホテルランクバッジ（楽天評価の代替表示）
   ========================================================================== */
.hotel-card-head {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.hotel-card-head .hotel-name {
    flex: 1;
    min-width: 0;
}
.hotel-rank-badge {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Noto Serif JP', serif;
    margin-top: 2px;
}
.hotel-rank-badge.rank-premium {
    background: linear-gradient(135deg, #fff8e8, #fdf0cc);
    border: 1px solid #c9a84c;
    color: #8a6820;
}
.hotel-rank-badge.rank-high {
    background: var(--bg-3);
    border: 1px solid var(--border-strong);
    color: var(--accent-dim);
}
.hotel-rank-badge.rank-std {
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-3);
}
/* 距離バッジをheadに合わせて調整 */
.hotel-card-head .hotel-distance-badge {
    margin-bottom: 0;
    margin-top: 2px;
}

/* ==========================================================================
   投稿サマリー（競合と差別化した独自表現）
   ========================================================================== */
.report-summary-row {
    margin: 11px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* 入れた/NGの分割バー */
.report-state-wrap { width: 100%; }
.report-state-bar {
    display: flex;
    height: 26px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.report-state-can {
    background: linear-gradient(90deg, #3a9a60, #52b87a);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
    min-width: 0;
    overflow: hidden;
}
.report-state-cannot {
    background: linear-gradient(90deg, #c06060, #d07070);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
    min-width: 0;
    overflow: hidden;
}
.report-state-can span,
.report-state-cannot span {
    font-size: 10px;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
    padding: 0 7px;
    letter-spacing: 0.3px;
}
.report-state-can b,
.report-state-cannot b {
    font-weight: 700;
    margin-left: 2px;
}

/* メタ情報行（公式バッジ + 鮮度） */
.report-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

/* 店舗確認済バッジ */
.badge-official {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: var(--accent-bg);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    font-size: 10px;
    color: var(--accent-dim);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.badge-official::before { content: '✓ '; }

/* 鮮度ラベル */
.freshness {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
}
.freshness.fresh  { background: rgba(58,154,96,0.1);  color: #3a7a50; font-weight: 700; }
.freshness.recent { background: rgba(58,154,96,0.07); color: #5a8a60; }
.freshness.normal { color: var(--text-3); }
.freshness.old    { color: var(--text-3); opacity: 0.7; }

/* 情報なし行 */
.report-empty-row {
    margin: 10px 0 4px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    background: var(--bg-3);
    border: 1px dashed var(--border-strong);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.hotel-card-lux:hover .report-empty-row {
    border-color: var(--accent);
    background: var(--accent-bg);
}
.report-empty-icon { font-size: 13px; opacity: 0.5; }
.report-empty-text {
    font-size: 11px;
    color: var(--text-3);
    font-style: italic;
    transition: color 0.2s;
}
.hotel-card-lux:hover .report-empty-text { color: var(--accent-dim); }

/* フッターの価格+リンク並び */
.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px;
    padding-top: 11px;
    border-top: 1px solid var(--border);
    gap: 8px;
}
.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.hotel-price-label {
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 0.3px;
}
.hotel-price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    transition: color 0.4s;
}

/* ==========================================================================
   市区町村ボタン（件数付き）
   ========================================================================== */
.area-btn .city-name {
    flex: 1;
    text-align: left;
}
.area-btn .city-count {
    flex-shrink: 0;
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-dim);
    transition: all 0.2s;
    margin-left: 6px;
}
.area-btn:hover .city-count {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
/* 件数付きボタンはテキスト左寄せ */
.area-btn:has(.city-name) {
    justify-content: flex-start;
    padding: 13px 12px;
}

/* ==========================================================================
   男性モード — 全要素ゴシック体
   ========================================================================== */
body[data-mode="men"],
body[data-mode="men"] * {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif !important;
    font-style: normal !important;
}

/* 数字・価格はゴシックでも読みやすく */
body[data-mode="men"] .hotel-price-value {
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

/* ロゴだけCormorantを残す（ブランドとして） */
body[data-mode="men"] .logo-text,
body[data-mode="men"] .header-title {
    font-family: 'Cormorant Garamond', 'Noto Sans JP', sans-serif !important;
    font-style: italic !important;
}

/* 店舗投稿の可・相談・不可バッジ */
.report-shop-verdict {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.report-shop-verdict.verdict-ok  { background: rgba(58,154,96,0.12); color: #3a9a60; border: 1px solid rgba(58,154,96,0.3); }
.report-shop-verdict.verdict-ng  { background: rgba(192,80,80,0.1);  color: #c05050; border: 1px solid rgba(192,80,80,0.25); }
.report-shop-verdict.verdict-consult { background: rgba(201,168,76,0.12); color: #a08030; border: 1px solid rgba(201,168,76,0.3); }

/* ==========================================================================
   ホテルカード内サマリー（4ボックス）
   ========================================================================== */
.card-summary-wrap {
    margin: 10px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.card-summary-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-summary-label {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
}
.card-summary-label.shop {
    background: var(--accent-bg);
    color: var(--accent-dim);
    border: 1px solid var(--border-strong);
}
.card-summary-label.user {
    background: rgba(58,154,96,0.08);
    color: #3a7a50;
    border: 1px solid rgba(58,154,96,0.2);
}
.card-summary-boxes {
    display: flex;
    gap: 4px;
    flex: 1;
}
.card-summary-box {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid;
    flex: 1;
    justify-content: center;
}
.card-summary-box.shop-can    { background: rgba(58,154,96,0.07);  border-color: rgba(58,154,96,0.25); }
.card-summary-box.shop-ng     { background: rgba(192,80,80,0.06);  border-color: rgba(192,80,80,0.2); }
.card-summary-box.user-can    { background: rgba(58,154,96,0.05);  border-color: rgba(58,154,96,0.18); }
.card-summary-box.user-cannot { background: rgba(192,80,80,0.04);  border-color: rgba(192,80,80,0.15); }
.csb-val {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}
.card-summary-box.shop-can .csb-val    { color: #3a9a60; }
.card-summary-box.shop-ng .csb-val     { color: #c05050; }
.card-summary-box.user-can .csb-val    { color: #3a9a60; }
.card-summary-box.user-cannot .csb-val { color: #c05050; }
.csb-label {
    font-size: 10px;
    color: var(--text-3);
}

/* 駅名横の参考料金（インライン） */
.hotel-price-inline {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 11px;
    color: var(--accent-dim);
    font-weight: 600;
    white-space: nowrap;
    padding: 2px 8px;
    background: var(--accent-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

/* ==========================================================================
   ホテル詳細パネル（SPA統合）
   ========================================================================== */
.hotel-info-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}
.hotel-name-main {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 14px;
}
.info-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: flex-start;
}
.info-icon { font-size: 13px; width: 18px; flex-shrink: 0; margin-top: 1px; opacity: 0.65; }
.info-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.hotel-meta-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.hotel-meta-chip {
    display: flex; align-items: center; gap: 4px;
    padding: 5px 12px; background: var(--bg-3);
    border: 1px solid var(--border); border-radius: 20px;
    font-size: 12px; color: var(--text-2); flex-wrap: wrap;
}
.meta-price {
    margin-left: 6px; padding-left: 8px;
    border-left: 1px solid var(--border-strong);
    font-size: 13px; font-weight: 600; color: var(--accent-dim);
}
.section-head {
    display: flex; align-items: center; gap: 10px; margin: 20px 0 10px;
}
.section-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; font-style: italic; color: var(--text);
}
.section-head-line { flex: 1; height: 1px; background: var(--border); }
.summary-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 18px;
    margin-bottom: 12px; box-shadow: var(--shadow);
}
.summary-num {
    text-align: center; padding: 12px 8px;
    border-radius: var(--radius); border: 1px solid;
}
.summary-num.can    { background: var(--green-bg, rgba(58,154,96,0.08)); border-color: rgba(58,154,96,0.25); }
.summary-num.cannot { background: var(--red-bg, rgba(192,80,80,0.08));   border-color: rgba(192,80,80,0.25); }
.summary-num-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600; line-height: 1;
}
.summary-num.can    .summary-num-value { color: #3a9a60; }
.summary-num.cannot .summary-num-value { color: #c05050; }
.summary-num-label { font-size: 10px; color: var(--text-3); margin-top: 4px; letter-spacing: 0.5px; }
.summary-bar { height: 8px; background: rgba(192,80,80,0.15); border-radius: 4px; overflow: hidden; }
.summary-bar-fill { height: 100%; background: linear-gradient(90deg,#4caf7a,#6dd89a); border-radius: 4px; transition: width 0.8s ease; }
.summary-bar-label { display: flex; justify-content: space-between; margin-top: 5px; font-size: 10px; color: var(--text-3); }
.report-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 16px; margin-bottom: 8px;
    box-shadow: var(--shadow); animation: fadeInUp 0.3s ease both;
}
.report-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.report-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.report-badge.can    { background: rgba(58,154,96,0.08); color: #3a9a60; }
.report-badge.cannot { background: rgba(192,80,80,0.08); color: #c05050; }
.report-poster-type { font-size: 11px; color: var(--text-3); margin-left: auto; }
.report-poster-type.shop { background: var(--accent-bg); border: 1px solid var(--border); color: var(--accent-dim); padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.report-conditions { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.report-condition-chip { padding: 3px 9px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; font-size: 11px; color: var(--text-2); }
.report-comment { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 8px; }
.report-shop-used { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 5px; }
.report-shop-name { color: var(--accent-dim); font-weight: 600; }
.report-date { font-size: 10px; color: var(--text-3); margin-top: 8px; text-align: right; }
.form-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--text-2); margin-bottom: 7px; letter-spacing: 0.5px; }
.toggle-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.toggle-btn { padding: 12px; border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-3); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-align: center; }
.toggle-btn.can.active    { background: rgba(58,154,96,0.08); border-color: #3a9a60; color: #3a9a60; }
.toggle-btn.cannot.active { background: rgba(192,80,80,0.08); border-color: #c05050; color: #c05050; }
.conditions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; }
.condition-item { display: flex; align-items: center; gap: 7px; padding: 8px 10px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all 0.15s; font-size: 12px; color: var(--text-2); }
.condition-item.checked { background: var(--accent-bg); border-color: var(--border-strong); color: var(--accent-dim); font-weight: 600; }
.condition-item input { display: none; }
.form-textarea { width: 100%; padding: 12px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 13px; color: var(--text); resize: vertical; min-height: 80px; outline: none; transition: border-color 0.2s; }
.form-textarea:focus { border-color: var(--border-strong); }
.form-select { width: 100%; padding: 12px 14px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 13px; color: var(--text); outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a09080' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.btn-submit { width: 100%; padding: 15px; background: var(--accent); border: none; border-radius: var(--radius-lg); font-family: inherit; font-size: 14px; font-weight: 700; color: #fff; cursor: pointer; transition: all 0.2s; letter-spacing: 1px; box-shadow: 0 4px 16px var(--accent-glow); }
.btn-submit:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.report-shop-verdict { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.report-shop-verdict.verdict-ok { background: rgba(58,154,96,0.12); color: #3a9a60; border: 1px solid rgba(58,154,96,0.3); }
.report-shop-verdict.verdict-ng { background: rgba(192,80,80,0.1); color: #c05050; border: 1px solid rgba(192,80,80,0.25); }

/* ==========================================================================
   ゲートページ（index.html）
   ========================================================================== */
.gate-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg);
}

/* 言語切替 */
.lang-switcher {
    position: fixed;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 4px;
    z-index: 100;
}

/* コンテナ */
.gate-container {
    width: 100%;
    max-width: 400px;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* ヘッダー */
.gate-header {
    text-align: center;
}

.gate-header .site-logo {
    font-size: 0;
    margin-bottom: 10px;
}

.gate-header .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 1px;
}

.gate-header .logo-text em {
    font-style: italic;
    color: var(--accent);
}

.tagline {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 2px;
    margin-top: 6px;
}

/* 選択ボックス */
.selection-box {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-text {
    font-size: 12px;
    color: var(--text-3);
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* ゲートボタン共通 */
.btn-gate {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    text-align: center;
}

/* 男性用ボタン */
.btn-men {
    background: linear-gradient(135deg, var(--bg-3), #f0ead8);
    border-color: var(--accent);
    color: var(--accent-dim);
    box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-men:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* 女性用ボタン */
.btn-women {
    background: linear-gradient(135deg, var(--bg-3), #faeef0);
    border-color: rgba(196,122,136,0.45);
    color: #9a5060;
}
.btn-women:hover {
    background: #c47a88;
    border-color: #c47a88;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,122,136,0.3);
}

/* 店舗用ボタン */
.btn-shop-gate {
    background: var(--bg-3);
    border-color: var(--border);
    color: var(--text-2);
    font-size: 13px;
}
.btn-shop-gate:hover {
    background: var(--bg-2);
    border-color: var(--border-strong);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

/* ==========================================================================
   呼べた理由モーダル — レスポンシブラベル切り替え
   375px以上: 全角カタカナ表示 / 374px以下: 半角カタカナ表示
   ========================================================================== */
.cr-label-full   { display: inline; }
.cr-label-narrow { display: none; }

@media (max-width: 374px) {
    .cr-label-full   { display: none; }
    .cr-label-narrow { display: inline; }
}

/* ===== 検索エリア スマホ対応 (≤375px) ===== */
@media (max-width: 375px) {
    .search-tools {
        flex-wrap: wrap;
        gap: 6px;
    }
    /* 上段: 現在地 + ホテル名検索 */
    .btn-location {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        order: 1;
    }
    .search-wrapper {
        flex: 1 1 auto;
        order: 2;
    }
    /* 下段: 駅検索 + 未掲載 */
    .station-search-wrapper {
        flex: 2 1 auto;
        order: 3;
    }
    .btn-add-hotel {
        flex: 1 1 auto;
        width: auto;
        order: 4;
    }
    /* ラベルを短縮 */
    .label-full { display: none; }
    .label-short { display: inline; }
    /* 現在地ラベルも小さめ */
    .btn-location-label { font-size: 9px; }
    .btn-location-icon  { font-size: 15px; }
}

.btn-gate:active { transform: translateY(0); box-shadow: none; }