/* =========================================
   店舗ページ (single-town.php) スタイル
   段階① : Hero・基本情報・アクセスのみのシンプル版
   段階② : LP化後に本文（ブロックエディタ）でギャラリー等を追加
   既存の style.css の変数・共通クラスを継承
   ========================================= */


/*------------------------------------------
  1. Hero セクション
     ② アイキャッチを縮小（60vh→45vh）
        店舗名を大きく・キャッチコピーを下に
------------------------------------------*/
.town-lp .lp-hero {
    position: relative;
    min-height: 45vh;          /* ② 60vh→45vh に縮小 */
    max-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

/* アイキャッチ画像なしのフォールバック */
.town-lp .lp-hero--no-image {
    min-height: 220px;
    background: linear-gradient(135deg, var(--osumi-navy) 0%, #2a4a7f 100%);
}

.town-lp .lp-hero-overlay {
    width: 100%;
    padding: 48px 0 44px;
    background: linear-gradient(
        to top,
        rgba(12, 35, 64, 0.92) 0%,
        rgba(12, 35, 64, 0.55) 55%,
        transparent 100%
    );
}

/* ② 店舗名をメインの大見出しに */
.town-lp .lp-shop-name {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.55);
}

/* ② キャッチコピーは店舗名の下・サブテキストとして */
.town-lp .lp-catchphrase {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* エリア・ジャンルタグ */
.town-lp .lp-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.town-lp .lp-hero-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(246, 173, 85, 0.25);
    color: var(--osumi-orange);
    border: 1px solid rgba(246, 173, 85, 0.4);
    letter-spacing: 0.04em;
}

.town-lp .lp-hero-tag--genre {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

/* SP */
@media (max-width: 768px) {
    .town-lp .lp-hero {
        min-height: 38vh;
    }
    .town-lp .lp-hero-overlay {
        padding: 36px 0 32px;
    }
}


/*------------------------------------------
  2. メインコンテナ（2カラム）
------------------------------------------*/
.town-lp .lp-main-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 48px;
    margin-bottom: 80px;
}

.town-lp .lp-content-area {
    flex: 1;
    min-width: 0;
}

.town-lp .lp-sidebar {
    width: 300px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .town-lp .lp-main-container {
        flex-direction: column;
    }
    .town-lp .lp-sidebar {
        width: 100%;
    }
}


/*------------------------------------------
  3. セクション共通
------------------------------------------*/
.town-lp .lp-section {
    margin-bottom: 52px;
}

.town-lp .lp-section-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--osumi-navy);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--osumi-orange);
    display: inline-block;
}


/*------------------------------------------
  4. 想いセクション（データありのみ表示）
------------------------------------------*/
.town-lp .lp-description {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--osumi-text);
}

.town-lp .lp-description p {
    margin-bottom: 1.2rem;
}


/*------------------------------------------
  5. 本文エリア（LP化後の拡張用）
------------------------------------------*/
.town-lp .content-section .entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
}


/*------------------------------------------
  6. ラジオ連携ボックス
------------------------------------------*/
.town-lp .radio-box {
    background: #fdf8f0;
    border-left: 5px solid var(--osumi-orange);
    border-radius: 0 8px 8px 0;
    padding: 28px 30px;
}

.town-lp .radio-box-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--osumi-navy);
    margin-bottom: 0.7rem;
}

.town-lp .radio-box p {
    font-size: 0.95rem;
    color: var(--color-sub);
    margin-bottom: 1rem;
}

.town-lp .related-radio-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.town-lp .related-radio-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--osumi-navy);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e8ddc8;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.town-lp .related-radio-list li a::before {
    content: "🎙️";
    font-size: 1rem;
    flex-shrink: 0;
}

.town-lp .related-radio-list li a:hover {
    background: var(--osumi-navy);
    color: #fff;
    border-color: var(--osumi-navy);
    opacity: 1;
}

.town-lp .lp-privilege-badge {
    margin-top: 14px;
    background: var(--osumi-orange);
    color: var(--osumi-navy);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
}

.town-lp .lp-privilege-badge strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    opacity: 0.8;
}


/*------------------------------------------
  7. 基本情報テーブル・地図
------------------------------------------*/
.town-lp .shop-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.town-lp .shop-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.town-lp .shop-info-table th,
.town-lp .shop-info-table td {
    padding: 14px 20px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #f0f0f0;
}

.town-lp .shop-info-table th {
    width: 30%;
    background: var(--bg-light-gray);
    color: var(--osumi-navy);
    font-weight: 700;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.town-lp .shop-info-table td {
    color: var(--osumi-text);
}

.town-lp .shop-info-table td a {
    color: var(--osumi-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.town-lp .shop-info-table td a:hover {
    opacity: 0.75;
}

.town-lp .shop-info-table tr:last-child th,
.town-lp .shop-info-table tr:last-child td {
    border-bottom: none;
}

/* 地図 */
.town-lp .lp-map {
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.town-lp .lp-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

/* 情報未入力時のプレースホルダー */
.town-lp .lp-info-placeholder {
    padding: 32px 24px;
    text-align: center;
    color: var(--color-sub);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .town-lp .shop-info-table th {
        width: 35%;
        font-size: 0.88rem;
        padding: 12px 14px;
    }
    .town-lp .shop-info-table td {
        font-size: 0.88rem;
        padding: 12px 14px;
    }
    .town-lp .lp-map iframe {
        height: 240px;
    }
}


/*------------------------------------------
  8. サイドバー：絞り込みウィジェット
------------------------------------------*/
.town-lp .lp-sidebar .widget.town-filter-widget {
    background: #fff;
    border: 1px solid #eee;
    border-top: 4px solid var(--osumi-navy);
    padding: 24px 20px;
    border-radius: 4px;
    position: sticky;
    top: 80px;
}

.town-lp .lp-sidebar .widget-title {
    font-size: 1rem;
    color: var(--osumi-navy);
    border-bottom: 2px solid var(--osumi-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.town-lp .filter-item {
    margin-bottom: 18px;
}

.town-lp .filter-item label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-sub);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.town-lp .filter-item select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 0.92rem;
    color: var(--osumi-text);
    background-color: #fff;
    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 d='M1 1l5 5 5-5' stroke='%231A365D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.town-lp .filter-item select:focus {
    outline: none;
    border-color: var(--osumi-navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.town-lp .lp-search-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--osumi-navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 4px;
}

.town-lp .lp-search-btn:hover {
    background-color: #397cbe;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}


/*------------------------------------------
  SP：sticky 解除
------------------------------------------*/
@media (max-width: 1024px) {
    .town-lp .lp-sidebar .widget.town-filter-widget {
        position: static;
    }
}