/* --- 会場案内セクション (breakfast-venue.css) --- */

.breakfast-venue-section {
    padding: 80px 0;
    background-color: #fff;
}

.bf-venue-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ビジュアルエリア（画像＋テキスト） */
.bf-venue-visual {
    position: relative; /* キャプション配置の基準 */
    width: 100%;
    max-width: 1000px; /* intro-innerに合わせる */
    margin: 0 auto 50px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #0054a6; /* 画像読み込み前の下地 */
}

.bf-venue-img img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 7; /* 横長画像 */
    object-fit: cover;
}

/* 左から濃い青(#0054a6)、右に向かって透明になるグラデーション */
.bf-venue-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 0%（左端）: 0.95（ほぼ不透明）
       60%（中盤）: 0.6（しっかりした青）
       100%（右端）: 0（透明）
    */
    background: linear-gradient(
        90deg, 
        rgba(0, 84, 166, 0.95) 0%, 
        rgba(0, 84, 166, 0.6) 60%, 
        rgba(0, 84, 166, 0) 100%
    );
    z-index: 1;
}

/* キャプション1（画像中央より若干左に配置） */
.bf-venue-caption {
    position: absolute;
    top: 50%;
    left: 45%; /* この数値を大きくすると右へ移動します */
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    width: 80%; /* 折り返しを防ぐための幅 */
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* 視認性向上 */
}

.caption-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

/* 横棒（長いやつ） */
.caption-item .line {
    flex: 0 0 60px; /* 横棒の長さ */
    height: 1px;
    background-color: #fff;
    margin: 0 20px;
}

.caption-item .label {
    white-space: nowrap;
}

/* --- 1F 部分のバッジスタイル (配色反転版) --- */
.venue-floor {
    display: inline-block;
    background-color: #fff;    /* 背景色：白 */
    color: #0054a6;           /* テキスト色：青 */
    font-size: 14px;
    font-weight: 700;
    padding: 2px 12px;         /* 上下左右の余白 */
    border-radius: 50px;       /* 角丸ボタン */
    margin-right: 8px;         /* 右側のテキストとの間隔 */
    vertical-align: middle;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 視認性向上のための軽い影 */
}

/* ボタンエリア */
.bf-venue-btns {
    display: flex;
    justify-content: center;
    gap: 20px; /* 3つ並び用に30pxから20pxへ微調整 */
    max-width: 1000px;
    margin: 0 auto;
}

.venue-btn-link {
    display: inline-flex;     /* 横並び時の文字の上下中央揃えを担保 */
    align-items: center;      /* 縦方向の中央揃え */
    justify-content: center;   /* 横方向の中央揃え */
    width: 32%;               /* PCで3つのボタンが均等に収まる幅（1000px基準） */
    max-width: 320px;         /* ボタンが過剰に広がるのを防止 */
    min-height: 60px;         /* 文字数の多い早期割ボタンの折り返しによる高さズレを防止 */
    padding: 15px 10px;       /* 左右パディングを詰め、文字溢れを防ぐ */
    border: 1px solid #0054a6;
    color: #0054a6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-size: 15px;          /* 3つ並びの視覚バランスを最適化するため1px縮小 */
    text-align: center;
    box-sizing: border-box;   /* パディングとボーダーを幅に含める計算規則 */
}

.venue-btn-link.accent {
    background-color: #0054a6;
    color: #fff;
}

.venue-btn-link:hover {
    opacity: 0.8;
    background-color: #0054a6;
    color: #fff;
}

/* --- レスポンシブ --- */

@media (max-width: 768px) {
    .bf-venue-visual {
        margin-bottom: 30px;
    }

    .bf-venue-img img {
        aspect-ratio: 4 / 3; /* スマホでは少し縦を持たせる */
    }

    .bf-venue-caption {
        left: 50%; /* スマホでは中央に */
        width: 90%;
    }

    .caption-item {
        font-size: 14px;
        flex-direction: column; /* スマホでは要素を縦に並べる */
        align-items: flex-start;
        gap: 5px;
    }

    .caption-item .line {
        flex: none;
        width: 40px;
        margin: 5px 0;
    }

    .venue-floor {
        font-size: 12px;
        padding: 1px 10px;
        margin-bottom: 4px;
    }

    .bf-venue-btns {
        flex-direction: column;
        gap: 12px; /* スマホ縦並び時の間隔を15pxから12pxへ最適化 */
        padding: 0 20px;
        align-items: center; /* ボタンを中央に配置 */
    }

    .venue-btn-link {
        width: 100%;       /* スマホ画面幅に追従 */
        max-width: 340px;  /* スマホでの押しやすさと見栄えを両立する幅 */
        min-height: auto;  /* スマホ縦並び時は高さ制限を解除 */
        text-align: center;
        padding: 15px;
        font-size: 15px;
    }
}