/* =========================================
   予約ページ (.p-reserve)
========================================= */
.p-reserve {
    width: 100%;
    margin-top: 180px;
    padding-bottom: 160px;
    background-color: #ffffff;
}

.p-reserve__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.p-reserve__header {
    text-align: center;
    margin-bottom: 80px;
}

.p-reserve__title {
    font-size: 32px;
    color: var(--color-main);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-weight: 400;
}

.p-reserve__lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-base);
    letter-spacing: 0.05em;
}

.p-reserve__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.p-reserve__row {
    display: flex;
    align-items: center;
}

.p-reserve__pref {
    width: 140px;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--color-text-base);
    letter-spacing: 0.05em;
}

.p-reserve__btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

/* =========================================
   SP表示 (768px以下)
========================================= */
@media screen and (max-width: 768px) {
    .p-reserve {
        margin-top: 90px;
        padding-bottom: 80px;
    }

    .p-reserve__header {
        margin-bottom: 60px;
    }

    .p-reserve__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .p-reserve__lead {
        font-size: 14px;
    }

    .p-reserve__content {
        gap: 24px;
    }

    .p-reserve__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .p-reserve__pref {
        width: 100%;
        font-size: 15px;
    }

    .p-reserve__btn-group {
        width: 100%;
        gap: 12px;
    }

    .p-reserve__btn-group .c-btn {
        width: 100%;
    }
}