/* Seats Reservation - CF7連動用の最低限スタイル */
.wpcf7 select[name="use-time"] option:disabled {
    color: #999;
}

.wpcf7 select[name="seat-type"],
.wpcf7 select[name="use-date"],
.wpcf7 select[name="use-time"],
.wpcf7 input[name="people"] {
    box-sizing: border-box;
}

.seats-form-input,
.seats-form-confirm {
    padding: 136px 71px;
    margin-top: 32px;
    border-radius: 8px;
    background-color: #f7f7f7;
}

.form-heading {
    margin-bottom: 50px;
}

.form-heading h2 {
    position: relative;
    padding-bottom: 32px;
    margin-bottom: 32px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.form-heading h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 259px;
    height: 2px;
    background-color: #CDA873;
}

.form-heading p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #aaa;
}

.form-row:nth-of-type(2) {
    border-top: 1px solid #aaa;
}

.form-label {
    padding: 0 32px;
    font-weight: 600;
}

.form-field {
    padding-right: 32px;
}

.form-field select,
.form-field input {
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
}

.form-notes,
.confirm-message {
    margin-block: 32px;
}

.md-button {
    margin-bottom: 20px;
    margin-right: 0 !important;
}

.required {
    color: #e60012;
}

/* .subs-note {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
} */

.subs-note {
    width: fit-content;
    margin-top: 20px;
    margin-inline: auto;
    padding-inline: 16px;
    border-bottom: 4px solid #CDA873;
    font-weight: bold;
    font-size: 20px;
}

.privacy-area {
    margin-top: 48px;
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
}

.privacy-area a {
    text-decoration: underline;
}

.form-button-area,
.confirm-buttons {
    margin-top: 36px;
    text-align: center;
}

.js-show-confirm,
.js-final-submit,
.js-back-input {
    min-width: 220px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.js-show-confirm,
.js-final-submit {
    color: #fff;
    background: #122129;
}

.js-back-input {
    margin-right: 16px;
    color: #222;
    background: #ddd;
}

.confirm-list {
    margin-top: 40px;
}

.confirm-list>div {
    display: grid;
    grid-template-columns: 35% 65%;
    padding: 20px 0;
    border-bottom: 1px solid #aaa;
}

.confirm-list dt {
    font-weight: 600;
}

.confirm-list dd {
    margin: 0;
}

.is-invalid {
    outline: 2px solid #dc3232;
    outline-offset: 2px;
}

@media screen and (max-width: 767px) {

    .seats-form-input,
    .seats-form-confirm {
        padding: 50px 16px;
    }

    .form-heading h2 {
        font-size: 24px;
    }

    .form-heading p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .form-row {
        display: block;
    }

    .form-label {
        padding: 0 0 10px;
    }

    .form-field {
        padding-right: 0;
    }

    .subs-note {
        padding-inline: 0;
        border-bottom: 2px solid #CDA873;
        font-size: 16px;
    }

    .form-notes p,
    .confirm-message p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .confirm-list>div {
        display: block;
    }

    .confirm-list dt {
        margin-bottom: 8px;
    }

    .js-back-input {
        display: block;
        margin: 0 auto 16px;
    }
}

/* Contact Form 7 のスピナーを非表示 */
.wpcf7-spinner {
    display: none !important;
}

.sr-people-help {
    padding-left: 16px;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .sr-people-help {
        font-size: 10px;
    }
}