@charset 'UTF-8';
/* ===============================================
#header
=============================================== */
.header
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    width: 100%;
    height: 85px;
    padding-left: 72px;

    background-color: #272e38;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media screen and (max-width: 1023px)
{
    .header
    {
        padding-left: 10px;
    }
}
@media screen and (max-width: 767px)
{
    .header
    {
        height: 46px;
        padding-left: 19px;
    }
}
.header__logo
{
    width: 184px;
}

@media screen and (max-width: 1023px)
{
    .header__logo
    {
        width: 142px;
    }
}
.header__menu-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;
}

@media screen and (max-width: 767px)
{
    .header__menu-box
    {
        display: none;
    }
}
.header__contact-btn
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    padding-right: 28px;
    padding-left: 28px;

    color: #fff;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media screen and (max-width: 1023px)
{
    .header__contact-btn
    {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.header__contact-btn::before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: .5px;
    height: 36.5px;

    content: '';

    background-color: #fff;

    rotate: 10deg;
    translate: 0 -50%;
}

.header__contact-btn-bottom
{
    line-height: 1;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 8px;
}

.header__contact-btn-top
{
    font-size: 20px;
    font-size: 2rem;
}

.header__contact-btn-icon
{
    width: 8px;
    padding-bottom: 6px;
}

.header__contact-btn-bottom-text
{
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-size: 1.1rem;

    letter-spacing: .77px;
}

.header__booking-btn
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    margin-right: -15px;
    padding-right: 33px;
    padding-left: 33px;

    color: #fff;
    background-color: #8b7a60;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-clip-path: polygon(15px 0, 100% 0%, 255px 100%, 0% 100%);
            clip-path: polygon(15px 0, 100% 0%, 255px 100%, 0% 100%);
}

@media screen and (max-width: 1023px)
{
    .header__booking-btn
    {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.header__booking-btn-top
{
    font-size: 21px;
    font-size: 2.1rem;

    letter-spacing: -2.459px;
}

.header__booking-btn-bottom
{
    font-size: 14px;
    font-size: 1.4rem;

    position: relative;
}

.header__booking-btn-bottom::before,
.header__booking-btn-bottom::after
{
    position: absolute;
    top: 53%;

    width: 9px;
    height: 1px;

    content: '';

    background-color: #fff;

    translate: 0 -50%;
}

.header__booking-btn-bottom::before
{
    left: -23px;
}

.header__booking-btn-bottom::after
{
    right: -23px;
}

.header__line-btn
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-right: 35px;
    padding-left: 35px;

    background-color: #f9f9f9;

    -webkit-clip-path: polygon(15px 0, 100% 0%, 100% 100%, 0% 100%);

            clip-path: polygon(15px 0, 100% 0%, 100% 100%, 0% 100%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13px;
}

@media screen and (max-width: 1023px)
{
    .header__line-btn
    {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.header__line-icon
{
    width: 32px;
}

.header__line-btn-text-top
{
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-size: 1.1rem;

    letter-spacing: .77px;
}

.header__line-btn-text-bottom
{
    font-size: 16px;
    font-size: 1.6rem;
}

.footer
{
    padding: 93px 0;

    color: #fff;
    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .footer
    {
        padding: 50px 0 120px;
    }
}
.footer__inner
{
    max-width: 1100px;
}

.footer__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 767px)
{
    .footer__container
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        gap: 40px;
    }
}
.footer__container-left
{
    width: 257px;
}

@media screen and (max-width: 1023px)
{
    .footer__container-left
    {
        width: 208px;
    }
}
@media screen and (max-width: 767px)
{
    .footer__container-left
    {
        width: 100%;
    }
}
.footer__container-right
{
    width: 480px;
}

@media screen and (max-width: 767px)
{
    .footer__container-right
    {
        width: 100%;
        max-width: 345px;
        margin-right: auto;
        margin-left: auto;
    }
}
.footer__logo
{
    display: block;

    margin-bottom: 9px;
}

@media screen and (max-width: 767px)
{
    .footer__logo
    {
        max-width: 200px;
    }
}
.footer__logo-text
{
    margin-bottom: 78px;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .footer__logo-text
    {
        margin-bottom: 40px;
    }
}
.footer__access
{
    margin-bottom: 31px;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .footer__access
    {
        margin-bottom: 15px;
    }
}
.footer__tel
{
    letter-spacing: 2.625px;
}

.footer__table
{
    width: 100%;
    margin-bottom: 8px;
}

.footer__table td,
.footer__table th
{
    font-weight: 400;

    padding: 4px 8px;

    vertical-align: middle;
    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .footer__table td,
    .footer__table th
    {
        padding: 2px 4px;
    }
}
.footer__table th
{
    width: 29%;

    text-align: right;
}

@media screen and (max-width: 767px)
{
    .footer__table th
    {
        width: 36%;
    }
}
.footer__table td
{
    text-align: center;
}

.footer__rest
{
    margin-bottom: 5px;
    padding-left: 151px;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .footer__rest
    {
        padding-left: 130px;
    }
}
.footer__note
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    padding-left: 151px;

    letter-spacing: 2.1px;
}

@media screen and (max-width: 767px)
{
    .footer__note
    {
        padding-left: 130px;
    }
}
.mv
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 715px;

    background: transparent url(./../image/WebP/mv.webp) no-repeat center center/cover;
}

@media screen and (max-width: 1023px)
{
    .mv
    {
        height: 605px;
    }
}
@media screen and (max-width: 767px)
{
    .mv
    {
        height: 404px;
        margin-bottom: 230px;

        background: transparent url(./../image/WebP/mv-sp.webp) no-repeat top 13% center/cover;
    }
}
.mv__inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 100%;
    height: 100%;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

@media screen and (max-width: 767px)
{
    .mv__inner
    {
        max-width: 100%;
    }
}
.mv__container
{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media screen and (max-width: 767px)
{
    .mv__container
    {
        position: absolute;
        top: calc(100% - 84px);
        left: 0;

        width: 100%;
    }
}
.mv__text-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    margin-bottom: 39px;

    -webkit-box-align: start;

        -ms-flex-align: start;

            align-items: flex-start;
    gap: 10px;
}

@media screen and (max-width: 767px)
{
    .mv__text-box
    {
        margin-bottom: 19px;
    }
}
.mv__text
{
    font-size: 48px;
    font-size: 4.8rem;

    padding: 13px 23px;

    color: #fff;
    background-color: #272e38;
}

@media screen and (max-width: 1023px)
{
    .mv__text
    {
        font-size: 38px;
        font-size: 3.8rem;
    }
}
@media screen and (max-width: 767px)
{
    .mv__text
    {
        font-size: 34px;
        font-size: 3.4rem;

        padding: 7px 16px;
    }
}
.mv__text strong
{
    font-weight: 400;

    color: #cdb19c;
}

.mv__text small
{
    font-size: 40px;
    font-size: 4rem;

    margin-right: 8px;
}

@media screen and (max-width: 1023px)
{
    .mv__text small
    {
        font-size: 32px;
        font-size: 3.2rem;

        margin-right: 6px;
    }
}
@media screen and (max-width: 767px)
{
    .mv__text small
    {
        font-size: 28px;
        font-size: 2.8rem;
    }
}
.mv__btn
{
    font-size: 30px;
    font-size: 3rem;

    position: relative;

    display: block;

    width: 100%;
    margin-bottom: 39px;
    padding: 20px;

    text-align: center;
    letter-spacing: 2.538px;

    color: #fff;
    background-color: #8b7a60;
}

@media screen and (max-width: 1023px)
{
    .mv__btn
    {
        font-size: 24px;
        font-size: 2.4rem;
    }
}
@media screen and (max-width: 767px)
{
    .mv__btn
    {
        display: none;
    }
}
.mv__btn::before
{
    position: absolute;
    top: -5px;
    left: -7px;

    display: block;

    width: calc(100% + 14px);
    height: calc(100% + 10px);

    content: '';

    border: 1px solid #8b7a60;
}

.mv__btn-sp
{
    display: none;
}

@media screen and (max-width: 767px)
{
    .mv__btn-sp
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: 100%;
        padding: 5px;

        color: #fff;
        background-color: #8b7a60;

        -webkit-box-pack: center;

            -ms-flex-pack: center;

                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 13px;
    }
}
.mv__btn-sp-left
{
    font-size: 22px;
    font-size: 2.2rem;

    letter-spacing: 1.923px;
}

.mv__btn-sp-right
{
    font-size: 27px;
    font-size: 2.7rem;

    position: relative;

    padding-right: 16px;
    padding-left: 16px;
}

.mv__btn-sp-right::before,
.mv__btn-sp-right::after
{
    position: absolute;
    top: 50%;

    width: 8px;
    height: 1px;

    content: '';

    background-color: #fff;

    translate: 0 -50%;
}

.mv__btn-sp-right::before
{
    left: 0;
}

.mv__btn-sp-right::after
{
    right: 0;
}

.mv__bottom-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 1023px)
{
    .mv__bottom-box
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        gap: 10px;
    }
}
@media screen and (max-width: 767px)
{
    .mv__bottom-box
    {
        display: none;
    }
}
.mv__bottom-box.mv__sp
{
    display: none;
}

@media screen and (max-width: 767px)
{
    .mv__bottom-box.mv__sp
    {
        position: absolute;
        top: 127px;
        right: 13px;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;

        width: 113px;

        gap: 9px;
    }
}
.mv__bottom-text
{
    font-family: 'Noto Serif JP', serif;
    font-size: 21px;
    font-size: 2.1rem;

    position: relative;

    padding: 6px 32px;

    letter-spacing: 4.2px;

    border: 1px solid #272e38;
}

@media screen and (max-width: 1023px)
{
    .mv__bottom-text
    {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
@media screen and (max-width: 767px)
{
    .mv__bottom-text
    {
        font-size: 16px;
        font-size: 1.6rem;

        width: 100%;
        padding: 4px 9px;
    }
}
.mv__bottom-text strong
{
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 400;

    letter-spacing: 5px;
}

@media screen and (max-width: 767px)
{
    .mv__bottom-text strong
    {
        font-size: 20px;
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px)
{
    .mv__bottom-text span
    {
        margin-left: 19px;
    }
}
.mv__bottom-text::before
{
    position: absolute;
    top: 50%;
    left: -12px;

    width: 24px;
    height: .5px;

    content: '';

    background-color: #272e38;

    translate: 0 -50%;
}

@media screen and (max-width: 767px)
{
    .mv__bottom-text::before
    {
        display: none;
    }
}
.price
{
    position: relative;

    padding-top: 83px;
    padding-bottom: 65px;

    background-color: #f9f0ea;
}

@media screen and (max-width: 767px)
{
    .price
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.price__en
{
    font-family: 'Libre Baskerville', serif;
    font-size: 83px;
    font-size: 8.3rem;
    font-weight: 700;

    position: absolute;
    top: 150px;
    left: -152px;

    letter-spacing: 22.639px;

    color: #ead5c5;

    rotate: 90deg;
}

@media screen and (max-width: 767px)
{
    .price__en
    {
        font-size: 54px;
        font-size: 5.4rem;

        left: -114px;
    }
}
.price__lead
{
    font-size: 20px;
    font-size: 2rem;

    margin-top: 29px;
    margin-bottom: 59px;

    text-align: center;
    letter-spacing: 3.5px;
}

@media screen and (max-width: 767px)
{
    .price__lead
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}
.price__cards
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 36px;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

@media screen and (max-width: 767px)
{
    .price__cards
    {
        gap: 12px;
    }
}
.price__card
{
    position: relative;

    width: calc(33.3333333333% - 16px);
    padding: 26px 24px;

    background-color: #fff;
}

@media screen and (max-width: 1023px)
{
    .price__card
    {
        width: calc(50% - 12px);
    }
}
@media screen and (max-width: 767px)
{
    .price__card
    {
        width: 100%;
    }
}
.price__card::before
{
    position: absolute;
    top: 20px;
    left: -8px;

    width: 44px;
    height: 1px;

    content: '';

    background-color: #272e38;
}

.price__card-title
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    margin-bottom: 16px;

    text-align: center;
    letter-spacing: 3.5px;
}

.price__price-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 8px;

    color: #8b7a60;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
}

.price__price-box-left
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

.price__price-box-center
{
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    font-size: 4.8rem;
}

.price__price-box-tax
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.price__price-box-enn
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

.price__total-price
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    margin-bottom: 16px;

    text-align: center;
    letter-spacing: 2.1px;
}

.price__total-price strong
{
    font-size: 15px;
    font-size: 1.5rem;

    letter-spacing: 2.625px;
}

.price__total-price small
{
    font-size: 10px;
    font-size: 1rem;

    letter-spacing: 1.4px;
}

.price__card-text
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    text-align: center;
    letter-spacing: 2.1px;
}

.price__text-box
{
    text-align: center;
}

.price__text
{
    position: relative;

    display: inline-block;

    margin-bottom: 21px;

    letter-spacing: 2.625px;
}

.price__text span::after
{
    font-size: 10px;
    font-size: 1rem;

    position: relative;
    top: -9px;
    right: 9px;

    content: '※';
}

.price__check-lists
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 24px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
}

@media screen and (max-width: 767px)
{
    .price__check-lists
    {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 10px 0;
    }
}
.price__check-list
{
    position: relative;

    padding-left: 29px;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .price__check-list
    {
        width: 50%;
    }
}
.price__check-list::before
{
    position: absolute;
    top: 50%;
    left: 0;

    width: 16px;
    height: 16px;

    content: '';

    background: transparent url(./../image/check-icon.svg) no-repeat center center/contain;

    translate: 0 -50%;
}

.price__note
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    margin-bottom: 38px;

    text-align: center;
    letter-spacing: 2.1px;
}

.price__merit
{
    padding: 19px 20px 51px;

    background-color: #272e38;
}

.price__merit-box
{
    max-width: 356px;
    margin-right: auto;
    margin-bottom: 26px;
    margin-left: auto;
    padding-bottom: 15px;

    text-align: center;

    border-bottom: .5px solid #f9f9f9;
}

.price__merit-en
{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    margin-bottom: 12px;

    letter-spacing: 3.78px;

    color: #57616f;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 20px;
}

.price__merit-en::before,
.price__merit-en::after
{
    height: .5px;

    content: '';

    background-color: #f9f9f9;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;
}

.price__merit-title
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    letter-spacing: 3.5px;

    color: #fff;
}

.price__merit-lists
{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;

    list-style-type: disc;
}

@media screen and (max-width: 1023px)
{
    .price__merit-lists
    {
        width: 100%;
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }
}
@media screen and (max-width: 767px)
{
    .price__merit-lists
    {
        padding-left: 16px;
    }
}
.price__merit-list
{
    letter-spacing: 2.625px;

    color: #fff;
}

.price__merit-list.note span
{
    position: relative;
}

.price__merit-list.note span:after
{
    font-size: 10px;
    font-size: 1rem;

    position: relative;
    top: -9px;
    right: 9px;

    content: '※';
}

.price__merit-note
{
    font-size: 12px;
    font-size: 1.2rem;

    list-style: none;

    color: #fff;
}

.repeat
{
    position: relative;

    padding-top: 47px;
    padding-bottom: 54px;

    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .repeat
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.repeat__en
{
    font-family: 'Libre Baskerville', serif;
    font-size: 83px;
    font-size: 8.3rem;
    font-weight: 700;
    line-height: .83;

    position: absolute;
    right: 0;
    bottom: -4px;

    letter-spacing: 22.639px;

    color: #57616f;
}

@media screen and (max-width: 767px)
{
    .repeat__en
    {
        font-size: 40px;
        font-size: 4rem;

        bottom: -1px;

        letter-spacing: 3.539px;
    }
}
.repeat__inner
{
    max-width: 960px;
}

.repeat__text
{
    position: relative;

    margin-bottom: 32px;
    padding-left: 61px;

    letter-spacing: 2.625px;

    color: #f9f0ea;
}

.repeat__text::before
{
    position: absolute;
    top: 13px;
    left: 0;

    width: 48px;
    height: .5px;

    content: '';

    background-color: #fff;
}

.repeat__btn-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    gap: 40px;
}

@media screen and (max-width: 1023px)
{
    .repeat__btn-box
    {
        gap: 10px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media screen and (max-width: 767px)
{
    .repeat__btn-box
    {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
}
.medical
{
    padding-top: 65px;
    padding-bottom: 108px;

    background: transparent url(./../image/WebP/medical-bg.webp) no-repeat center center/cover;
}

@media screen and (max-width: 767px)
{
    .medical
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.medical__inner
{
    max-width: 1100px;
}

.medical__lead
{
    font-size: 20px;
    font-size: 2rem;

    margin-top: 9px;
    margin-bottom: 40px;

    text-align: center;
    letter-spacing: 3.5px;

    color: #fff;
}

.medical__cards
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    gap: 38px 32px;
}

@media screen and (max-width: 1023px)
{
    .medical__cards
    {
        gap: 20px;
    }
}
@media screen and (max-width: 767px)
{
    .medical__cards
    {
        gap: 10px;
    }
}
.medical__card
{
    width: calc(25% - 24px);
    padding: 22px 10px 47px;

    border-radius: 20px 0 0 0;
    background-image: linear-gradient(135deg, #272e38 0%, #272e38 25px, #f9f9f9 25px, #f9f9f9 100%);
}

@media screen and (max-width: 1023px)
{
    .medical__card
    {
        width: calc(33.3333333333% - 13.3333333333px);
    }
}
@media screen and (max-width: 767px)
{
    .medical__card
    {
        width: calc(50% - 5px);
    }
}
.medical__card:nth-of-type(2) .medical__icon
{
    max-width: 152px;
    padding-left: 23px;
}

.medical__card-title
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;

    margin-bottom: 28px;

    text-align: center;
    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .medical__card-title
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}
.medical__icon
{
    max-width: 106px;
    margin-right: auto;
    margin-left: auto;
}

.problem
{
    padding-top: 92px;

    background-color: #f9f9f9;
}

@media screen and (max-width: 767px)
{
    .problem
    {
        padding-top: 50px;
    }
}
.problem__inner
{
    max-width: 1200px;
}

@media screen and (max-width: 1200px)
{
    .problem__inner
    {
        max-width: 1000px;
    }
}
@media screen and (max-width: 767px)
{
    .problem__inner
    {
        max-width: 375px;
    }
}
.problem__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 51px;

    -ms-flex-wrap: wrap;

        flex-wrap: wrap;
}

@media screen and (max-width: 1023px)
{
    .problem__container
    {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}
@media screen and (max-width: 767px)
{
    .problem__container
    {
        margin-bottom: 73px;
    }
}
.problem__item
{
    font-size: 18px;
    font-size: 1.8rem;

    position: relative;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;

    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .problem__item
    {
        font-size: 15px;
        font-size: 1.5rem;

        letter-spacing: 2.625px;
    }
}
.problem__item strong
{
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.6;

    padding: 0 3px;

    letter-spacing: 3.85px;

    color: #fff;
    background-color: #57616f;
}

@media screen and (max-width: 767px)
{
    .problem__item strong
    {
        font-size: 21px;
        font-size: 2.1rem;

        letter-spacing: 3.675px;
    }
}
.problem__item::before
{
    position: absolute;

    height: .8px;

    content: '';

    background-color: #272e38;
}

.problem__item:nth-of-type(1)
{
    margin-top: 15px;
    margin-left: 85px;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(1)
    {
        margin-left: 10px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(1)
    {
        margin-top: 13px;
        margin-left: 0;

        -webkit-box-ordinal-group: 5;

            -ms-flex-order: 4;

                order: 4;
    }
}
.problem__item:nth-of-type(1)::before
{
    right: -68px;
    bottom: 22px;

    width: 56px;
}

.problem__item:nth-of-type(2)
{
    margin-left: 229px;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(2)
    {
        margin-left: 179px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(2)
    {
        margin-left: 0;

        -webkit-box-ordinal-group: 3;

            -ms-flex-order: 2;

                order: 2;
    }
}
.problem__item:nth-of-type(2)::before
{
    top: 13px;
    right: 23px;

    width: 56px;
}

.problem__item:nth-of-type(3)
{
    margin-left: 171px;

    text-align: right;
}

@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(3)
    {
        margin-top: 34px;
        margin-left: auto;

        -webkit-box-ordinal-group: 4;

            -ms-flex-order: 3;

                order: 3;
    }
}
.problem__item:nth-of-type(3)::before
{
    top: 13px;
    left: -42px;

    width: 56px;
}

.problem__item:nth-of-type(4)
{
    margin-top: 67px;
}

@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(4)
    {
        margin-top: 0;

        -webkit-box-ordinal-group: 7;

            -ms-flex-order: 6;

                order: 6;
    }
}
.problem__item:nth-of-type(4)::before
{
    top: 13px;
    right: 30px;

    width: 33px;
}

.problem__item:nth-of-type(5)
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 15px;
    margin-left: 71px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(5)
    {
        margin-left: 20px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(5)
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;

        width: 100%;
        margin-top: 0;
        margin-bottom: 25px;
        margin-left: 0;

        -webkit-box-ordinal-group: 2;

            -ms-flex-order: 1;

                order: 1;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
}
.problem__item:nth-of-type(6)
{
    margin-top: 57px;
    margin-left: 23px;

    text-align: right;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(6)
    {
        margin-left: 14px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(6)
    {
        margin-top: 0;
        margin-left: auto;

        -webkit-box-ordinal-group: 6;

            -ms-flex-order: 5;

                order: 5;
    }
}
.problem__item:nth-of-type(6)::before
{
    top: 13px;
    left: 20px;

    width: 56px;
}

.problem__item:nth-of-type(7)
{
    margin-top: 7px;
    margin-left: 88px;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(7)
    {
        margin-left: 18px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(7)
    {
        margin-left: 0;

        -webkit-box-ordinal-group: 9;

            -ms-flex-order: 8;

                order: 8;
    }
}
.problem__item:nth-of-type(7)::before
{
    top: 18px;
    right: -60px;

    width: 53px;
}

.problem__item:nth-of-type(8)
{
    margin-top: 41px;
    margin-left: 253px;

    text-align: right;
}

@media screen and (max-width: 1200px)
{
    .problem__item:nth-of-type(8)
    {
        margin-left: 203px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(8)
    {
        margin-top: 73px;
        margin-left: auto;

        -webkit-box-ordinal-group: 10;

            -ms-flex-order: 9;

                order: 9;
    }
}
.problem__item:nth-of-type(8)::before
{
    top: 16px;
    left: -26px;

    width: 26px;
}

.problem__item:nth-of-type(9)
{
    margin-top: 8px;
    margin-left: 204px;
}

@media screen and (max-width: 1023px)
{
    .problem__item:nth-of-type(9)
    {
        margin-top: 84px;
        margin-left: auto;

        -webkit-box-ordinal-group: 8;

            -ms-flex-order: 7;

                order: 7;
    }
}
.problem__item:nth-of-type(9)::before
{
    top: 13px;
    right: -12px;

    width: 24px;
}

@media screen and (max-width: 1023px)
{
    .problem__item::before
    {
        display: none;
    }
}
.problem__img-box
{
    width: 320px;
}

@media screen and (max-width: 1200px)
{
    .problem__img-box
    {
        width: 250px;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__img-box
    {
        width: 310px;
    }
}
@media screen and (max-width: 767px)
{
    .problem__img-box
    {
        width: 292px;
    }
}
.problem__item-text-box
{
    font-size: 40px;
    font-size: 4rem;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    margin-left: -50px;

    -webkit-box-align: start;

        -ms-flex-align: start;

            align-items: flex-start;
}

@media screen and (max-width: 1200px)
{
    .problem__item-text-box
    {
        font-size: 32px;
        font-size: 3.2rem;
    }
}
@media screen and (max-width: 1023px)
{
    .problem__item-text-box
    {
        position: relative;

        margin-bottom: -18px;
        margin-left: auto;
    }
}
.problem__item-text-box span
{
    padding: 11px 20px;

    letter-spacing: 7px;

    color: #fff;
    background-color: #272e38;
}

@media screen and (max-width: 1200px)
{
    .problem__item-text-box span
    {
        padding: 5px 13px;
    }
}
.problem__item-text-box span:nth-of-type(n + 2)
{
    margin-top: 20px;
}

@media screen and (max-width: 767px)
{
    .problem__item-text-box span:nth-of-type(n + 2)
    {
        margin-top: 5px;
    }
}
.problem__bottom-text
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-bottom: 9px;

    text-align: center;
    letter-spacing: 3.15px;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .problem__bottom-text
    {
        font-size: 15px;
        font-size: 1.5rem;

        margin-bottom: 12px;
    }
}
.problem__back-text-top
{
    margin-bottom: 8px;

    text-align: center;
}

@media screen and (max-width: 767px)
{
    .problem__back-text-top
    {
        margin-bottom: 4px;
    }
}
.problem__back-text-top-inner
{
    font-size: 28px;
    font-size: 2.8rem;

    display: inline-block;

    padding: 2px 24px;

    color: #f9f0ea;
    background-color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .problem__back-text-top-inner
    {
        font-size: 20px;
        font-size: 2rem;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        padding: 0;

        letter-spacing: 3.5px;

        background-color: transparent;

        -webkit-box-align: center;

            -ms-flex-align: center;

                align-items: center;
        gap: 4px;
    }
}
.problem__back-text-top-inner small
{
    font-size: 24px;
    font-size: 2.4rem;
}

@media screen and (max-width: 767px)
{
    .problem__back-text-top-inner small
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px)
{
    .problem__back-text-top-inner span
    {
        padding: 2px 24px;

        background-color: #8b7a60;
    }
}
.problem__back-text
{
    display: inline;
}

.problem__back-text-bottom
{
    text-align: center;
}

.problem__back-text-bottom span
{
    font-size: 28px;
    font-size: 2.8rem;

    display: inline-block;

    padding: 2px 24px;

    color: #f9f0ea;
    background-color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .problem__back-text-bottom span
    {
        font-size: 20px;
        font-size: 2rem;

        letter-spacing: 3.5px;
    }
}
.recommend
{
    position: relative;

    padding-top: 160px;
    padding-bottom: 94px;

    background: #f9f9f9 url(./../image/WebP/recommend-bg.webp) no-repeat top center/cover;
}

@media screen and (max-width: 767px)
{
    .recommend
    {
        padding-bottom: 50px;
    }
}
.recommend__en-left
{
    position: absolute;
    top: 350px;
    left: 0;

    width: 62px;
}

@media screen and (max-width: 767px)
{
    .recommend__en-left
    {
        top: 125px;

        width: 39px;
    }
}
.recommend__en-right
{
    position: absolute;
    right: 0;
    bottom: 68px;

    width: 62px;

    rotate: 180deg;
}

@media screen and (max-width: 767px)
{
    .recommend__en-right
    {
        bottom: 5px;

        width: 39px;
    }
}
@media screen and (max-width: 767px)
{
    .recommend__inner
    {
        max-width: 100%;
    }
}
.recommend__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    margin-top: 72px;

    gap: 24px;
}

.recommend__wrapper
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    background: rgba(249, 249, 249, .94);

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.recommend__wrapper:nth-of-type(even)
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;

    padding: 40px 32px 40px 44px;
}

@media screen and (max-width: 767px)
{
    .recommend__wrapper:nth-of-type(even)
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        padding: 20px 15px;
    }
}
.recommend__wrapper:nth-of-type(odd)
{
    padding: 40px 44px 40px 32px;
}

@media screen and (max-width: 767px)
{
    .recommend__wrapper:nth-of-type(odd)
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        padding: 20px 15px;
    }
}
.recommend__img-box
{
    width: 200px;
}

@media screen and (max-width: 767px)
{
    .recommend__img-box
    {
        width: 70%;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }
}
.recommend__text-area
{
    width: calc(100% - 244px);
}

@media screen and (max-width: 767px)
{
    .recommend__text-area
    {
        width: 100%;
    }
}
.recommend__title
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    margin-bottom: 8px;

    letter-spacing: 3.5px;
}

@media screen and (max-width: 767px)
{
    .recommend__title
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}
.recommend__text
{
    letter-spacing: 2.625px;
}

.case
{
    padding-top: 105px;
    padding-bottom: 67px;

    background-color: #f9f0ea;
}

@media screen and (max-width: 767px)
{
    .case
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.case__inner
{
    max-width: 740px;
}

.case__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    margin-top: 109px;

    gap: 105px;
}

@media screen and (max-width: 767px)
{
    .case__container
    {
        margin-top: 50px;
    }
}
.case__wrapper
{
    position: relative;
}

.case__en
{
    font-size: 64px;
    font-size: 6.4rem;
    font-weight: 700;

    position: absolute;
    top: 0;
    left: -80px;

    letter-spacing: 17.28px;

    color: #ead5c5;

    -webkit-writing-mode: vertical-rl;

        -ms-writing-mode: tb-rl;

            writing-mode: vertical-rl;
}

@media screen and (max-width: 1023px)
{
    .case__en
    {
        font-size: 52px;
        font-size: 5.2rem;

        position: relative;
        left: 0;

        -webkit-writing-mode: initial;

            -ms-writing-mode: initial;

                writing-mode: initial;
    }
}
@media screen and (max-width: 767px)
{
    .case__en
    {
        font-size: 40px;
        font-size: 4rem;
    }
}
.case__flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 44px;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 767px)
{
    .case__flex
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        gap: 20px;
    }
}
.case__flex-item
{
    width: 45%;
}

@media screen and (max-width: 767px)
{
    .case__flex-item
    {
        width: 100%;
    }
}
.case__flex-item-title
{
    font-size: 20px;
    font-size: 2rem;

    display: inline-block;

    margin-bottom: 20px;
    padding: 10px;

    letter-spacing: 3.5px;

    color: #fff;
    background-color: #272e38;
}

.case__img-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;

        flex-wrap: wrap;
    gap: 20px;
}

.case__img-box img:nth-of-type(1),
.case__img-box picture:nth-of-type(1)
{
    width: 100%;
}

.case__img-box img:nth-of-type(n + 2),
.case__img-box picture:nth-of-type(n + 2)
{
    width: calc(50% - 10px);
}

.case__text-box
{
    padding: 32px 112px;

    background-color: #fff;
}

@media screen and (max-width: 767px)
{
    .case__text-box
    {
        padding: 30px 15px;
    }
}
.case__lists
{
    margin-bottom: 12px;
}

.case__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

.case__list:nth-of-type(n + 2)
{
    margin-top: 9px;
}

.case__dt
{
    font-size: 18px;
    font-size: 1.8rem;

    width: 107px;

    letter-spacing: 3.15px;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .case__dt
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.case__dd
{
    width: calc(100% - 107px);

    letter-spacing: 2.625px;
}

.case__dd strong
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;

    letter-spacing: 3.15px;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .case__dd strong
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.case__price
{
    position: relative;

    display: inline-block;
}

.case__price::after
{
    font-size: 10px;
    font-size: 1rem;

    position: relative;
    top: -13px;
    right: 1px;

    content: '※';
}

.case__note
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    margin-bottom: 32px;

    letter-spacing: 2.1px;
}

.case__risk
{
    margin-bottom: 12px;

    text-align: center;
    letter-spacing: 2.625px;
}

.case__risk-text
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    text-align: center;
    letter-spacing: 2.1px;
}

.case__bottom-text
{
    font-size: 18px;
    font-size: 1.8rem;

    text-align: center;
    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .case__bottom-text
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.comparison
{
    padding-top: 96px;
    padding-bottom: 107px;

    background: transparent url(./../image/WebP/comparison-bg.webp) no-repeat center center/cover;
}

@media screen and (max-width: 767px)
{
    .comparison
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.comparison__inner
{
    max-width: 800px;
}

@media screen and (max-width: 767px)
{
    .comparison__table-scroll
    {
        overflow-x: scroll;
    }
}
.comparison__table
{
    width: 100%;
    margin-top: 33px;
}

@media screen and (max-width: 767px)
{
    .comparison__table
    {
        width: 800px;
    }
}
.comparison__table th,
.comparison__table td
{
    font-size: 18px;
    font-size: 1.8rem;

    height: 64px;
    padding: 10px;

    vertical-align: middle;
    letter-spacing: 3.15px;

    border: 1px solid #8b7a60;
}

@media screen and (max-width: 767px)
{
    .comparison__table th,
    .comparison__table td
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.comparison__table th
{
    font-weight: 400;

    color: #fff;
    background-color: #272e38;
}

.comparison__table th small
{
    font-size: 15px;
    font-size: 1.5rem;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .comparison__table th small
    {
        font-size: 13px;
        font-size: 1.3rem;
    }
}
.comparison__table td
{
    text-align: center;
}

.comparison__table td small
{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.comparison__table td a
{
    color: #0066c0;
}

.comparison__table td:nth-of-type(1)
{
    font-weight: 900;

    color: #8b7a60;
    background-color: #f9f0ea;
}

.comparison__table td:nth-of-type(2)
{
    font-size: 15px;
    font-size: 1.5rem;

    background-color: #fff;
}

@media screen and (max-width: 767px)
{
    .comparison__table td:nth-of-type(2)
    {
        font-size: 13px;
        font-size: 1.3rem;
    }
}
.comparison__table tr:nth-of-type(n + 2) th
{
    border: 1px solid #cdb19c;
    background-color: #8b7a60;
}

.plan
{
    position: relative;

    padding-top: 140px;
    padding-bottom: 140px;

    background-color: #f9f0ea;
}

@media screen and (max-width: 767px)
{
    .plan
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.plan__en
{
    font-family: 'Libre Baskerville', serif;
    font-size: 83px;
    font-size: 8.3rem;
    font-weight: 700;

    position: absolute;
    top: 31px;
    left: -35px;

    letter-spacing: 22.639px;

    color: #ead5c5;

    -webkit-writing-mode: vertical-rl;

        -ms-writing-mode: tb-rl;

            writing-mode: vertical-rl;
}

@media screen and (max-width: 767px)
{
    .plan__en
    {
        font-size: 54px;
        font-size: 5.4rem;

        left: -22px;
    }
}
.plan__inner
{
    max-width: 1140px;
}

.plan__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 1023px)
{
    .plan__container
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.plan__container-left
{
    width: 250px;
}

@media screen and (max-width: 1023px)
{
    .plan__container-left
    {
        width: 100%;
        margin-bottom: 40px;
        margin-left: 60px;
    }
}
.plan__container-right
{
    width: 730px;
    padding-left: 12px;
}

@media screen and (max-width: 1023px)
{
    .plan__container-right
    {
        width: 100%;
    }
}
.plan__sub-heading
{
    font-size: 18px;
    font-size: 1.8rem;

    position: relative;

    margin-bottom: 13px;
    padding-bottom: 24px;

    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .plan__sub-heading
    {
        font-size: 15px;
        font-size: 1.5rem;

        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}
.plan__sub-heading::before
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 109px;
    height: .5px;

    content: '';

    background-color: #57616f;
}

.plan__heading
{
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;
    line-height: normal;

    letter-spacing: 7px;
}

@media screen and (max-width: 767px)
{
    .plan__heading
    {
        font-size: 28px;
        font-size: 2.8rem;
    }
}
.plan__lists
{
    counter-reset: number 0;
}

.plan__list
{
    position: relative;
}

.plan__list:nth-of-type(n + 2)
{
    margin-top: 81px;
}

.plan__list::before
{
    font-family: 'Libre Baskerville', serif;
    font-size: 31px;
    font-size: 3.1rem;
    font-style: italic;

    position: absolute;
    top: -22px;
    left: -19px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    width: 56px;
    height: 43px;

    content: '0' counter(number);
    counter-increment: number 1;

    color: #8b7a60;
    background-color: #fff;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.plan__list-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767px)
{
    .plan__list-inner
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.plan__img-box
{
    width: 255px;
}

.plan__text-box
{
    width: calc(100% - 243px);
    margin-top: 20px;
    margin-left: -12px;
}

@media screen and (max-width: 767px)
{
    .plan__text-box
    {
        width: 100%;
        margin-top: -10px;
        margin-left: 0;
    }
}
.plan__list-title
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;

    display: inline-block;

    margin-bottom: 2px;
    padding: 10px;

    letter-spacing: 3.5px;

    color: #fff;
    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .plan__list-title
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}
.plan__text
{
    line-height: normal;

    padding: 10px;

    letter-spacing: 2.625px;

    background-color: #fff;
}

.plan__list-add
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 68px;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

.plan__add-item
{
    width: 47%;
}

.plan__add-img-box
{
    position: relative;

    max-width: 240px;
    margin-bottom: 16px;
}

.plan__add-img-box::before
{
    position: absolute;
    top: -23px;
    right: 92px;

    width: .5px;
    height: 27px;

    content: '';

    background-color: #272e38;
}

.plan__add-title
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;

    margin-bottom: 8px;

    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .plan__add-title
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.plan__add-text
{
    line-height: normal;

    letter-spacing: 2.625px;

    color: #57616f;
}

.plan__bg
{
    height: 332px;
}

@media screen and (max-width: 1023px)
{
    .plan__bg
    {
        height: 170px;
    }
}
@media screen and (max-width: 767px)
{
    .plan__bg
    {
        height: 90px;
    }
}
.plan__bg img
{
    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}

.flow
{
    padding-top: 85px;
    padding-bottom: 85px;

    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .flow
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.flow__inner
{
    max-width: 1240px;
}

.flow__container
{
    padding: 104px 89px 110px 139px;

    background-color: #fff;
}

@media screen and (max-width: 1023px)
{
    .flow__container
    {
        padding: 104px 19px 110px 29px;
    }
}
@media screen and (max-width: 767px)
{
    .flow__container
    {
        padding: 50px 15px;
    }
}
.flow__lists
{
    margin-top: 58px;
    padding-left: 84px;
}

@media screen and (max-width: 767px)
{
    .flow__lists
    {
        padding-left: 0;
    }
}
.flow__list
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    padding-bottom: 56px;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 767px)
{
    .flow__list
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;

        gap: 20px;
    }
}
.flow__list:nth-last-of-type(1)
{
    padding-bottom: 0;
}

.flow__list:nth-last-of-type(1)::before
{
    display: none;
}

.flow__list::before
{
    position: absolute;
    top: 12px;
    left: -64px;

    width: .5px;
    height: 100%;

    content: '';

    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .flow__list::before
    {
        display: none;
    }
}
.flow__list::after
{
    position: absolute;
    top: 12px;
    left: -68px;

    width: 9px;
    height: 9px;

    content: '';

    border-radius: 50%;
    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .flow__list::after
    {
        display: none;
    }
}
.flow__list span
{
    position: absolute;
    top: -3px;
    left: -83px;

    width: 40px;
    height: 40px;

    border: .5px solid #272e38;
    border-radius: 50%;
}

@media screen and (max-width: 767px)
{
    .flow__list span
    {
        display: none;
    }
}
.flow__text-area
{
    width: calc(100% - 262px);
}

@media screen and (max-width: 767px)
{
    .flow__text-area
    {
        width: 100%;
    }
}
.flow__img-box
{
    width: 242px;
}

@media screen and (max-width: 767px)
{
    .flow__img-box
    {
        width: 70%;
    }
}
.flow__step
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-bottom: 2px;

    letter-spacing: 3.15px;

    color: #8b7a60;
}

.flow__title
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;

    margin-bottom: 23px;

    letter-spacing: 3.15px;
}

.flow__text
{
    line-height: normal;

    letter-spacing: 2.625px;
}

.flow__btn-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 20px;

    -ms-flex-wrap: wrap;

        flex-wrap: wrap;
    gap: 20px;
}

.flow__btn-box .c-btn__contact
{
    border: .5px solid #272e38;
}

.bill
{
    position: relative;

    padding-top: 154px;
    padding-bottom: 130px;

    background-color: #f9f0ea;
}

@media screen and (max-width: 767px)
{
    .bill
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.bill__en
{
    font-family: 'Libre Baskerville', serif;
    font-size: 83px;
    font-size: 8.3rem;
    font-weight: 700;

    position: absolute;
    top: 90px;
    left: -35px;

    letter-spacing: 22.639px;

    color: #ead5c5;

    -webkit-writing-mode: vertical-rl;

        -ms-writing-mode: tb-rl;

            writing-mode: vertical-rl;
}

@media screen and (max-width: 767px)
{
    .bill__en
    {
        font-size: 54px;
        font-size: 5.4rem;

        top: 40px;
        left: -23px;
    }
}
.bill__inner
{
    max-width: 870px;
}

.bill__lead
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-top: 18px;
    margin-bottom: 44px;

    text-align: center;
    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .bill__lead
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.bill__cards
{
    margin-bottom: 64px;
}

.bill__card
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding: 26px 24px;

    background-color: #fff;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media screen and (max-width: 767px)
{
    .bill__card
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        padding: 20px 15px;

        gap: 10px;
    }
}
.bill__card:nth-of-type(n + 2)
{
    margin-top: 16px;
}

.bill__card-left
{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@media screen and (max-width: 767px)
{
    .bill__card-left
    {
        width: 100%;
    }
}
.bill__card-right
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

.bill__card-left-text-top
{
    margin-bottom: 2px;

    letter-spacing: 2.625px;
}

.bill__card-left-text-bottom
{
    font-size: 20px;
    font-size: 2rem;

    letter-spacing: 3.5px;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .bill__card-left-text-bottom
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}
.bill__price-left
{
    margin-right: 32px;
}

@media screen and (max-width: 767px)
{
    .bill__price-left
    {
        width: 70px;
        margin-right: 0;
    }
}
@media screen and (max-width: 767px)
{
    .bill__price-right
    {
        width: calc(100% - 70px);
    }
}
.bill__price-title
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.bill__price
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.bill__price strong
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 400;

    letter-spacing: 4.9px;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .bill__price strong
    {
        font-size: 24px;
        font-size: 2.4rem;
    }
}
.bill__price small
{
    font-size: 10px;
    font-size: 1rem;
}

.bill__title
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    margin-bottom: 48px;

    letter-spacing: 3.5px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 25px;
}

@media screen and (max-width: 767px)
{
    .bill__title
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}
.bill__title-left-object
{
    position: relative;

    height: .5px;

    background-color: #8b7a60;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;
}

.bill__title-left-object::before
{
    position: absolute;
    top: -8px;
    right: -19px;

    width: 16px;
    height: 16px;

    content: '';

    border-top: .5px solid #8b7a60;
    border-left: .5px solid #8b7a60;

    rotate: -45deg;
}

.bill__title-right-object
{
    position: relative;

    height: .5px;

    background-color: #8b7a60;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;
}

.bill__title-right-object::before
{
    position: absolute;
    top: -8px;
    left: -19px;

    width: 16px;
    height: 16px;

    content: '';

    border-top: .5px solid #8b7a60;
    border-right: .5px solid #8b7a60;

    rotate: 45deg;
}

.bill__method-box
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 59px;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    gap: 66px;
}

@media screen and (max-width: 767px)
{
    .bill__method-box
    {
        gap: 20px;
    }
}
.bill__method-item
{
    width: 108px;
}

@media screen and (max-width: 767px)
{
    .bill__method-item
    {
        width: calc(33.3333333333% - 13.3333333333px);
    }
}
.bill__method-icon
{
    margin-bottom: 13px;
}

.bill__method-text
{
    font-size: 18px;
    font-size: 1.8rem;
    line-height: normal;
    line-height: 1.28;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    height: 46px;

    text-align: center;
    letter-spacing: 3.15px;

    color: #8b7a60;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media screen and (max-width: 767px)
{
    .bill__method-text
    {
        font-size: 15px;
        font-size: 1.5rem;
    }
}
.bill__month-price
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 9px;

    color: #8b7a60;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: last baseline;
        -ms-flex-align: last baseline;
            align-items: last baseline;
}

.bill__month-price-left
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

.bill__month-price-center
{
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    font-size: 4.8rem;
}

.bill__month-price-tax
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.bill__month-price-enn
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

.bill__month-price-text
{
    line-height: normal;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;
    margin-right: auto;
    margin-bottom: 33px;
    margin-left: auto;
    padding: 4px 40px;

    letter-spacing: 2.625px;

    color: #fff;
    background-color: #8b7a60;
}

.bill__note
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;
    margin-right: auto;
    margin-left: auto;

    letter-spacing: 2.1px;
}

.greeting
{
    padding-top: 126px;
    padding-bottom: 149px;

    background-color: #f9f9f9;
}

@media screen and (max-width: 767px)
{
    .greeting
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 767px)
{
    .greeting__inner
    {
        max-width: 100%;
    }
}
.greeting__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 767px)
{
    .greeting__container
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.greeting__container-left
{
    width: 45%;
}

@media screen and (max-width: 767px)
{
    .greeting__container-left
    {
        width: 100%;
        margin-bottom: 40px;
    }
}
.greeting__container-right
{
    width: 370px;
}

@media screen and (max-width: 767px)
{
    .greeting__container-right
    {
        width: 100%;
    }
}
.greeting__heading
{
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    margin-bottom: 54px;

    letter-spacing: 7px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 19px;
}

@media screen and (max-width: 767px)
{
    .greeting__heading
    {
        font-size: 30px;
        font-size: 3rem;

        margin-bottom: 30px;
    }
}
.greeting__heading::after
{
    height: .5px;

    content: '';

    background-color: #272e38;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;
}

.greeting__lead
{
    font-size: 20px;
    font-size: 2rem;

    margin-bottom: 33px;

    letter-spacing: 3.5px;
}

@media screen and (max-width: 767px)
{
    .greeting__lead
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}
.greeting__text
{
    line-height: 1.86;

    letter-spacing: 2.625px;
}

.greeting__img-box
{
    width: 65%;
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: auto;

    -webkit-box-shadow: 41px 31px 0 #f9f0ea;

            box-shadow: 41px 31px 0 #f9f0ea;
}

.greeting__director
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    margin-bottom: 9px;

    letter-spacing: 2.1px;
}

.greeting__name
{
    font-size: 20px;
    font-size: 2rem;

    margin-bottom: 54px;

    letter-spacing: 3.5px;
}

.greeting__record
{
    font-size: 18px;
    font-size: 1.8rem;

    margin-bottom: 18px;
}

.greeting__lists
{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 16px;

    border-left: .5px solid #272e38;
}

.greeting__list
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.33;

    letter-spacing: 2.1px;
}

.intro
{
    background-color: #f9f9f9;
}

.intro__inner
{
    max-width: 1160px;
}

.intro__container
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 74px;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;
}

@media screen and (max-width: 1023px)
{
    .intro__container
    {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.intro__container-left
{
    width: 42%;
}

@media screen and (max-width: 1023px)
{
    .intro__container-left
    {
        width: 100%;
        margin-bottom: 220px;
    }
}
.intro__container-right
{
    width: 430px;
    margin-top: 28px;
}

@media screen and (max-width: 1023px)
{
    .intro__container-right
    {
        width: 100%;
        margin-top: 0;
    }
}
.intro__img-box
{
    position: relative;

    height: 395px;
    margin-left: calc((100vw - 238%) / 2 * -1);
}

@media screen and (max-width: 1023px)
{
    .intro__img-box
    {
        margin-left: -20px;
    }
}
@media screen and (max-width: 767px)
{
    .intro__img-box
    {
        height: 224px;
        margin-left: -15px;
    }
}
.intro__img-box img
{
    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}

.intro__table-box
{
    position: absolute;
    right: -76px;
    bottom: -190px;

    width: 545px;
    padding: 25px 40px 25px 28px;

    color: #fff;
    background-color: #272e38;
}

@media screen and (max-width: 1023px)
{
    .intro__table-box
    {
        right: -20px;
    }
}
@media screen and (max-width: 767px)
{
    .intro__table-box
    {
        right: -15px;

        width: 100%;
        max-width: 360px;
        padding: 20px 10px 20px 10px;
    }
}
.intro__table-title
{
    font-size: 20px;
    font-size: 2rem;

    margin-bottom: 10px;

    text-align: center;
    letter-spacing: 3.5px;
}

@media screen and (max-width: 767px)
{
    .intro__table-title
    {
        font-size: 18px;
        font-size: 1.8rem;
    }
}
.intro__table
{
    width: 100%;
    margin-bottom: 8px;
}

.intro__table td,
.intro__table th
{
    font-weight: 400;

    padding: 4px 8px;

    vertical-align: middle;
    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .intro__table td,
    .intro__table th
    {
        padding: 2px 4px;
    }
}
.intro__table th
{
    width: 29%;

    text-align: right;
}

@media screen and (max-width: 767px)
{
    .intro__table th
    {
        width: 39%;
    }
}
.intro__table td
{
    text-align: center;
}

.intro__rest
{
    margin-bottom: 5px;
    padding-left: 151px;

    letter-spacing: 2.625px;
}

@media screen and (max-width: 767px)
{
    .intro__rest
    {
        padding-left: 137px;
    }
}
.intro__note
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    padding-left: 151px;

    letter-spacing: 2.1px;
}

@media screen and (max-width: 767px)
{
    .intro__note
    {
        padding-left: 137px;
    }
}
.intro__heading
{
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;

    margin-bottom: 71px;

    letter-spacing: 7px;
}

@media screen and (max-width: 767px)
{
    .intro__heading
    {
        font-size: 32px;
        font-size: 3.2rem;

        margin-bottom: 40px;
    }
}
.intro__logo
{
    max-width: 360px;
    margin-bottom: 144px;
}

@media screen and (max-width: 767px)
{
    .intro__logo
    {
        max-width: 280px;
        margin-bottom: 80px;
    }
}
.intro__address-item:nth-of-type(n + 2)
{
    margin-top: 40px;
}

.intro__address-title
{
    font-weight: 400;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    margin-bottom: 8px;

    letter-spacing: 2.625px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 8px;
}

.intro__address-title::after
{
    height: .5px;

    content: '';

    background-color: #272e38;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;
}

.intro__address-text
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .intro__address-text
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
}
.intro__map
{
    position: relative;

    height: 292px;
}

.intro__map iframe
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.intro__map-title
{
    font-size: 20px;
    font-size: 2rem;

    position: absolute;
    z-index: 2;
    top: 0;
    right: 76px;

    display: inline-block;

    padding: 11px 30px;

    letter-spacing: 3.5px;

    color: #fff;
    background-color: #272e38;

    translate: 0 -50%;
}

@media screen and (max-width: 767px)
{
    .intro__map-title
    {
        font-size: 18px;
        font-size: 1.8rem;

        right: 15px;
    }
}
.qa
{
    padding-top: 80px;
    padding-bottom: 80px;

    background-color: #272e38;
}

@media screen and (max-width: 767px)
{
    .qa
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.qa__inner
{
    max-width: 1240px;
}

.qa__container
{
    padding: 76px 20px 120px;

    background-color: #fff;
}

@media screen and (max-width: 767px)
{
    .qa__container
    {
        padding: 40px 15px 40px;
    }
}
.qa__lists
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    max-width: 800px;
    margin-top: 81px;
    margin-right: auto;
    margin-left: auto;

    gap: 48px;
}

@media screen and (max-width: 767px)
{
    .qa__lists
    {
        margin-top: 40px;

        gap: 20px;
    }
}
.qa__dt
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    padding: 17px 70px 17px 0;

    cursor: pointer;

    border-bottom: .5px solid #272e38;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    gap: 24px;
}

@media screen and (max-width: 767px)
{
    .qa__dt
    {
        padding: 10px 30px 10px 0;

        gap: 14px;
    }
}
.qa__dt::before
{
    position: absolute;
    top: 40px;
    right: 5px;

    width: 30px;
    height: 2px;

    content: '';

    background-color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .qa__dt::before
    {
        top: 50%;

        width: 20px;

        translate: 0 -50%;
    }
}
.qa__dt::after
{
    position: absolute;
    top: 26px;
    right: 19px;

    width: 2px;
    height: 30px;

    content: '';

    background-color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .qa__dt::after
    {
        top: 50%;
        right: 14px;

        height: 20px;

        translate: 0 -50%;
    }
}
.qa__dt.is-active:after
{
    opacity: 0;
}

.qa__mark
{
    font-size: 40px;
    font-size: 4rem;
    line-height: 1;

    color: #8b7a60;
}

@media screen and (max-width: 767px)
{
    .qa__mark
    {
        font-size: 26px;
        font-size: 2.6rem;
    }
}
.qa__question
{
    font-size: 18px;
    font-size: 1.8rem;

    letter-spacing: 3.15px;
}

@media screen and (max-width: 767px)
{
    .qa__question
    {
        font-size: 13px;
        font-size: 1.3rem;
    }
}
.qa__dd
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;

    padding-top: 21px;

    gap: 29px;
}

@media screen and (max-width: 767px)
{
    .qa__dd
    {
        padding-top: 10px;

        gap: 14px;
    }
}
@media screen and (max-width: 767px)
{
    .qa__answer
    {
        font-size: 12px;
        font-size: 1.2rem;
    }
}
.privacy
{
    padding-top: 120px;
    padding-bottom: 120px;

    background-color: #f9f9f9;
}

@media screen and (max-width: 767px)
{
    .privacy
    {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 767px)
{
    .privacy__inner
    {
        max-width: 100%;
    }
}
.privacy__container
{
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding: 4px;

    border: .5px solid #272e38;
}

.privacy__container-body
{
    padding: 32px 10px;

    border: .5px solid #272e38;
}

.privacy__heading
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    margin-bottom: 10px;

    text-align: center;
    letter-spacing: 3.5px;
}

.privacy__lists
{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.privacy__list
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66;

    letter-spacing: 2.1px;
}

.fixed-menu
{
    display: none;
}

@media screen and (max-width: 767px)
{
    .fixed-menu
    {
        position: fixed;
        bottom: 0;
        left: 0;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;

        width: 100%;
        height: 94px;

        background-image: linear-gradient(-265deg, #272e38 0%, #272e38 36.9%, #8b7a60 37%, #8b7a60 73.9%, #f9f9f9 74%, #f9f9f9 100%);
    }
}
.fixed-menu__contact
{
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    width: 37%;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.fixed-menu__contact-top
{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.31;

    margin-bottom: 7px;

    text-align: center;

    color: #f6f2ed;
}

.fixed-menu__contact-bottom
{
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-size: 1rem;

    letter-spacing: .546px;

    color: #faf8f6;
}

.fixed-menu__booking
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 37%;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2px;
}

.fixed-menu__booking-left
{
    font-size: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    color: #f9f9f9;
}

.fixed-menu__booking-left span:nth-of-type(1)
{
    margin-left: 5px;
}

.fixed-menu__booking-left span:nth-of-type(2)
{
    margin-left: 4px;
}

.fixed-menu__booking-left span:nth-of-type(3)
{
    margin-left: 3px;
}

.fixed-menu__booking-left span:nth-of-type(4)
{
    margin-left: 2px;
}

.fixed-menu__booking-left span:nth-of-type(5)
{
    margin-left: 1px;
}

.fixed-menu__booking-right
{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.31;

    text-align: center;

    color: #f6f2ed;
}

.fixed-menu__line
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    width: 26%;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.fixed-menu__line-icon
{
    width: 22px;
    margin-bottom: 7px;
}

.fixed-menu__line-small-text
{
    font-size: 10px;
    font-size: 1rem;
}

.fixed-menu__line-text
{
    font-size: 16px;
    font-size: 1.6rem;
}

/* ==========================================================================
   toppage
   ========================================================================== */
