/* ======================================= */
/* ファイル名: main-content-meal.css */
/* ======================================= */

/* 2. ページタイトル (H2) */
.sub-ttl {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #333; 
    padding: 15px 0;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff;
}

/* 内容全体の中央揃え */
.sightseeing-section {
    max-width: 800px;
    margin: 0 auto;
}

/* pタグの中央揃え用クラス */
.section-description {
    text-align: center;
    margin-bottom: 30px;
}

/* 4. セクション大見出し (H3) - 非表示 */
.content-ttl {
    display: none;
}

/* 5. 個別スポット共通枠 */
.spot-item {
    margin-bottom: 30px;
    padding: 10px 20px; 
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fafafa; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 小見出し H4 */
.inner-ttl {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    border-left: 8px solid #ffcc00; 
    margin-bottom: 20px;
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
    color: #333; 
    text-align: center;
}

/* 通常のスポット画像（店舗案内など） */
figure {
    margin: 0 0 15px 0; 
    text-align: center;
}

figure img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* テキスト基本設定 */
.spot-item p {
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* --- おすすめメニュー（統合版）専用スタイル --- */
.menu-items-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-photos {
    display: flex;
    flex-direction: column; /* スマホは縦並び */
    gap: 15px;
}

.menu-photos figure {
    flex: 1;
    margin: 0;
}

.menu-description {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.menu-description p {
    margin: 0;
    text-align: left;
}

/* 【重要】注釈文の強力な強調スタイル */
.menu-note-highlight {
    display: block;
    margin-top: 15px !important;
    padding: 8px 12px;
    font-weight: 700;       /* 太字 */
    color: #d93025;         /* 注意を喚起する赤系カラー */
    background-color: #fff4f4; /* 薄い赤背景でさらに目立たせる */
    border-left: 4px solid #d93025; /* 左側に太いライン */
    font-size: 0.95rem;
}

/* --- PCレイアウト（768px〜） --- */
@media (min-width: 768px) {

    /* 通常のスポット（店舗案内） */
    .spot-item {
        flex-direction: row; 
        flex-wrap: wrap;  
        gap: 20px;
        align-items: flex-start;
    }

    .spot-item figure {
        flex-basis: 300px;
        flex-grow: 0;
        flex-shrink: 0;
        text-align: left;
    }

    .spot-item p {
        flex-basis: 0;
        flex-grow: 1;
        min-width: 250px;
    }

    /* おすすめメニュー（統合版）のPC設定 */
    .menu-items-group {
        flex-basis: 100%;
    }

    .menu-photos {
        flex-direction: row; 
        justify-content: center; /* PCで中央揃え */
        gap: 20px;
    }

    .menu-photos figure {
        flex: 0 1 350px; /* 最大350pxで中央に寄せる */
    }

    .menu-description {
        padding: 20px;
    }
}