/* =============================
   Astra全幅・余白リセット（single-spot）
============================= */
body.single-spot .site-content,
body.single-spot .ast-container,
body.single-spot #content,
body.single-spot .ast-separate-container,
body.single-spot .ast-article-single,
body.single-spot .entry-content,
body.single-spot .post-content,
body.single-spot #primary { 
    padding: 0 !important; 
    margin-top: 0 !important;
    max-width: 100% !important;
}
body.single-spot .ast-article-single { padding: 0 !important; }
body.single-spot { overflow-x: hidden !important; }
html { overflow-x: hidden !important; }

/* CSS変数 */
:root {
    --pink: #E8436A; --pink-light: #F06B8A; --pink-pale: #FFF0F3;
    --navy: #1A1F36; --navy-mid: #2D3557; --gray: #6B7280;
    --gray-light: #F4F5F7; --border: #E8EAED;
    --yellow: #F59E0B; --green: #10B981; --blue: #3B82F6;
}

/* =============================
   スタッツバー（濃紺・全幅）
============================= */
.spot-stats-bar { background: var(--navy); padding: 8px 20px; width: 100%; }
.spot-stats-bar-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; overflow: hidden; }
.spot-stats-label { font-size: 12px; font-weight: 700; color: white; white-space: nowrap; }
.spot-stats-div { width: 1px; height: 12px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.spot-stats-item { font-size: 11px; color: rgba(255,255,255,0.75); white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.spot-stats-num { font-size: 13px; font-weight: 800; color: white; }
/* スマホ：ラベル非表示・絵文字＋数字のみ */
@media (max-width: 600px) {
    .spot-stats-bar { padding: 6px 12px; }
    .spot-stats-bar-inner { gap: 10px; justify-content: space-around; }
    .spot-stats-div { display: none; }
    .spot-stats-text { display: none; }
    .spot-stats-num { font-size: 14px; }
    .spot-stats-item { font-size: 13px; }
}

/* 承認待ちバナー */
.spot-pending-banner { background: #FEF3C7; border-bottom: 2px solid #FCD34D; padding: 10px 20px; text-align: center; font-size: 13px; font-weight: 700; color: #92400E; }
.spot-pending-banner span { margin-right: 6px; }

/* 閉店・休業バナー */
.spot-status-banner {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px; font-weight: 700; font-size: 14px;
    width: 100%; box-sizing: border-box;
}
.spot-status-banner.closed {
    background: #1c1c1c; color: #fff;
    border-bottom: 3px solid #555;
}
.spot-status-banner.hiatus {
    background: #78350f; color: #FEF3C7;
    border-bottom: 3px solid #D97706;
}
.spot-status-banner .status-icon { font-size: 22px; flex-shrink: 0; }
.spot-status-banner .status-text { flex: 1; }
.spot-status-banner .status-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.spot-status-banner .status-text small { font-size: 12px; font-weight: 400; opacity: 0.85; }
@media (max-width: 600px) {
    .spot-status-banner { padding: 12px 14px; font-size: 13px; }
    .spot-status-banner .status-text strong { font-size: 14px; }
}

.spot-hero-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}
/* 左：写真エリア（50%） */
.spot-hero-img-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    height: 280px;
    background: var(--gray-light);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spot-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
}
.spot-hero-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* アイキャッチ管理UI（管理者のみ） */
.hero-thumb-admin {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 10;
}
.hero-thumb-btn {
    background: rgba(0,0,0,0.65);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.15s;
}
.hero-thumb-btn:hover { background: rgba(0,0,0,0.85); }
.hero-thumb-delete-btn { background: rgba(220,38,38,0.75); }
.hero-thumb-delete-btn:hover { background: rgba(220,38,38,0.95); }
.hero-thumb-save-btn { background: rgba(16,185,129,0.85); }
.hero-thumb-save-btn:hover { background: rgba(16,185,129,1); }
.hero-thumb-delete-form { display: inline; }
/* 右：情報エリア（50%） */
.spot-hero-body {
    flex: 1;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}
.spot-title { font-size: 22px; font-weight: 900; color: var(--navy); margin: 0; line-height: 1.35; }
.spot-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.spot-tag { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; white-space: nowrap; text-decoration: none; transition: opacity 0.15s; }
.spot-tag:hover { opacity: 0.75; }
.spot-area  { background: #EFF6FF; color: var(--blue); }
.spot-genre { background: var(--pink-pale); color: var(--pink); }
.spot-scene { background: #FFFBEB; color: var(--yellow); }

/* 行きたいボタン */
.want-list-action { flex: 1; display: flex; flex-direction: column; }
.want-message { padding: 8px 12px; background: #D1FAE5; color: #065F46; border-radius: 6px; margin-bottom: 8px; font-weight: 700; font-size: 12px; }
.want-list-form { flex: 1; display: flex; }
.hero-btn-group { display: flex; gap: 8px; margin-top: 12px; align-items: stretch; }
.btn-want-list { display: flex; align-items: center; justify-content: center; flex: 1; padding: 10px 8px; border-radius: 8px; border: 1.5px solid var(--pink); background: linear-gradient(to bottom, #ffffff 0%, #fde8f2 100%); color: var(--pink); font-weight: 700; font-size: 12px; letter-spacing: 0.03em; cursor: pointer; transition: all 0.2s; font-family: inherit; box-shadow: 0 1px 0 #f0a0c8, inset 0 1px 0 rgba(255,255,255,1); }
.btn-want-list:hover { background: linear-gradient(to bottom, #fce7f3 0%, #fbcfe8 100%); }
.btn-want-list.active { background: linear-gradient(to bottom, #f3f4f6 0%, #e5e7eb 100%); border-color: var(--border); color: var(--gray); box-shadow: 0 1px 0 #d1d5db, inset 0 1px 0 rgba(255,255,255,1); }
.btn-want-list.active:hover { background: linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 100%); }
.btn-phone-hero { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; padding: 10px 8px; border-radius: 8px; border: 1.5px solid #2563eb; background: linear-gradient(to bottom, #ffffff 0%, #dbeafe 100%); color: #1e3a8a; font-weight: 700; font-size: 12px; letter-spacing: 0.03em; text-decoration: none; transition: all 0.2s; box-shadow: 0 1px 0 #93c5fd, inset 0 1px 0 rgba(255,255,255,1); }
.btn-phone-hero:hover { background: linear-gradient(to bottom, #dbeafe 0%, #bfdbfe 100%); }
.btn-phone-hero.full-width { flex: none; width: 100%; }

/* =============================
   メインレイアウト（2カラム）
============================= */
.spot-page-container { max-width: 1400px; margin: 0 auto; padding: 16px 20px; box-sizing: border-box; width: 100%; }
.spot-page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 16px; align-items: start; }
.spot-main-col { min-width: 0; display: flex; flex-direction: column; gap: 12px; }

/* セクション共通 */
.spot-section { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.section-title { font-size: 16px; font-weight: 900; color: var(--navy); margin: 0 0 14px 0; padding-bottom: 10px; border-bottom: 2px solid var(--pink); display: flex; align-items: center; gap: 6px; }

/* 説明文 */
.spot-description-text { font-size: 14px; line-height: 1.8; color: #333; }
.spot-description-text p { margin: 0 0 12px 0; }
.spot-description-text h2 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 20px 0 8px 0; }
.spot-description-text h3 { font-size: 14px; font-weight: 800; color: var(--navy); margin: 16px 0 6px 0; padding: 4px 8px 4px 10px; border-left: 3px solid var(--pink); background: #FFF0F5; border-radius: 0 4px 4px 0; }
.spot-description-text hr { border: none; border-top: 1px solid var(--border); margin: 16px 0 0 0; }

/* 基本情報 */
.spot-info-grid { display: grid; gap: 0; }
.info-item { display: grid; grid-template-columns: 100px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.spot-map-wrap { margin-top: 10px; border-radius: 6px; overflow: hidden; }
/* 管理者編集 */
.admin-edit-btn { background: none; border: 1px solid #ddd; color: var(--gray); padding: 2px 8px; border-radius: 4px; font-size: 11px; cursor: pointer; margin-left: 8px; white-space: nowrap; }
.admin-edit-btn:hover { border-color: var(--pink); color: var(--pink); }
.admin-edit-form { margin-top: 8px; background: #FFF8FA; border: 1px solid #F9C6D3; border-radius: 6px; padding: 10px 12px; display: none; }
.admin-edit-form.open { display: block; }
.admin-edit-form input[type="text"], .admin-edit-form select { width: 100%; padding: 6px 8px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 13px; font-family: inherit; box-sizing: border-box; }
.admin-edit-form select[multiple] { height: 120px; }
.admin-edit-btns { display: flex; gap: 6px; margin-top: 8px; }
.admin-updated-msg { font-size: 11px; color: var(--green); font-weight: 700; margin-left: 8px; }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-label { font-weight: 700; color: var(--gray); font-size: 12px; }
.info-value { color: #333; font-size: 13px; }
.info-value a { color: var(--blue); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

/* こだわり条件 */
.spot-conditions { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.conditions-title { font-size: 13px; font-weight: 700; color: var(--navy); margin: 0 0 10px 0; }
.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.conditions-col:first-child { padding-right: 16px; border-right: 1px solid var(--border); }
.conditions-col:last-child { padding-left: 16px; }
@media (max-width: 600px) { 
    .conditions-grid { grid-template-columns: 1fr; }
    .conditions-col:first-child { padding-right: 0 !important; border-right: none !important; }
    .conditions-col:last-child { padding-left: 0 !important; }
}
.condition-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); gap: 8px; flex-wrap: wrap; }
.condition-row:last-child { border-bottom: none; }
.condition-row-left { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.condition-label-name { font-size: 12px; font-weight: 700; color: var(--gray); min-width: 80px; }
.condition-value { font-size: 12px; color: #333; }
.condition-value.smoking-no,
.condition-value.smoking-room,
.condition-value.smoking-allowed,
.condition-value.yes,
.condition-value.no { color: var(--pink); font-weight: 700; }
.condition-editor { font-size: 10px; color: #9CA3AF; }
.condition-edit-btn { background: none; border: 1px solid #ddd; color: var(--gray); padding: 3px 10px; border-radius: 4px; font-size: 11px; cursor: pointer; white-space: nowrap; }
.condition-edit-btn:hover { border-color: var(--pink) !important; color: var(--pink) !important; background: var(--pink-pale) !important; }
.condition-edit-form { width: 100%; background: #FFF8FA; border: 1px solid #F9C6D3; border-radius: 6px; padding: 10px 12px; margin-top: 4px; display: none; }
.condition-edit-form.open { display: block; }
.condition-radio-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.condition-radio-group label { font-size: 12px; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.condition-checkbox-wrap { margin-bottom: 8px; }
.condition-checkbox-wrap label { font-size: 12px; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.condition-form-btns { display: flex; gap: 6px; }
.condition-save-btn { background: var(--pink); color: white; border: none; padding: 5px 14px; border-radius: 5px; font-size: 11px; font-weight: 700; cursor: pointer; }
.condition-save-btn:hover { background: var(--pink-light); }
.condition-cancel-btn { background: none; border: 1px solid #ddd; color: var(--gray); padding: 5px 10px; border-radius: 5px; font-size: 11px; cursor: pointer; }
.condition-updated-msg { font-size: 11px; color: var(--green); font-weight: 700; margin-left: 8px; }

.spot-disclaimer { font-size: 10px; color: #9CA3AF; margin: 10px 0 0; line-height: 1.6; }

/* 外部リンク */
.spot-links { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.links-title { font-size: 13px; font-weight: 700; color: var(--navy); margin: 0 0 10px 0; }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; }
.link-button { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 12px; transition: all 0.2s; border: 1.5px solid; }
.link-icon { font-size: 14px; }
.link-official  { background: white; color: var(--green); border-color: var(--green); }
.link-official:hover  { background: var(--green); color: white; text-decoration: none; }
.link-tabelog   { background: white; color: #FF6B35; border-color: #FF6B35; }
.link-tabelog:hover   { background: #FF6B35; color: white; text-decoration: none; }
.link-hotpepper { background: white; color: #FF4444; border-color: #FF4444; }
.link-hotpepper:hover { background: #FF4444; color: white; text-decoration: none; }
.link-instagram { background: white; color: #E1306C; border-color: #E1306C; }
.link-instagram:hover { background: #E1306C; color: white; text-decoration: none; }

/* ギャラリー */
.spot-gallery-section { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(8, 1fr); } }
.gallery-item { position: relative; background: #fff; padding: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border-radius: 2px; cursor: pointer; transition: transform 0.2s; }
.gallery-item:hover { transform: scale(1.04); }
.gallery-item-inner { aspect-ratio: 1/1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.gallery-page-btn { width: 30px; height: 30px; border: 1.5px solid var(--pink); background: white; color: var(--pink); border-radius: 50%; font-size: 12px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: inherit; }
.gallery-page-btn.active, .gallery-page-btn:hover { background: var(--pink); color: white; }


/* レビューセクション */
.review-message { padding: 10px 14px; border-radius: 6px; margin-bottom: 16px; font-weight: 700; font-size: 13px; }
.review-success { background: #D1FAE5; color: #065F46; border: 1px solid var(--green); }
.review-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #EF4444; }

/* レビューフォーム */
.review-form-wrapper { background: var(--gray-light); border-radius: 6px; padding: 16px; margin-bottom: 20px; border: 1px solid var(--border); }
.review-submitting-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; justify-content: center; align-items: center; flex-direction: column; gap: 16px; }
.review-submitting-overlay.active { display: flex; }
.review-submitting-text { color: #fff; font-size: 18px; font-weight: 700; }
.review-submitting-spinner { width: 48px; height: 48px; border: 5px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: rs-spin 0.8s linear infinite; }
@keyframes rs-spin { to { transform: rotate(360deg); } }
.form-title { font-size: 14px; font-weight: 900; color: var(--navy); margin: 0 0 14px 0; }
.review-form { display: grid; gap: 12px; }
.form-field { display: grid; gap: 5px; }
.form-field label { font-weight: 700; color: var(--navy); font-size: 12px; }
.form-field label.required::after { content: " *"; color: #EF4444; }
.form-field input[type="text"],
.form-field input[type="date"],
.form-field select,
.form-field textarea { width: 100%; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 13px; font-family: inherit; transition: all 0.2s; background: white; box-sizing: border-box; min-width: 0; }
.form-field select { height: 38px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,67,106,0.08); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-actions { margin-top: 6px; }
.btn-submit-review { background: var(--pink); color: white; padding: 9px 28px; border: none; border-radius: 20px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.btn-submit-review:hover { background: var(--pink-light); }

/* 画像アップロード */
.review-image-upload-area { margin-top: 6px; }
.image-upload-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.image-slot { position: relative; aspect-ratio: 1/1; border: 2px dashed var(--border); border-radius: 6px; overflow: hidden; background: white; }
.image-slot input[type="file"] { display: none; }
.image-slot-label { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; cursor: pointer; color: var(--gray); font-size: 11px; gap: 4px; }
.image-slot-label .upload-icon { font-size: 20px; }
.image-slot .image-preview { position: absolute; inset: 0; display: none; }
.image-slot .image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-slot.has-image { border-color: var(--pink); }
.image-slot.has-image .image-slot-label { display: none; }
.image-slot.has-image .image-preview { display: block; }
.remove-image { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%; font-size: 11px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.upload-note { font-size: 11px; color: var(--gray); margin-top: 6px; }

/* 未ログイン */
.review-login-prompt { text-align: center; padding: 24px 16px; background: var(--gray-light); border-radius: 6px; margin-bottom: 20px; border: 1px solid var(--border); }
.review-login-prompt p { font-size: 13px; color: var(--gray); margin: 0 0 12px 0; }
.btn-login { display: inline-block; background: var(--blue); color: white; padding: 8px 24px; border-radius: 20px; text-decoration: none; font-weight: 700; font-size: 13px; transition: all 0.2s; }
.btn-login:hover { opacity: 0.85; color: white; text-decoration: none; }

/* レビュー一覧 */
.reviews-list { margin-top: 20px; }
.reviews-list-title { font-size: 14px; font-weight: 900; color: var(--navy); margin: 0 0 14px 0; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.no-reviews { text-align: center; color: var(--gray); font-size: 13px; padding: 30px 20px; }
.review-item { background: var(--gray-light); border-radius: 6px; padding: 14px; margin-bottom: 10px; border: 1px solid var(--border); transition: border-color 0.15s; }
.review-item:hover { border-color: #ccc; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 10px; }
.review-author { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.review-author-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-weight: 700; color: var(--navy); font-size: 13px; }
.review-date { font-size: 11px; color: var(--gray); }
.review-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.review-rating { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.review-content { font-size: 13px; line-height: 1.7; color: #333; margin-bottom: 10px; }
.review-content p { margin: 0 0 8px 0; }
.review-menu { font-size: 12px; padding: 8px 12px; border-radius: 4px; margin-top: 8px; background: white; color: #333; border-left: 2px solid var(--pink); }
.review-menu strong { color: var(--pink); }
.review-images { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; margin-top: 8px; overflow-x: auto; }
.review-images a { display: block; flex: 0 0 64px; width: 64px; height: 64px; border-radius: 4px; overflow: hidden; }
.review-images a img { width: 100%; height: 100%; object-fit: cover; }
.review-no-image-wrap { display: block; flex: 0 0 64px; width: 64px; height: 64px; border-radius: 4px; overflow: hidden; }
.review-no-image { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================
   サイドバー（右カラム）
============================= */
.spot-sidebar { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.sb-card { background: white; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; max-width: 100%; }
.sb-card-header { padding: 10px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); background: var(--gray-light); }
.sb-icon { font-size: 13px; }
.sb-title { font-size: 12px; font-weight: 800; color: var(--navy); }
.sb-card-body { padding: 12px; }

/* 統計カード */
.spot-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.spot-stat-item { text-align: center; padding: 10px 6px; background: var(--gray-light); border-radius: 6px; }
.spot-stat-num { font-size: 20px; font-weight: 900; color: var(--pink); display: block; line-height: 1; }
.spot-stat-num.green { color: var(--green); }
.spot-stat-num.blue  { color: var(--blue); }
.spot-stat-num.yellow { color: var(--yellow); }
.spot-stat-label { font-size: 10px; color: var(--gray); font-weight: 600; display: block; margin-top: 3px; }

/* スポットリスト（エリア・ジャンル） */
.sb-spot-list { display: flex; flex-direction: column; gap: 0; }
.sb-spot-item { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.sb-spot-item:last-child { border-bottom: none; }
.sb-spot-num { font-size: 11px; font-weight: 800; color: var(--pink); width: 18px; flex-shrink: 0; text-align: center; }
.sb-spot-thumb { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--gray-light); }
.sb-spot-info { flex: 1; min-width: 0; overflow: hidden; display: flex; flex-direction: column; gap: 3px; }
.sb-spot-name { font-size: 12px; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; display: block !important; width: 100%; }
.sb-spot-name:hover { color: var(--pink); }
.sb-spot-meta { display: flex; align-items: center; gap: 6px; }
.sb-spot-count { font-size: 10px; color: var(--gray); white-space: nowrap; }
.sb-spot-avg { font-size: 10px; color: var(--yellow); font-weight: 700; white-space: nowrap; }
.sb-empty { font-size: 12px; color: var(--gray); text-align: center; padding: 10px 0; }

/* =============================
   レスポンシブ
============================= */
@media (max-width: 900px) {
    .spot-page-layout { grid-template-columns: 1fr; }
    .spot-sidebar { flex-direction: column; width: 100%; }
    .spot-sidebar .sb-card { width: 100%; box-sizing: border-box; }
}
@media (max-width: 768px) {
    /* ヒーローカード：スマホは縦積み（今のまま） */
    .spot-hero-card { flex-direction: column; }
    .spot-hero-img-wrap { flex: none; max-width: 100%; width: 100%; height: 220px; position: relative; overflow: hidden; }
    .spot-hero-body { padding: 14px; }
    .spot-title { font-size: 20px; }

    .spot-page-container { padding: 12px 10px; }
    .spot-tag { padding: 3px 10px; font-size: 11px; }
    .info-item { grid-template-columns: 1fr; gap: 3px; }
    .links-grid { grid-template-columns: 1fr; }
    .link-button { justify-content: center; }
    .spot-section { padding: 14px; }
    .review-item { padding: 12px; }
    .review-header { flex-wrap: wrap; }
    .review-author { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 8px !important; }
    .review-author-info { display: flex !important; flex-direction: column !important; min-width: 0 !important; }
    .author-name { display: block !important; font-size: 13px !important; }
    .review-meta { flex-direction: row; align-items: center; gap: 8px; }
    .form-field input[type="date"] { width: 100% !important; max-width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; -webkit-appearance: none; appearance: none; }
    .btn-submit-review { width: 100%; }
    .spot-sidebar { flex-direction: column; }
    .spot-sidebar .sb-card { min-width: unset; flex: none; width: 100%; }
}

/* =============================
   忍者AdMax PC/SP切り替え
============================= */
.admax-wrap { text-align: center; margin: 16px 0; max-width: 100%; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.admax-pc { display: block; }
.admax-sp { display: none; }
/* サイドバー広告：PCのみ末尾表示、SPのみ②③間表示 */
.admax-sb-pc { display: block; overflow: hidden; max-width: 100%; }
.admax-sb-sp { display: none; overflow: hidden; max-width: 100%; }
.admax-sb-pc iframe,
.admax-sb-sp iframe { max-width: 100% !important; }
/* ヒーロー直下Web制作バナー（SP専用） */
.hero-web-banner { display: none; }
@media (max-width: 768px) {
    .admax-pc { display: none; }
    .admax-sp { display: block; }
    .admax-sb-pc { display: none; }
    .admax-sb-sp { display: block; }
    .hero-web-banner { display: block; margin-bottom: 16px; }
}
/* 営業時間 */
.hours-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.hours-item { font-size: 13px; color: #444; padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-item:last-child { border-bottom: none; }
/* 最寄駅 */
.nearest-stations-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.nearest-station-item { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.nearest-station-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; text-decoration: none; color: var(--navy); transition: background 0.15s; }
.nearest-station-link:hover { background: #f5f7ff; }
.nearest-station-name { font-weight: 700; font-size: 14px; }
.nearest-station-meta { font-size: 13px; color: #666; white-space: nowrap; margin-left: 12px; }
