/* ==========================================
   Menu Hero
========================================== */

.menu-hero {
    text-align: center;
}

.menu-intro {
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 2.2;
    color: #666;
}


/* ==========================================
   Menu Plan
========================================== */

.menu-plan {
    padding-top: 20px;
}

.menu-card {
    background: #fffdf8;
    border: 1px solid #ece2cc;
    border-radius: 20px;
    padding: 55px 45px;
    margin-bottom: 40px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;
}

.menu-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.course-time {

    display: inline-block;

    color: #b28b4d;

    letter-spacing: .15em;

    font-size: .95rem;

    margin-bottom: 15px;

}

.menu-card h2 {

    font-size: 2.2rem;

    color: #7a6645;

    font-weight: 500;

    margin-bottom: 28px;

}

.menu-card p {

    line-height: 2.1;

    color: #666;

    max-width: 600px;

    margin: 0 auto 18px;

}


/* ==========================================
   Reservation
========================================== */

.reservation-guide {

    text-align: center;

}

.reservation-text {

    margin-top: 25px;

    line-height: 2;

    color: #666;

}

/* ==========================================
   LINE予約ボタン
========================================== */

.sns-area {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.line-reservation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 250px;
    min-height: 58px;
    padding: 14px 30px;
    border: 1px solid #cdb98a;
    border-radius: 999px;
    background-color: #fff;
    color: #6d5b47;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.line-reservation-button i {
    font-size: 25px;
}

.line-reservation-button:hover {
    transform: translateY(-3px);
    background-color: #b79a45;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   Responsive
========================================== */

@media (max-width:768px) {

    .menu-card {

        padding: 35px 25px;

    }

    .menu-card h2 {

        font-size: 1.8rem;

    }

    .menu-card p {

        font-size: .95rem;

    }

    .sns-area {
    margin-top: 34px;
}

.line-reservation-button {
    width: min(100%, 280px);
    min-width: 0;
    min-height: 56px;
    padding: 13px 24px;
    font-size: 16px;
}

}