﻿@charset "UTF-8";
/* =====================================
 * ベース
 *===================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

html {
    font-size: 0.875rem;
}

body {
    font-family: "Noto Sans", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Arial", "Helvetica", sans-serif;
    color: #333333;
    font-weight: 300;
    box-sizing: border-box;
    word-break: break-all;
}

input,
select,
textarea {
    font-size: 16px;
}

button,
input,
optgroup,
select,
textarea {
    outline: invert;
}

button {
    cursor: pointer;
}

a {
    color: #0065ac;
    text-decoration: underline;
    cursor: pointer;
}

    a:hover {
        color: #0097ff;
    }

p {
    word-break: break-all;
}

dt {
    font-weight: normal;
}

b,
strong {
    font-weight: bold;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    html {
        font-size: 1rem;
    }
}
/* =====================================
 * 共通-ヘッダー
 *===================================== */
.header__custom {
    position: relative;
    z-index: 11;
    height: 54px;
    background: #e4e4e4;
}

.header__step {
    position: relative;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 13px 22px -5px rgba(50, 55, 67, 0.13);
}

/* =====================================
 * 共通-メイン
 *===================================== */
.main {
    min-height: calc(100vh - 84px - 244px);
    position: relative;
    background-color: #f3f3f3;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .main {
        background-color: #f3f3f3;
    }

    .main__inner {
        max-width: 1200px;
        margin: auto;
    }
}
/* =====================================
 * 共通-フッター
 *===================================== */
.footer__main {
    background-color: #ffffff;
    padding: 2rem 1rem 0.5rem;
    width: 100%;
}

.footer__main-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer__main-logo-bap {
    max-width: 180px;
    flex-shrink: 1;
}

.footer__main-link-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 1rem -1rem;
}

.footer__main-produce {
    flex-shrink: 0;
    font-size: 0.6rem;
    margin: 0 0.5rem;
    height: 0.6rem;
}

.footer__main-link {
    position: relative;
    font-size: 0.8rem;
    line-height: 1rem;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    margin-left: 1rem;
}

    .footer__main-link a {
        color: #333333;
        opacity: 0.7;
    }

    .footer__main-link::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 1rem;
        background-color: #eaeaea;
        position: absolute;
        top: 3px;
        right: -7px;
    }

   /* .footer__main-link::after {
        content: "";
        background-image: url("../img/svg/icon_link.svg");
        background-repeat: no-repeat;
        background-position: left 0;
        background-size: 10px 10px;
        width: 10px;
        height: 10px;
        position: absolute;
        top: 3px;
        right: 0;
    }*/

    .footer__main-link:last-child::before {
        content: "";
        display: none;
    }

.footer__main-copyright {
    font-size: 0.7rem;
    color: #333333;
    opacity: 0.4;
    text-align: center;
}

.footer__custom {
    width: 100%;
    height: 44px;
    background-color: #e4e4e4;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__main {
        max-width: 1200px;
    }

    .footer__main-logo {
        flex-wrap: nowrap;
        flex-shrink: 0;
        max-height: 20px;
    }

    .footer__main-link-list {
        margin: 0 0 1rem 1rem;
    }

    .footer__main-inner {
        display: flex;
        justify-content: space-between;
    }

    .footer__main-copyright {
        text-align: right;
    }
}
/* =====================================
 * 固定フッター
 *===================================== */
.fixed-footer {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    z-index: 70;
    width: 100%;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .fixed-footer {
        display: none;
    }
}

/* =====================================
 * 非表示項目
 *===================================== */
.display-none {
    display: none;
}

/* =====================================
 * 非活性項目
 *===================================== */
.disabled {
    pointer-events: none;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.3);
}

/* =====================================
 * カスタムチェックボックス
 *===================================== */
.custom-checkbox {
    margin: 1rem 0;
    display: flex;
}

.custom-checkbox__checkbox {
    filter: alpha(opacity=0);
    margin-left: 10px;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex: 0 0 auto;
}

    .custom-checkbox__checkbox:focus {
        outline-offset: 2px;
    }

.custom-checkbox__label {
    display: inline-block;
    padding-left: 2rem;
    line-height: 1.2rem;
    position: relative;
    margin-left: -19px;
}

    .custom-checkbox__label::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-color: #ffffff;
        position: absolute;
        border-radius: 4px;
        top: 2px;
        left: 2px;
        box-shadow: 0 0 22px 1px rgba(50, 55, 67, 0.13);
        border: solid 1px #d6d6d6;
    }

.custom-checkbox__checkbox:checked + .custom-checkbox__label::before {
    background-color: #182a4a;
}

.custom-checkbox__checkbox:disabled + .custom-checkbox__label::before {
    background-color: #f7f7f7;
}

.custom-checkbox__checkbox:checked + .custom-checkbox__label::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../img/svg/icon_check.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 5px;
}

.agree-checkbox.is-hidden{
    display: none;
}

/* =====================================
 * ステップナビゲーション
 *===================================== */
.step-navigation {
    display: flex;
    justify-content: center;
    padding: 0.3rem;
    font-size: 0.8rem;
}

.step-navigation__list {
    display: flex;
    width: 90%;
}

.step-navigation__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1 1 90px;
}

    .step-navigation__item + .step-navigation__item::before {
        content: "";
        width: calc(100%);
        height: 2px;
        background-color: #eaeaea;
        position: absolute;
        top: 9px;
        left: calc(-50%);
        z-index: 0;
    }

    .step-navigation__item + .step-navigation__item.is-active,
    .step-navigation__item + .step-navigation__item.is-complete {
        font-weight: bold;
    }

        .step-navigation__item + .step-navigation__item.is-active::before,
        .step-navigation__item + .step-navigation__item.is-complete::before {
            background-color: #182a4a;
        }

.step-navigation__number {
    width: 20px;
    height: 20px;
    background-color: #eaeaea;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #bdbdbd;
}

    .step-navigation__number::before {
        content: attr(data-number);
    }

    .step-navigation__number.is-complete {
        background-color: #182a4a;
    }

        .step-navigation__number.is-complete::before {
            content: "";
            background-image: url("../img/svg/icon_check.svg");
            background-repeat: no-repeat;
            background-position: center;
            width: 13px;
            height: 12px;
            padding: 2px;
        }

    .step-navigation__number.is-active {
        background-color: #182a4a;
        color: #ffffff;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .step-navigation {
        max-width: 900px;
        margin: 0 auto;
    }

    .step-navigation__list {
        width: 100%;
        justify-content: space-around;
    }
}
/* =====================================
 * 値段＋詳細ボタン
 *===================================== */
.price {
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -10px 22px -5px rgba(50, 55, 67, 0.13);
}

.price__price,
.price__price--en {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    color: #333333;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price__total {
    font-weight: bold;
}

.price__total-price {
    font-size: 2rem;
    color: #ff0000;
}

.price__price--en {
    display: block;
    margin: 0;
}

    .price__price--en .price__total-price {
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        margin-top: 0.5rem;
    }

.price__total-unit {
    font-size: 1rem;
    color: #333333;
    font-weight: normal;
    margin-left: 0.5rem;
}

.price__detail {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .price {
        border-radius: 8px;
    }

    .price__price--en .price__total-price {
        display: flex;
        align-items: baseline;
        justify-content: flex-start;
    }
}
/* =====================================
 * ボタン
 *===================================== */
.button,
.button--white-close,
.button--white,
.button--main,
.button--main-arrow,
.button--basic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    height: auto;
    text-decoration: none;
    margin: auto;
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
    word-break: break-word;
    padding: 0.4rem 1rem;
}

.button--basic {
    background-color: #182a4a;
    position: relative;
    transition: all 0.1s ease;
    font-weight: bold;
    color: #ffffff;
    padding: 0.4rem 2.5rem;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
}

    .button--basic:hover:not([disabled]) {
        background-color: #3a639a;
        transition: all 0.1s ease;
        color: #ffffff;
    }

.button--main,
.button--main-arrow {
    background-color: #ff981d;
    transition: all 0.1s ease;
    font-weight: bold;
    padding: 0.4rem 2.5rem;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
    color: #ffffff;
}

    .button--main:hover:not([disabled]),
    .button--main-arrow:hover:not([disabled]) {
        background-color: #fdab48;
        transition: all 0.1s ease;
        color: #ffffff;
    }

.button--main-arrow {
    position: relative;
}

    .button--main-arrow::after {
        content: "";
        width: 20px;
        height: 20px;
        background-image: url("../img/svg/icon_arrow_right_wh.svg");
        background-repeat: no-repeat;
        background-position: right;
        background-size: 12px 12px;
        position: absolute;
        top: calc(50% - 10px);
        right: 15px;
    }

.button--white {
    background-color: #ffffff;
    color: #333333;
    border: solid 1px #eaeaea;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
    transition: all 0.3s ease;
}

    .button--white:hover,
    .button--white:focus {
        color: #333333;
        background-color: #fbf9f9;
        transition: all 0.3s ease;
    }

.button--white-close {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 150px;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 0 10px 5px rgba(50, 55, 67, 0.13);
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}

    .button--white-close::before {
        content: "×";
        display: flex;
        align-items: center;
        width: 1rem;
        height: 1rem;
        margin-right: 0.5rem;
        font-size: 1.5rem;
    }

.button--close {
    width: 28px;
    height: 28px;
    margin-left: auto;
    font-size: 1.3rem;
    border: solid 1px #eaeaea;
    border-radius: 4px;
    background-image: url("../img/svg/icon_close.svg");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center;
}

.button.is-hidden,
.is-hidden.button--basic,
.is-hidden.button--main,
.is-hidden.button--main-arrow,
.is-hidden.button--white,
.is-hidden.button--white-close {
    display: none;
}

.button:disabled,
.button--basic:disabled,
.button--main:disabled,
.button--main-arrow:disabled,
.button--white:disabled,
.button--white-close:disabled {
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.3);
}

    .button:disabled::after,
    .button--basic:disabled::after,
    .button--main:disabled::after,
    .button--main-arrow:disabled::after,
    .button--white:disabled::after,
    .button--white-close:disabled::after {
        opacity: 0.3;
    }

.maillink__close-button {
    flex: 1 1 auto;
    width: 100%;
    border: solid 1px #eaeaea;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
    margin-right: 0.5rem;
    padding: 0;
}

.maillink__submit-button {
    flex: 1 1 auto;
    width: 100%;
    margin-left: 0.5rem;
    padding: 0;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .button--basic {
        padding: 0 2rem;
        margin: 0;
        flex-grow: 1;
        max-width: 400px;
    }

    .button--main,
    .button--main-arrow {
        padding: 0 3rem;
        max-width: 500px;
    }

    .button--white {
        padding: 0 4rem;
    }

    .maillink__close-button,
    .maillink__submit-button {
        max-width: 220px;
    }

    .maillink__close-button {
        margin-left: 0;
    }

    .maillink__submit-button {
        margin-right: 0;
    }
}
/* =====================================
 * 表示料金について
 *===================================== */
.about_amount {
    display: flex;
    flex-wrap: wrap;
}

.about_amount__list {
    list-style: disc;
    padding-left: 40px;
}

.about_amount-link {
    display: block;
    font-weight: normal;
    color: #0065ac;
    text-decoration: underline;
    cursor: pointer;
}

    .about_amount-link:hover {
        color: #0097ff;
    }

/* =====================================
 * ボタンリンク
 *===================================== */

.button-link {
    display: block;
    font-weight: normal;
    color: #0065ac;
    text-decoration: underline;
    cursor: pointer;
}

    .button-link:hover {
        color: #0097ff;
    }


/* =====================================
 * 注意書き
 *===================================== */
.attention {
    padding: 1.3rem 1rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.attention__title {
    color: #0065ac;
    font-size: 1.1rem;
    font-weight: bold;
    background-image: url("../img/svg/icon_caution_triangle.svg");
    background-repeat: no-repeat;
    background-position: top 0 left;
    margin-bottom: 0.3rem;
    padding-left: 1.8rem;
}

.attention__note {
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.attention__annotation {
    font-size: 0.8rem;
    color: #666666;
}

/* =====================================
 * 要求事項
 *===================================== */

.agreement-requestitem {
    display: flex;
    justify-content: space-between;
}


/* =====================================
 * 重要なお知らせ
 *===================================== */
.important-notice__item {
    border: solid 1px #ff0000;
    background-color: #ffffff;
    margin: 1rem;
    padding: 0.5rem 1rem;
    max-height: auto;
    border-radius: 8px;
    font-weight: bold;
}

    .important-notice__item.is-show {
        max-height: 100vh;
        transition: max-height 0.2s ease;
    }

    .important-notice__item + .important-notice__item {
        margin-top: 1.5rem;
    }

.important-notice__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.important-notice__overview {
    padding: 0.5rem;
}

.important-notice__title {
    color: #ff0000;
    font-size: 1.1rem;
    line-height: 1.5rem;
    background-image: url("../img/svg/icon_caution_circle.svg");
    background-repeat: no-repeat;
    padding-left: 1.5rem;
}

.important-notice__add-icon {
    min-width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 4px;
    text-align: center;
    background-color: #ffe6e6;
    position: relative;
    z-index: 0;
}

    .important-notice__add-icon::before {
        content: "";
        width: 11px;
        height: 1px;
        background-color: #ff0000;
        position: absolute;
        top: 12px;
        left: 7px;
        z-index: 10;
        opacity: 1;
        transition: opacity ease 0.3s;
    }

    .important-notice__add-icon::after {
        content: "";
        width: 11px;
        height: 1px;
        background-color: #ff0000;
        position: absolute;
        top: 12px;
        left: 7px;
        z-index: 10;
        transform: rotate(90deg);
        transition: all ease 0.4s;
    }

    .important-notice__add-icon.is-open::before {
        content: "";
        opacity: 0;
        transition: opacity ease 0.3s;
    }

    .important-notice__add-icon.is-open::after {
        content: "";
        width: 11px;
        height: 1px;
        background-color: #ff0000;
        position: absolute;
        top: 12px;
        left: 7px;
        z-index: 10;
        transform: rotate(0deg);
        transition: all ease 0.4s;
    }

.important-notice__contents {
    padding: 0 calc(30px + 1rem) 0 0.5rem;
}

    .important-notice__contents.is-hide {
        visibility: hidden;
        height: 0;
        opacity: 0;
        margin-top: 0;
        margin-bottom: 0;
        transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
    }

.important-notice__contents-inner {
    padding: 0.8rem 0;
}

.important-notice__contents.is-show {
    visibility: visible;
    height: auto;
    opacity: 1;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: opacity ease 0.6s, margin-top ease 0.4s, margin-bottom ease 0.4s;
}

    .important-notice__contents.is-show .important-notice__contents-inner {
        margin: -30px 0;
    }

/* =====================================
 * お知らせメッセージ
 *===================================== */
.information-message {
    padding: 1.3rem 1rem;
    line-height: 1.6rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* =====================================
 * エラーメッセージ
 *===================================== */
.error-message,
.error-message--center,
.error-message--pc,
.error-message--sp {
    padding: 1rem;
    line-height: 1.3rem;
    text-align: center;
    border: 1px solid #ff0000;
    background-color: #ffe5e5;
    font-weight: bold;
    color: #ff0000;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.error-message--pc {
    display: none;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .error-message,
    .error-message--sp,
    .error-message--pc {
        text-align: left;
    }

    .error-message--sp {
        display: none;
    }

    .error-message--pc {
        display: block;
    }
}
/* =====================================
 * 入力グループ
 *===================================== */
.input-group,
.input-group--harf,
.input-group--full {
    margin-top: 1rem;
}

.input-group__title {
    font-size: 0.85rem;
    min-height: 20px;
    width: 100%;
    font-weight: bold;
    color: #626262;
}

.input-group__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.input-group__item,
.input-group__item--full {
    margin: 0 0 0 1rem;
    align-items: baseline;
    max-width: 135px;
    flex: 1 1 135px;
}

/*    .input-group__item[data-type="payment-method"],
    [data-type="payment-method"].input-group__item--full,
    .input-group__item[data-type="installments"],
    [data-type="installments"].input-group__item--full {
        flex: 1 1 200px;
        max-width: 200px;
    }*/

.input-group__item--full {
    max-width: 100%;
}

.input-group__item--harf {
    margin: 0 0 0 1rem;
    align-items: baseline;
    max-width: 135px;
    flex: 1 1 135px;
    max-width: 50%;
}

.input-group__unit {
    margin-left: 0.5rem;
}

.input-group__error {
    font-size: 0.8rem;
    display: block;
    color: #ff0000;
    margin: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.input-group_maillink__error {
    font-size: 0.8rem;
    display: block;
    color: #ff0000;
    /*margin: 0.2rem 0 0 11rem;*/
    margin: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
}

    .input-group__error::before,
    .input-group_maillink__error::before {
        content: "";
        margin-right: 0.5rem;
        width: 14px;
        height: 14px;
        background-image: url("../img/svg/icon_caution_circle.svg");
        background-repeat: no-repeat;
        background-size: 14px 14px;
        background-position: center left;
        position: absolute;
        top: 0;
        left: 0;
    }

    .input-group__help {
        background-image: url("../img/svg/icon_question.svg");
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        margin-left: 0.5rem;
    }

.input-group__note_upper {
    display: block;
    color: #bcbcbc;
    margin-top: 1.5rem;
}

.input-group__note_lower {
    display: block;
    color: #bcbcbc;
    margin-top: 0.5rem;
}
.input-group-goto-coupons-name {
    float: left;
}
.input-group-goto-coupons-group {
    margin-top: 0rem;
    margin-bottom: 3rem;
    width: 100%;
}

.input-group-goto-coupons-row {
    margin-top: auto;
    padding: 1rem;
}

.input-group-goto-coupons-price-group {
    flex-wrap: wrap;
    margin-bottom: auto;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
    text-align: right;
    justify-content: space-between;
}

.input-group-goto-coupons-amount-text {
    text-align: right;
    margin-right: auto;
    font-size: 1.3rem;
    margin-top: auto;
    align-items: center;
    display: inline-block;
}

.input-group-goto-coupons-amount-red {
    text-align: right;
    margin-left: auto;
    font-size: 2rem;
    margin-top: auto;
    align-items: center;
    display: inline-block;
    color: #ff0000;
    font-weight: bold;
}

.input-group-goto-coupons-amount-en {
    text-align: right;
    margin-left: auto;
    font-size: 1rem;
    margin-top: auto;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.input-group-goto-coupons-detail {
    text-align: left;
    margin-right: auto;
    font-size: 1rem;
    margin-top: auto;
    align-items: center;
    display: inline-block;
}


/* ------PC------ */
@media screen and (min-width: 1000px) {
    .input-group,
    .input-group--full,
    .input-group--harf,
    .input-group-goto-coupons-code,
    .input-group-goto-coupons-name,
    .input-group-goto-coupons-amount {
        padding-right: 1rem;
    }

    .input-group__row {
        flex-wrap: nowrap;
    }

    .input-group__title {
        margin-bottom: 0.8rem;
        max-height: 23px;
    }

    .input-group__error {
        margin-bottom: -0.8rem;
    }

        .input-group__error::before {
            content: "";
            margin-right: 0.5rem;
        }

    .input-group--full {
        width: 100%;
    }

    .input-group--harf {
        width: 50%;
    }
    .input-group-goto-coupons-group {
        margin-top: 0rem;
        margin-bottom: 3rem;
    }
    .input-group-goto-coupons-fieldset-code {
        width: 20%;
    }
    .input-group-goto-coupons-fieldset-name {
        width: 57%;
    }
    .input-group-goto-coupons-fieldset-amount {
        width: 23%;
    }
    .input-group-goto-coupons-row {
        height: 44px;
        margin-top: auto;
        padding: 0rem;
        margin-left: 0px;
    }
    .input-group-goto-coupons-price-group {
        flex-wrap: wrap;
        margin-bottom: auto;
        align-items: center;
        flex-wrap: nowrap;
        margin-left: auto;
        text-align: right;
        justify-content: space-between;
    }
    .input-group-goto-coupons-amount-text {
        text-align: left;
        margin-right: auto;
        font-size: 1.3rem;
        margin-top: auto;
        align-items: center;
        display: inline-block;
    }
    .input-group-goto-coupons-amount-red {
        text-align: right;
        margin-left: auto;
        font-size: 2rem;
        margin-top: auto;
        align-items: center;
        display: inline-block;
        color: #ff0000;
        font-weight: bold;
    }
    .input-group-goto-coupons-amount-en {
        text-align: right;
        margin-left: auto;
        font-size: 1rem;
        margin-top: auto;
        margin-bottom: 0.5rem;
        display: inline-block;
    }
    .input-group-goto-coupons-detail {
        text-align: left;
        margin-right: auto;
        font-size: 1rem;
        margin-top: auto;
        align-items: center;
        display: inline-block;
    }
}

/* =====================================
 * テキスト入力
 *===================================== */
.custom-input,
.custom-input--full {
    display: flex;
    align-items: baseline;
    height: 44px;
    flex-grow: 1;
    margin-top: 0.1rem;
}

.custom-input--full {
    width: 100%;
}

.custom-input__form,
.custom-input__form--small,
.custom-input__form--middle {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
}

    .custom-input__form:disabled,
    .custom-input__form--small:disabled,
    .custom-input__form--middle:disabled {
        background-color: #f7f7f7;
        color: #d9d9d9;
    }

    .custom-input__form::-moz-placeholder,
    .custom-input__form--small::-moz-placeholder,
    .custom-input__form--middle::-moz-placeholder {
        color: #dcdcdc;
    }

    .custom-input__form:-ms-input-placeholder,
    .custom-input__form--small:-ms-input-placeholder,
    .custom-input__form--middle:-ms-input-placeholder {
        color: #dcdcdc;
    }

    .custom-input__form::placeholder,
    .custom-input__form--small::placeholder,
    .custom-input__form--middle::placeholder {
        color: #dcdcdc;
    }

    .custom-input__form.has-error,
    .custom-input__form--small.has-error,
    .custom-input__form--middle.has-error {
        border: 1px solid #ff0000;
        background-color: #ffe5e5;
    }

.custom-input__form--small {
    max-width: 115px;
}

.custom-input__form--middle {
    max-width: 200px;
}

.custom-input__unit {
    width: 1rem;
    margin-left: 0.5rem;
}

/* =====================================
 * セレクトボックス
 *===================================== */
.custom-select {
    flex: 1 1 125px;
    display: flex;
    position: relative;
    height: 44px;
    color: #333333;
}

    .custom-select::after {
        position: absolute;
        display: block;
        content: "";
        width: 8px;
        height: 8px;
        top: 50%;
        right: 0.8rem;
        margin-top: -3px;
        border-bottom: 2px solid #0065ac;
        border-right: 2px solid #0065ac;
        transform: rotate(45deg) translateY(-50%);
        transform-origin: 50% 0;
    }

    .custom-select + .custom-select {
        margin-left: 0.5rem;
    }

.custom-select__form,
.custom-select__form--small {
    min-width: 100%;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
}

    .custom-select__form:disabled,
    .custom-select__form--small:disabled {
        background-color: #f7f7f7;
        color: #d9d9d9;
    }

    .custom-select__form.has-error,
    .has-error.custom-select__form--small {
        border: 1px solid #ff0000;
        background-color: #ffe5e5;
    }

.custom-select__form_gmo_reg,
.custom-select__form_gmo_reg--small {
    min-width: 100%;
    padding: 0.5rem;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
}

.custom-select__form--small {
    width: 115px;
}

.custom-select__default {
    color: rgba(51, 51, 51, 0.25);
}

    .custom-select__default option {
        color: #333333;
    }

.custom-select__unit {
    width: 1rem;
    margin-left: -2rem;
}

/* =====================================
 * タイトル
 *===================================== */
.custom-textarea,
.custom-textarea--full {
    flex: 1 1 125px;
    display: flex;
    position: relative;
    height: 215px;
    color: #333333;
}

.custom-textarea--full {
    width: 100%;
}

.custom-textarea__form {
    min-width: 100%;
    max-width: 100%;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    resize: none;
}

    .custom-textarea__form:disabled {
        background-color: #f7f7f7;
        color: #d9d9d9;
    }

    .custom-textarea__form::-moz-placeholder {
        color: #dcdcdc;
    }

    .custom-textarea__form:-ms-input-placeholder {
        color: #dcdcdc;
    }

    .custom-textarea__form::placeholder {
        color: #dcdcdc;
    }

    .custom-textarea__form.has-error {
        border: 1px solid #ff0000;
        background-color: #ffe5e5;
    }

/* =====================================
 * セクション
 *===================================== */
.input-field {
    padding: 1rem 1rem 80px 1rem;
}

.input-field__beginning {
    padding: 1rem 1rem 10px 1rem;
}

.input-field__header {
    display: flex;
    flex-direction: column;
}

.input-field__title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

/* =====================================
 * メールリンク
 *===================================== */

.input-maillink-field {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.maillink__table,
.maillink__wapper {
    width: 100%;
    background-color: #ffffff;
}

.maillink__tabel-row {
    height: 2rem;
}

    .maillink__tabel-row + .maillink__tabel-row {
        border-top: solid 1px #dddddd;
    }

.maillink__table-data-container {
    display: flex;
    align-items: center;
}


.maillink__table-data--title {
    flex-basis: 10rem;
    padding: 1rem 0;
    display: flex;
    text-align: left;
    white-space: nowrap;
    flex-direction: row;
    vertical-align: middle;
}

.maillink__table-data,
.maillink__table-data--right,
.maillink__table-data--left {
    padding: 0.5rem 0;
    display: flex;
    vertical-align: middle;
}

.maillink__table-data--left {
    /*max-width: 550px;*/
    /*flex-direction: row;*/
    /*white-space: nowrap;*/
    text-align: left;
    padding-right: 0.5rem;
    /*flex-grow: 1;*/
    flex: 1 0 190px;
    max-width: 190px;
    word-break: break-all;
    justify-content: space-between;
}

.maillink__table-data--right {
    /*max-width: 550px;*/
    padding-left: 0.5rem;
    /*flex-direction: row;*/
    flex-direction: row;
    text-align: left;
    display: flex;
    word-wrap: break-word;
    flex: 1 1 100px;
    /*flex-grow: 0;*/
    align-items: inherit;
}

.maillink__table-error--right {
    /*max-width: 550px;*/
    padding-left: 0.5rem;
    padding-top: 0.0rem;
    padding-bottom: 0.0rem;
    /*flex-direction: row;*/
    flex-direction: row;
    text-align: left;
    display: flex;
    word-wrap: break-word;
    flex: 1 1 100px;
    /*flex-grow: 0;*/
    align-items: inherit;
}

.maillink__table-data-inner {
    text-align: left;
}

.maillink__table-data-title {
    padding: 1rem 0;
}

.maillink__table-data-note:last-child {
    margin-bottom: 1rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .input-field__header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .input-field__input-form-group {
        display: flex;
        flex-wrap: wrap;
    }

    .input-field__footer {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        margin-top: 2rem;
    }
}
/* =====================================
 * モーダル（basic)
 *===================================== */
.basic-modal {
    display: none;
}

    .basic-modal[open] {
        display: block;
    }

.basic-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.basic-modal__inner,
.basic-modal__inner_sm {
    width: 90%;
    height: auto;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 9px;
}

.basic-modal__scroll {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-height: 60vh;
    padding-bottom: 1rem;
}

.basic-modal__header {
    flex: 0 0 auto;
}

.basic-modal__close {
    width: 28px;
    height: 28px;
    margin-left: auto;
    font-size: 1.3rem;
}

.basic-modal__center {
    flex: 0 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.basic-modal__close-button {
    flex: 0 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.basic-modal__title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border-bottom: solid 1px #eaeaea;
    padding: 0.2rem 0 1rem 0;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .basic-modal__scroll {
        max-height: 70vh;
    }

    .basic-modal__close-button {
        padding: 2rem 1rem 1rem;
    }

    .basic-modal__inner {
        padding: 1rem 2rem;
        max-width: 1160px;
    }

    .basic-modal__inner_sm {
        padding: 1rem 2rem;
        max-width: 800px;
    }

    .basic-modal__title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}
/* =====================================
 * モーダルコンテンツ（クレジットカード）
 *===================================== */
.modal-contents-credit,
.modal-contents-credit--note {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.modal-contents-credit--note {
    padding: 1rem;
    background-color: #f6f6f6;
}

.modal-contents-credit__link {
    margin-top: 1rem;
}

.modal-contents-credit__paragraph {
    margin-top: 0.5rem;
}

/* =====================================
 * スライドインモーダル
 *===================================== */
.slidein-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(100%);
    overflow-y: scroll;
}

    .slidein-modal.is-show {
        -webkit-animation: SlideUp 0.3s ease-out forwards;
        animation: SlideUp 0.3s ease-out forwards;
        z-index: 100;
    }

    .slidein-modal.is-hidden {
        -webkit-animation: SlideDown 0.3s ease-out forwards;
        animation: SlideDown 0.3s ease-out forwards;
        z-index: 70;
        transition: z-index 0.4s linear;
    }

.slidein-modal__inner {
    width: 100%;
    min-height: 100vh;
    background-color: #f3f3f3;
}

.slidein-modal__header {
    width: 100%;
    height: 96px;
    background-color: #ffffff;
    display: flex;
    box-shadow: 0 0 22px -5px rgba(50, 55, 67, 0.3);
    position: sticky;
    top: 0;
    z-index: 110;
}

.slidein-modal__header-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.slidein-modal__header-price {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.slidein-modal__header-price-inner,
.slidein-modal__header-price-inner--en {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.slidein-modal__header-price-inner--en {
    display: block;
    margin-top: -0.5rem;
}

.slidein-modal__header-price-total {
    margin-right: 1rem;
}

.slidein-modal__header-price-total-price {
    font-size: 1.5rem;
    font-weight: bold;
}

.slidein-modal__header-price-inner--en .slidein-modal__header-price-total-price {
    text-align: right;
}

.slidein-modal__header-price-total-unit {
    font-weight: normal;
    font-size: 1rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.slidein-modal__own-currency-pc {
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    display: none;
    flex-grow: 1;
    flex-direction: column;
}

.slidein-modal__own-currency-sp {
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.slidein-modal__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    background-color: #f3f3f3;
}

.slidein-modal__price-inner {
    display: flex;
    width: 100%;
    /*max-width: 350px;*/
    /*max-width: 400px;*/
    max-width: 450px;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.slidein-modal__price-total {
    font-size: 1.5rem;
    font-weight: bold;
}

.slidein-modal__price-total-unit {
    font-weight: normal;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.slidein-modal__price-detail {
    visibility: hidden;
    width: 100%;
    max-height: 0;
    background-color: #ffffff;
    transition: max-height 0.3s ease, visibility 0.1s ease, margin-top 0.3s ease, padding 0.1s ease;
}

    .slidein-modal__price-detail.is-open {
        visibility: visible;
        width: 100%;
        height: auto;
        max-height: 200vh;
        padding: 0.5rem 0;
        margin-top: 1rem;
        transition: max-height 0.4s ease, visibility 0.6s ease;
    }

.slidein-modal__price-detail-button {
    position: relative;
    margin: 0 0 -0.5rem auto;
    display: block;
    padding: 0.5rem 1rem;
    color: #0065ac;
    text-decoration: underline;
    z-index: 80;
}

    .slidein-modal__price-detail-button::before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background-image: url("../img/svg/icon_arrow_bottom_bl.svg");
        background-size: 10px 10px;
        background-repeat: no-repeat;
        position: absolute;
        top: calc(50% - 5px);
        right: 2px;
        transition: all 0.4s ease;
    }

    .slidein-modal__price-detail-button:hover {
        color: #0097ff;
    }

    .slidein-modal__price-detail-button.is-open::before {
        content: "";
        transform: rotate(180deg);
    }

.slidein-modal__header-close {
    flex-grow: 1;
    text-align: right;
}

.slidein-modal__main {
    min-height: calc(100vh - 96px - 150px);
    padding: 2rem 0 0;
}

.slidein-modal__chapter.is-hidden {
    display: none;
}

.slidein-modal__chapter-title {
    font-size: 1.1rem;
    font-weight: bold;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.slidein-modal__section-header {
    display: flex;
    padding: 2rem 0 1rem;
    align-items: baseline;
}

.slidein-modal__section-hotel {
    display: block;
    flex-grow: 1;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    margin-right: 0.3rem;
    padding-left: 1.9rem;
}

    .slidein-modal__section-hotel::before {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url("../img/svg/icon_moon.svg");
        background-repeat: no-repeat;
        background-size: 24px 24px;
        position: absolute;
        top: -3px;
        left: 0;
    }

.slidein-modal__detail-container {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.slidein-modal__detail-button {
    width: 100%;
    padding: 0.8rem 1.6rem 0.8rem 1.2rem;
    background-color: #e5eff7;
    text-align: center;
    color: #0065ac;
    border-radius: 4px;
    position: relative;
}

    .slidein-modal__detail-button::before {
        content: "";
        width: 10px;
        height: 10px;
        background-image: url("../img/svg/icon_arrow_right_bl.svg");
        background-repeat: no-repeat;
        background-size: 6px 10px;
        position: absolute;
        top: calc(50% - 5px);
        right: 4px;
    }

    .slidein-modal__detail-button:hover {
        background-color: #cce4f8;
    }

.slidein-modal__section-footer {
    padding-bottom: 1rem;
}

.slidein-modal__section-title {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.slidein-modal__section-contents {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.slidein-modal__section,
.slidein-modal__section--note,
.slidein-modal__section--user,
.slidein-modal__section--hotel {
    margin-bottom: 1.5rem;
}

    .slidein-modal__section--note .slidein-modal__section-contents {
        padding: 1rem;
    }

.slidein-modal__saved-button--sp {
    padding-bottom: 3rem;
}

.slidein-modal__saved-button--pc {
    display: none;
}

.slidein-modal__table,
.slidein-modal__wapper {
    width: 100%;
    background-color: #ffffff;
}

.slidein-modal__tabel-row {
    height: 2rem;
}

    .slidein-modal__tabel-row + .slidein-modal__tabel-row {
        border-top: solid 1px #dddddd;
    }

.slidein-modal__table-data-container {
    display: flex;
}

.slidein-modal__table-data,
.slidein-modal__table-data--right,
.slidein-modal__table-data--left {
    padding: 1rem 0;
}

.slidein-modal__table-data--left {
    text-align: left;
    /*white-space: nowrap;*/
    padding-right: 0.5rem;
    flex-grow: 1;
}

.slidein-modal__table-data--right {
    max-width: 400px;
    padding-left: 0.5rem;
    //flex-direction: column;
    text-align: right;
    //display: flex;
    word-wrap: break-word;
    flex-grow: 0;
    align-items: inherit;
}

.slidein-modal__table-data-inner {
    text-align: left;
}

.slidein-modal__table-data-title {
    padding: 1rem 0;
}

.slidein-modal__table-data-note:last-child {
    margin-bottom: 1rem;
}

.slidein-modal__footer {
    width: 100%;
    height: 150px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.slidein-modal__caution-group {
    margin-bottom: 1rem;
    line-height: 1.2rem;
}

    .slidein-modal__caution-group:last-child {
        margin-bottom: 5rem;
    }

.slidein-modal__caution-group-title {
    font-weight: bold;
    line-height: 1.5rem;
}

/* 下から上 */
@-webkit-keyframes SlideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes SlideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}
/* 上から下 */
@-webkit-keyframes SlideDown {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes SlideDown {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
}
/* ------PC------ */
@media screen and (min-width: 1000px) {
    .slidein-modal__detail-container {
        margin-left: auto;
    }

    .slidein-modal__header {
        height: 68px;
    }

    .slidein-modal__header-inner {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
        padding: 0 1rem 0 0;
    }

    .slidein-modal__header-price-inner--en {
        display: flex;
        margin-top: 0;
        align-items: center;
    }

        .slidein-modal__header-price-inner--en .slidein-modal__header-price-total-price {
            text-align: left;
            text-align: initial;
        }

    .slidein-modal__header-close {
        padding: 1rem 0;
        display: flex;
        align-items: center;
    }

    .slidein-modal__header-price {
        flex-grow: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

    .slidein-modal__main {
        max-width: 1200px;
        margin: auto;
        padding: 1rem;
    }

    .slidein-modal__chapter-inner {
        display: -ms-grid;
        display: grid;
        grid-gap: 1rem;
        -ms-grid-rows: auto 1rem auto 1rem 1fr;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template: "hotel note" auto "user note" auto ". note" 1fr/1fr 1fr;
    }

    .slidein-modal__section,
    .slidein-modal__section--hotel,
    .slidein-modal__section--user,
    .slidein-modal__section--note {
        margin-bottom: 0;
    }

    .slidein-modal__section--hotel {
        grid-area: hotel;
        padding: 0;
    }

    .slidein-modal__section--user {
        grid-area: user;
        padding: 0;
    }

    .slidein-modal__section--note {
        grid-area: note;
        padding: 0;
    }

    .slidein-modal__section-cotents {
        margin-bottom: 0;
    }

    .slidein-modal__saved-button--sp {
        display: none;
    }

    .slidein-modal__saved-button--pc {
        display: flex;
        margin-left: 2rem;
    }

    .slidein-modal__table-data--right {
        max-width: 400px;
    }

    .slidein-modal__footer {
        width: 800px;
        height: auto;
        align-items: inherit;
        margin: 0 auto;
        padding: 3rem 1.5rem 5rem;
    }

    .slidein-modal__own-currency-sp {
        display: none;
    }

    .slidein-modal__own-currency-pc {
        display: flex;
    }
}

@media screen and (min-width: 1000px) {
    .slidein-modal__section--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .slidein-modal__section--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .slidein-modal__section--note {
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        -ms-grid-column: 3;
    }
}

@media screen and (min-width: 1000px) {
    .slidein-modal__section--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .slidein-modal__section--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .slidein-modal__section--note {
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        -ms-grid-column: 3;
    }
}
/* =====================================
 * 表
 *===================================== */
.basic-table {
    width: 100%;
    margin: 1rem 0;
}

.basic-table__td {
    border: 1px solid #eaeaea;
    padding: 0.3rem 0.5rem;
    min-width: 5rem;
    line-height: 2rem;
}

.basic-table__thead {
    line-height: 2rem;
}

    .basic-table__thead .basic-table__tr {
        background-color: #182a4a;
        color: #ffffff;
        font-weight: bold;
    }

    .basic-table__thead .basic-table__td {
        text-align: center;
    }

.basic-table__tbody {
    line-height: 1.5rem;
}

    .basic-table__tbody .basic-table__tr {
        background-color: #ffffff;
    }

        .basic-table__tbody .basic-table__tr:nth-child(odd) {
            background-color: #f6f6f6;
        }

/* =====================================
 * 料金詳細
 *===================================== */
.price-detail {
    padding: 0.5rem;
}

.price-detail__date,
.price-detail__option-title {
    background-color: #182a4a;
    border-radius: 3px;
    padding: 0.4rem;
    color: #ffffff;
    font-weight: bold;
}

.price-detail__row {
    display: flex;
    border-bottom: 1px solid #dddddd;
}

.price-detail__group {
    border-bottom: 1px solid #dddddd;
}

.price-detail__room,
.price-detail__option {
    min-width: 5rem;
    display: flex;
    padding: 1rem 0.5rem 0;
    font-weight: bold;
}

.price-detail__option-info {
    display: flex;
    flex-grow: 1;
}

.price-detail__option-price {
    padding: 0.5rem;
}

.price-detail__option-explanation {
    line-height: 1.4rem;
    color: #333333;
    padding: 0.5rem;
    opacity: 0.7;
}

.price-detail__price {
    flex-grow: 1;
    text-align: right;
}

.price-detail__price-room,
.price-detail__price-option {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-detail__price-room-unit,
.price-detail__price-option-unit {
    font-weight: normal;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.price-detail__price-breakdown {
    text-align: right;
    line-height: 1.4rem;
    color: #333333;
    padding: 0.5rem;
    opacity: 0.7;
}

.price-detail__calculation {
    display: flex;
    padding: 0.5rem;
    justify-content: flex-end;
    font-size: 1.1rem;
    font-weight: bold;
    align-items: baseline;
}

.price-detail__option-unit-price {
    margin-left: 1rem;
}

.price-detail__option-quantity {
    padding: 0 0.2rem;
}

.price-detail__option-total {
    margin-left: 1rem;
}

.price-detail__subtotal {
    padding: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-align: right;
}

.price-detail__about-child-price {
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
    color: #0065ac;
    text-decoration: underline;
    position: relative;
    padding-right: 1.2rem;
}

    .price-detail__about-child-price::after {
        content: "";
        background-image: url("../img/svg/icon_question.svg");
        width: 14px;
        height: 14px;
        background-repeat: no-repeat;
        background-size: 14px 14px;
        position: absolute;
        right: 0;
    }

    .price-detail__about-child-price:hover {
        color: #0097ff;
    }

/* =====================================
 * 入力項目アイコン
 *===================================== */
.input-icon,
.input-icon--required {
    font-size: 0.7rem;
}

.input-icon--required {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 10px;
    padding: 0.2rem 0.6rem;
    margin-left: 1rem;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================
 * クレジットカード決済に関するリンク
 *===================================== */
.credit-link {
    display: block;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #0065ac;
    text-decoration: underline;
    cursor: pointer;
}

    .credit-link:hover {
        color: #0097ff;
    }

/* =====================================
 * 前ページ戻る
 *===================================== */
.page-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .page-back {
        width: auto;
        margin-right: 1rem;
    }
}
/* =====================================
 * カード画像
 *===================================== */
.card-image--sp {
    display: flex;
    width: 100%;
    margin-bottom: 0.3rem;
}

    .card-image--sp .card-image__list-img {
        padding-left: 4px;
        height: 20px;
    }

.card-image--pc {
    display: none;
    width: 400px;
    margin-left: 1rem;
}

    .card-image--pc .card-image__list-img {
        padding-left: 4px;
        height: 25px;
    }

    .card-image--pc .card-image__radio-img {
        height: 20px;
        display: inline;
        padding-left: 4px;
    }

.card-image--label {
    width: auto;
    margin-left: auto;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .card-image--sp {
        display: none;
    }

    .card-image--pc {
        display: flex;
    }
}
/* =====================================
 * javascript無効
 *===================================== */
.noscript {
    margin: 0 auto;
    background-color: #ffe5e5;
    padding: 1rem 0;
}

.noscript__contents {
    max-width: 1200px;
    color: #ff0000;
    margin: 0 auto;
    font-size: 0.9rem;
    padding: 0 2rem;
    position: relative;
}

    .noscript__contents::before {
        content: "";
        margin-right: 0.5rem;
        width: 14px;
        height: 14px;
        background-image: url("../img/svg/icon_caution_circle.svg");
        background-repeat: no-repeat;
        background-size: 14px 14px;
        background-position: center left;
        position: absolute;
        top: 0;
        left: 1rem;
    }

/* =====================================
 * 支払金額
 *===================================== */
.payment-amount {
    display: flex;
    flex-direction: column;
}

.payment-amount__item {
    margin-bottom: 0.5rem;
    height: 60px;
}

.payment-amount__radio {
    opacity: 0;
}

.payment-amount__label {
    margin-top: -13px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 1rem 0.5rem 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    color: #bab7b7;
}

    .payment-amount__label::before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: solid 1px #bab7b7;
        position: absolute;
        top: calc(50% - 9px);
        left: 14px;
    }

.payment-amount__radio:checked + .payment-amount__label {
    background-color: #e5eff7;
    border: solid 1px #0065ac;
    color: #3e65ff;
}

    .payment-amount__radio:checked + .payment-amount__label::after {
        content: "";
        width: 12px;
        height: 12px;
        background-color: #0065ac;
        border-radius: 50%;
        position: absolute;
        top: calc(50% - 6px);
        left: 17px;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .payment-amount {
        flex-direction: row;
    }

    .payment-amount__item {
        flex-grow: 1;
    }

        .payment-amount__item + .payment-amount__item {
            margin-left: 1rem;
        }
}

/* =====================================
 * 支払金額(外貨用）
 *===================================== */
.dcc-payment-amount__label {
    margin-top: -13px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
}

.payment-amount__foreign-currency {
    max-width: 200px;
}

.payment-amount__price {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .dcc-payment-amount__item {
        flex-grow: 1;
    }

        .dcc-payment-amount__item + .dcc-payment-amount__item {
            margin-left: 1rem;
        }
}
/* =====================================
 * まちのわ
 *===================================== */
.machinowa {
}

.machinowa__checkbox {
    -webkit-appearance: none; /* Safari・Chrome・Edge */
    -moz-appearance: none; /* Firefox */
    width: 16px;
    height: 16px;
    margin-right: 1rem;
    background-image: url("../img/svg/icon_check.svg");
    background-repeat: no-repeat;
    border: solid 1px #d6d6d6;
    border-radius: 4px;
}

    .machinowa__checkbox:checked {
        background-color: #182a4a;
        border: solid 1px #182a4a;
    }

.machinowa__label {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    color: #bab7b7;
}

    .machinowa__label.checked {
        color: #3e65ff;
        border: solid 1px #0065ac;
    }

.machinowa__font {
    flex-wrap: nowrap;
}

.machinowa_member__label {
    display: flex;
    flex-direction: column;
    height: 0px;
    width: 100%;
    margin-left: 1rem;
    margin-bottom: -1rem;
    transition: height 0.3s ease;
    padding: 1rem 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    border: solid 1px #0065ac;
    visibility: hidden;
    overflow: hidden;
}

    .machinowa_member__label.show {
        visibility: visible;
        height: auto;
        margin-bottom: 0rem;
    }

.machinowa_member_input__label {
    margin-bottom: 0.5rem;
}

.machinowa_login__label {
    border: solid 1px #000000;
    width: 95%;
    margin-bottom: 0.5rem;
    align-items: center;
}

.machinowa_input_group__row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0.5rem 0rem 0.5rem 0.5rem;
    align-items: center;
}

.input-group-machinowa-login-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.machinowa_input_group__login {
    width: 100%;
    height: 100%;
    padding: 0.5rem 1rem 0.5rem 1rem;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
}

.machinowa_input_group__label {
    flex-wrap: nowrap;
    width: 20%;
}

.machinowa_input_group__input {
    flex-wrap: nowrap;
    width: 80%;
    color: black;
    font-size: 20px;
    font: caption;
}

.machinowa_login__button {
    padding: 0 1rem;
    margin: 1rem 0.5rem 1rem 0.5rem;
    color: darkblue;
    background-color: rgba(51, 51, 51, 0.25);
}


.machinowa-forget-login-information__label {
    display: inline-block;
    padding-left: 2rem;
    line-height: 1.2rem;
    position: relative;
    margin-left: -19px;
    font-size: 1.2rem;
    font-weight: normal;
    color: black;
}

.machinowa-ticket__group,
.machinowa-ticket,
.machinowa_submit__button {
    height: 0px;
    overflow: hidden;
}

.machinowa-ticket {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    transition: height 0.3s ease;
    padding: 0.5rem 0.5rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    position: relative;
    border: solid 1px #0065ac;
    font-size: 1.0rem;
}

.machinowa-ticket__group.show {
    visibility: visible;
    height: auto;
    margin-bottom: 0.5rem;
}

.machinowa-ticket__item {
    display: block;
    margin-bottom: 0.5rem;
}

.machinowa_ticket_title {
    font-size: 1.0rem;
    font-weight: bold;
}

.machinowa_ticket_name {
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
}

.machinowa-possible-amount {
    height: 100%;
    width: 10rem;
    direction: rtl;
    padding: 0.5rem 2rem 0.5rem 3rem;
    white-space: nowrap;
    font-size: 1.2rem;
    margin-left: 45%;
    background-color: #dddddd;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
}
.machinowa-use-amount {
    font-size: 1.2rem;
    margin-left: 40%;
}

.machinowa-possible-term {
    height: 100%;
    width: 10rem;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.2rem;
    margin-left: 45%;
    background-color: #dddddd;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
}

.machinowa-amount__unit {
    font-size: 1.2rem;
    margin: 0 0 0.5rem auto;
}

.machinowa-ticket-select {
    width: 10rem;
    direction: rtl;
    padding-right: 3rem;
    margin-right: 3rem;
}

.machinowa-ticket-none {
    background-color: #ffffff;
}

.machinowa-red-message {
    color: red;
    font-weight: bold;
}

.machinowa-attention {
    font-size: 1rem;
    color: #666666;
    padding: 0.5rem 0 0.5rem 0;
    margin: 1rem 0.5rem 1rem 0.5rem;
}

.machinowa__error {
    margin-bottom: 0.5rem;
}



/* ------PC------ */
@media screen and (min-width: 1000px) {
    .machinowa {
        flex-direction: row;
    }

    .machinowa__label {
        width: 54.4%;
    }

    .machinowa__label {
        flex-grow: 1;
    }

        .machinowa__label + .machinowa__label {
            margin-left: 1rem;
        }
}

/* =====================================
 * 注意文
 *===================================== */
    .warning {
    max-width: 100%;
    border-radius: 8px;
    border: solid 1px #ffaa00;
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.warning__title {
    font-weight: bold;
    position: relative;
    margin-bottom: 0.3rem;
    padding-left: 2rem;
    font-size: 1.1rem;
}

    .warning__title::before {
        content: "";
        width: 25px;
        height: 22px;
        background-image: url("../img/svg/icon_caution_triangle_ye.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: -0.5rem;
        left: 0;
    }

.warning__list-item + .warning__list-item {
    margin-top: 0.5rem;
}

.warning__list-item::before {
    content: "•";
    width: 100%;
    height: 100%;
}

/* =====================================
 * 予約管理画面レイアウト
 *===================================== */
.layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.layout__header,
.layout__footer {
    flex: 0 0 auto;
}

.layout__main {
    flex: 1 0 auto;
}

/* =====================================
 * 予約管理ヘッダー
 *===================================== */
.management-header__top {
    display: flex;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.management-header__top-inner {
    width: 100%;
    height: 100%;
    padding: 0.8rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
}

.management-header__information {
    display: flex;
    background-color: #e9e9e9;
    padding: 0.5rem 1rem;
    font-size: 1.14rem;
}

.management-header__information-inner {
    width: 100%;
    height: 100%;
}

.management-header__navigation {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 13px 22px -5px rgba(50, 55, 67, 0.13);
    position: relative;
}

.management-header__navigation-inner {
    width: 100%;
    height: 100%;
    padding: 1rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
}

.management-header__title {
    font-size: 1.4rem;
}

.management-header__top-navigation {
    display: flex;
    position: absolute;
    top: calc(50% - 13px);
    right: 1rem;
}

.management-header__top-navigation-item {
    padding: 0.3rem;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    position: relative;
}

    .management-header__top-navigation-item + .management-header__top-navigation-item {
        margin-left: 0.8rem;
    }

.management-header__top-navigation-button {
    text-decoration: none;
    color: #333333;
}

    .management-header__top-navigation-button:hover {
        color: #333333;
    }

.management-header__transition + .management-header__transition {
    margin-left: 1rem;
}

.management-header__page-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto;
}

.management-header__menu-icon {
    width: 40px;
    position: absolute;
    padding: 10px 5px;
    top: 5px;
    right: 1rem;
    text-align: center;
}

.management-header__top-link {
    position: absolute;
    left: 1rem;
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    padding: 0 1rem;
}

    .management-header__top-link::before {
        content: "";
        width: 12px;
        height: 15px;
        background-image: url("../img/svg/icon_arrow_left_bk.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: 1px;
        left: 0;
    }

    .management-header__top-link:hover {
        color: #333333;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .management-header__top-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .management-header__top-link {
        display: none;
    }

    .management-header__information-inner {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .management-header__navigation {
        padding: 0 1rem;
        height: 65px;
    }

    .management-header__navigation-inner {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .management-header__top-navigation {
        right: 15px;
    }

    .management-header__top-navigation-button::before {
        content: attr(data-name);
        margin-right: 0.8rem;
    }

    .management-header__transition + .management-header__transition {
        margin-left: 1.5rem;
    }

    .management-header__transition::before {
        content: attr(data-name);
        font-size: 1rem;
        margin-right: 1rem;
    }

    .management-header__page-title {
        display: none;
    }

    .management-header__menu-icon {
        display: none;
    }
}
/* =====================================
 * 予約管理メイン
 *===================================== */
.management-main {
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
}

.management-main__inner {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.management-main__greeting {
    text-align: center;
    padding: 2rem 0;
}

    .management-main__greeting.pc {
        display: none;
    }

.management-main__title {
    display: none;
}

.management-main__cancellation-warning {
    border: 1px solid #ff0000;
    border-radius: 8px;
    background-color: #ffe5e5;
    color: #ff0000;
    margin-bottom: 1.5rem;
    padding: 0.8rem 2.2rem;
    font-weight: bold;
    position: relative;
}

    .management-main__cancellation-warning::before {
        content: "";
        width: 15px;
        height: 15px;
        background-image: url("../img/svg/icon_caution_circle.svg");
        background-repeat: no-repeat;
        background-size: 15px 15px;
        position: absolute;
        top: 0.8rem;
        left: 1rem;
    }

.management-main__important {
    border: 1px solid #ff0000;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.management-main__important-header {
    font-size: 1.14rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.management-main__cancellation-warning-machinowa {
    font-weight: bold;
    color: #ff0000;
}

.management-main__top-button {
    display: block;
    text-decoration: none;
    border-radius: 39px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    color: #333333;
    padding: 1rem;
    text-align: center;
    margin: auto auto 1rem;
    box-shadow: 0 0 22px 2px rgba(50, 55, 67, 0.13);
}

.management-main__to-top-container {
    margin: 1rem;
    text-align: right;
}

.management-main__to-top {
    color: #0065ac;
    position: relative;
    padding-right: 1.1rem;
}

    .management-main__to-top:hover {
        color: #0097ff;
    }

    .management-main__to-top::after {
        content: "";
        width: 13px;
        height: 13px;
        background-image: url("../img/svg/icon_arrow_top_bl.svg");
        background-repeat: no-repeat;
        background-size: 13px;
        position: absolute;
        top: calc(50% - 4px);
        right: 0;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .management-main__inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .management-main__title {
        display: block;
        font-weight: bold;
        font-size: 1.25rem;
        margin: 2rem 0 0;
    }

    .management-main__greeting {
        display: none;
        text-align: left;
    }

        .management-main__greeting.pc {
            display: block;
        }

    .management-main__cancellation-warning::before {
        top: 0.9rem;
    }

    .management-main__to-top-container {
        width: 100%;
        max-width: 1200px;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

        .management-main__to-top-container:hover {
            color: #0097ff;
        }

    .management-main__top-button {
        max-width: 500px;
    }
}
/* =====================================
 * 言語選択表示
 *===================================== */
.select-language {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 30px;
    left: -70px;
    z-index: 10;
    transition: all 0.1s ease-in-out;
}

    .select-language[data-position="right"] {
        left: auto;
        right: 0;
    }

.select-language__check {
    display: none;
}

    .select-language__check:checked + .select-language {
        visibility: visible;
        opacity: 1;
        transition: all 0.1s ease-in-out;
    }

.select-language__inner {
    background-color: #ffffff;
    padding: 1rem 0.5rem;
    border: solid 1px #f3f3f3;
    box-shadow: 0 13px 22px -5px rgba(50, 55, 67, 0.13);
    position: relative;
    z-index: 15;
}

    .select-language__inner::before {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        right: 40px;
        top: -15px;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #f3f3f3;
        border-left: 15px solid transparent;
    }

    .select-language__inner::after {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        right: 40px;
        top: -13px;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #ffffff;
        border-left: 15px solid transparent;
    }

.select-language[data-position="right"] .select-language__inner::before {
    right: 0;
}

.select-language[data-position="right"] .select-language__inner::after {
    right: 0;
}

.select-language__list-item {
    width: 125px;
    height: 40px;
    text-align: center;
    position: relative;
}

.select-language__select-button {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

    .select-language__select-button:hover .select-language__language-contents::after {
        content: "";
        height: 2px;
        background-color: #182a4a;
        position: absolute;
        bottom: -3px;
        left: 0;
        right: 0;
    }

.select-language__language-contents {
    position: relative;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .select-language {
        top: 40px;
        left: 5px;
    }

    .select-language__inner::before {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        left: calc(50% - 15px);
        top: -15px;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #f3f3f3;
        border-left: 15px solid transparent;
    }

    .select-language__inner::after {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        left: calc(50% - 15px);
        top: -13px;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #ffffff;
        border-left: 15px solid transparent;
    }

    .select-language__list-item {
        width: 145px;
        height: 45px;
    }
}
/* =====================================
 * タイトル
 *===================================== */
.navigation-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 50;
    transition: all 0.1s ease-in-out;
}

    .navigation-menu[data-show="true"] {
        visibility: visible;
        opacity: 1;
        transition: all 0.1s ease-in-out;
    }

.navigation-menu--pc {
    display: none;
}

.navigation-menu__inner {
    background-color: #ffffff;
    padding: 1rem 1rem 0;
}

.navigation-menu__close {
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    margin-left: auto;
    padding: 0.4rem;
}

.navigation-menu__close-icon {
    width: 100%;
    height: 100%;
}

.navigation-menu__list-item {
    text-align: center;
    position: relative;
    height: 55px;
}

    .navigation-menu__list-item + .navigation-menu__list-item {
        border-top: 1px solid #f3f3f3;
    }

.navigation-menu__list-item-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

    .navigation-menu__list-item-link:hover {
        color: #333333;
    }

        .navigation-menu__list-item-link:hover .navigation-menu__link-item-contents {
            position: relative;
        }

            .navigation-menu__list-item-link:hover .navigation-menu__link-item-contents::after {
                content: "";
                color: #333333;
                height: 2px;
                background-color: #182a4a;
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
            }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .navigation-menu--pc {
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    .navigation-menu__list {
        height: 100%;
        display: flex;
    }

    .navigation-menu__list-item {
        display: flex;
        padding: 0 1.5rem;
        height: 100%;
        align-items: flex-end;
        position: relative;
    }

        .navigation-menu__list-item + .navigation-menu__list-item {
            border: none;
        }

        .navigation-menu__list-item::after {
            content: "";
            width: 0;
            height: 2px;
            background-color: #182a4a;
            position: absolute;
            right: 0;
            bottom: 0;
            transition: width 0.1s ease-in-out;
        }

        .navigation-menu__list-item:hover {
            background-color: transparent;
        }

            .navigation-menu__list-item:hover::after {
                content: "";
                width: 100%;
                height: 2px;
                background-color: #182a4a;
                position: absolute;
                left: 0;
                bottom: 0;
                transition: width 0.1s ease-in-out;
            }

        .navigation-menu__list-item.current {
            font-weight: bold;
            padding-bottom: 1rem;
        }

            .navigation-menu__list-item.current::after {
                content: "";
                width: 100%;
                height: 2px;
                background-color: #182a4a;
                position: absolute;
                right: 0;
                bottom: 0;
                left: 0;
            }

    .navigation-menu__list-item-link {
        display: flex;
        align-items: flex-end;
        padding-bottom: 1rem;
        width: 100%;
        height: 100%;
        position: static;
        position: initial;
    }

        .navigation-menu__list-item-link:hover .navigation-menu__link-item-contents::after {
            content: "";
            height: 0;
        }
}
/* =====================================
 * 予約情報
 *===================================== */
.reserve-information__information {
    margin: 1rem -1rem 0;
    text-align: left;
}

.reserve-information__information-inner,
.reserve-information__information-inner--cancel,
.reserve-information__information-inner--hotel,
.reserve-information__information-inner--user,
.reserve-information__information-inner--reservation,
.reserve-information__information-inner--price,
.reserve-information__information-inner--note {
    margin-top: 1.5rem;
}

.reserve-information__section-title {
    text-align: left;
    margin: 0 0 0.8rem 1rem;
    font-weight: bold;
}

.reserve-information__section-contents {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.reserve-information__table,
.reserve-information__wapper {
    width: 100%;
    background-color: #ffffff;
}

.reserve-information__tabel-row {
    height: 2rem;
}

    .reserve-information__tabel-row + .reserve-information__tabel-row {
        border-top: solid 1px #dddddd;
    }

.reserve-information__table-data-container {
    display: flex;
}

.reserve-information__table-data,
.reserve-information__table-data--right,
.reserve-information__table-data-agreement--right,
.reserve-information__table-data--left,
.reserve-information__table-data-agreement--left {
    padding: 1rem 0;
}

.reserve-information__table-data--left {
    text-align: left;
    padding-right: 0.5rem;
    flex: 1 0 110px;
    max-width: 110px;
    word-break: break-all;
}

.reserve-information__table-data-agreement--left {
    text-align: left;
    padding-right: 0.5rem;
    flex: 1 0 450px;
    max-width: 450px;
    word-break: keep-all;
}

.reserve-information__table-data--right {
    padding-left: 0.5rem;
    flex-direction: column;
    text-align: right;
    display: flex;
    word-wrap: break-word;
    flex: 1 1 100px;
    align-items: inherit;
}

.reserve-information__table-data-agreement--right {
    padding-left: 0.5rem;
    flex-direction: row;
    text-align: right;
    display: flex;
    word-wrap: break-word;
    flex: 1 1 50px;
    align-items: inherit;
}

.reserve-information__table-data-inner {
    text-align: left;
}

.reserve-information__table-data-title {
    padding: 1rem 0;
}

.reserve-information__table-data-note:first-child {
    margin-top: 1rem;
}

.reserve-information__table-data-note:last-child {
    margin-bottom: 1rem;
}

.reserve-information__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    background-color: #f3f3f3;
}

.reserve-information__price-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.reserve-information__price-total {
    font-size: 1.5rem;
    font-weight: bold;
}

.reserve-information__price-total-title {
    font-weight: bold;
}

.reserve-information__price-total-unit {
    font-weight: normal;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.reserve-information__price-detail {
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    background-color: #ffffff;
    transition: max-height 0.3s ease, visibility 0.1s ease, margin-top 0.3s ease, padding 0.1s ease;
}

    .reserve-information__price-detail.is-open {
        visibility: visible;
        overflow: visible;
        width: 100%;
        height: auto;
        max-height: 200vh;
        padding: 0.5rem 0;
        margin-top: 1rem;
        transition: max-height 0.4s ease, visibility 0.6s ease;
    }

.reserve-information__price-detail-button {
    position: relative;
    margin: 0 0 -0.5rem auto;
    display: block;
    padding: 0.5rem 1rem;
    color: #0065ac;
    text-decoration: underline;
    z-index: 80;
}

    .reserve-information__price-detail-button::before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background-image: url("../img/svg/icon_arrow_bottom_bl.svg");
        background-size: 10px 10px;
        background-repeat: no-repeat;
        position: absolute;
        top: calc(50% - 5px);
        right: 2px;
        transition: all 0.4s ease;
    }

    .reserve-information__price-detail-button:hover {
        color: #0097ff;
    }

    .reserve-information__price-detail-button.is-open::before {
        content: "";
        transform: rotate(180deg);
    }

.reserve-information__caution-group {
    padding: 1rem 0;
    margin-bottom: 1rem;
    line-height: 1.2rem;
}

.reserve-information__caution-group-title {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-information__information-inner--cancel {
        grid-area: management-cancel;
    }

    .reserve-information__information-inner--hotel {
        grid-area: management-hotel;
    }

    .reserve-information__information-inner--user {
        grid-area: management-user;
    }

    .reserve-information__information-inner--reservation {
        grid-area: management-reservation;
    }

    .reserve-information__information-inner--price {
        grid-area: management-price;
    }

    .reserve-information__information-inner--note {
        grid-area: management-note;
    }

    .reserve-information__table-data,
    .reserve-information__table-data--left,
    .reserve-information__table-data-agreement--left,
    .reserve-information__table-data--right 
    .reserve-information__table-data-agreement--right {
        padding: 1rem 0;
    }

    .reserve-information__table-data--left {
        flex: 1 0 150px;
        max-width: 150px;
        word-break: break-all;
    }

    .reserve-information__section-contents {
        margin-bottom: 0;
    }
}
/* =====================================
 * 決済情報入力画面
 *===================================== */
.reserve {
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.reserve__attention {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    padding: 2rem 1rem 1rem;
}

.reserve__contents {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
}

.reserve__price {
    display: none;
    width: 100%;
    position: sticky;
    bottom: 0;
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
    padding: 2rem 1rem;
}

.reserve__detail-button-container {
    display: flex;
    flex-direction: column;
}

.reserve__settlement-button-container {
    display: flex;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve {
        -ms-grid-rows: auto auto;
        -ms-grid-columns: 2fr 1fr;
        grid-template: "attention price" auto "contents price" auto/2fr 1fr;
    }

    .reserve__attention {
        grid-area: attention;
        padding-bottom: 0.5rem;
    }

    .reserve__contents {
        grid-area: contents;
    }

    .reserve__price {
        grid-area: price;
        display: block;
        position: unset;
    }
}

@media screen and (min-width: 1000px) {
    .reserve__attention {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve__contents {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .reserve__price {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 2;
    }
}

@media screen and (min-width: 1000px) {
    .reserve__attention {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve__contents {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .reserve__price {
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        -ms-grid-column: 2;
    }
}
/* =====================================
 * 決済情報完了画面
 *===================================== */
.reserve-complete {
    background-color: #f3f3f3;
    padding: 0 1rem 5rem;
}

.reserve-complete__message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.reserve-complete__message-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 1rem;
}

.reserve-complete__message-image {
    margin-bottom: 1rem;
}

.reserve-complete__message {
    margin-bottom: 1rem;
    text-align: center;
}

.reserve-complete__confirmation {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem 1rem;
}

.reserve-complete__confirmation-inner {
    margin: auto;
}

.reserve-complete__confirmation-title {
    font-size: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: #0065ac;
}

.reserve-complete__confirmation-group {
    margin-bottom: 1rem;
    line-height: 1.2rem;
}

    .reserve-complete__confirmation-group + .reserve-complete__confirmation-group {
        border-top: solid 1px #dddddd;
        padding-top: 1rem;
    }

.reserve-complete__confirmation-group-title {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.reserve-complete__information {
    margin: 1rem 0;
    background-color: #f6f6f6;
    border-radius: 4px;
    padding: 1rem;
}

.reserve-complete__date {
    background-color: #182a4a;
    color: #ffffff;
    line-height: 1.8rem;
    text-align: center;
    font-weight: bold;
    border-radius: 2px;
}

.reserve-complete__hotel {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem 0.5rem 1rem 2rem;
    position: relative;
}

    .reserve-complete__hotel::before {
        content: "";
        width: 24px;
        height: 24px;
        background-image: url("../img/svg/icon_moon.svg");
        background-repeat: no-repeat;
        background-size: 24px 24px;
        position: absolute;
        top: 10px;
        left: 0;
    }

.reserve-complete__information-row {
    display: flex;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

    .reserve-complete__information-row + .reserve-complete__information-row {
        border-top: solid 1px #eaeaea;
    }

.reserve-complete__information-title {
    min-width: 10rem;
}

.reserve-complete__information-data,
.reserve-complete__information-data--important {
    flex-basis: 100%;
    flex-grow: 1;
    text-align: right;
}

.reserve-complete__information-data--important {
    font-weight: bold;
}

.reserve-complete__information-note {
    margin-top: 1rem;
}

.reserve-complete__manage-button {
    margin: 0 auto;
    flex-grow: 0;
    padding: 0;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-complete {
        font-size: 1rem;
    }

    .reserve-complete__message-title {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 1.1rem;
    }

    .reserve-complete__confirmation-inner {
        width: 735px;
        margin: auto;
    }

    .reserve-complete__information-inner {
        display: flex;
        flex-direction: column;
        padding: 0 2rem;
    }

    .reserve-complete__information-title {
        min-width: 10rem;
    }

    .reserve-complete__hotel {
        font-size: 1.2rem;
    }

        .reserve-complete__hotel::before {
            content: "";
            top: 15px;
        }

    .button--receiptissue {
        padding: 0 3rem;
        max-width: 400px;
    }


}
/* =====================================
 * ログインページ
 *===================================== */
.login {
    flex: 1 1 auto;
    width: 80%;
    margin: 3rem auto 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 350px;
}

.login__title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.login__input-form {
    padding: 1rem 0;
}

.login__input-form-inner {
    display: flex;
    flex-direction: column;
}

.login__input-group {
    padding-right: 0;
}

.login__button {
    transition: all 0.1s ease;
    margin: 1rem auto;
    max-width: 200px;
}

    .login__button:hover:not([disabled]) {
        color: white;
        background-color: #fdab48;
        transition: all 0.1s ease;
    }

.login__link {
    display: block;
    text-decoration: none;
    margin: 0 auto;
    width: auto;
    text-align: center;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .login {
        padding-top: 1rem;
    }

    .login__input-form {
        padding: 1rem;
    }
}
/* =====================================
 * トップ画面
 *===================================== */
.top-page__link-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.8rem;
}

.top-page__list-item {
    flex: 1 1 50%;
    max-width: 50%;
    margin-bottom: 1rem;
}

.top-page__list-item-inner {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: #333333;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px 2px rgba(50, 55, 67, 0.13);
    font-weight: bold;
    padding: 1rem 1rem 1.3rem;
    margin: 0 0.8rem;
}

    .top-page__list-item-inner:hover {
        color: #333333;
        opacity: 0.8;
    }

.top-page__list-item-name {
    margin-top: 0.5rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .top-page__link-list {
        margin: 0 -2.1rem;
    }

    .top-page__list-item {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: calc(100% / 3);
        max-width: calc(100% / 3);
        margin-bottom: 2rem;
    }

    .top-page__list-item-inner {
        margin: 0 2rem;
    }
}
/* =====================================
 * 決済情報確認ページ
 *===================================== */
.reserve-my-page {
    padding-top: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.reserve-my-page__title {
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.reserve-my-page__top-button {
    margin: 0.5rem auto 1rem;
}

.reserve-my-page__cancel-button {
    max-width: 200px;
    margin: 0.5rem auto 1rem;
    display: flex;
    align-items: center;
}

    .reserve-my-page__cancel-button:hover {
        color: #ffffff;
    }

.reserve-my-page__saved-button {
    margin: 2rem 0 3rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-my-page__title {
        font-size: 1.5rem;
    }

    .reserve-my-page__information {
        display: -ms-grid;
        display: grid;
        grid-gap: 1rem;
        margin: 1rem 0;
        -ms-grid-rows: auto 1rem auto 1rem auto 1rem 1fr;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template: "management-hotel management-note" auto "management-user management-note" auto "management-reservation management-note" auto "management-price management-note" 1fr/1fr 1fr;
    }

    .reserve-my-page__saved-button {
        display: flex;
        justify-content: center;
    }

    .reserve-my-page__top-button {
        max-width: 350px;
    }

    .reserve-information__information-inner--cancel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--reservation {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--price {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--note {
        -ms-grid-row: 1;
        -ms-grid-row-span: 7;
        -ms-grid-column: 3;
    }

    .reserve-information__information-inner--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--reservation {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--price {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }

    .reserve-information__information-inner--note {
        -ms-grid-row: 1;
        -ms-grid-row-span: 7;
        -ms-grid-column: 3;
    }
}
/* =====================================
 * 予約内容照会画面
 *===================================== */
.reserve-change {
    flex: 10 1 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0.5rem 0;
}

    .reserve-change * {
        flex-grow: 0;
    }

.reserve-change__blank-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    flex-grow: 0;
}

.reserve-change__link-icon {
    margin-left: 0.5rem;
}

.reserve-change__top-button-container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

.reserve-change__top-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-change {
        text-align: center;
        margin: 0 auto;
    }

    .reserve-change__blank-link {
        max-width: 450px;
    }

    .reserve-change__top-button {
        max-width: 350px;
    }
}
/* =====================================
 * タイトル
 *===================================== */
.reserve-cancel {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.reserve-cancel__information {
    margin: 1rem -1rem;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
    position: relative;
}

    .reserve-cancel__information::after {
        content: "";
        width: 0;
        height: 0;
        border-top: solid 20px #ffffff;
        border-left: solid 20px transparent;
        border-right: solid 20px transparent;
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
        margin: auto;
    }

.reserve-cancel__area--table,
.reserve-cancel__area--comment,
.reserve-cancel__area--cancel-fee {
    margin-bottom: 1.2rem;
}

.reserve-cancel__cancel-fee-container {
    background-color: #ffe5e5;
    border-radius: 4px;
    padding: 0.8rem;
    color: #b9001d;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
    font-weight: bold;
}

.reserve-cancel__cancel-fee-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: center;
}

.reserve-cancel__cancel-fee {
    font-size: 1.7rem;
}

.reserve-cancel__unit {
    font-size: 0.6em;
    margin-left: 0.5rem;
    font-weight: normal;
}

.reserve-cancel__cancel-fee-detail {
    background-color: #ffffff;
    color: #333333;
    padding: 0.3rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-weight: normal;
    border-radius: 4px;
}

.reserve-cancel__detail-row {
    display: flex;
    margin: 0.7rem 0;
    font-size: 1.1rem;
}

.reserve-cancel__detail-fee {
    margin-left: 2.5rem;
    font-weight: bold;
}

.reserve-cancel__detail-addition {
    opacity: 0.7;
}

.reserve-cancel__cancel-button {
    margin-top: 2.5rem;
    text-align: center;
    flex-direction: row;
}

    .reserve-cancel__cancel-button[data-display="pc"] {
        display: none;
    }

.reserve-cancel__reserve-information {
    margin: 2.5rem -1rem 2rem;
}

.reserve-cancel__reserve-information-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-cancel__reserve-information {
        margin: 2.5rem 0 2rem;
    }

    .reserve-cancel__information {
        margin: 1rem 0;
        display: -ms-grid;
        display: grid;
        grid-gap: 1rem;
        gap: 1rem;
        -ms-grid-rows: auto 1rem 1fr;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template: "table comment" auto "cancel-fee comment" 1fr/1fr 1fr;
    }

    .reserve-cancel__area--table {
        grid-area: table;
    }

    .reserve-cancel__area--comment {
        grid-area: comment;
    }

    .reserve-cancel__area--cancel-fee {
        grid-area: cancel-fee;
    }

    .reserve-cancel__cancel-button[data-display="pc"] {
        display: block;
    }

    .reserve-cancel__cancel-button[data-display="sp"] {
        display: none;
    }

    .reserve-cancel__reserve-information-contents {
        display: -ms-grid;
        display: grid;
        grid-gap: 1rem;
        gap: 1rem;
        -ms-grid-rows: auto 1rem auto 1rem 1fr;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template: "management-hotel management-price" auto "management-user management-price" auto "management-reservation management-price" 1fr/1fr 1fr;
    }

    .reserve-cancel__comment {
        margin: 1.5rem 0;
    }

    .reserve-cancel__reserve-information-title {
        font-size: 1.5rem;
    }

    .reserve-cancel__top-button {
        max-width: 350px;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--cancel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--reservation {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--price {
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        -ms-grid-column: 3;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--hotel {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--user {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--reservation {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .reserve-cancel__reserve-information-contents > .reserve-information__information-inner--price {
        -ms-grid-row: 1;
        -ms-grid-row-span: 5;
        -ms-grid-column: 3;
    }
}

@media screen and (min-width: 1000px) {
    .reserve-cancel__area--table {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-cancel__area--comment {
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        -ms-grid-column: 3;
    }

    .reserve-cancel__area--cancel-fee {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
}

@media screen and (min-width: 1000px) {
    .reserve-cancel__area--table {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .reserve-cancel__area--comment {
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        -ms-grid-column: 3;
    }

    .reserve-cancel__area--cancel-fee {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
}
/* =====================================
 * 予約取り消し完了画面
 *===================================== */
.reserve-cancel-complete__message {
    width: 100%;
    margin: 4rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .reserve-cancel-complete {
        display: flex;
        flex: 10 1 auto;
        flex-direction: column;
    }

    .reserve-cancel-complete__message {
        flex-grow: 0;
        font-size: 1rem;
    }

    .reserve-cancel-complete__top-button-container {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .reserve-cancel-complete__top-button {
        max-width: 350px;
        margin-bottom: 2rem;
    }
}
/* =====================================
 * 問い合わせ画面
 *===================================== */
.inquiry {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.inquiry__new-inquiry-title {
    margin: 2rem auto -0.5rem 0;
    font-weight: bold;
}

.inquiry__inner {
    background-color: #ffffff;
    margin: 1.5rem -1rem;
    padding: 0.5rem 1rem;
}

.inquiry__explanation {
    margin: 0 auto;
}

.inquiry__input-area {
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.inquiry__send-confirm-button {
    max-width: 130px;
    margin: 0 auto 2rem;
}

.inquiry__confirm {
    text-align: center;
    margin: 1rem 0;
}

.inquiry__confirm-content {
    background-color: #f3f3f3;
    padding: 1rem 0.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.inquiry__confirm-row {
    padding: 0.5rem;
}

    .inquiry__confirm-row + .inquiry__confirm-row {
        border-top: 1px solid #eaeaea;
    }

.inquiry__confirm-title {
    font-weight: bold;
    font-size: 1.14rem;
}

.inquiry__confirm-contents {
    padding: 1rem 0 1rem 0;
}

.inquiry__close-button {
    flex: 1 1 auto;
    width: 100%;
    border: solid 1px #eaeaea;
    box-shadow: 0 2px 1px 0 rgba(50, 55, 67, 0.13);
    margin-right: 0.5rem;
    padding: 0;
}

.inquiry__send-button {
    flex: 1 1 auto;
    width: 100%;
    margin-left: 0.5rem;
    padding: 0;
}

.inquiry__list-wrapper {
    margin: 1rem auto;
}

.inquiry__contents {
    background-color: #ffffff;
    padding: 1rem 1.3rem;
    border-radius: 8px;
}

    .inquiry__contents.answer {
        background-color: #eeebeb;
    }

    .inquiry__contents.question {
        background-color: #ffffff;
    }

.inquiry__group + .inquiry__group {
    margin-top: 3rem;
}

.inquiry__reply-date {
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.inquiry__reply-title {
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.inquiry__reply-group {
    padding-left: 1.5rem;
}

.inquiry__reply-item {
    margin-top: 0.8rem;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
}

.inquiry__reply-item.answer {
    background-color: #eeebeb;
    border: 1px solid #c5c7c9;
}

.inquiry__reply-item.question {
    background-color: #ffffff;
    border: 1px solid #c5c7c9;
}

.inquiry__reply-close {
    margin-left: auto;
    display: block;
    margin-bottom: -1.5rem;
}

.inquiry__reply-input {
    overflow: hidden;
    opacity: 0;
    background-color: #ffffff;
    border-radius: 8px;
    margin-top: 0.8rem;
    transition: opacity 2s ease, height 0.2s ease;
}

    .inquiry__reply-input.is-open {
        opacity: 1;
        transition: height 0.2s ease;
    }

.inquiry__reply-input-inner {
    width: 100%;
    height: 100%;
    padding: 1rem 1.5rem 0.8rem;
    display: flex;
    flex-direction: column;
}

.inquiry__reply-button {
    max-width: 130px;
    margin-top: 0.3rem;
}

.inquiry__reply-open-button {
    max-width: 130px;
    margin: 1rem auto 0 auto;
}

.inquiry__top-button {
    margin: 1.5rem auto;
}

    .inquiry__top-button:hover {
        color: #333333;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .inquiry__new-inquiry-title {
        margin: 2rem 0 -0.5rem 0;
        text-align: center;
    }

    .inquiry__inner {
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        margin: 1.5rem auto;
        border-radius: 8px;
    }

    .inquiry__input-area {
        width: 100%;
    }

    .inquiry__close-button,
    .inquiry__send-button {
        max-width: 170px;
    }

    .inquiry__close-button {
        margin-left: 0;
    }

    .inquiry__send-button {
        margin-right: 0;
    }

    .inquiry__group {
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        display: block;
    }

    .inquiry__confirm-title {
        font-size: 1rem;
    }

    .inquiry__confirm-contents {
        font-size: 0.95rem;
    }

    .inquiry__reply-group {
        display: flex;
        flex-direction: column;
    }

    .inquiry__reply-close {
        margin-right: 1rem;
    }

    .inquiry__reply-input-inner {
        padding: 1rem 0.5rem 0.8rem 1.5rem;
    }

    .inquiry__reply-button {
        margin-left: auto;
        margin-right: 1rem;
    }

    .inquiry__reply-open-button {
        margin-right: 1.5rem;
    }

    .inquiry__top-button {
        max-width: 350px;
    }
}
/* =====================================
 * 問い合わせ完了画面
 *===================================== */
.inquiry-complete__message {
    width: 100%;
    margin: 4rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .inquiry-complete {
        display: flex;
        flex: 10 1 auto;
        flex-direction: column;
    }

    .inquiry-complete__message {
        flex-grow: 0;
        font-size: 1rem;
    }

    .inquiry-complete__top-button-container {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
    }

    .inquiry-complete__top-button {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
}
/* =====================================
 * 領収証発行画面
 *===================================== */
.receipt {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.receipt__explanation {
    text-align: center;
}

.receipt__sample-link {
    text-decoration: underline;
    color: #0065ac;
    width: 100%;
    text-align: right;
    margin: 1rem 0;
}

    .receipt__sample-link:hover {
        color: #0097ff;
    }

    .receipt__sample-link.pc {
        display: none;
    }

.receipt__sample-image {
    width: 100%;
}

.receipt__price-table {
    margin: 0 -1rem 1.5rem;
    background-color: #ffffff;
    padding: 0 1rem;
}

.receipt__price-table-row {
    display: flex;
    padding: 1rem 0;
    justify-content: space-between;
}

    .receipt__price-table-row + .receipt__price-table-row {
        border-top: solid 1px #eaeaea;
    }

.receipt__warning {
    border-radius: 8px;
    border: solid 1px #ffaa00;
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.receipt__warning-title {
    font-weight: bold;
    position: relative;
    margin-bottom: 0.3rem;
    padding-left: 2rem;
    font-size: 1.1rem;
}

    .receipt__warning-title::before {
        content: "";
        width: 25px;
        height: 22px;
        background-image: url("../img/svg/icon_caution_triangle_ye.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: -0.5rem;
        left: 0;
    }

.receipt__issue {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.receipt__issue-item,
.receipt__issue-item-confirm {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem 0.5rem 0.5rem;
}

.receipt__issue-item-confirm {
    background-color: #f3f3f3;
}

    .receipt__issue-item-confirm:first-child {
        margin-top: 1rem;
    }

.receipt__issue-header {
    display: flex;
    height: 28px;
}

.receipt__issue-header-inner {
    flex: 1 1 auto;
    background-color: #182a4a;
    border-radius: 2px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    line-height: 28px;
}

.receipt__issue-delete {
    margin-left: 1rem;
}

    .receipt__issue-delete.pc {
        display: none;
    }

.receipt__issue-row {
    display: flex;
    align-items: center;
    margin: 0.3rem 0;
}

.receipt__issue-label-group {
    flex: 0 0 auto;
    margin-right: 0.7rem;
    max-width: 5rem;
    vertical-align: middle;
}

.receipt__issue-label {
    display: flex;
    font-weight: bold;
}

.receipt__issue-require {
    margin-left: 2px;
}

.receipt__issue-addition {
    font-size: 0.8rem;
}

.receipt__issue-input-group,
.receipt__issue-value-group {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    justify-content: flex-end;
}

.receipt__issue-honorifics,
.receipt__issue-unit {
    margin-left: 0.3rem;
}

.receipt__receipt-add-button-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}

.receipt__receipt-add-button {
    color: #0065ac;
    font-weight: bold;
    font-size: 1.1rem;
    padding-left: 2.3rem;
    position: relative;
    line-height: 26px;
}

    .receipt__receipt-add-button::before {
        content: "";
        width: 26px;
        height: 26px;
        background-image: url("../img/svg/icon_cross_bl.svg");
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
    }

    .receipt__receipt-add-button:hover {
        color: #0097ff;
    }

.receipt__reissue-button {
    margin: 0.5rem 0;
}

    .receipt__reissue-button.pc {
        display: none;
    }

.receipt__issue-button {
    flex: 1 1 auto;
    padding: 0.4rem 1rem;
    width: auto;
    margin-left: 0.3rem;
}

    .receipt__issue-button.pc {
        display: none;
    }

.receipt__fix-button {
    flex: 1 1 auto;
    padding: 0.4rem 1rem;
    width: auto;
    margin-right: 0.3rem;
    border: 1px solid #eaeaea;
    box-shadow: 0 1px 2px 0 rgba(50, 55, 67, 0.13);
}

.receipt__top-button {
    margin-top: 1.5rem;
}

    .receipt__top-button:hover {
        color: #333333;
    }

/* ------PC------ */
@media screen and (min-width: 1000px) {
    .receipt__explanation {
        text-align: left;
        display: flex;
        align-items: baseline;
        margin: -0.5rem 0 0.5rem 0;
    }

    .receipt__sample-link {
        width: auto;
    }

        .receipt__sample-link.sp {
            display: none;
        }

        .receipt__sample-link.pc {
            display: block;
        }

    .receipt__sample-image {
        margin: 0 auto;
        display: block;
        max-height: 500px;
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .receipt__price-table {
        margin: 0 0 1.5rem;
    }

    .receipt__price-table-row {
        justify-content: flex-start;
    }

    .receipt__price-table-label {
        flex: 1 1 400px;
        max-width: 400px;
    }

    .receipt__price-table-price {
        flex: 1 1 auto;
        max-width: 150px;
        text-align: right;
    }

    .receipt__issue-item,
    .receipt__issue-item-confirm {
        display: flex;
        align-items: center;
        padding: 0.5rem 0.8rem;
    }

    .receipt__issue-header {
        height: 100%;
        flex: 1 0 150px;
        max-width: 150px;
        padding-right: 1rem;
    }

    .receipt__issue-header-inner {
        padding: 0.8rem 0;
    }

    .receipt__issue-content {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        margin-right: 4rem;
    }

    .receipt__issue-value-group {
        flex: 0 1 auto;
    }

    .receipt__issue-row + .receipt__issue-row {
        margin-left: 1.5rem;
    }

    .receipt__issue-row.receipt-name {
        flex: 2 1 auto;
    }

    .receipt__issue-row.receipt-price {
        flex: 1 1 auto;
    }

    .receipt__issue-row.receipt-reissue-name {
        flex: 3 1 auto;
    }

    .receipt__issue-row.receipt-reissue-price {
        flex: 1 1 auto;
    }

    .receipt__issue-row.receipt-confirm-price {
        flex: 1 1 auto;
        max-width: 11rem;
    }

    .receipt__issue-delete {
        margin: 0 -3rem 0 1.5rem;
    }

        .receipt__issue-delete.sp {
            display: none;
        }

        .receipt__issue-delete.pc {
            display: block;
        }

    .receipt__receipt-add-button-container {
        margin: 2rem;
    }

    .receipt__reissue-button {
        max-width: 150px;
        margin-right: -4rem;
        margin-left: 1.5rem;
        text-align: center;
    }

        .receipt__reissue-button.sp {
            display: none;
        }

        .receipt__reissue-button.pc {
            display: flex;
        }

    .receipt__top-button {
        margin-top: 3rem;
        max-width: 350px;
    }

    .receipt__issue-button {
        margin: 0 0 0 1rem;
        flex: 0 0 25rem;
    }

        .receipt__issue-button.sp {
            display: none;
        }

        .receipt__issue-button.pc {
            display: inherit;
        }

    .receipt__fix-button {
        width: 12rem;
        margin: 0 1rem 0 0;
        flex: 0 0 auto;
    }
}

/* =====================================
 * エラー画面
 *===================================== */
.error__page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.error__main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1 0 auto;
    min-height: 400px;
    background-color: #f8f9fa;
}

.error__main-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: 5rem;
}

.error__logo img{
    width: 300px;
}

.error__title {
    margin-top: 2rem;
    font-size: 2.3rem;
    font-weight: bold;
    color: #969696;
    text-align: center;
}

.error__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    color: #969696;
}

.error__footer {
    display: flex;
    height: 200px;
    min-height: 200px;
    justify-content: center;
    background-color: #f8f9fa;
    font-size: 0.85rem;
}

.error__footer-inner {
    display: flex;
    height: 200px;
    flex-direction: column;
    align-items: center;
    width: 1346px;
}

.error__footer-information {
    display: flex;
    flex-direction: column;
    width: auto;
    align-items: center;
    background-color: #fff;
    border: solid 1px #969696;
    padding: 0.5rem 6rem;
    border-radius: 10px;
}

.error__footer-copyright {
    margin: 5rem;
}

.btn-paypay-disabled {
    background-color: black;
    opacity: 0.3;
    position: absolute;
    width: 300px;
    height: 60px;
    border-radius: 10px;
}

/* =====================================
 * 予約不成立画面
 *===================================== */
.reserve-out__message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.reserve-out__message-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 1rem;
}

.reserve-out__message {
    margin-bottom: 1rem;
    text-align: center;
}

.reserve-out__message {
    margin-bottom: 1rem;
    text-align: center;
}
