

    :root {
  --main-yellow: #FFD700; /* 鮮やかな黄色 */
  --base-black: #1A1A1A;  /* 深みのある黒 */
  --text-white: #FFFFFF;
}
/* 全体の背景設定 */
body {
    background-color: #f8f8f8;
}

/* 変数定義 */
:root {
    --bc-yellow: #FFD700;
    --bc-black: #1A1A1A;
    --bc-gray: #333333;
    --bc-white: #FFFFFF;
}

/* --- ベースのcontainer（PC版） --- */
.container {
    max-width: 1100px;
    margin: 60px auto 0; /* PCは60px */
    padding: 0 20px;
}

/* --- レスポンシブ：タブレット・スマホ共通 --- */
@media (max-width: 950px) {
    .container {
        margin-top: 30px; /* PCの半分程度に落とす */
        padding: 0 15px;  /* 左右余白も少しタイトに */
    }
}

/* --- レスポンシブ：スマホ専用 --- */
@media (max-width: 480px) {
    .container {
        margin-top: 20px; /* スマホでは20pxが黄金比 */
    }
}

/* ヘッダー：透過して浮かせる */
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-sub-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header-sub-nav a, .nav-login {
    color: var(--bc-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.nav-entry {
    background: var(--bc-yellow);
    color: var(--bc-black);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    margin-left: 20px;
}


/* ======================================================
   トップページ (front-page.php) のスタイル
   ====================================================== */
.home .site-header {
    background: transparent; /* 背景透過など（必要に応じて） */
    position: absolute;
    width: 100%;
    z-index: 999;
}

/* ======================================================
   下層ページ (トップページ以外) のスタイル
   ====================================================== */
/* bodyが.homeクラスを持っていない時 = 下層ページ */
body:not(.home) .site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    padding: 0;
}


/* =============================================
   下層ページ ヘッダー（追従・コンパクト設定）
   ============================================= */
body:not(.home) .site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* 追従設定 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    
    /* ヘッダーの高さを画像のように小さく設定 */
    height: 60px; /* PC */
    display: flex;
    align-items: center;
}

/* ヘッダーの中のコンテナ（要素の配置） */
body:not(.home) .site-header .bc-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative; /* センターロゴの基準 */
    height: 100%;
}

/* センターロゴ設定 */
body:not(.home) .header-sub-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0; /* 余計なマージンを解除 */
}

body:not(.home) .header-sub-logo img {
    height: 35px; /* 画像に近いバランス */
    width: auto;
    display: block;
}

/* =============================================
   スマホ専用の調整 (Mobile)
   ============================================= */
@media (max-width: 850px) {
    body:not(.home) .site-header {
        height: 50px; /* スマホはさらに低く */
        display: block;
    }
    .header-responsive-inner{
        position: relative;
        padding: 10px 20px;
    }
    .sp_logo_center{
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top:10px;
    }

    /* ハンバーガーメニューを小さく */
    /* 実際のクラス名に合わせて .menu-icon や .drawer-hamburger 等に変更してください */
    .hamburger-icon, 
    .menu-toggle,
    .dashicons-menu {
        transform: scale(0.7); /* 全体的に70%のサイズに縮小 */
        transform-origin: left center;
    }

    body:not(.home) .header-sub-logo img {
        height: 28px; /* スマホでのロゴサイズ */
    }
}

/* 追従ヘッダーによるコンテンツの被り防止 */
body:not(.home) main {
    padding-top: 60px; /* ヘッダーの高さ分だけ余白を作る */
}

@media (max-width: 850px) {
    body:not(.home) main {
        padding-top: 50px;
    }
    .sp_logo_center img{
        text-align: center;
        height: 30px;
    }
}




.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    z-index: 10;
}


.hero-logo h1{
    font-size: 16px;   
    font-weight: bold;
    margin-bottom: 20px; 

}

@media (max-width: 950px) {
    .hero-logo h1{
    font-size: 13px;
    }
}


.hero-logo p{
    margin-bottom: 20px;
}
.hero-copy {
    color: var(--bc-white);
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 40px;
    letter-spacing: 0.1em;
}


.tab-item {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--bc-white);
    padding: 12px 30px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

.tab-item.active {
    background: var(--bc-white);
    color: var(--bc-black);
}

.search-form {
    display: flex;
    background: var(--bc-white);
    padding: 5px;
    border-radius: 0 0 8px 8px; /* 下部だけ丸める */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.search-input {
    flex: 1;
    border: none;
    padding: 20px;
    font-size: 18px;
    outline: none;
}

.search-btn {
    background: #e60000; /* あえての赤、または黄色に変更 */
    color: white;
    border: none;
    padding: 0 40px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
}
/* モーダル全体のオーバーレイ */
.bc-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* 最初は隠す */
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

/* モーダルの中身 */
.bc-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

/* ヘッダー・フッター */
.bc-modal-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.bc-modal-footer { padding: 20px; border-top: 1px solid #eee; text-align: center; }

/* チェックボックスのグリッド表示 */
.tag-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.tag-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.tag-item:hover { background: #eef2ff; }
.tag-item input { margin-right: 10px; transform: scale(1.2); }

/* 決定ボタン（サウナイキタイ風の青） */
.submit-modal-btn {
    background: #0033ff;
    color: #fff;
    border: none;
    padding: 15px 60px;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* モーダル内の行レイアウト */
.filter-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.row-label {
    width: 140px;
    font-weight: bold;
    color: #1a1a1a;
    padding-left: 20px;
}

.row-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.row-content label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 100px;
}

/* 確定ボタン（サウナイキタイ・ブルー） */
.btn-confirm {
    width: 100%;
    background: #0052cc; /* 鮮やかな青 */
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.close-x {
    background: none; border: none; font-size: 24px; cursor: pointer; color: #999;
}



.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFD700; /* 動画読み込み前のベースカラー */
}
@media (max-width: 768px) {
.hero-section {
    height: 75vh;
}
}

/* 動画のスタイル */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

/* 黄色フィルター（ここがポイント） */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFD700; 
    opacity: 0.85; 
    z-index: 2;
}

/* コンテンツ（ロゴや検索窓）を最前面へ */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo img {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); /* ロゴを見やすく */
}
@media (max-width: 768px) {
.hero-logo img {
    max-width: 240px;
}


}

.hero-copy {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    margin-top: 20px;

}
/* 検索パネル全体のコンテナ */
.search-panel {
    max-width: 800px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); /* 全体に柔らかな影 */
}

/* --- 検索パネル：レスポンシブ --- */
@media (max-width: 768px) {
 

    .search-tabs {
        flex-wrap: wrap; /* スマホではタブを折り返す */
        justify-content: flex-start;
    }

   

    /* アクティブなタブの三角を調整（重なり防止） */
    .tab-item.active::after {
        bottom: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff;
    }

    .search-form {
        flex-direction: column; /* 縦に並べる */
        padding: 12px;
        border-radius: 0 8px 8px 8px; /* 左上だけ角を立たせる */
    }

    .search-input {
        width: 100%;
        border-bottom: 1px solid #f0f0f0; /* 境界線 */
        margin-bottom: 12px;
        padding: 12px;
        font-size: 16px; /* スマホでズームされないサイズ */
    }

   
}


/* タブエリア */
.search-tabs {
    display: flex;
    gap: 0; /* 隙間なく並べる */
    margin-bottom: 0;
}

.tab-item {
    background: rgba(0, 50, 200, 0.4); /* 背景動画に馴染む濃い青系（黄色背景なら濃い黄色に調整可） */
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s;
    position: relative;
    border-radius: 12px 12px 0 0; /* 上部だけしっかり丸める */
}

@media (max-width: 768px) {
.tab-item{
    padding: 10px 0;
}
}

/* アクティブなタブ（白背景の可愛いデザイン） */
.tab-item.active {
    background: #fff;
    color: #000; 
    border: none;
}

/* アクティブタブの下にある「三角の突起」 */
.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff; /* タブと同じ色 */
    z-index: 5;
}



.search-btn:active {
    transform: scale(0.97); /* 押した時に少し小さくなる可愛い演出 */
}



    /* ニュースセクション全体のスタイル */
.news-ticker-section {
    background: #1A1A1A; /* 黒背景 */
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.news-ticker-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* 「NEWS」の黄色いラベル */
.news-label {
    background: #FFD700;
    color: #000;
    font-size: 12px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 20px;
}

/* 1行表示のためのコンテナ設定 */
.news-list-container {
    flex: 1;
    height: 24px; /* 1行分の高さ */
    overflow: hidden;
    position: relative;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.news-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* 最初は透明 */
    animation: newsFade 12s infinite; /* 12秒で1サイクル（4秒×3記事） */
}

.news-item a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    gap: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    color: #999;
    font-family: 'Oswald', sans-serif; /* 数字をお洒落にする場合 */
}

/* 記事ごとのアニメーション遅延設定 */
.news-item:nth-child(1) { animation-delay: 0s; }
.news-item:nth-child(2) { animation-delay: 4s; }
.news-item:nth-child(3) { animation-delay: 8s; }

/* フワッと入れ替わるアニメーション */
@keyframes newsFade {
    0% { opacity: 0; transform: translateY(10px); }
    5% { opacity: 1; transform: translateY(0); }
    30% { opacity: 1; }
    35% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; }
}



    .matching-container {
    max-width: 1100px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 280px 1fr; /* 2カラム構成 */
    gap: 30px;
}

/* 左側サイドバー */
.matching-sidebar {
    position: sticky;
    top: 100px; /* ヘッダー分を空けて固定 */
    height: fit-content;
}

.stats-card {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stats-title {
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.btn-post-report {
    display: block;
    background: #FFD700;
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    margin-top: 20px;
}

/* 右側フィード（レポートカード） */
.report-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.report-card:hover {
    transform: translateY(-3px);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    gap: 12px;
}

.user-avatar img {
    border-radius: 50%;
}

.user-name {
    display: block;
    font-weight: bold;
    font-size: 15px;
}

.visit-count {
    font-size: 12px;
    color: #777;
    background: #f0f0f0;
    padding: 1px 6px;
    border-radius: 4px;
}

.report-venue {
    font-weight: bold;
    color: #0033ff; /* サウナイキタイ風の施設名ブルー */
}

.report-body {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.action-item {
    margin-left: 15px;
}



    .featured-events {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: #000; /* 背景が黒なので白文字 */
}

.section-subtitle {
    font-size: 14px;
    color: #aaa;
}

/* 3カラムグリッド */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    display: block;
    overflow: hidden;
    border-radius: 16px; /* 強めの角丸がサウナイキタイ風 */
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-title{
    padding: 0 8px;
    color: #fff;
    font-size: 15px;
}

.event-image img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* カードの比率を統一 */
}

/* ホバー時の動き */
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.2); /* ほのかに黄色く光る影 */
}

/* スマホ対応：1列にする */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}


    .activity-report-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-left: 5px solid #FFD700; /* 黄色のアクセントライン */
    padding-left: 15px;
}

.view-all {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

/* グリッドレイアウト */
.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.report-item-card {
    background: #000; /* ダークな背景で写真を際立たせる */
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.report-item-card:hover {
    transform: translateY(-5px);
}

/* 画像とバッジ */
.report-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.report-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* テキストエリア */
.report-meta {
    padding: 20px;
}

.report-date {
    color: #888;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.report-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}
@media (max-width: 768px) {
.report-title {
       font-size: 15px;
    }
}

.report-excerpt {
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 2行で省略 */
    overflow: hidden;
}

.report-item-card a {
    text-decoration: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
}


/* セクション全体 */
.bc-stats-section {
    background-color: #fdfaf2; /* 画像のような薄いベージュ系 */
    padding: 80px 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
        max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ヘッダー */

/* --- セクションタイトル周り --- */

.section-en-title {
    display: block;
    color: #e6b422; /* ビジコネ・イエロー */
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em; /* 英語は少し広げると高級感が出ます */
    text-transform: uppercase; /* 自動で大文字にしてデザインを統一 */
}

.section-title {
    font-size: 2rem; /* PCサイズ（約32px） */
    font-weight: 800;
    color: #222;
    line-height: 1.3;
    padding: 15px 0;
}

/* --- スマホ・タブレット用調整 --- */

@media (max-width: 768px) {
    .section-en-title {
        font-size: 0.8rem; /* スマホでは一回り小さく */
        margin-bottom: 4px;
    }

    .section-title {
        font-size: 24px; /* スマホサイズ（約24px）に落とす */
        letter-spacing: 0.02em; /* 狭い画面でも読みやすく */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px; /* 非常に狭い画面（iPhone SE等）で1行に収まりやすく */
    }
}
/* 英語タイトルの横に線を伸ばすアレンジ（お好みで） */
@media (min-width: 769px) {
    .section-en-title {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .section-en-title::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: rgba(230, 180, 34, 0.3); /* イエローの薄い線 */
    }
}



/* --- スタッツセクション --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 基本は3列 */
    gap: 20px;
    margin-bottom: 50px;
}


.stats-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.stats-card:hover {
    background-color: #fafafa;
}

/* カード内のテキスト */
.stats-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.stats-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
    color: #000;
}

.stats-number {
    font-size: 3.5rem; /* 大きく強調 */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.stats-unit, .stats-prefix {
    font-size: 1rem;
    font-weight: 700;
    margin-left: 5px;
    margin-right: 5px;
}

.stats-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* --- スマホ・タブレット対応（2列固定） --- */
@media (max-width: 950px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列に切り替え */
        gap: 12px; /* 隙間を少しタイトに */
    }
    
    .stats-card {
        padding: 20px 10px; /* カード内の余白を少し削る */
    }

    .stats-number {
        font-size: 1.8rem; /* 2列時に数字がはみ出さないよう微調整 */
    }
}


    .user-voice-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.voice-card {
    display: flex;
    flex-direction: column;
}

/* ユーザー情報（アイコンと名前） */
.voice-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.voice-avatar img, .default-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.voice-name {
    display: block;
    font-weight: 900;
    font-size: 15px;
    color: #111;
}

.voice-attr {
    font-size: 11px;
    color: #333; /* 属性を黄色にしてアクセントに */
}

/* 吹き出し部分 */
.voice-bubble {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    position: relative;
    color: #333;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 吹き出しの三角（上向き） */
.voice-bubble::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.voice-content {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 4行で省略 */
    overflow: hidden;
}

.voice-link {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #0033ff;
    font-weight: bold;
    text-decoration: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: 1fr;
    }
}



    .double-cta-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラム */
    gap: 30px;
}

.cta-box {
    position: relative;
    border-radius: 24px; /* サウナイキタイ風の大きな角丸 */
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-8px);
}

/* 左：オーナー向け（黒背景に黄色のアクセント） */
.owner-cta {
    border: 2px solid #FFD700;
}

/* 右：ユーザー向け（黄色背景に黒文字） */
.user-cta {
    background: #FFD700;
    color: #000;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}

.owner-cta .cta-title { color: #FFD700; }
.user-cta .cta-title { color: #000; }

.cta-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ボタンの共通スタイル */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s;
}

/* オーナー向けボタン（黄色） */
.owner-cta .cta-button {
    background: #FFD700;
    color: #000;
}

/* ユーザー向けボタン（黒） */
.user-cta .cta-button {
    background: #000;
    color: #fff;
}

.cta-button:hover {
    opacity: 0.8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 40px 20px;
    }
}


.news-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* 白い大きなカード（高さ固定・スクロールのみ） */
.news-static-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    max-height: 380px; 
    overflow-y: scroll; /* 常にスクロールバーを出すか auto に */
    border: 1px solid #eee;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px solid #f2f2f2;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    text-decoration: none;
    /* transitionを削除：パッと色が変わる、または変えない設定 */
}

.news-item a:hover {
    background: #fcfcfc; /* 視認性のための最低限の背景色変化 */
}

/* 日付：フォントを少し小さく、太く */
.news-date {
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #999;
    width: 110px;
    flex-shrink: 0;
    font-weight: bold;
}

/* タイトル：読みやすさ重視 */
.news-item-title {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    flex: 1;
    font-weight: 500;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .news-label{
        margin-right: 6px;
    }
    .news-item a {
        font-size: 11px;
    }
    .news-date {
        width: 60px;
    }
}

/* --- お知らせセクション（静的リスト用）の強制リセット --- */

.news-section .news-list {
    display: block !important;    /* スライダー等のflex/gridを解除 */
    animation: none !important;   /* CSSアニメーションを無効化 */
    transform: none !important;   /* JSによる移動を無効化 */
    position: static !important;
    width: 100% !important;
    height: auto !important;
}

.news-section .news-item {
    display: block !important;
    opacity: 1 !important;        /* フェードイン待ちを解除 */
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    animation: none !important;
    border-bottom: 1px solid #f2f2f2; /* 区切り線 */
}

/* もしJavaScript（SwiperやSlickなど）が原因で動いている場合、
   それらのライブラリが自動で付与するクラス（.slick-trackなど）を
   以下の記述で無効化します
*/
.news-section .news-list-container * {
    transition: none !important;  /* 動きの遅延をすべてゼロにする */
    animation-duration: 0s !important;
}

/* ホバー時の背景色変化だけをシンプルに残す（必要な場合のみ） */
.news-section .news-item a:hover {
    background: #fcfcfc;
}


    .shop-connect-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.shop-banner {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #0033ff 0%, #001a80 100%); /* 信頼感のある青系 */
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 51, 255, 0.2);
}

.shop-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
}

/* テキストエリア */
.shop-text-area {
    color: #fff;
    flex: 1;
}

.shop-sub {
    display: inline-block;
    background: #FFD700; /* ビジコネ・イエロー */
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
}

.shop-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
}

.shop-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.shop-btn {
    display: inline-block;
    background: #fff;
    color: #0033ff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 16px;
}

/* 画像エリア */
.shop-image-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.shop-image-area img {
    max-width: 100%;
    height: auto;
    /* 商品を少し浮かせると通販っぽくなります */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transform: rotate(5deg);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .shop-banner-inner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    .shop-image-area {
        margin-top: 30px;
        justify-content: center;
    }
    .shop-title {
        font-size: 24px;
    }
}



/*検索ページserch.php*/
/* 検索結果レイアウト */
.search-content-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* 検索条件表示（サイドバー） */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    position: sticky;
    top: 20px;
}

.filter-tag {
    display: inline-block;
    background: #eef2ff;
    color: #0033ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin: 0 5px 5px 0;
    font-weight: bold;
}

.re-search-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* 検索結果カード */
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.result-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.card-image { position: relative; height: 180px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-area-label { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.7); color: #fff; padding: 4px 8px; font-size: 11px; border-radius: 4px; }

.card-body { padding: 15px; }
.card-title { font-size: 18px; font-weight: 900; margin-bottom: 10px; color: #1a1a1a; }
.card-tags { font-size: 12px; color: #999; margin-bottom: 10px; }

/* スマホ対応 */
@media (max-width: 768px) {
    .search-content-layout { grid-template-columns: 1fr; }
    .result-grid { grid-template-columns: 1fr; }
}

.sauna-style-search { background: #f0f2f5; padding: 40px 0; }
.search-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 20px; }

/* 横型カード */
.venue-item-horizontal {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.venue-link { display: flex; text-decoration: none; color: inherit; }

.venue-image { width: 240px; min-width: 240px; height: 180px; }
.venue-image img { width: 100%; height: 100%; object-fit: cover; }

.venue-info { padding: 20px; flex: 1; position: relative; }

.venue-area { font-size: 12px; color: #0033ff; font-weight: bold; }
.venue-name { font-size: 20px; font-weight: 900; margin: 5px 0 10px; }

/* スペック数値エリア（サウナイキタイ風の数値の見せ方） */
.venue-spec { display: flex; gap: 15px; margin-bottom: 15px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 10px 0; }
.spec-item .label { font-size: 11px; color: #999; display: block; }
.spec-item .value { font-size: 16px; font-weight: bold; color: #333; }

.venue-tags { margin-bottom: 10px; }
.venue-tags span { font-size: 12px; color: #0033ff; margin-right: 10px; }

.venue-description { font-size: 13px; color: #666; line-height: 1.5; }

/* スマホ対応：縦並びに戻す */
@media (max-width: 768px) {
    .search-inner { grid-template-columns: 1fr; padding: 0 10px; }
    .filter-sidebar { display: none; } /* スマホはモーダル主体なので隠す */
    .venue-link { flex-direction: column; }
    .venue-image { width: 100%; }
}

.filter-sidebar {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-label {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--bc-yellow);
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-option {
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-option:hover {
    color: #0033ff;
}

.reset-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #999;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 5px;
    border: 1px dashed #ccc;
}



/*マッチング報告*/
.report-form-container {
    max-width: 500px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-header h2 { font-size: 20px; font-weight: 900; margin-bottom: 5px; text-align: center; }
.form-subtitle { font-size: 13px; color: #666; text-align: center; margin-bottom: 25px; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 14px; font-weight: bold; margin-bottom: 8px; }

/* チップ選択のデザイン */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-group input { display: none; }
.chip-group label {
    padding: 8px 16px;
    background: #f0f2f5;
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid transparent;
}
.chip-group input:checked + label {
    background: #0033ff;
    color: #fff;
    border-color: #0033ff;
}

/* 入力フィールド */
select, input[type="text"], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

/* 送信・制限ボタン */
.submit-report-btn {
    width: 100%;
    background: #0033ff;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
}

.upgrade-alert {
    background: #fff8e1;
    border: 1px solid #ffca28;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}
.upgrade-btn {
    display: inline-block;
    margin-top: 10px;
    background: #ffc107;
    color: #000;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: bold;
}


/* 報告セクション全体のコンテナ */
.matching-reports-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* 個別のカードスタイル */
.report-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: calc(50% - 10px); /* 2列並び */
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .report-card { width: 100%; } /* スマホでは1列 */
}

/* ヘッダー部分（アイコンと名前） */
.report-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.report-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
}

.report-user-info .user-name {
    display: block;
    font-weight: bold;
    font-size: 1.1em;
}

.report-meta {
    font-size: 0.8em;
    color: #888;
}

/* 本文エリア */
.report-content {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* フッター（リアクション機能） */
.report-actions {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    color: #666;
    font-size: 0.9em;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.action-item:hover { color: #ff3366; } /* ハートホバー時 */


/* レイアウトの骨組み */
.bc-search-page {
    background: #f8f9fa;
    padding: 40px 0;
    font-family: sans-serif;
}
.search-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: flex-start; /* これでサイドバーがコンテンツに合わせて伸びすぎないようにする */
}

/* サイドバー */
.filter-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 20px;
}
.filter-label {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--bc-yellow, #fdd835);
    display: inline-block;
}
.filter-group { margin-bottom: 30px; }
.sidebar-option {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    cursor: pointer;
}

/* メインリスト */
.result-list {
    flex: 1;
}
.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.result-meta h2 { font-size: 1.25rem; font-weight: 800; }
.hit-count { font-weight: bold; font-size: 1rem; }
.hit-count span { color: #e53935; font-size: 1.4rem; margin: 0 4px; }

/* カードデザイン */
.venue-item-horizontal {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}
.venue-item-horizontal:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.venue-link { display: flex; text-decoration: none; color: inherit; }

.venue-image {
    width: 240px;
    flex-shrink: 0;
    background: #eee;
}
.venue-image img { width: 100%; height: 100%; object-fit: cover; }

.venue-info {
    padding: 10px 20px;
    flex: 1;
}
.venue-name-inline{
    margin: 0;
}
.venue-area {
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    background: #222;
    padding: 2px 8px;
    border-radius: 4px;
}
.venue-name { font-size: 1.4rem; font-weight: 800; margin: 8px 0 15px; }

/* ACF スペック表 */
.venue-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.spec-row { display: flex; font-size: 0.85rem; border-bottom: 1px solid #eee; padding-bottom: 4px; }
.spec-row.full { grid-column: span 2; }
.spec-row .label { width: 70px; color: #777; flex-shrink: 0; }
.spec-row .value { font-weight: bold; color: #333; }

.venue-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}
.venue-tags .tag {
    font-size: 0.75rem;
    color: #888;
    margin-right: 10px;
}

/* スマホ対応 */
@media (max-width: 850px) {
    .search-inner { flex-direction: column; }
    .filter-sidebar { width: 100%; position: static; }
    .venue-link { flex-direction: column; }
    .venue-image { width: 100%; height: 200px; }
    .venue-spec-grid { grid-template-columns: 1fr; }
    .spec-row.full { grid-column: span 1; }
}

/* モーダル基本設定 */
.modal-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;
}
.modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    overflow-y: auto;
    position: relative;
}
.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.modal-header h3 { font-size: 1.1rem; font-weight: bold; }
.close-modal {
    position: absolute; right: 20px;
    background: none; border: none; font-size: 1.8rem; cursor: pointer;
}

/* 画像レイアウトの再現 */
.area-grid-container { padding: 20px; }
.area-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}
.area-parent-label {
    width: 150px;
    font-weight: bold;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.area-child-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5列並び */
    gap: 10px;
    flex-grow: 1;
}
.modal-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}
.modal-option input { width: 18px; height: 18px; }

/* フッターボタン */
.modal-footer {
    position: sticky; bottom: 0;
    background: #fff; padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
.submit-btn {
    background: #0062ff; /* 青色ボタン */
    color: #fff; border: none;
    padding: 15px 80px;
    border-radius: 4px;
    font-weight: bold; cursor: pointer;
    width: 100%; max-width: 400px;
}

/* サイドバーのボタン */
.open-modal-btn {
    width: 100%; padding: 10px;
    background: #eee; border: 1px solid #ddd;
    border-radius: 5px; cursor: pointer;
    margin-top: 10px; font-size: 0.85rem;
}
.selected-badge {
    display: inline-block;
    background: #fdd835; font-size: 0.75rem;
    padding: 2px 8px; border-radius: 4px; margin: 2px;
}

/* カード本体 */
.venue-item-horizontal {
    position: relative; /* バッジの基準点 */
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}

/* 右上の黄色バッジ */
.venue-area-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: #fdd835; /* ビジコネイエロー */
    color: #333;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* リンクと高さ揃え */
.venue-link {
    display: flex;
    align-items: stretch; /* 画像とテキストの高さを揃える */
    text-decoration: none;
    color: inherit;
}

/* 画像 */
.venue-image {
    width: 240px;
    flex-shrink: 0;
    background: #eee;
}
.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト情報 */
.venue-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ヘッダー調整 */
.venue-header {
    margin-bottom: 15px;
}
.venue-name-inline {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    padding-right: 80px; /* バッジとの重なり防止 */
    line-height: 1.4;
}

/* スペック表 */
.venue-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.spec-row {
    display: flex;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}
.spec-row.full { grid-column: span 2; }
.spec-row .label { width: 70px; color: #888; flex-shrink: 0; }
.spec-row .value { font-weight: bold; color: #333; }

/* その他 */
.venue-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}
.venue-tags .tag {
    font-size: 0.75rem;
    color: #aaa;
    margin-right: 10px;
}

/* スマホ対応 */
@media (max-width: 850px) {
    .venue-link { flex-direction: column; }
    .venue-image { width: 100%; height: 200px; }
    .venue-name-inline { padding-right: 0; font-size: 1.1rem; }
    .venue-spec-grid { grid-template-columns: 1fr; }
    .spec-row.full { grid-column: span 1; }
}

/* タイトルと住所のブロック */
.venue-header {
    margin-bottom: 15px;
}
.venue-name-inline {
    font-size: 1.2rem; /* 少し小さく */
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
    padding-right: 80px;
}
.venue-address {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* スペック部分をコンパクトに横並び */
.venue-spec-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px; /* 横の間隔を広く */
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px dotted #ddd;
    border-bottom: 1px dotted #ddd;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    font-size: 1.1rem;
    filter: grayscale(1); /* アイコンを少し落ち着いた色に */
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.65rem;
    color: #999;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 0.85rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

/* 説明文をより小さく、整える */
.venue-description-short {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    /* 2行で省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
}

/* バッジの微調整 */
.venue-area-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fdd835;
    color: #222;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
}

/* 検索パネル：親コンテナ */
.search-panel {
    max-width: 800px;
    margin: 0 auto;
    /* 影を少しシャープにして高級感を出す */
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1)); 
}

/* タブのコンテナ */
.search-tabs {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 各タブ */
.search-tabs .tab-item {
    flex: 1; /* 33.33%と同じ意味で、より柔軟 */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* 高さを固定して揃える */
    background: rgba(0, 50, 200, 0.6); /* 少し透過させるのが今風 */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.3); /* 線を細く白く */
    border-radius: 12px 12px 0 0;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.search-tabs .tab-item:last-child {
    border-right: none;
}

/* アクティブなタブ */
.search-tabs .tab-item.active {
    background: #fff;
    color: #000; 
    border: none;
}

@media (max-width: 950px) {

.search-tabs .tab-item{
    font-size: 10px;
    height: 30px;
}

}
/* アクティブな時の三角（位置を微調整） */
.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -8px; /* フォームに食い込むくらいが綺麗 */
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    z-index: 10;
}

/* フォーム本体 */
.search-form {
    display: flex;
    background: #fff;
    padding: 10px; /* 中の余白を広げる */
    position: relative;
    z-index: 1;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    background: #ff0033; /* 視認性の高い赤 */
    color: #fff;
    border: none;
    padding: 0 40px;
    font-weight: 900;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.search-btn:hover {
    background: #cc0029;
    transform: scale(1.02);
}


/* --- マッチング報告セクション：レスポンシブ対応 --- */
@media (max-width: 950px) {
    .matching-container {
        display: block; /* gridを解除して1カラムに */
        padding: 0 15px;
        margin-top: 20px;
    }

    /* 左側のサイドバー（統計情報など）を非表示にする */
    .matching-sidebar {
        display: none !important;
    }

    /* メインコンテンツ（レポートカード）の幅を調整 */
    .matching-main {
        width: 100%;
    }

    .report-card {
        padding: 15px; /* スマホでは余白を少しタイトに */
        margin-bottom: 15px;
        border-radius: 8px; /* 角丸を少し抑えるとスマホらしくなります */
    }

    /* ユーザー情報のレイアウト微調整 */
    .report-header {
        flex-direction: row; /* 横並び維持 */
        align-items: center;
    }

    .user-avatar img {
        width: 40px; /* アイコンを少し小さく */
        height: 40px;
    }

    .report-body {
        font-size: 14px; /* 文字サイズを読みやすく調整 */
        line-height: 1.5;
    }

    .report-footer {
        padding-top: 10px;
        font-size: 11px;
    }
}

/* さらに小さい画面（iPhone SEなど）向け */
@media (max-width: 480px) {
    .report-actions {
        gap: 10px; /* リアクションボタンの間隔を調整 */
    }
    
    .report-venue {
        font-size: 14px;
        display: block;
        margin-top: 5px;
    }
}

/* --- ドロワーメニュー：修正版 --- */
@media (max-width: 950px) {
    .drawer-menu {
        position: fixed;
        top: 0;
        right: -100%; /* 幅に関わらず、画面の外へ完全に追い出す */
        width: 280px;  /* メニューの横幅 */
        height: 100vh; /* 画面の高さ100% */
        background: #fff;
        z-index: 10001; /* 既存のheader(1000)より必ず上に */
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 80px 20px 40px;
        box-shadow: none; /* 隠れている時は影を出さない */
        visibility: hidden; /* 隠れている間はクリック判定も消す */
    }

    /* アクティブ時（表示された時） */
    .drawer-menu.is-active {
        transform: translateX(-100%); /* 100%分、左に戻す */
        visibility: visible;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    }
}

@media (max-width: 950px) {

 .search-btn {
        width: 100%;
        padding: 8px 0;
        border-radius: 8px;
        font-size: 18px;
    }
}

/* --- イベントグリッド：レスポンシブ --- */
@media (max-width: 768px) {
    .event-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* ここで2列に指定 */
        gap: 12px; /* スマホでは間隔を少し詰める */
        padding: 0 10px;
    }

    .event-card {
        border-radius: 12px; /* 角丸を少し控えめに */
    }

    .event-card-title {
        font-size: 13px; /* 2列だとタイトルが長くなるのでサイズダウン */
        padding: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* タイトルが長すぎても3行でカットして高さを揃える */
        overflow: hidden;
    }
}

/* 超小型スマホ（iPhone SEなど）で文字が入り切らない場合の調整 */
@media (max-width: 375px) {
    .event-grid {
        gap: 8px;
    }
    .event-card-title {
        font-size: 12px;
    }
}


/* --- Slick表示レスキュー --- */

/* 1. 親要素のgridを解除（これが最大の原因です） */
.report-grid.slick-initialized {
    display: block !important;
    overflow: visible !important;
}

/* 2. スライドの中身を横並びに固定 */
.js-report-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* 3. 各カードの崩れを防止 */
.report-item-card.slick-slide {
    height: auto !important;
    display: block !important;
    margin: 0 10px; /* カード間の余白 */
}

/* 4. 画像が表示されない問題の解決 */
.report-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* 比率を固定 */
    background: #eee;    /* 読み込み前も枠が見えるように */
}

.report-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 5. Next/Prevボタンが「文字だけ」で不格好なのを見えない位置へ飛ばす（後でデザインします） */
.slick-arrow {
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
}
/* --- Slick 矢印カスタマイズ（サウナイキタイ風） --- */

/* 共通設定：文字を消して丸いボタンにする */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    border: none;
    border-radius: 50%;
    color: transparent; /* 文字（Next/Prev）を隠す */
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slick-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* 矢印（＞）の形をCSSで作る */
.slick-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    display: block;
}

/* 左ボタンの位置と向き */
.slick-prev {
    left: -20px;
}
.slick-prev::before {
    transform: rotate(-135deg); /* 左向き */
    margin-left: 4px;
}

/* 右ボタンの位置と向き */
.slick-next {
    right: -20px;
}
.slick-next::before {
    transform: rotate(45deg); /* 右向き */
    margin-right: 4px;
}

/* スマホでは矢印を消してドットのみにする（スワイプ重視） */
@media (max-width: 768px) {
    .slick-arrow {
        display: none !important;
    }
    /* 下のドット（現在地）の間隔を調整 */
    .slick-dots {
        bottom: -30px;
    }
}

/* ドット自体の色調整（ビジコネカラーの黄色に） */
.slick-dots li button:before {
    color: #ccc !important;
    font-size: 10px !important;
    opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
    color: var(--bc-yellow) !important; /* アクティブなドットを黄色に */
}