@charset "utf-8";

/* ============================================
   reserve.css
   reserve.html専用スタイル
   共通パーツ（header/footer/page-hero/pankuzu/
   contact/btn_contact/sp-br 等）は style.css を使用。

   本ファイルは other_style.css に定義されていた
   予約導線パーツ（.reservation_wrap / .reservation_contact /
   .red_notice）および本文テキスト（main_txt）関連の
   スタイルを移植したものです。
   other_style.css側の該当ルールは削除していないため、
   他ページで参照している場合はそのまま動作します。
   ============================================ */

/* 本文テキスト（.content p.main_txt は style.css に共通化済み） */

/* 予約導線：横並び用ラッパー */
.reservation_wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* 予約導線：個別ブロック */
.reservation_contact {
    flex: 1 1 320px;
    max-width: 480px;
    background-color: #F9F9F9;
    border: 2px solid #FFF;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 20px;
}

.reservation_contact h2 {
    background-color: #F6F6F6;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
    border-bottom: 5px solid #066C93;
}

.reservation_contact .btn_contact a {
    width: 90%;
    margin: 20px auto;
    padding: 15px 0;
    display: block;
}

/* 注意書き */
.red_notice {
    max-width: 92%;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: #ffeaea;
    color: #b71c1c;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-left: 6px solid #f44336;
    border-radius: 8px;
    line-height: 1.6;
}

/* ============================================
   レスポンシブ（other_style.css の該当ブレークポイントを移植）
   ============================================ */
@media (max-width: 700px) {
    .reservation_contact {
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        padding-bottom: 8px !important;
        margin-bottom: 0 !important;
    }

    .reservation_contact p {
        font-size: 0.8em;
    }

    .reservation_contact > * {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
        padding-bottom: 0 !important;
    }

    .reservation_contact .btn_contact {
        margin: 0 !important;
        padding: 0 !important;
    }

    .reservation_contact .btn_contact a {
        display: block !important;
        width: 95% !important;
        margin: 0 auto !important;
        padding: 10px 0 !important;
        line-height: 1.2 !important;
        box-sizing: border-box !important;
    }

    .reservation_contact > *:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .red_notice {
        font-size: 12px;
        padding: 12px 15px;
        max-width: 95%;
    }
}
