/* ==========================
   restaurant-layout.css　レストラン共通レイアウト
========================== */

.rest-section {
    padding: 80px 0;
    background-color: #fff;
}

/* 偶数番目のセクションに薄い背景色をつける場合（交互のデザイン用） */
.rest-section:nth-of-type(even) {
    background-color: #fafafa;
}

.rest-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトルエリア */
.rest-header {
    text-align: center;
    margin-bottom: 40px;
}

/* 日本語タイトル */
.rest-title-ja {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0054a6;           /* レクストンブルー */
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

/* 英語タイトル */
.rest-title-en {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #0054a6;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid #0054a6;
}

/* 画像エリア */
.rest-visual {
    width: 100%;
    margin-bottom: 40px;
}

.rest-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 情報グリッド */
.rest-info-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.rest-info-item {
    flex: 1;
}

/* 各項目の見出し（店舗情報・コンセプトなど） */
.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #0054a6;
    margin-bottom: 20px;
    border-left: 4px solid #b3934d; /* ゴールドのアクセント */
    padding-left: 15px;
    line-height: 1.4;
}

/* 本文テキスト */
.info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* 店舗情報の表組みスタイル */
.info-table {
    border-top: 1px solid #eee;
    margin: 0;
}

.info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.info-row dt {
    width: 100px;
    font-weight: 700;
    color: #666;
    flex-shrink: 0;
}

.info-row dd {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Instagram表組み行・ボタン専用スタイル（PC表示用） */
.info-row-instagram dd {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.info-row-instagram .insta-notice {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: transform 0.2s ease, opacity 0.3s ease;
    width: 100%;
    max-width: 240px;
    box-sizing: border-box;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    text-align: center;
}

.insta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.insta-btn::before {
    content: '📸';
    font-size: 1.1em;
}

/* ==========================================================================
   ネット予約（Talkappiエリア）専用スタイル（PC表示用）
   ========================================================================== */
.info-row.is-reservation dd {
    width: 100%;
}

.shidashi-shop-info-flex {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/* カメラ撮影での認識性を上げるためサイズを140pxに拡張し、余白とコントラストを調整 */
.shidashi-order-qr {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
    flex-shrink: 0;
}

.shidashi-order-linkwrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-grow: 1;
}

.shidashi-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #0054a6; /* レクストンブルー */
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 240px;
    box-sizing: border-box;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.shidashi-order-btn:hover {
    background-color: #003d7a;
    transform: translateY(-1px);
}

.shidashi-order-note {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* 注釈（一字下げ対応） */
.info-note {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
}

/* 特定テキストの強調用（赤字） */
.text-red {
    color: #d32f2f !important;
}

/* 外部リンクボタンエリア */
.rest-btn-area {
    margin-top: 25px;
}

.btn-external {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #0054a6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #0054a6;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-external:hover {
    background-color: #0054a6;
    color: #fff;
}

/* 警告・重要事項（背景付きの強調ボックスが必要な場合） */
.rest-important-note {
    font-size: 14px;
    color: #d32f2f;
    text-align: center;
    line-height: 1.6;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff5f5;
    border-radius: 4px;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .rest-section {
        padding: 60px 0;
    }

    .rest-title-ja {
        font-size: 26px;
    }

    .rest-title-en {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .rest-info-grid {
        flex-direction: column;
        gap: 40px;
    }

    .rest-info-item {
        background-color: #f9f9f9;
        padding: 25px 20px;
        border-radius: 8px;
        border: 1px solid #eee;
    }

    .rest-info-item.detail-box {
        text-align: left;
    }

    .info-title {
        display: inline-block;
        font-size: 18px;
        margin-bottom: 15px;
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #b3934d;
        padding-bottom: 5px;
    }

    .info-row {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }

    .info-row dt {
        width: 100%;
        color: #b3934d;
    }

    /* Instagramボタン（スマホ表示用調整） */
    .insta-btn {
        max-width: 100%;
    }

    /* ネット予約エリア（スマホ表示用調整：実機サイズを考慮し120pxに制御） */
    .shidashi-shop-info-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .shidashi-order-qr {
        width: 120px;
        height: 120px;
    }

    .shidashi-order-linkwrap {
        align-items: center;
        width: 100%;
    }

    .shidashi-order-btn {
        max-width: 100%;
    }

    .info-note {
        font-size: 12px;
        margin-top: 10px;
    }

    .rest-btn-area {
        text-align: center;
    }

    .btn-external {
        width: 100%;
        box-sizing: border-box;
    }
}