@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Murecho:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap');


@font-face {
    font-family: "Kosugi";
    src: url("../fonts/Kosugi.ttf") format("truetype");
}
@font-face {
    font-family: "YuGothM";
    src: url("../fonts/YuGothM.ttc") format("truetype");
}



/*========================================================
    変数
==========================================================*/
/* フォント */
:root {
    --font-ja-gothic01: "YuGothM", sans-serif;
    --font-ja-gothic02: "Noto Sans JP", sans-serif;
    --font-ja-gothic03: "Kosugi", sans-serif;
    --font-en-gothic: "Noto Sans TC", sans-serif;
    --font-en-mincho: "Libre Baskerville", serif;
    --font-num: "Figtree", sans-serif;
    --font-faq: "Geist", sans-serif;
    --font-maru: "M PLUS Rounded 1c", sans-serif;
    --font-morning: "Murecho", sans-serif;
    --font-booking: "Zen Maru Gothic", sans-serif;
}

/* カラー */
:root {
    --yellow: #f2ef5b;
    --blue: #004567;
    --design-color01: #fefdea;
}

/* セル */
:root {
    --grid-color: rgba(135, 167, 205, 0.15);
    /* 線の色 */
    --line-width: 1px;
    /* 線の太さ */
    --cell-size: 20px;
    /* マスの大きさ */

    /* 縦線と横線のパターンを1つの値として定義 */
    --cell-bg:
        linear-gradient(to right, var(--grid-color) var(--line-width), transparent 0),
        linear-gradient(to bottom, var(--grid-color) var(--line-width), transparent 0);

    @media (max-width: 767px) {
        --cell-size: 15px;
        /* マスの大きさ */
    }
}

/*========================================================
    表示・非表示
==========================================================*/
@media (min-width: 960px) {

    /* PC */
    .is_tab {
        display: none !important;
    }

    .is_sp {
        display: none !important;
    }

    .is_tab-sp {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 959px) {

    /* TAB */
    .is_pc {
        display: none !important
    }

    .is_sp {
        display: none !important;
    }
}

@media (max-width: 767px) {

    /* SP */
    .is_pc {
        display: none !important;
    }

    .is_tab {
        display: none !important;
    }

    .is_pc-tab {
        display: none !important;
    }
}

@media (min-width: 351px) {
    .is_w350 {
        display: none !important;
    }
}




/*========================================================
    基本設定
==========================================================*/
* {
    font-family: var(--font-ja-gothic01);
    font-weight: 500;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    font-family: var(--font-ja-gothic);

    @media (min-width: 768px) {
        scroll-padding-top: clamp(5.156rem, 1.2rem + 8.24vw, 11.091rem);
    }
    @media (max-width: 767px) {
        scroll-padding-top: 0;
    }
}

body {
    margin: 0;
}


main {
    position: relative;
}

a {
    transition: all 0.3s;
    color: inherit;
    text-decoration: none;

    &:hover {
        transition: all 0.1s;
        opacity: .65;
        cursor: pointer;
    }
}

button {
    padding: 0;
    border: none;
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

img,
picture {
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
    object-position: center center;
}



/*========================================================
    共通
==========================================================*/
.section-title {
    font-family: var(--font-en-gothic);
    font-size: clamp(3.75rem, 1.688rem + 3.44vw, 5.813rem);
    font-weight: 100;

    @media (max-width: 767px) {
        font-size: 45px;
    }

    .ja {
        display: block;
        font-size: clamp(1.5rem, 0.875rem + 1.04vw, 2.125rem);
        font-family: var(--font-ja-gothic01);
        letter-spacing: 0.14em;
        font-weight: 400;

        @media (max-width: 767px) {
            font-size: 18px;
        }
    }
}

.room-page .page-title {
    padding: 47px 0 100px;
}

.subPage {
    >.page-title,
    .info-container .title {
        padding: 42px 0 98px;

        .ja {
            display: block;
            font-family: var(--font-ja-gothic01);
            font-size: 13px;
            font-weight: 400;
            margin-top: 0.3em;

            @media (max-width: 767px) {
                font-size: 16px;
            }
        }
    }
}

.subPage .info-container {
    padding: 90px 0 108px;
    background-color: #e6e6e6;

    .title {
        @media (max-width: 767px) {
            background-color: transparent !important;
        }
    }

    .inner {
        width: min(75%, 880px);
        padding-top: 56px;
        margin: 0 auto;
        gap: 73px;
        display: flex;
        align-items: center;

        @media (max-width: 959px) {
            gap: 25px;
        }
        @media (max-width: 767px) {
            flex-direction: column;
        }

        .info-link {
            width: 400px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            font-size: 22px;
            color: var(--blue);
            background-color: #fff;
            background-image: var(--cell-bg);
            background-size: var(--cell-size) var(--cell-size);
            background-position: center;
            position: relative;

            @media (max-width: 959px) {
                height: 90px;
                gap: 10px;
            }
            @media (max-width: 767px) {
                width: 100%;
                height: 70px;
                font-size: 19px;
            }

            &::after {
                position: absolute;
                content: "";
                bottom: 0;
                right: 0;
                width: 42px;
                height: 40px;
                clip-path: polygon(100% 0, 0% 100%, 100% 100%);
                background-color: var(--yellow);
            }

            &:hover {
                opacity: 1;
            }

            @media (max-width: 767px) {
                &::after {
                    width: 32px;
                    height: 30px;
                }
            }

            .icon {
                width: 62px;

                @media (max-width: 767px) {
                    width: 48px;
                }
            }
        }
    }
}


/* .subPage {
    background-image: var(--cell-bg);
    background-size: var(--cell-size) var(--cell-size);
    background-position: center;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 86px;
        background-color: #fff;
    }

    @media (max-width: 767px) {
        &::before {
            display: none;
        }
    }
} */

.subPage,
.room-page {

    .page-title,
    .info-container .title {
        text-align: center;
        font-family: var(--font-en-gothic);
        font-weight: 200;
        font-size: 40px;
    
        @media (max-width: 767px) {
            font-size: 43px;
            padding: 33px 0;
            letter-spacing: 0.1em;
            background-color: #fff;
        }
    
        .ja {
            display: block;
            font-family: var(--font-ja-gothic01);
            font-size: 15px;
            font-weight: 400;
    
            @media (max-width: 767px) {
                letter-spacing: 0.06em;
                color: #2e2e2e;
            }
        }
    }
    
    .page-top>.img {
        width: min(85%, 1300px);
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    
        @media (max-width: 767px) {
            width: 100%;
            border-radius: 0;
            height: 100px;
        }
    }
}



/*========================================================
    GTranslate
==========================================================*/

.gtranslate {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 999;
    transition: all 0.3s;

    @media (max-width: 767px) {
        top: auto;
        bottom: 10px;

        &.scrolled {
            top: 26px;
            bottom: auto;
            opacity: 1;
        }
    }
}

body.room .gtranslate {
    bottom: 50px;

    @media (max-width: 767px) {
        top: auto;
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    body.nav-open .gtranslate {
        z-index: 1;
    }
}

/*========================================================
    reCAPTCHA
==========================================================*/
.grecaptcha-badge {
    display: none;
}



/*========================================================
    固定予約リンク
==========================================================*/
.booking {
    position: fixed;
    top: 37px;
    right: 121px;
    width: clamp(6.875rem, 2.875rem + 8.33vw, 12.875rem);
    border-radius: 100%;
    z-index: 9999;transition: all 0.2s;

    @media (max-width: 959px) {
        right: 90px;
    }

    @media (max-width: 767px) {
        top: auto;
        bottom: 10px;
        right: 10px;
        width: 100px;
    }

    img {
        padding: 3px;
        filter: drop-shadow(0px 0px 3px #aaa);
    }
}



/*========================================================
    ヘッダー
==========================================================*/
#header {
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 62px 0 62px 12vw;
    z-index: 996;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.4s;

    &.header-hidden {
        transform: translateY(calc(-1 * var(--headerHeight)));
    }

    @media (max-width: 1440px) {
        padding: 30px 0 30px 30px;
    }

    @media (max-width: 959px) {
        padding: 20px 0 20px 10px;
    }

    @media (max-width: 767px) {
        position: relative;
        padding: 35px 0 25px 6.25vw;
        display: block;
        background-color: #fff;
        backdrop-filter: none;
        /* background-image: var(--cell-bg);
        background-size: var(--cell-size) var(--cell-size);
        background-position: center; */

        &::before {
            width: 68%;
            height: 95vw;
            border-radius: 0 0 0 83px;
        }
    }

    .logo {
        width: 350px;
        margin-right: 140px;
        transform: translate(0px, -5px);

        @media (max-width: 1750px) {
            margin-right: 70px;
            width: 230px;
        }

        @media (max-width: 959px) {
            width: 150px;
            margin-right: 30px;
        }

        @media (max-width: 767px) {
            width: 200px;
            margin-right: 0;
            transform: translate(0);

            &.is_sp {
                margin-left: 6.25vw;
            }
        }

        &:hover {
            transition: all .3s ease;
            opacity: 1;

            img {
                transform: translate(0px, -5px);
            }
        }

        img {
            transition: all 0.3s ease;
        }
    }

    .navigation {
        z-index: 999;

        .menu {
            display: flex;
            align-items: center;

            @media (min-width: 768px) {
                li.room,
                li.amenity {
                    position: relative;
    
                    &::before {
                        position: absolute;
                        content: "";
                        top: -30%;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 160%;
                        height: 150%;
                        background-color: var(--blue);
                        padding: 20px;
                        border-radius: 20px 20px 0 0;
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                        transition: opacity .3s, visibility .3s;
                    }
    
                    @media (max-width: 1200px) {
                        &::before {
                            width: 130%;
                        }
                    }
    
                    >.facility-list,
                    >.amenity-list {
                        position: absolute;
                        top: 110%;
                        left: 50%;
                        transform: translateX(-50%);
                        display: flex;
                        background-color: var(--blue);
                        padding: 25px 30px;
                        border-radius: 20px;
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                        transition: opacity .3s, visibility .3s, transform .3s;
    
                        @media (max-width: 1200px) {
                            padding: 15px 10px;
                            transform: translateX(-30%);
                        }
    
                        li+li {
                            border-left: 1px solid #fff;
                        }
    
                        a {
                            white-space: nowrap;
                            color: #fff;
                            padding: 0 20px;
                            transition: all 0.3s;
                            font-size: 17px;
    
                            .inr-ja {
                                font-family: var(--font-ja-gothic01);
                            }
    
                            &:hover {
                                color: var(--yellow);
                            }
    
                            @media (max-width: 1200px) {
                                font-size: 13px;
                            }
                        }
    
                    }
                    &.is_hover {
                        &::before {
                            opacity: 1;
                            visibility: visible;
                            pointer-events: auto;
                        }
                        a {
                            opacity: 1;
                            color: #fff;
                        }
    
                        > .facility-list,
                        > .amenity-list {
                            opacity: 1;
                            visibility: visible;
                            pointer-events: auto;
                        }
                    }
                }
            }

            @media (max-width: 767px) {
                display: block;
            }

            >li + li {
                margin-left: 60px;

                @media (max-width: 1100px) {
                    margin-left: 30px;
                }
                @media (max-width: 800px) {
                    margin-left: 25px;
                }
                @media (max-width: 767px) {
                    margin-left: 0;
                    margin-top: 30px;
                }
            }

            a {
                font-family: var(--font-en-gothic);
                font-weight: 200;
                font-size: clamp(0.938rem, -0.625rem + 2.08vw, 1.875rem);
                text-align: center;
                letter-spacing: 0.06em;
                position: relative;

                &:hover {
                    color: var(--blue);
                }

                @media (max-width: 959px) {
                    font-size: 13px;
                }

                @media (max-width: 767px) {
                    font-size: 25px;
                    font-weight: 300;

                    &::after {
                        display: none;
                    }
                }

                .sub {
                    display: block;
                    font-family: var(--font-ja-gothic01);
                    font-weight: 300;
                    font-size: 14px;

                    @media (max-width: 1440px) {
                        font-size: 9px;
                    }
                    @media (max-width: 959px) {
                        font-size: 8px;
                    }
                    @media (max-width: 767px) {
                        font-size: 12px;
                        font-weight: 300;
                    }
                }
            }
        }

        .ig {

            a {
                width: 40px;
                margin-left: 60px;
                margin-right: auto;
            }
        }

        .reservation {
            background-color: var(--blue);
            border-radius: 100vh 0 0 100vh;
            transition: all 0.3s;

            &:hover {
                background-color: #6992a7;
            }

            &:has(a:hover) {
                margin-left: 48px;
            }

            @media (max-width: 1440px) {
                &:has(a:hover) {
                    margin-left: 50px;
                }
            }
            @media (max-width: 1100px) {
                &:has(a:hover) {
                    margin-left: 20px;
                }
            }
            @media (max-width: 800px) {
                &:has(a:hover) {
                    margin-left: 15px;
                }
            }
            @media (max-width: 767px) {
                margin: 40px auto 0 !important;
                width: fit-content;
                border-radius: 100vh;
            }

            a {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 15px 48px;
                font-family: var(--font-ja-gothic01);
                font-size: clamp(0.938rem, 0.104rem + 1.11vw, 1.438rem);
                font-weight: 300;
                color: #fff !important;
                transition: all 0.3s;

                &::after {
                    content: "";
                    display: block;
                    background: url(../img/assets/arrow01.png) no-repeat center center / contain;
                    width: 20.5px;
                    height: 20.5px;
                }

                &:hover {
                    opacity: 1;
                    padding-right: 60px;
                }

                @media (max-width: 1440px) {
                    padding: 10px 20px;
                    gap: 5px;

                    &:hover {
                        padding-right: 40px;
                    }
                }
                @media (max-width: 1440px) {
                    &:hover {
                        padding-right: 30px;
                    }
                }
                @media (max-width: 959px) {
                    font-size: 15px;
                }
                @media (max-width: 767px) {
                    font-size: 16px !important;
                    gap: 10px;
                }

                .calender {
                    width: 35px;
                    margin-top: 2px;

                    @media (max-width: 1440px) {
                        width: 20px;
                    }

                    @media (max-width: 767px) {
                        width: 30px;
                    }
                }
            }
        }
    }

    .legal {
        margin-top: 50px;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;

        a {
            flex-grow: 1;
            font-size: 10px;
            padding: 2px;
        }
    }
}

@keyframes hy {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(0);
        width: 70%;
        height: min(630px, 40vw);
    }

    100% {
        width: 73.5714%;
    }
}

@media (max-width: 767px) {
    @keyframes hy {
        0% {
            transform: rotate(0);
        }

        50% {
            width: 60%;
            height: 86vw;
        }

        100% {
            width: 68%;
        }
    }
}


/*  モーダル__ボタン
==========================================================*/
@media (max-width: 767px) {
    .modal_btn {
        position: fixed;
        top: 26.5px;
        right: 20px;
        width: 45px;
        height: 45px;
        border-radius: 5px;
        background: #fff;
        border: 2px solid #242424;
        cursor: pointer;
        z-index: 999;

        .modal_btn_line {
            display: block;
            position: absolute;
            left: 0;
            top: 15px;
            right: 0;
            margin: auto;
            width: 25px;
            height: 2px;
            background: #242424;
            transition: all .3s;

            &.line02 {
                top: 24px;
            }
        }
    }

    .nav-open .modal_btn_line.line01 {
        width: 30px;
        transform: rotate(30deg);
        top: 20px;
    }

    .nav-open .modal_btn_line.line02 {
        width: 30px;
        transform: rotate(-30deg);
        top: 20px;
    }
}


/*  モーダル_ウィンドウ
==========================================================*/
@media (max-width: 767px) {
    .modalwindow__container {
        position: fixed;
        content: "";
        top: 0;
        left: 0;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        padding-top: 35px;
        background: #fff;
        z-index: -1;
        opacity: 0;
        transition: all .3s;
        overflow-y: auto;
        pointer-events: none;

        .modalwindow__wrap {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            z-index: 998;
            position: relative;
            -ms-overflow-style: none;
            scrollbar-width: none;

            &::-webkit-scrollbar {
                display: none;
            }

            &::after {
                content: '';
                position: absolute;
                top: 0;
                z-index: -1;
                width: 100%;
                height: calc(100% + 1px);
                pointer-events: none;
                box-sizing: border-box;
            }
        }
    }

    #header {
        .menu {
            display: block;
            padding: 40px 0;

            >li+li {
                margin-top: 20px;
            }

            a {
                color: #000;
                display: flex;
                align-items: center;
                font-size: 20px;
                font-weight: 400;
                margin-left: 6.25vw;

                .sub {
                    font-size: 10px;
                    font-weight: 700;
                    margin-left: 24px;
                }
            }

            .facility-list,
            .amenity-list {
                margin-left: 9.5vw;
                margin-top: 15px;

                li+li {
                    margin-top: 10px;
                }

                a {
                    text-align-last: left;
                    font-family: var(--font-ja-gothic01);
                    font-size: 13px;
                    margin-left: 0;

                    &::before {
                        content: "";
                        width: 1.5em;
                        height: 1px;
                        background-color: #000;
                        margin-right: 0.5em;
                    }

                    @media (max-width: 767px) {
                        font-size: 15px;
                    }

                    @media (max-width: 350px) {
                        &:has(.is_w350)::before {
                            margin: 10px 0.5em auto 0;
                        }
                    }
                }
            }

            .reservation a {
                font-size: 20px;
                color: #fff;
                margin-left: 0;
                justify-content: center;
            }
        }
    }

    .nav-open .modalwindow__container {
        opacity: 1;
        z-index: 998;
        pointer-events: visible;
    }
}

/* .header--hide {
  transform: translateY(-100%);
} */




/*========================================================
    アニメーション
==========================================================*/
.fadeinTop,
.fadein,
.fadein_right,
.fadein_left,
.fadein-list li {
    opacity: 0;

    &.on {
        opacity: 1;
    }
}

.fadeinTop {
    transition: all .8s;
}

.fadein {
    transform: translateY(50px);
    transition: all 1s;

    &.on {
        transform: translateY(0);
    }

}

.fadein_right {
    transform: translateX(50px);
    transition: all 2.5s;

    &.on {
        transform: translateX(0);
    }
}

.fadein_left {
    transform: translateX(-50px);
    transition: all 2.5s;

    &.on {
        transform: translateX(0);
    }
}

.fadein-list li {
    transform: translateY(40px);
    transition: all 1s;

    &.on {
        transform: translateY(0);
    }
}


@media (max-width: 767px) {
    .fadein_left_sp {
        transform: translateX(-30px);

        &.on {
            transform: translateX(0);
        }
    }

    .fadein_right_sp {
        transform: translateX(30px);

        &.on {
            transform: translateX(0);
        }
    }
}


/*========================================================
    ロード画面
==========================================================*/
.loaders {
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
    background: #fff;
}

.loaders ol {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 31vw;
    height: 31vw;
    padding: 0;
}

.loaders ol li {
    position: relative;
    width: 31vw;
    height: 31vw;
    background: #FFF;
    transition: background 0.35s;
}

.loaders ol li .loader {
    position: relative;
    margin: 0 auto;
}

.loaders ol li .pl-frame .loader {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.loaders ol li .pl-frame .loader span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.loaders ol li .pl-frame .loader span:before,
.loaders ol li .pl-frame .loader span:after {
    position: absolute;
    width: 4px;
    height: 100%;
    background: #044567;
    content: "";
}

.loaders ol li .pl-frame .loader span:before {
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-animation: drawframeRight 4s linear infinite 0.5s;
    animation: drawframeRight 4s linear infinite 0.5s;
}

.loaders ol li .pl-frame .loader span:after {
    top: 0;
    bottom: auto;
    background: #e5e245;
    left: 0;
    -webkit-animation: drawframeLeft 4s linear infinite 1.5s;
    animation: drawframeLeft 4s linear infinite 1.5s;
}

.loaders ol li .pl-frame .loader:before,
.loaders ol li .pl-frame .loader:after {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #044567;
    content: "";
}

.loaders ol li .pl-frame .loader:before {
    top: 0;
    right: 0;
    left: auto;
    -webkit-animation: drawframeTop 4s linear infinite;
    animation: drawframeTop 4s linear infinite;
}

.loaders ol li .pl-frame .loader:after {
    right: auto;
    bottom: 0;
    background: #e5e245;
    left: 0;
    -webkit-animation: drawframeBottom 4s linear infinite 1s;
    animation: drawframeBottom 4s linear infinite 1s;
}

.loaders ol:after {
    display: block;
    clear: both;
    content: "";
    position: relative;
}

@-webkit-keyframes drawframeTop {
    0% {
        right: 0;
        left: auto;
        width: 100%;
    }

    12.5% {
        right: 0;
        left: auto;
        width: 0%;
    }

    50% {
        right: auto;
        left: 0;
        width: 0%;
    }

    62.5% {
        right: auto;
        left: 0;
        width: 100%;
    }

    100% {
        right: auto;
        left: 0;
        width: 100%;
    }
}

@keyframes drawframeTop {
    0% {
        right: 0;
        left: auto;
        width: 100%;
    }

    12.5% {
        right: 0;
        left: auto;
        width: 0%;
    }

    50% {
        right: auto;
        left: 0;
        width: 0%;
    }

    62.5% {
        right: auto;
        left: 0;
        width: 100%;
    }

    100% {
        right: auto;
        left: 0;
        width: 100%;
    }
}

@-webkit-keyframes drawframeBottom {
    0% {
        right: auto;
        left: 0;
        width: 100%;
    }

    12.5% {
        right: auto;
        left: 0;
        width: 0%;
    }

    50% {
        right: 0;
        left: auto;
        width: 0%;
    }

    62.5% {
        right: 0;
        left: auto;
        width: 100%;
    }

    100% {
        right: 0;
        left: auto;
        width: 100%;
    }
}

@keyframes drawframeBottom {
    0% {
        right: auto;
        left: 0;
        width: 100%;
    }

    12.5% {
        right: auto;
        left: 0;
        width: 0%;
    }

    50% {
        right: 0;
        left: auto;
        width: 0%;
    }

    62.5% {
        right: 0;
        left: auto;
        width: 100%;
    }

    100% {
        right: 0;
        left: auto;
        width: 100%;
    }
}

@-webkit-keyframes drawframeRight {
    0% {
        top: auto;
        bottom: 0;
        height: 100%;
    }

    12.5% {
        top: auto;
        bottom: 0;
        height: 0%;
    }

    50% {
        top: 0;
        bottom: auto;
        height: 0%;
    }

    62.5% {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    100% {
        top: 0;
        bottom: auto;
        height: 100%;
    }
}

@keyframes drawframeRight {
    0% {
        top: auto;
        bottom: 0;
        height: 100%;
    }

    12.5% {
        top: auto;
        bottom: 0;
        height: 0%;
    }

    50% {
        top: 0;
        bottom: auto;
        height: 0%;
    }

    62.5% {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    100% {
        top: 0;
        bottom: auto;
        height: 100%;
    }
}

@-webkit-keyframes drawframeLeft {
    0% {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    12.5% {
        top: 0;
        bottom: auto;
        height: 0%;
    }

    50% {
        top: auto;
        bottom: 0;
        height: 0%;
    }

    62.5% {
        top: auto;
        bottom: 0;
        height: 100%;
    }

    100% {
        top: auto;
        bottom: 0;
        height: 100%;
    }
}

@keyframes drawframeLeft {
    0% {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    12.5% {
        top: 0;
        bottom: auto;
        height: 0%;
    }

    50% {
        top: auto;
        bottom: 0;
        height: 0%;
    }

    62.5% {
        top: auto;
        bottom: 0;
        height: 100%;
    }

    100% {
        top: auto;
        bottom: 0;
        height: 100%;
    }
}




/*========================================================
    タグ
==========================================================*/
.tags {
    display: flex;
    padding: 5px;

    @media (max-width: 959px) {
        display: none;
    }

    span {
        font-size: clamp(0.875rem, 0.75rem + 0.21vw, 1rem);

        &:nth-of-type(n+2) {
            margin-left: 1em;
        }
    }
}



/*========================================================
    swiper
==========================================================*/
.swiper .swiper-slide {
    height: auto;
}

.swiper picture {
    height: 100%;

    img {
        height: 100%;
    }
}



/*========================================================
    コンテンツ
==========================================================*/
#main {
    position: relative;

    &::before {
        position: absolute;
        content: "APARTMENT HOTEL";
        top: 0;
        left: 5px;
        font-size: clamp(6.25rem, 3.75rem + 4.17vw, 8.75rem);
        font-family: var(--font-en-gothic);
        font-weight: 100;
        writing-mode: vertical-rl;
        line-height: 0.8;
        z-index: 3;
    }

    @media (max-width: 767px) {
        &::before {
            top: 0;
            left: 1px;
            font-size: 56px;
        }
    }

    .Bg__01 {
        position: absolute;
        display: block;
        width: 57.28vw;
        max-width: 1122px;
        top: 30vw;
        left: -8.423vw;
        z-index: -1;
        animation: main_icon01 15s infinite;

        @media (max-width: 767px) {
            width: 82.56vw;
            top: 115vw;
            left: -12vw;
        }

        @media (max-width: 340px) {
            top: 120vw;
        }
    }
}

@keyframes main_icon01 {
    50% {
        transform: translate(50px, 50px);
    }
}

@media (max-width: 767px) {
    @keyframes main_icon01 {
        50% {
            transform: translate(20px, 20px);
        }
    }
}

.main-tit {
    position: absolute;
    top: 118px;
    left: 214px;
    font-size: clamp(1.688rem, 0.688rem + 1.67vw, 2.688rem);
    font-weight: 600;
    line-height: 1.69em;
    text-align: center;
    z-index: 3;

    @media (max-width: 1440px) {
        top: 20px;
        left: 90px;
    }

    @media (max-width: 767px) {
        position: static;
        grid-column: 1 / 10;
        grid-row: 8 / 10;
        padding-right: 3em;
        text-align: right;
    }

    @media (max-width: 450px) {
        grid-row: 5 / 7;
        padding-right: 1em;
        font-size: 20px;
    }

    .en {
        display: block;
        font-family: var(--font-en-mincho);
        font-size: clamp(0.75rem, 0.5rem + 0.42vw, 1rem);
        font-weight: 400;
        line-height: 1.2em;
        margin-top: 1.5em;

        @media (max-width: 767px) {
            font-size: 7px;
        }
    }
}

.kv-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    padding-right: 60px;
    padding-bottom: 240px;
    background-image: var(--cell-bg);
    background-size: var(--cell-size) var(--cell-size);
    background-position: center;
    position: relative;

    @media (max-width: 1440px) {
        padding-right: 30px;
        padding-bottom: 80px;
    }

    @media (max-width: 767px) {
        padding: 20px 0 100px;
        grid-template-columns: repeat(9, 1fr);
        grid-auto-rows: 50px;
    }

    .kv {
        border-radius: 20px;
        overflow: hidden;

        @media (max-width: 767px) {
            border-radius: 5px;
        }
    }

    .kv01 {
        grid-column: 6 / 13;
        grid-row: 1 / 8;
        margin: 0 0 50px 40px;

        @media (max-width: 1440px) {
            grid-row: 1 / 4;
            margin-left: 0;
        }

        @media (max-width: 767px) {
            grid-column: 3 / 13;
            grid-row: 1 / 7;
            margin-bottom: 0;
        }

        @media (max-width: 450px) {
            grid-column: 3 / 10;
            grid-row: 1 / 5;
            margin-bottom: 20px;
            border-radius: 5px 0 0 5px;
        }
    }

    .kv02 {
        grid-column: 1 / 6;
        grid-row: 5;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        margin-right: 40px;
        transform: translateX(-20px);

        @media (max-width: 1440px) {
            grid-column: 1 / 6;
            grid-row: 3;
            margin: 0;
        }

        @media (max-width: 767px) {
            grid-column: 1 / 5;
            grid-row: 10;
            margin: 0;
        }

        @media (max-width: 450px) {
            grid-column: 1 / 6;
            grid-row: 7;
            margin-right: 20px;
        }
    }

    .kv03 {
        grid-column: 6 / 9;
        grid-row: 9;
        aspect-ratio: 1 / 1;
        margin-right: 120px;

        @media (max-width: 1440px) {
            grid-row: 6;
            margin-right: 80px;
        }

        @media (max-width: 1200px) {
            margin-right: 40px;
        }

        @media (max-width: 767px) {
            grid-column: 7 / 10;
            grid-row: 11;
            margin-left: 30px;
        }

        @media (max-width: 590px) {
            grid-column: 6 / 9;
            margin-right: 0;
            margin-left: 0;
        }

        @media (max-width: 450px) {
            margin: 10px 20px 0 30px;
            grid-column: 6 / 10;
            grid-row: 7;
        }
        @media (max-width: 350px) {
            margin: 10px 20px 0 0px;
        }
    }

    .kv04 {
        grid-column: 9 / 13;
        grid-row: 8 / 17;
        margin: 0 22px 28px 0;

        @media (max-width: 1440px) {
            grid-row: 5 / 11;
        }

        @media (max-width: 767px) {
            grid-column: 7 / 10;
            grid-row: 16 / 25;
        }

        @media (max-width: 590px) {
            grid-column: 6 / 10;
        }

        @media (max-width: 450px) {
            grid-column: 6 / 10;
            grid-row: 12 / 17;
            margin: 0 10px 0 0;
        }
    }

    .kv05 {
        grid-column: 2 / 7;
        grid-row: 13 / 17;
        margin-bottom: 56px;
        margin-right: 100px;

        @media (max-width: 1440px) {
            grid-row: 9 / 12;
            margin-right: 30px;
        }

        @media (max-width: 767px) {
            grid-column: 1 / 6;
            grid-row: 18 / 24;
        }

        @media (max-width: 450px) {
            grid-column: 1 / 5;
            grid-row: 13 / 15;
            margin: 0;
            border-radius: 0 5px 5px 0;
        }
    }

    .kv06 {
        grid-column: 5 / 11;
        grid-row: 17 / 23;
        margin: 50px 15px -28px 15px;

        @media (max-width: 1440px) {
            grid-column: 4 / 11;
            grid-row: 12 / 15;
            margin-top: 0px;
        }

        @media (max-width: 767px) {
            grid-column: 3 / 8;
            margin: 0;
            grid-row: 34 / 39;
        }

        @media (max-width: 450px) {
            grid-row: 22 / 25;
            grid-column: 2/ 9;
            margin: 0 30px;
        }
    }

    .kv07 {
        grid-column: 2 / 5;
        grid-row: 19 / 25;
        margin-right: 61px;
        margin-bottom: 20px;

        @media (max-width: 1440px) {
            grid-column: 1 / 4;
            grid-row: 14 / 18;
            margin: 0 0 0 10px;
        }

        @media (max-width: 767px) {
            grid-row: 24 / 33;
        }

        @media (max-width: 590px) {
            grid-row: 26 / 33;
        }

        @media (max-width: 450px) {
            margin: 0 0 0 20px;
            grid-column: 1 / 5;
            grid-row: 16 / 21;
        }
    }

    .kv08 {
        grid-column: 10 / 13;
        grid-row: 21 / 24;
        margin-right: -6px;
        margin-bottom: 7px;

        @media (max-width: 1440px) {
            grid-column: 9 / 13;
            grid-row: 14 / 17;
            margin-top: 50px;
        }

        @media (max-width: 767px) {
            grid-column: 5 / 10;
            grid-row: 26 / 32;
        }

        @media (max-width: 450px) {
            margin: 0;
            grid-column: 5 / 10;
            grid-row: 19 / 22;
            margin: 0 20px 30px 20px;
        }
    }
}

.kv-container .element {
    position: absolute;
    z-index: 1;

    &.element02 {
        top: 1280px;
        left: 790px;
        width: 280px;

        @media (max-width: 1440px) {
            top: 780px;
            left: 650px;
            width: 245px;
        }

        @media (max-width: 1020px) {
            top: 710px;
            left: 390px;
            width: 240px;
        }

        @media (max-width: 767px) {
            top: 690px;
            left: 260px;
            width: 190px;
        }

        @media (max-width: 590px) {
            top: 630px;
            left: 100px;
        }

        @media (max-width: 450px) {
            top: 460px;
            left: auto;
            right: 101px;
            width: 123px;
        }
    }

    &.element03 {
        left: 65px;
        bottom: 850px;
        width: 200px;

        @media (max-width: 1440px) {
            left: 35px;
            bottom: 500px;
            width: 170px;
        }

        @media (max-width: 767px) {
            left: 330px;
            bottom: 550px;
            width: 150px;
        }

        @media (max-width: 590px) {
            left: 240px;
        }

        @media (max-width: 450px) {
            bottom: 760px;
            left: 92px;
            width: 83px;
        }
    }

    &.element04 {
        bottom: 700px;
        right: 130px;
        width: 100px;

        @media (max-width: 1440px) {
            bottom: 20px;
            right: 50px;
            width: 100px;
        }

        @media (max-width: 767px) {
            bottom: 130px;
        }

        @media (max-width: 590px) {
            right: 10px;
            width: 80px;
        }

        @media (max-width: 450px) {
            bottom: 610px;
            right: 18px;
            width: 50px;
        }
    }
}

.welcome {
    position: absolute;
    bottom: 3.5em;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: clamp(1.375rem, 0.063rem + 2.19vw, 2.688rem);
    line-height: 1.69em;

    @media (max-width: 767px) {
        transform: none;
        font-size: 20px;
        position: static;
        grid-column: 1 / 10;
        grid-row: 40 / 43;
    }

    @media (max-width: 450px) {
        grid-column: 1 / 10;
        grid-row: 26 / 29;
    }

    .en {
        display: block;
        font-family: var(--font-en-mincho);
        font-weight: 400;
        letter-spacing: 0.06em;
        font-size: clamp(0.625rem, 0.529rem + 0.39vw, 1rem);
        line-height: 1.3em;
        margin-top: 1em;
    }
}

.type {
    padding: 158px 0 86px;
    width: min(90%, 1555px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 46px;

    @media (max-width: 1440px) {
        padding: 70px 0 40px;
    }

    @media (max-width: 767px) {
        flex-direction: column-reverse;
        padding: 80px 0 60px;
        gap: 60px;
    }

    .text-box {
        width: 32%;

        @media (max-width: 1440px) {
            width: 37%;
        }

        @media (max-width: 767px) {
            width: 100%;
        }

        .tit {
            font-size: clamp(2rem, 1.563rem + 0.73vw, 2.438rem);

            @media (max-width: 767px) {
                font-size: 25px;
            }
        }

        .txt {
            margin-top: 56px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            letter-spacing: 0.12em;
            line-height: 1.875em;

            @media (max-width: 1200px) {
                margin-top: 30px;
            }

            @media (max-width: 767px) {
                margin-top: 20px;
            }
        }
    }

    .img-wrap {
        width: 68%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 28px;
            left: -44px;
            width: 32%;
            aspect-ratio: 1 / 1;
            background-color: var(--yellow);
            z-index: -1;
        }

        &::after {
            position: absolute;
            content: "";
            bottom: -40px;
            right: -51px;
            width: 58%;
            aspect-ratio: 25 / 14;
            background-color: var(--blue);
            z-index: -1;
        }

        @media (max-width: 1200px) {
            width: 55%;
            gap: 10px;
        }

        @media (max-width: 767px) {
            width: min(95%, 483px);
            gap: 10px;

            &::before {
                top: -20px;
                left: -10px;
                width: 41%;
            }

            &::after {
                right: -10px;
                width: 63%;
            }
        }

        .img {
            width: calc(100% / 3);

            @media (max-width: 767px) {
                aspect-ratio: 9 / 15;
            }
        }

        .img:first-of-type {
            margin-top: 115px;

            @media (max-width: 1200px) {
                margin-top: 70px;
            }

            @media (max-width: 767px) {
                margin: 0;
            }
        }

        .img:last-of-type {
            margin-bottom: 115px;

            @media (max-width: 1200px) {
                margin-bottom: 70px;
            }

            @media (max-width: 767px) {
                margin: 0;
            }
        }
    }
}

.access {
    padding: 86px 0 230px;
    width: min(95%, 1475px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 111px;
    justify-content: space-between;
    position: relative;

    @media (max-width: 1440px) {
        padding: 40px 0 60px;
        gap: 40px;
    }

    @media (max-width: 959px) {
        padding-bottom: 240px;
    }

    @media (max-width: 767px) {
        flex-direction: column;
        padding: 0 0 70px;
        gap: 20px;
    }

    .img {
        width: 60%;

        @media (max-width: 767px) {
            width: min(95%, 495px);
            margin: 0 auto;
        }
    }

    .text-box {
        width: 40%;

        @media (max-width: 767px) {
            width: 90%;
            margin: 30px auto 0;
        }

        .tit {
            font-size: clamp(2rem, 1.563rem + 0.73vw, 2.438rem);
            line-height: 1.56em;

            @media (max-width: 767px) {
                font-size: 25px;
            }
        }

        .txt {
            margin-top: 45px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            letter-spacing: 0.12em;
            line-height: 1.875em;

            @media (max-width: 1200px) {
                margin-top: 30px;
            }

            @media (max-width: 767px) {
                margin-top: 20px;
            }
        }
    }
}

#treehouse.section-title {
    padding-top: 30px;
    padding-left: 178px;
    position: relative;
    z-index: 3;
    background-color: #fff;

    @media (max-width: 1200px) {
        padding-left: 80px;
    }

    @media (max-width: 767px) {
        margin-top: 90px;
        padding-top: 0;
        padding-left: 20px;
    }

    .ja {
        font-family: var(--font-ja-gothic01);
        letter-spacing: 0.14em;
        font-weight: 300;
    }
}

.facility {
    padding-bottom: 190px;
    background-color: var(--design-color01);

    &.first {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 125px;
            background-color: #fff;
            z-index: 1;
        }

        @media (max-width: 1400px) {
            &::before {
                height: 90px;
            }
        }
    }

    &+& {
        padding-bottom: 190px;

        @media (max-width: 767px) {
            padding-bottom: 100px;
        }
    }

    @media (max-width: 1440px) {
        padding-top: 60px;
    }

    @media (max-width: 767px) {
        padding-bottom: 100px;
    }

    .facility__content {
        margin-top: -40px;

        .facility__main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 3;

            @media (max-width: 767px) {
                flex-direction: column;
                margin: 0;

                .text-box {
                    order: 2;
                }
            }

            .text-box {
                width: 40%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 30px;
                }
            }

            .bubble {
                width: fit-content;
                display: block;
                margin: 0 auto;
                font-size: 21px;
                color: #fff;
                padding: 10px 40px;
                border-radius: 100vh;
                background-color: var(--blue);
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    top: 99%;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 17px;
                    height: 15px;
                    clip-path: polygon(0 0, 50% 100%, 100% 0);
                    background-color: var(--blue);
                }

                @media (max-width: 767px) {
                    font-size: 12px;
                    padding: 10px 20px;
                }
            }

            .inner {
                width: fit-content;
                margin: 0 auto;
            }

            .facility__name {
                margin-top: 30px;
                font-size: clamp(1.875rem, 1.313rem + 0.94vw, 2.438rem);
                line-height: 1.4em;
                color: var(--blue);

                @media (max-width: 767px) {
                    margin-top: 15px;
                    padding-right: 0;
                    line-height: 1.5em;
                    text-align: center;
                }

                .ja {
                    display: block;
                    font-size: clamp(0.938rem, 0.688rem + 0.42vw, 1.188rem);

                    @media (max-width: 767px) {
                        font-size: 11px;
                    }
                }
            }

            .facility-address {
                color: var(--blue);
                font-size: 15px;
                font-weight: 400;
                margin-top: 30px;

                @media (max-width: 767px) {
                    margin-top: 2em;
                }

                .tit {
                    display: flex;
                    align-items: center;
                    gap: 0.5em;
                    font-size: 17px;
                    font-weight: 600;

                    &::before {
                        content: "";
                        display: block;
                        background: url(../img/assets/map-icon.png) no-repeat center center / contain;
                        width: 9px;
                        height: 15px;
                    }
                }
            }

            .facility__img {
                width: 60%;
                border-radius: 100px 0 0 0;
                margin: 0;
                overflow: hidden;

                @media (max-width: 767px) {
                    width: 100%;
                    order: 1;
                    border-radius: 0;
                    /* height: 260px; */
                }
            }
        }

        .point {
            width: 770px;
            padding: 62px 0 60px 55px;
            margin: -150px 0 0 230px;
            background-color: #fff;
            position: relative;
            z-index: 3;
            background-image: var(--cell-bg);
            background-size: var(--cell-size) var(--cell-size);
            background-position: center;

            @media (max-width: 1440px) {
                width: 650px;
                margin: 40px 0 0 50px;
                padding: 40px;
            }

            @media (max-width: 959px) {
                margin-top: 30px;
            }

            @media (max-width: 767px) {
                order: 3;
                width: 92%;
                margin: 40px auto 0;
                padding: 30px 32px 30px;
                z-index: auto;
            }

            @media (max-width: 340px) {
                padding: 30px 15px;
            }

            .point__list li {
                font-size: clamp(0.813rem, 0.787rem + 0.13vw, 0.938rem);
                display: flex;

                &::before {
                    content: "■";
                    font-size: 1.2em;
                    color: var(--yellow);
                    margin-right: 0.5em;
                    line-height: 1.2;
                }

                &+& {
                    margin-top: 1.3em;

                    @media (max-width: 1200px) {
                        margin-top: 0.5em;
                    }
                }
            }
        }
    }
}


.room__index {
    padding-top: 170px;
    background-color: var(--design-color01);

    @media (max-width: 767px) {
        padding-top: 40px;
    }

    .room__index__inner {
        width: min(85%, 1290px);

        margin: 0 auto;

        @media (max-width: 1200px) {
            width: calc(100% - 14.28vw);
        }

        @media (max-width: 767px) {
            width: calc(100% - 11.7vw);
        }
    }
}

.room__index__list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;

    @media (min-width: 768px) {
        &.type2 li {
            flex-basis: calc((100%/3) - 40px);

            @media (max-width: 1200px) {
                flex-basis: calc((100%/3) - 20px);
            }
        }
    }

    &.nihongi::after {
        display: block;
        content: "";
        width: calc((100%/3) - 40px);
        margin: 60px auto;
    }

    @media (max-width: 767px) {
        &.nihongi::after {
            margin: 20px auto;
        }
    }

    li {
        flex-basis: calc((100% / 2) - 10.8%);
        margin: 60px auto;
        display: flex;
        flex-direction: column;

        @media (max-width: 959px) {
            flex-basis: calc((100% / 2) - 5.6%);
        }

        @media (max-width: 767px) {
            flex-basis: calc((100% / 2) - 3.9%);
            margin: 20px auto;
        }

        a {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
    }

    .room__index__meta {
        position: relative;
        aspect-ratio: 390 / 295;

        .img {
            aspect-ratio: 253 / 191;
        }

        img {
            border: solid 5px #fff;
            box-sizing: border-box;
            transition: all.3s;

            @media (max-width: 767px) {
                border: solid 3px #fff;
            }
        }

        .room__index__num {
            position: absolute;
            bottom: 5px;
            left: 5px;
            font-size: clamp(1.25rem, 1rem + 0.42vw, 1.5rem);
            color: #fff;
            background-color: var(--blue);
            border-radius: 0 30px 0 0;
            padding: 15px;

            @media (max-width: 1200px) {
                padding: 7px;
                border-radius: 0 15px 0 0;
            }

            @media (max-width: 767px) {
                left: 3px;
                bottom: 3px;
                font-size: clamp(0.688rem, 0.107rem + 2.38vw, 1.25rem);
                padding: 5px 8px;
                border-radius: 0 10px 0 0;
            }

            span {
                font-size: clamp(0.875rem, 0.75rem + 0.21vw, 1rem);

                @media (max-width: 767px) {
                    font-size: clamp(0.5rem, 0.112rem + 1.59vw, 0.875rem);
                }
            }
        }
    }

    .room__index__price {
        font-size: clamp(1.25rem, 1rem + 0.42vw, 1.5rem);
        margin-top: 28px;

        @media (max-width: 1200px) {
            margin-top: 20px;
        }

        @media (max-width: 767px) {
            font-size: clamp(0.875rem, 0.487rem + 1.59vw, 1.25rem);
            margin-top: 0.8em;
        }

        .unit {
            font-size: clamp(0.813rem, 0.375rem + 0.73vw, 1.25rem);
        }
    }

    .room__index__title {
        font-size: clamp(0.938rem, 0.875rem + 0.1vw, 1rem);
        line-height: 1.75em;
        margin-top: 30px;

        @media (max-width: 1200px) {
            margin-top: 20px;
        }

        @media (max-width: 767px) {
            font-size: clamp(0.75rem, 0.556rem + 0.8vw, 0.938rem);
            margin-top: 10px;
        }
    }

    .room__index__taglist {
        margin-top: 22px;
        margin-bottom: 47px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        @media (max-width: 1200px) {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 767px) {
            margin-top: 10px;
        }

        span {
            font-size: clamp(0.625rem, 0.529rem + 0.39vw, 1rem);
            font-weight: 500;
            color: var(--blue);

            &:nth-of-type(n+2) {
                margin-left: 14px;
            }
        }
    }

    .room__index__btn {
        font-size: clamp(0.625rem, 0.545rem + 0.33vw, 0.938rem);
        font-weight: 600;
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border: 3px solid #000;
        border-radius: 5px;
        padding: 2px 0 0;
        margin-top: auto;
        margin-bottom: 0;
        position: relative;
        transition: .3s;
        color: #000;

        &::after {
            position: absolute;
            content: "";
            display: block;
            width: 21px;
            height: 11px;
            right: 30px;
            top: 0;
            bottom: 0;
            margin: auto;
            background: url(../img/jpg_png/index_arrow.png) no-repeat center center / contain;
            transition: .3s;
        }

        @media (max-width: 767px) {
            height: 30px;
            padding: 0;
            border-width: 2px;

            &::after {
                width: 11px;
                height: 7px;
                right: 15px;
            }
        }

        @media (max-width: 360px) {
            &::after {
                right: 10px;
            }
        }
    }
}

.room__index__list a:hover {
    color: var(--blue);
    opacity: 1;

    .room__index__meta img {
        border-left-color: var(--yellow) !important;
        border-bottom-color: var(--yellow) !important;
        border-top-color: var(--blue) !important;
        border-right-color: var(--blue) !important;
    }

    .room__index__btn {
        color: var(--blue) !important;
        cursor: pointer;

        &::after {
            right: 25px !important;
        }
    }
}

.G-map {
    height: 575px;
    padding-bottom: 120px;

    @media (max-width: 1200px) {
        height: 400px;
    }

    @media (max-width: 767px) {
        padding: 0;
    }
}

.lower-img {
    padding-top: 390px;
    background-color: var(--design-color01);

    @media (max-width: 1400px) {
        padding-top: 100px;
    }
}

#footer {
    padding: 115px 0 130px;
    background-color: var(--blue);

    @media (max-width: 767px) {
        padding: 50px 0;
    }

    .footer__inr {
        width: min(95%, 1706px);
        margin: 0 auto;
        display: flex;
        justify-content: center;

        @media (max-width: 767px) {
            width: 88%;
            flex-direction: column;
        }
    }

    .footer__L {
        padding-right: 116px;
        border-right: 1px solid #fff;

        @media (max-width: 1440px) {
            padding-right: 20px;
        }

        @media (max-width: 767px) {
            padding-right: 0;
            border-right: none;
        }

        .logo {
            width: 370px;
            margin-bottom: 64px;

            @media (max-width: 1440px) {
                width: 320px;
            }
            @media (max-width: 959px) {
                width: 230px;
            }
            @media (max-width: 767px) {
                width: min(73%, 288px);
                margin: 0 auto;
            }
        }

        .btn {
            width: 290px;
            height: 70px;
            border-radius: 4px;
            background-color: var(--yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-ja-gothic03);
            font-weight: 500;
            font-size: clamp(1.188rem, 1.104rem + 0.17vw, 1.313rem);
            color: var(--blue);
            position: relative;

            &::after {
                position: absolute;
                content: "";
                top: 50%;
                right: 30px;
                transform: translateY(-50%);
                width: 1.5em;
                aspect-ratio: 1 / 1;
                background: url(../img/assets/arrow09.png) no-repeat center center /contain;
                transition: all 0.3s;
            }

            &.qa {
                margin-top: 18px;
                background-color: var(--design-color01);

                &::after {
                    background: url(../img/assets/arrow06.png) no-repeat center center /contain;
                }
            }

            &:hover {
                opacity: 1;

                &::after {
                    right: 20px;
                }
            }

            @media (max-width: 1440px) {
                width: 260px;
                height: 65px;
            }
            @media (max-width: 959px) {
                width: 220px;
                height: 55px;
            }
            @media (max-width: 767px) {
                width: min(80%, 295px);
                margin: 30px auto 0;
                height: 60px;
                border-radius: 5px;
                font-size: 18px;

                &::after {
                    right: 20px;
                }
                &:hover::after {
                    right: 15px;
                }
            }

            .calender {
                width: 38px;
                margin-right: 23.4px;

                @media (max-width: 959px) {
                    width: 25px;
                }
                @media (max-width: 767px) {
                    width: 28px;
                    margin-right: 18px;
                }
            }
        }

        .ig {
            display: block;
            margin-top: 48px;
            width: 43px;

            @media (max-width: 767px) {
                margin: 30px 15px 0 auto;
            }
        }
    }

    .footer__R {
        padding-left: 125px;

        @media (max-width:1200px) {
            padding-left: 20px;
        }

        @media (max-width: 767px) {
            padding-left: 0;
            padding-top: 10px;
        }

        .facility-index__footer {
            .title {
                display: flex;
                align-items: center;
                font-family: var(--font-en-gothic);
                font-weight: 100;
                font-size: clamp(1.5rem, 1.188rem + 0.52vw, 1.813rem);
                color: #fff;

                @media (max-width: 767px) {
                    width: 80%;
                    margin: 0 auto;
                    font-size: 32px;
                }

                .ja {
                    padding-left: 33px;
                    font-family: var(--font-ja-gothic01);
                    font-weight: 400;
                    font-size: 12px;
                    letter-spacing: 0.14em;

                }
            }

            .inr {
                margin-top: 12px;
                display: flex;
                gap: 37px;

                @media (max-width: 959px) {
                    gap: 20px;
                }
                @media (max-width: 767px) {
                    flex-direction: column;
                    margin-top: 30px;
                    gap: 20px;
                }

                .facility-content {
                    width: calc(100% / 3 - 2.6vw);

                    @media (max-width: 1440px) {
                        width: calc(100% / 3 - 5vw);
                    }
                    @media (max-width: 959px) {
                        width: calc(100% / 3 - 3vw);
                    }
                    @media (max-width: 767px) {
                        width: 80%;
                        margin: 0 auto;
                    }

                    .img {
                        width: 100%;
                        transition: all 0.3s;
                        overflow: hidden;
                        border-radius: 15px;

                        picture {
                            overflow: hidden;
                        }

                        img {
                            transition: all 0.3s;
                        }
                    }

                    .facility-name {
                        margin-top: 13px;
                        font-weight: 400;
                        font-size: clamp(0.688rem, 0.438rem + 0.42vw, 0.938rem);
                        color: #fff;
                        letter-spacing: 0.04em;
                        transition: all 0.3s;

                        @media (max-width: 767px) {
                            margin-top: 5px;
                            font-size: 14px;
                        }
                    }

                    &:hover {
                        opacity: 1;

                        img {
                            transform: scale(1.05);
                            transform-origin: center;
                        }

                        .facility-name {
                            color: var(--yellow);
                        }
                    }
                }
            }
        }

        .link__area {
            margin-top: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 1200px) {
                margin-top: 50px;
            }

            @media (max-width: 767px) {
                flex-direction: column;
                margin: 0 auto;
                align-items: baseline;
                gap: 10px;
            }

            a {
                display: block;
                padding: 3px 3px 5px;
                font-family: var(--font-en-gothic);
                font-weight: 100;
                font-size: clamp(1.063rem, 0.313rem + 1.25vw, 1.813rem);
                color: #fff;
                text-align: center;
                position: relative;

                &:hover {
                    opacity: 1;
                    color: var(--yellow);
                }

                @media (max-width: 959px) {
                    font-size: 16px;
                }
                @media (max-width: 767px) {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    width: fit-content;
                    font-size: 29px;
                }

                .ja {
                    font-family: var(--font-ja-gothic01);
                    font-weight: 400;
                    display: block;
                    font-size: clamp(0.563rem, 0.375rem + 0.31vw, 0.75rem);

                    @media (max-width: 767px) {
                        font-size: 12px;
                    }
                }
            }

            .amenity {
                position: relative;

                .amenity-list {
                    position: absolute;
                    top: 99%;
                    left: 0;
                    width: fit-content;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                    transition: opacity .3s, visibility .3s, transform .3s;
                    padding: 5px;
                    border-radius: 10px;
                    /* background-color: var(--blue); */
                    z-index: 3;

                    @media (max-width: 767px) {
                        position: relative;
                        display: none;
                        opacity: 1;
                        visibility: visible;
                        pointer-events: all;
                        background-color: transparent;
                        border-radius: 0;
                        padding: 8px 0 8px 5px;

                        li+li {
                            margin-top: 3px;
                        }
                    }

                    a {
                        width: fit-content;
                        text-align: left;
                        font-size: 14px;
                        font-weight: 200;
                        padding: 0 0 2px;
                        white-space: nowrap;
                        gap: 0;

                        @media (max-width: 767px) {
                            font-size: 19px;
                            padding: 3px;
                        }
                        @media (max-width: 350px) {
                            font-size: 16px;
                        }

                        .inr-ja {
                            font-family: var(--font-ja-gothic01);
                            font-weight: 100;
                        }
                    }
                }

                &.is_hover {
                    &::after {
                        opacity: 1;
                    }
                    
                    .amenity-list{
                        opacity: 1;
                        visibility: visible;
                        pointer-events: auto;
                    }
                }
            }
        }

        .legal {
            margin-top: 80px;
            padding-left: 20px;
            padding-top: 40px;
            border-top: 1px solid #fff;

            @media (max-width: 959px) {
                margin-top: 40px;
                padding-top: 15px;
                padding-left: 0;
            }
            @media (max-width: 767px) {
                padding: 33px 0 33px 15px;
                border-bottom: 1px solid #fff;
            }

            a {
                color: #fff;
                font-size: 16px;
                font-weight: 300;
                letter-spacing: 0.06em;
                margin-right: 3em;
                transition: all 0.3s;

                &:hover {
                    opacity: 1;
                    color: var(--yellow);
                }

                @media (max-width: 959px) {
                    font-size: 13px;
                    margin-right: 1.5em;
                }
                @media (max-width: 767px) {
                    display: block;
                    margin: 0;
                    width: fit-content;

                    &+& {
                        margin-top: 15px;
                    }
                }
            }
        }

        .copyright {
            display: block;
            text-align: right;
            margin-top: 60px;
            font-size: 12px;
            color: #fff;

            @media (max-width: 767px) {
                margin-top: 100px;
                text-align: center;
            }
        }
    }
}



/*========================================================
    部屋詳細
==========================================================*/
.container > .reservation {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    background-color: var(--blue);
    z-index: 998;

    a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 18px;
        color: #fff;
        position: relative;

        &::after {
            content: "";
            display: block;
            background: url(../img/assets/arrow01.png) no-repeat center center / contain;
            width: 20.5px;
            height: 20.5px;
        }

        .calender {
            width: 30px;

        }
    }

}

@media (max-width: 767px) {
    body.nav-open .container > .reservation {
        z-index: 1;
    }
}


.room-page .room-container {
    @media (max-width: 767px) {
        padding-top: 56px;
    }

    .room-top {
        display: flex;
        align-items: center;
        margin-left: 100px;

        @media (max-width: 1440px) {
            margin-left: 30px;
        }

        @media (max-width: 959px) {
            margin-left: 15px;
        }

        @media (max-width: 767px) {
            margin-left: 0;
            flex-direction: column-reverse;
            gap: 20px;
        }
    }

    .room-top__info {
        width: min(43%, 580px);

        @media (max-width: 1200px) {
            margin-top: 60px;
        }

        @media (max-width: 767px) {
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            gap: 22px;
            margin-top: 0;
        }
    }
    .info__inner {
        padding: 68px 48px;
        background-color: var(--design-color01);

        @media (max-width: 1200px) {
            padding: 38px 28px;
        }

        @media (max-width: 959px) {
            padding: 32px 23px;
        }
        @media (max-width: 767px) {
            width: 96%;
            margin: 0 auto;
        }

        .facility-name {
            font-size: clamp(1.125rem, 0.438rem + 1.15vw, 1.813rem);
    
            @media (max-width: 959px) {
                font-size: 15px;
            }
            @media (max-width: 767px) {
                font-size: 19px;
            }
        }
    
        .room-number {
            margin-top: 32px;
            padding-bottom: 42px;
            border-bottom: 1px solid #000;
            display: flex;
            align-items: flex-end;
            font-family: var(--font-num);
            font-size: clamp(1.875rem, -0.625rem + 4.17vw, 4.375rem);
            font-weight: 400;
            line-height: 1;
    
            @media (max-width: 1440px) {
                margin-top: 15px;
                padding-bottom: 25px;
            }
            @media (max-width: 959px) {
                font-size: 24px;
            }
            @media (max-width: 767px) {
                font-size: 46px;
            }
    
            .ja {
                font-family: var(--font-ja-gothic01);
                font-size: clamp(1.125rem, -0.063rem + 1.98vw, 2.313rem);
                margin-left: 0.5em;
                margin-bottom: 0.3em;
                white-space: nowrap;
    
                @media (max-width: 959px) {
                    font-size: 15px;
                    margin-bottom: 0.2em;
                }
                @media (max-width: 767px) {
                    font-size: 24px;
                }
            }

            .tree {
                font-size: clamp(1.563rem, 0.313rem + 2.6vw, 3.438rem);
                margin-bottom: 0.2em;
            }
        }
    
        .info {
            margin-top: 43px;
            margin-left: 1em;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            font-size: clamp(1rem, 0.952rem + 0.2vw, 1.188rem);
    
            &+& {
                margin-top: 22px;
            }
    
            @media (max-width: 1440px) {
                margin-top: 25px;
    
                &+& {
                    margin-top: 7px;
                }
            }
    
            @media (max-width: 959px) {
                margin-top: 15px;
    
                &+& {
                    margin-top: 0;
                }
            }
    
            @media (max-width: 767px) {
                margin-top: 25px;
    
                &+& {
                    margin-top: 15px;
                }
            }
    
            dt {
                width: 20%;
            }
    
            dd {
                width: 80%;
            }
        }
    
        .price {
            padding-top: 40px;
            display: flex;
            align-items: flex-end;
            font-size: clamp(1.688rem, 0.938rem + 1.25vw, 2.438rem);
    
            @media (max-width: 1440px) {
                padding-top: 15px;
            }
    
            @media (max-width: 959px) {
                padding-top: 10px;
            }
    
            @media (max-width: 767px) {
                padding-top: 20px;
                font-size: 32px;
                margin-left: 16px;
            }
    
            .unit {
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                margin-bottom: 0.3em;

                @media (max-width: 767px) {
                    font-size: 16px;
                    margin-bottom: 0.5em;
                }
            }
        }
    
        .reservation-link {
            width: 338px;
            margin: 47px auto 0;
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 100vh;
            background-color: #fff;
            border: 1px solid var(--yellow);
            color: #000;
            font-size: 21px;
            padding: 0 20px;

            &::after {
                content: "";
                display: block;
                width: 47px;
                aspect-ratio: 1 / 1;
                background: url(../img/assets/arrow06.png) no-repeat center center / contain;
                transition: all 0.3s;
            }

            &:hover {
                opacity: 1;

                &::after {
                    transform: translateX(10px);
                }
            }

            @media (max-width: 767px) {
                width: 230px;
                height: 60px;
                font-size: 17px;
                padding: 0 15px;

                &::after {
                    width: 30px;
                }
            }

            span {
                flex-grow: 1;
                text-align: center;
            }
        }
    }

    /* 消すかも */
    .btn-container {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        @media (max-width: 767px) {
            margin-top: 0;
        }

        .btn {
            background-color: transparent;
            border: 2px solid var(--blue);
            padding: 5px 25px 5px 10px;
            font-size: 17px;
            color: var(--blue);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;

            &::after {
                position: absolute;
                content: "";
                top: 50%;
                right: 0.5em;
                transform: translateY(-50%);
                display: block;
                width: 10px;
                aspect-ratio: 1 / 1;
                background: url(../img/assets/arrow03.png) no-repeat center center / contain;
            }

            &+& {
                margin-left: 20px;
            }

            &:hover {
                cursor: pointer;
                background-color: var(--blue);
                color: #fff;
                transition: all 0.05s;

                &::after {
                    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7449%) hue-rotate(10deg) brightness(95%) contrast(96%);
                }
            }

            @media (max-width: 767px) {
                border: 1px solid var(--blue);
                font-size: 14px;
                font-weight: 600;
            }
        }
    }

    .room-img-container {
        width: 75%;
        margin-left: 20px;
        border-radius: 100px 0 0 0;
        overflow: hidden;

        @media (max-width: 1440px) {
            border-radius: 60px 0 0 0;
        }
        @media (max-width: 767px) {
            width: 100%;
            border-radius: 100px 0 0 0;
            margin-left: 0;

            .room-img {
                width: 100%;
                height: auto;
            }
        }

        .room-img {
            height: 700px;

            @media (max-width: 959px) {
                height: 400px;
            }
            @media (max-width: 767px) {
                height: 300px;
            }
        }
        .swiper-button-next::after {
            background: url(../img/assets/arrow08.png);
        }
        .swiper-button-prev::after {
            background: url(../img/assets/arrow08.png);
            transform: scaleX(-1);
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            content: '';
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            width: 44px;
            height: 44px;
            transform-origin: center;
        }

        @media (max-width: 767px) {
            .swiper-button-prev::after,
            .swiper-button-next::after {
                width: 20px;
                height: 20px;
            }
        }

        .room-img-thumbnail {
            margin-top: 20px;

            @media (max-width: 1200px) {
                margin-top: 10px;
            }
            @media (max-width: 767px) {
                margin: 10px;
            }

            .swiper-slide {
                opacity: 0.5;
                transition: opacity 0.5s;

                &:hover {
                    cursor: pointer;
                }
            }
        }

        .room-img-thumbnail .swiper-slide.swiper-slide-thumb-active {
            opacity: 1;
        }
    }
}

.room-page .room-detail {
    padding: 153px 0 185px;
    width: min(95%, 1381px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;

    @media (max-width: 767px) {
        flex-direction: column;
        gap: 0;
        padding: 88px 0 122px;
        width: 91%;
    }

    .text-box {
        width: 41%;

        @media (max-width: 767px) {
            width: 85%;
            display: contents;
        }

        .tagline {
            font-size: 29px;
            font-weight: 600;

            @media (max-width: 767px) {
                width: 95%;
                order: 2;
                font-size: 20px;
                font-weight: 400;
                margin-top: 45px;
            }
        }

        .txt {
            margin-top: 37px;
            font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
            letter-spacing: 0.12em;
            line-height: 1.875em;

            @media (max-width: 767px) {
                order: 3;
                width: 95%;
                margin: 25px auto 0;
                line-height: 1.6em;
            }
        }

        .point {
            margin-top: 55px;
            padding: 43px 60px 60px 60px;
            background-color: var(--design-color01);

            @media (max-width: 1200px) {
                padding: 33px 15px 40px 15px;
            }

            @media (max-width: 767px) {
                width: 100%;
                order: 4;
                margin: 30px auto 0;
            }

            .point__list li {
                font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                font-weight: 500;
                display: flex;

                &::before {
                    content: "■";
                    font-size: 1.2em;
                    color: var(--yellow);
                    margin-right: 0.5em;
                    line-height: 1.2;
                }

                &+& {
                    margin-top: 1.3em;

                    @media (max-width: 1200px) {
                        margin-top: 0.5em;
                    }
                }

                @media (max-width: 767px) {
                    font-weight: 400;
                }
            }
        }

        .amenities-link {
            width: 65%;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1rem, 0.688rem + 0.52vw, 1.313rem);
            color: #fff;
            letter-spacing: 0.14em;
            margin: 40px auto 0;
            background-color: var(--blue);
    
            @media (max-width: 1440px) {
                height: 45px;
                margin: 30px auto 0;
            }
            @media (max-width: 959px) {
                margin-top: 15px;
            }
            @media (max-width: 767px) {
                margin-top: 35px;
                height: 45px;
                width: 88%;
                font-size: 15px;
            }
        }
    }

    .img {
        width: 54%;

        @media (max-width: 767px) {
            width: 100%;
            order: 1;
        }
    }
}

#booking {
    padding: 121px 0 128px;
    background-color: #eaeff2;

    .title {
        text-align: center;
        font-size: 34px;
        font-family: var(--font-booking);
        color: var(--blue);
        font-weight: 400;
        padding-bottom: 25px;
        position: relative;
        margin-bottom: 60px;

        &::before {
            position: absolute;
            content: "";
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--blue);
        }

        @media (max-width: 767px) {
            font-size: 28px;
            padding-bottom: 20px;
        }
    }

    .inner {
        width: min(85%, 1214px);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;

        @media (max-width: 767px) {
            flex-direction: column;
        }

        .inner-box {
            padding: 40px 0;

            .txt {
                text-align: center;
                font-size: 20px;
                font-family: var(--font-booking);
                color: var(--blue);
                font-weight: 500;

                @media (max-width: 767px) {
                    font-size: 16px;
                }
            }

            .reservation-link {
                width: 338px;
                margin: 47px auto 0;
                height: 78px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-radius: 100vh;
                background-color: #fff;
                border: 1px solid var(--yellow);
                color: #000;
                font-size: 21px;
                padding: 0 20px;

                &::after {
                    content: "";
                    display: block;
                    width: 47px;
                    aspect-ratio: 1 / 1;
                    background: url(../img/assets/arrow06.png) no-repeat center center / contain;
                    transition: all 0.3s;
                }

                &:hover {
                    opacity: 1;

                    &::after {
                        transform: translateX(10px);
                    }
                }

                @media (max-width: 767px) {
                    width: 230px;
                    height: 60px;
                    font-size: 17px;
                    padding: 0 15px;

                    &::after {
                        width: 30px;
                    }
                }

                span {
                    flex-grow: 1;
                    text-align: center;
                }
            }
        }

        .direct {
            width: 43%;
            background-color: #fff;
            border-radius: 15px;

            @media (max-width: 767px) {
                width: 100%;
                border-radius: 8px;
            }
        }
        .other {
            width: 54.6%;
            background-color: #fff;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;

            @media (max-width: 767px) {
                width: 100%;
                border-radius: 8px;
                margin-top: 30px;
                gap: 10px;
            }

            img,picture {
                object-fit: contain;
            }

            .other-booking + .other-booking {
                margin-left: 22px;
                @media (max-width: 767px) {
                    margin: 0;
                }
            }

            .txt {
                width: 100%;

                @media (max-width: 767px) {
                    margin-bottom: 20px;
                }
            }

            .oyado {
                width: 186px;
                flex-basis: 186px;

                @media (max-width: 767px) {
                    width: 140px;
                    flex-basis: 140px;
                }
            }
            .airbnb {
                width: 131px;
                flex-basis: 131px;

                @media (max-width: 767px) {
                    width: 110px;
                    flex-basis: 110px;
                }
            }
            .travel {
                width: 88px;
                flex-basis: 88px;
            }
            .agoda {
                width: 77px;
                flex-basis: 77px;
            }
        }
    }
}

.other-rooms {
    .txt {
        margin-top: 50px;
        width: 74%;

        @media (max-width: 767px) {
            width: 100%;
        }
    }
    .room-name {
        &::after {
            background: url(../img/assets/arrow07.png) no-repeat center center / contain !important;
        }
    }
}


.room-page .facility-info {
    padding: 137px 0;
    background-color: var(--design-color01);

    @media (max-width: 767px) {
        padding: 40px 0 80px;
    }

    .info-container {
        width: min(95%, 1180px);
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 107px;

        @media (max-width: 767px) {
            width: 88%;
            flex-direction: column;
            gap: 63px;
        }
    }

    .img-wrap {
        width: 32%;
        margin-top: 53px;

        @media (max-width: 767px) {
            width: 87%;
            margin: 0 auto;
        }

        .img {
            overflow: hidden;
            border-radius: 20px;
            border: 1px solid #606060;
            margin-bottom: 20px;

            @media (max-width: 767px) {
                margin-bottom: 0;
            }
        }

        .note {
            /* 後で消す */
            display: none !important;
            font-size: 16px;
            color: var(--blue);
            letter-spacing: 0.1em;
            margin-top: 1.5em;

            @media (max-width: 767px) {
                font-size: 14px;
            }
        }
    }

    .text-box {
        width: 58%;

        @media (max-width: 767px) {
            width: 100%;
        }

        .tit {
            font-size: 34px;
            color: var(--blue);
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 38px;

            @media (max-width: 767px) {
                font-size: 27px;
                margin-bottom: 10px;
            }
        }

        .inner {
            padding: 57px 038px 20px;
            border-top: 1px solid var(--blue);

            @media (max-width: 767px) {
                padding: 48px 0 35px;
            }

            .info {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                padding-left: 30px;

                &+& {
                    margin-top: 26px;
                }

                @media (max-width: 767px) {
                    padding-left: 10px;
                }

                dt {
                    width: 30%;
                    font-size: 20px;
                    font-weight: 600;
                    letter-spacing: 0.06em;
                    color: var(--blue);

                    @media (max-width: 767px) {
                        width: 100%;
                        font-size: 17px;
                    }
                }

                dd {
                    width: 70%;
                    font-size: 20px;
                    color: var(--blue);

                    @media (max-width: 767px) {
                        width: 100%;
                        font-size: 19px;
                        margin-left: 0.3em;
                    }
                }
            }
        }

        .attention-wrap {
            margin-top: 40px;
            width: 434px;
            background-color: #efefef;
            padding: 36px 0 36px 45px;

            @media (max-width: 767px) {
                width: 100%;
                padding: 26px 0 26px 20px;
                margin-top: 20px;
            }

            li {
                display: flex;
                align-items: center;
                font-size: 17px;

                @media (max-width: 767px) {
                    font-size: 14px;
                }

                &+& {
                    margin-top: 10px;
                }

                img {
                    width: 40px;
                    margin-right: 20px;

                    @media (max-width: 767px) {
                        width: 30px;
                        margin-right: 10px;
                    }
                }
            }
        }
    }
}

.room-page .map {
    height: 300px;
}



.room-page .other-rooms {
    padding: 90px 0 134px;
    background-color: #fff;

    /* 後で消す */
    display: none !important;

    &.type02 {
        display: block !important;
    }

    @media (max-width: 767px) {
        background-color: transparent;
    }

    .inner {
        width: min(90%, 1347px);
        margin: 0 auto;

        .tit {
            font-size: 34px;
            letter-spacing: 0.1em;
            color: var(--blue);
            font-weight: 600;

            @media (max-width: 767px) {
                font-size: 31px;
            }
        }

        .txt {
            font-size: 16px;
            letter-spacing: 0.12em;
            line-height: 1.875em;
            font-weight: 600;

            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 1.6em;
                margin-top: 20px;
            }
        }

        .other-room-list {
            margin-top: 88px;
            display: flex;
            align-items: flex-start;
            gap: 40px;
            cursor: grab;

            &:active {
                cursor: grabbing;
            }

            @media (max-width: 1200px) {
                gap: 20px;
            }
            @media (max-width: 767px) {
                width: 95%;
                margin-top: 50px;
                overflow-x: auto;
                gap: 0;
            }

            .room-index-container {
                width: calc(100% / 3 );
                padding-bottom: 30px;
                margin-bottom: 15px;

                @media (max-width: 767px) {
                    flex: 0 0 min(70vw, 280px);
                    margin: 0 10px;
                    padding-bottom: 15px;
                }

                .img {
                    border-radius: 15px;
                    overflow: hidden;
                    border: 1px solid #606060;
                    aspect-ratio: 83 / 55;

                    @media (max-width: 767px) {
                        border-radius: 8px;
                    }

                    img {
                        transition: all 0.6s;
                        transform-origin: center;
                    }

                }

                .tag-list {
                    margin-top: 30px;
                    padding-left: 15px;

                    @media (max-width: 1200px) {
                        margin-top: 15px;
                        padding-left: 10px;
                    }

                    .tag {
                        padding: 5px;
                        border: 1px solid #000;
                        font-size: clamp(0.563rem, 0.25rem + 0.52vw, 0.875rem);
                        transition: all 0.3s;

                        &+& {
                            margin-left: 10px;
                        }

                        @media (max-width: 767px) {
                            padding: 3px;
                            font-size: 11px;

                            &+& {
                                margin-left: 5px;
                            }
                        }
                    }
                }

                .room-name {
                    margin-top: 16px;
                    padding-left: 15px;
                    font-size: clamp(1.063rem, 0.983rem + 0.33vw, 1.375rem);
                    letter-spacing: 0.1em;
                    display: flex;
                    align-items: center;
                    transition: all 0.3s;

                    &::after {
                        content: "";
                        display: block;
                        background: url(../img/assets/arrow02.png) no-repeat center center / contain;
                        width: clamp(1.875rem, 0.625rem + 2.08vw, 3.125rem);
                        flex: 0 0 clamp(1.875rem, 0.625rem + 2.08vw, 3.125rem);
                        aspect-ratio: 1 / 1;
                        margin-left: 38px;
                        transition: all 0.3s;
                    }

                    @media (max-width: 1200px) {
                        &::after {
                            margin-left: 15px;
                        }
                    }
                    @media (max-width: 767px) {
                        padding-left: 0;
                        font-size: 16px;
                        letter-spacing: 0.06em;
                        justify-content: space-between;

                        &::after {
                            margin-left: 0;
                        }
                    }
                }

                &:hover {
                    opacity: 1;

                    .img img {
                        transform: scale(1.05);
                    }

                    .tag {
                        border-color: var(--blue);
                        color: var(--blue);
                    }

                    .room-name {
                        color: var(--blue);
                    }
                }
            }
        }
    }
}

.scroll-hint-icon {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}



/*========================================================
    設備・アメニティ
==========================================================*/
/* .amenity-page {
    background-image: var(--cell-bg);
    background-size: var(--cell-size) var(--cell-size);
    background-position: center;
    position: relative;
} */
.amenity-page .amenities-container {
    padding: 40px 0 370px 0;

    @media (max-width: 767px) {
        padding-bottom: 240px;
    }

    >.facility-name {
        width: fit-content;
        margin: 0 auto;
        padding: 20px 63px;
        border: 1px solid var(--blue);
        font-size: clamp(1.5rem, 1.452rem + 0.2vw, 1.688rem);
        color: var(--blue);
        text-align: center;
        letter-spacing: 0.01em;
        font-weight: 500;
        line-height: 1.37em;
    }
    >.txt {
        text-align: center;
        font-size: clamp(1.125rem, 1.109rem + 0.07vw, 1.188rem);
        color: var(--blue);
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 2em;
        margin-top: 50px;


        @media (max-width: 350px) {
            font-size: 16px;
        }
    }
    .inner {
        width: min(90%, 1530px);
        margin: 0 auto;
        padding-top: 125px;;
        
        @media (max-width: 1612px) {
            width: 1210px;
        }
        @media (max-width: 1440px) {
            width: min(90%, 1100px);
        }
        @media (max-width: 959px) {
            width: min(90%, 695px);
        }
        @media (max-width: 767px) {
            max-width: 660px;
            padding-top: 56px;
        }
    }
}

.amenity-page .amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding-bottom: 176px;

    @media (max-width: 959px) {
        gap: 30px;
    }
    @media (max-width: 767px) {
        gap: 20px;
        padding-bottom: 65px;
    }
    @media (max-width: 350px) {
        gap: 15px;
    }

    .amenity-item {
        min-width: 150px;
        flex-basis: 12.9vw;
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 20px;
            left: 20px;
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: var(--yellow);
            border-radius: 15px;
            z-index: 1;
        }

        @media (max-width: 959px) {
            &::before {
                top: 10px;
                left: 10px;
            }
        }
        @media (max-width: 767px) {
            min-width: 83px;
            flex-basis: min(26vw, 150px);

            &::before {
                border-radius: 6.8px;
            }
        }

        .img {
            aspect-ratio: 1 / 1;
            border-radius: 15px;
            border: 1px solid #606060;
            overflow: hidden;
            position: relative;
            z-index: 2;

            @media (max-width: 767px) {
                border-radius: 6.8px;
            }
        }
        .name {
            margin-top: 45px;
            font-size: clamp(1.125rem, 1rem + 0.26vw, 1.313rem);
            text-align: center;
            position: relative;
            z-index: 2;
            margin-left: 1em;

            @media (max-width: 960px) {
                margin-top: 30px;
            }
            @media (max-width: 767px) {
                font-size: clamp(0.875rem, 0.616rem + 1.06vw, 1.125rem);
                margin-top: 16px;
                margin-left: 0;
            }
            @media (max-width: 350px) {
                font-size: 12px;
                white-space: nowrap;
            }
        }
    }
}

.amenity-page .about-kitchen {
    width: min(80%, 1344px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 50px 60px 50px 70px;
    border: 1px solid #606060;

    @media (max-width: 959px) {
        flex-direction: column;
        gap: 40px;
    }
    @media (max-width: 767px) {
        width: 100%;
        padding: 38px 20px 43px;
        gap: 25px;
    }

    .tit {
        font-size: clamp(1.188rem, 1.156rem + 0.13vw, 1.313rem);
        font-weight: 400;
        color: #606060;
        white-space: nowrap;

        @media (max-width: 959px) {
            text-align: center;
            width: 100%;
        }
    }
    .txt {
        padding-left: 50px;
        font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
        line-height: 1.625em;
        color: #606060;

        @media (max-width: 959px) {
            padding-left: 0;
        }
    }
}

@media (max-width: 767px) {
    .amenity-item.hidden {
        display: none;
    }
    .see-more, .see-less {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        color: #0077cc;
        font-weight: bold;
        cursor: pointer;
    }
}

.amenity-page .baby-container {
    padding: 120px 0 220px;
    background-color: var(--design-color01);
    position: relative;

    &::before {
        position: absolute;
        content: "";
        bottom: 100%;
        left: 0;
        width: 100vw;
        aspect-ratio: 1757 / 167;
        background: url(../img/amenity/jpg_png/baby_Bg.png) no-repeat left top;
        background-size: 100% 100%;
    }
    &::after {
        position: absolute;
        content: "";
        bottom: 107px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 30px;
        background: url(../img/amenity/jpg_png/baby_ele02.png) no-repeat center center / contain;
    }

    @media (max-width: 767px) {
        padding: 0 0 260px;

        &::before {
            aspect-ratio: 65 / 24;
            background: url(../img/amenity/jpg_png/baby_Bg_sp.png) no-repeat left top;
            background-size: 100% 100%;
            /* max-height: 144px; */
        }
        &::after {
            display: none;
        }
    }

    ._Bg01 {
        position: absolute;
        content: "";
        top:55px;
        left: 17vw;
        width: 266px;

        @media (max-width: 959px) {
            left: 0;
        }
        @media (max-width: 767px) {
            top: -165px;
            left: 50%;
            transform: translateX(-50%);
            width: min(87%, 480px);
        }
    }
    ._Bg03 {
        position: absolute;
        top: 0;
        right: 16vw;
        width: 303px;

        @media (max-width: 959px) {
            right: 10px;
        }
        @media (max-width: 767px) {
            top: auto;
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            bottom: 100px;
            width: min(81%, 510px);
        }
    }

    .tit {
        font-family: var(--font-en-gothic);
        text-align: center;
        font-size: 39px;
        font-weight: 200;
    }
    .txt {
        width: 96%;
        margin: 55px auto 0;
        font-size: 16px;
        color: #606060;
        letter-spacing: 0.12em;
        line-height: 1.785em;

        @media (max-width: 767px) {
            width: 100%;
            margin-top: 37px;
        }
    }

    .inner {
        width: min(90%, 960px);
        margin: 0 auto;
        position: relative;
    }

    .baby-goods {
        padding-top: 83px;
        width: 91%;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 40px;

        @media (max-width: 959px) {
            gap: 10px;
        }
        @media (max-width: 767px) {
            width: min(91%, 470px);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 45px 24px;
            flex-wrap: wrap;
        }
        @media (max-width: 350px) {
            width: 100%;
            gap: 45px 12px;
        }

        .baby-item {
            flex-grow: 1;

            .img {
                width: 91%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
            .name {
                font-size: clamp(1.125rem, 1rem + 0.26vw, 1.313rem);
                text-align: center;
                color: #606060;
                margin-top: 10px;

                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }
        }
    }

    .baby-goods.nihongi {
        align-items: normal;
        width: min(100%, 873px);

        @media (max-width: 767px) {
            display: flex;
            flex-direction: column;
        }

        .block {
            padding: 20px;
            border-radius: 20px;
            background-color: #fff;
            @media (max-width: 767px) {
                &:first-of-type .baby-item .img {
                    width: 45%;
                    margin: 0 auto;
                }
            }
    
            .typename {
                text-align: center;
                font-size: 21px;
                font-weight: 500;
                color: #e69c37;
                margin-bottom: 20px;
            }
    
            .block__inner {
                display: flex;
                align-items: flex-start;
                gap: 10px;

                @media (max-width: 767px) {
                    flex-wrap: wrap;
                    justify-content: space-between;

                    .baby-item {
                        width: 45%;
                        flex-grow: 0;
                    }
                }
            }
        }
    }
}

.amenity-page .trash-container {
    padding: 103px 0 87px;
    background-color: #93b0be;

    @media (max-width: 767px) {
        padding-bottom: 108px;
    }

    .inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(80%, 1000px);
        margin: 0 auto;
        gap: 127px;

        @media (max-width: 959px) {
            gap: 20px;
        }
        @media (max-width: 767px) {
            width: 100%;
            flex-direction: column;
            gap: 70px;
        }

        .img {
            width: 46%;
            overflow: hidden;

            @media (max-width: 767px) {
                width: 70%;
            }
        }

        .text-box {
            width: 54%;

            @media (max-width: 767px) {
                width: 100%;
            }

            .txt {
                font-size: 24px;
                text-align: center;
                line-height: 1.6em;
                color: var(--blue);

                @media (max-width: 959px) {
                    font-size: clamp(1.125rem, 0.125rem + 2.08vw, 1.375rem);
                }
                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }
            .icon-wrap {
                margin-top: 35px;
                display: flex;
                align-items: flex-start;
                justify-content: center;
                gap: 64px;

                @media (max-width: 959px) {
                    gap: 25px;
                }

                .icon {
                    width: 130px;

                    @media (max-width: 959px) {
                        width: clamp(5.625rem, -4.375rem + 20.83vw, 8.125rem);
                    }
                    @media (max-width: 767px) {
                        width: 110px;
                    }

                    .img {
                        width: 69%;
                        margin: 0 auto;
                    }
                    .note {
                        font-size: 18px;
                        text-align: center;
                        color: var(--blue);
                        line-height: 1.27em;
                        margin-top: 0.5em;

                        @media (max-width: 959px) {
                            font-size: clamp(0.75rem, -0.75rem + 3.13vw, 1.125rem);
                        }
                        @media (max-width: 767px) {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}







/*========================================================
    チェックイン
==========================================================*/
.check-in-page {
    background-position: top center;

    .explanation {
        width: min(80%, 1632px);
        margin: 78px auto 147px;
        padding: 128px 0 113px;
        border-radius: 40px;
        background-color: var(--design-color01);

        @media (max-width: 1220px) {
            width: 85%;
            padding: 50px 0 92px;
        }
        @media (max-width: 767px) {
            margin: 50px auto 90px;
            width: 94.4%;
            padding: 0;
            border-radius: 0;
            background-color: transparent;
        }

        >.inner {
            width: min(86%, 1112px);
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            @media (max-width: 767px) {
                width: 89.6%;
                padding: 32px 0 74px;
                flex-direction: column-reverse;
                gap: 40px;
                background-color: var(--design-color01);
            }

            .text-box {
                width: 47.5%;

                @media (max-width: 767px) {
                    width: 86.8%;
                    margin: 0 auto;
                }

                .title {
                    font-size: clamp(1.375rem, 0.938rem + 0.73vw, 1.813rem);
                    line-height: 1.8em;

                    @media (max-width: 959px) {
                        font-size: clamp(1.125rem, 0.375rem + 1.56vw, 1.313rem);
                    }
                    @media (max-width: 767px) {
                        font-size: 19px;
                        text-align: center;
                        line-height: 1.47em;
                    }
                }
                .txt {
                    font-size: clamp(0.875rem, 0.75rem + 0.21vw, 1rem);
                    line-height: 1.785em;
                    letter-spacing: 0.12em;
                    margin-top: 37px;

                    @media (max-width: 1200px) {
                        margin-top: 15px;
                    }
                    @media (max-width: 767px) {
                        margin-top: 44px;
                        font-size: 16px;
                    }
                }
                .time-img {
                    width: 95%;
                    margin: 40px auto 0;

                    @media (max-width: 1440px) {
                        margin-top: 20px;
                    }
                    @media (max-width: 767px) {
                        width: 100%;
                    }
                }
            }
            .img {
                width: 40.5%;
                border-radius: 15px;
                border: 1px solid #606060;
                overflow: hidden;
                margin-top: -206px;

                @media (max-width: 1200px) {
                    width: 44%;
                    margin-top: -100px;
                }
                @media (max-width: 767px) {
                    width: 68.3%;
                    margin: 0 auto;
                }
            }
        }

        .setup-container {
            margin: 78px auto 0;

            @media (max-width: 767px) {
                margin-top: -33px;
            }

            .title {
                width: fit-content;
                height: 83px;
                padding: 0 114px;
                border: 1.5px solid var(--blue);
                background-color: #fff;
                margin: 0 auto -41.5px;
                display: flex;
                align-items: center;
                text-align: center;
                font-family: var(--font-ja-gothic01);
                font-size: 28px;
                letter-spacing: 0.12em;
                color: var(--blue);
                position: relative;
                z-index: 3;

                @media (max-width: 1440px) {
                    padding: 0 65px;
                }
                @media (max-width: 959px) {
                    font-size: 20px;
                    height: 66px;
                }
                @media (max-width: 767px) {
                    padding: 0 25px;
                }
                @media (max-width: 350px) {
                    letter-spacing: 0;
                    padding: 0 20px;
                }
            }

            .inner {
                width: 82%;
                margin: 0 auto;
                padding: 115px 0 130px;
                background-color: #fff;
                border: 1.5px solid var(--blue);
                display: flex;
                align-items: flex-start;
                justify-content: center;
                gap: 153px;
                position: relative;
                z-index: 1;

                @media (max-width: 1200px) {
                    width: 93%;
                    padding: 95px 0 80px;
                    gap: 55px;
                }
                @media (max-width: 959px) {
                    gap: 40px;
                }
                @media (max-width: 767px) {
                    width: 100%;
                    flex-direction: column;
                    gap: 0;
                    padding: 82px 0;
                }

                .setup {
                    width: 38%;

                    @media (max-width: 1200px) {
                        width: 40%;
                    }
                    @media (max-width: 959px) {
                        width: 43%;
                    }
                    @media (max-width: 767px) {
                        width: 90%;
                        margin: 0 auto;
                    }

                    .icon {
                        width: 100%;

                        @media (max-width: 767px) {
                            width: 97%;
                            margin: 0 auto;
                        }
                    }
                    .text-box {
                        width: 86%;
                        margin: 43px auto 0;

                        @media (max-width: 1220px) {
                            width: 100%;
                        }

                        .tit {
                            font-size: clamp(1.125rem, 0.75rem + 0.63vw, 1.5rem);
                            color: var(--blue);
                            letter-spacing: 0.12em;
                            line-height: 1.625em;
                            text-align: center;
                            padding-bottom: 15px;
                            border-bottom: 1px solid var(--blue);

                            @media (max-width: 959px) {
                                font-size: 16px;
                            }
                            @media (max-width: 767px) {
                                font-size: 18px;
                            }
                            @media (max-width: 350px) {
                                letter-spacing: 0;
                            }
                        }
                        .txt {
                            font-size: 17px;
                            letter-spacing: 0.12em;
                            line-height: 1.8em;
                            padding-top: 25px;

                            @media (max-width: 1200px) {
                                font-size: 15px;
                            }
                            @media (max-width: 959px) {
                                font-size: 13px;
                            }
                            @media (max-width: 767px) {
                                width: 95%;
                                margin: 0 auto;
                                font-size: 14px;
                            }
                        }
                    }
                }

                .arrow {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: clamp(2.5rem, 1.75rem + 1.25vw, 3.25rem);
                    transform-origin: center;

                    @media (max-width: 959px) {
                        width: 30px;
                    }
                    @media (max-width: 767px) {
                        width: 52px;
                        transform: rotate(90deg);
                        position: static;
                        margin: 48px auto 37px;
                    }
                }
            }
        }
    }

    .flow-theDay {
        width: 70%;
        margin: 147px auto 175px;
        position: relative;

        &::before,
        &::after {
            position: absolute;
            content: "";
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background-image: radial-gradient(circle, var(--blue) 2px, transparent 2px), radial-gradient(circle, var(--blue) 2px, transparent 2px), radial-gradient(circle, var(--blue) 2px, transparent 2px), radial-gradient(circle, var(--blue) 2px, transparent 2px);
            background-position: left top, right top, left bottom, left top;
            background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
            background-size: 13px 3px, 3px 13px, 13px 3px, 3px 13px;
            z-index: 1;
        }

        &::before {
            top: 41.5px;
        }
        &::after {
            bottom: 0;
        }

        @media (max-width: 1220px) {
            width: 85%;
        }
        @media (max-width: 959px) {
            margin-bottom: 100px;

            &::before {
                top: 32.5px;
            }
        }
        @media (max-width: 767px) {
            width: 93%;
            margin: 0 auto;
            padding: 33px 0 67px;

            &::before {
                top: 0;
            }
        }

        .title {
            width: fit-content;
            height: 83px;
            padding: 0 114px;
            border: 1.5px solid var(--blue);
            background-color: #fff;
            margin: 0 auto;
            display: flex;
            align-items: center;
            text-align: center;
            font-family: var(--font-ja-gothic01);
            font-size: 28px;
            letter-spacing: 0.12em;
            color: var(--blue);
            position: relative;
            z-index: 2;

            @media (max-width: 1440px) {
                padding: 0 65px;
            }
            @media (max-width: 959px) {
                font-size: 20px;
                height: 66px;
            }
            @media (max-width: 767px) {
                padding: 0 25px;
            }
            @media (max-width: 350px) {
                letter-spacing: 0;
                padding: 0 20px;
            }
        }

        .flow-list {
            width: 91%;
            margin: 0 auto;
            padding: 78px 0 83px;

            @media (max-width: 767px) {
                width: 95.7%;
                padding: 33px 0 0 0;
            }

            .flow {
                height: clamp(21.875rem, 12.5rem + 15.63vw, 31.25rem);
                display: flex;
                align-items: center;
                background-color: var(--design-color01);
                border-radius: 15px;

                &+& {
                    margin-top: 88px;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: -88px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 47px;
                        height: 88px;
                        background-color: #fcfaca;
                    }

                    @media (max-width: 959px) {
                        margin-top: 45px;

                        &::before {
                            top: -45px;
                            height: 45px;
                        }
                    }
                    @media (max-width: 767px) {
                        margin-top: 68px;

                        &::before {
                            top: -68px;
                            height: 68px;
                            width: 35px;
                        }
                    }
                }

                @media (max-width: 959px) {
                    height: 300px;
                }
                @media (max-width: 767px) {
                    flex-direction: column;
                    height: auto;
                    padding-bottom: 66px;
                    border-radius: 10px;
                }

                .num {
                    width: 121px;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    padding: 0 25px;
                    background-color: #f4d80d;
                    position: relative;
                    border-radius: 15px 0 0 15px;

                    &::after {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 99%;
                        width: 20px;
                        height: 21px;
                        background-color: #f4d80d;
                        clip-path: polygon(0 0, 0% 100%, 100% 50%);
                    }

                    @media (max-width: 1200px) {
                        width: 85px;
                        padding: 0 15px;
                    }
                    @media (max-width: 959px) {
                        width: 60px;
                        padding: 0 8px;
                    }
                    @media (max-width: 767px) {
                        order: 1;
                        width: 100%;
                        height: 104px;
                        padding: 24px 0;
                        border-radius: 10px 10px 0 0;

                        &::after {
                            top: 99%;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 18px;
                            height: 15px;
                            clip-path: polygon(0 0, 50% 100%, 100% 0);
                        }
                    }

                    img {
                        object-fit: contain;
                    }
                }
                .text-box {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    width: 39%;
                    margin: 0 87px 0 81px;

                    @media (max-width: 1200px) {
                        margin: 0 27px 0 51px;
                    }
                    @media (max-width: 767px) {
                        order: 3;
                        width: 95%;
                        margin: 0 auto;
                        padding-top: 44px;
                    }

                    .tit {
                        font-size: clamp(1.313rem, 1rem + 0.52vw, 1.625rem);
                        letter-spacing: 0.12em;
                        padding-bottom: 23px;
                        color: var(--blue);

                        @media (min-width: 768px) and (max-width: 1200px) {
                            br:first-of-type {
                                display: none;
                            }
                        }
                        @media (max-width: 959px) {
                            font-size: 18px;
                        }
                        @media (max-width: 767px) {
                            letter-spacing: 0.1em;
                            text-align: center;
                        }
                        @media (max-width: 350px) {
                            letter-spacing: 0;
                        }
                    }
                    .txt {
                        font-size: clamp(0.938rem, 0.813rem + 0.21vw, 1.063rem);
                        letter-spacing: 0.12em;
                        line-height: 1.8em;
                        color: var(--blue);
                        width: 92%;
                        padding-top: 37px;
                        border-top: 1px solid var(--blue);

                        @media (max-width: 959px) {
                            padding-top: 20px;
                            font-size: 14px;
                        }
                        @media (max-width: 767px) {
                            width: 87%;
                            margin: 0 auto;
                        }
                    }
                }

                .img {
                    @media (max-width: 767px) {
                        order: 2;
                        margin-top: 18px;
                    }
                }
            }
            .flow01 .img {
                width: 25%;

                @media (max-width: 1200px) {
                    width: 30%;
                }
                @media (max-width: 767px) {
                    width: 65.5%;
                    transform: translateX(-20px);
                }
            }
            .flow02 .img {
                width: 41.9%;

                @media (max-width: 767px) {
                    width: 100.9%;
                    margin: -30px auto 0;
                    position: relative;
                    z-index: 2;
                }
            }
            .flow03 .img {
                width: 46%;
                margin-right: -36px;

                @media (max-width: 767px) {
                    width: 90.5%;
                    margin: 25px auto 0;
                }
            }
        }
    }
}


.FAQ {
    padding: 0 0 305px;

    @media (max-width: 959px) {
        padding: 0 0 195px;
    }
    @media (max-width: 767px) {
        padding: 80px 0 170px;
    }

    .faq-top {
        width: max(22%);
        border-radius: 14px 0 0 14px;
        overflow: hidden;
        border-top: 1px solid #606060;
        border-left: 1px solid #606060;
        border-bottom: 1px solid #606060;
        margin: 0 0 0 auto;
    }

    .title {
        margin-top: -32px;
        font-family: var(--font-faq);
        font-size: clamp(4.563rem, 3.313rem + 2.08vw, 5.813rem);
        font-weight: 100;
        text-align: center;
        line-height: 1;

        @media (max-width: 959px) {
            margin-top: 0;
        }
        @media (max-width: 767px) {
            font-size: 53px;
        }

        .ja {
            display: block;
            font-family: var(--font-ja-gothic01);
            font-size: clamp(1.375rem, 1rem + 0.63vw, 1.75rem);
            font-weight: 400;
            letter-spacing: 0.14em;
            margin-top: 15px;

            @media (max-width: 767px) {
                font-size: 16px;
            }
        }
    }

    .inner {
        padding-top: 70px;
        width: min(75%, 1015px);
        margin: 0 auto;
    
        @media (max-width: 767px) {
            width: 89%;
            padding-top: 60px;
        }
    
        .FAQ__item {
            border-radius: 5px;
            background-color: var(--blue);
    
            &+& {
                margin-top: 32.5px;
            }
        }
    
        .question__wrap {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 21px;
            font-weight: 400;
            color: #fff;
            padding: 19px 23px 23px 33px;
            cursor: pointer;
            position: relative;
    
            @media (max-width: 959px) {
                font-size: 18px;
            }
            @media (max-width: 767px) {
                align-items: flex-start;
                padding: 20px 14px 25px 15px;
                font-size: 17px;
                gap: 10px;
            }
            @media (max-width: 350px) {
                font-size: 14px;
            }
    
            .icon {
                width: 34px;
                flex: 0 0 34px;
                margin: 6px 0 auto 0;

    
                @media (max-width: 959px) {
                    width: 23px;
                    flex: 0 0 23px;
                }
                @media (max-width: 767px) {
                    margin-top: 0.3em;
                    flex: 0 0 20px;
                }
            }
            .toggle {
                width: 20px;
                aspect-ratio: 4 / 3;
                margin: 0 0 0 auto;
                transition: all 0.5s ease .1s;
                transform-origin: center;

                @media (max-width: 959px) {
                    width: 15px;
                }
                @media (max-width: 767px) {
                    position: absolute;
                    right: 19px;
                    bottom: 30px;
                    width: 14px;
                }
            }

            &.active .toggle {
                transform: rotate(-180deg);
                transition: all 0.5s ease .2s;
            }
        }
    
        .answer__wrap {
            padding: 0 23px 23px;
            display: none;
    
            @media (max-width: 767px) {
                padding: 0 10px 18px;
            }

            .answer__wrap__inner {
                padding: 28px 29px 37px 20px;
                border-radius: 5px;
                background-color: #f3f6f8;

                @media (max-width: 767px) {
                    padding: 28px 15px 36px 15px;
                }

                .answer__txt {
                    font-size: 17px;
                    font-weight: 400;
                    line-height: 1.7em;

                    @media (max-width: 767px) {
                        font-size: 16px;

                        &::before {
                            content: "";
                            display: block;
                            width: 20px;
                            height: 17px;
                            background: url(../img/check-in/jpg_png/answer.png) no-repeat center center / contain;
                            margin-bottom: 0.5em;
                        }
                    }
                    @media (max-width: 350px) {
                        font-size: 15px;
                    }
                }

                .luggage {
                    display: block;
                    width: fit-content;
                    margin-top: 30px;
                    padding: 10px 20px ;
                    border-radius: 100vh;
                    background-color: var(--blue);
                    color: #fff;

                    @media (max-width: 767px) {
                        font-size: 12px;
                    }
                }
            }
        }
    
    }
}




/*========================================================
    お問い合わせ
==========================================================*/
.contact-page {
    .inner {
        padding: 110px 0 246px;
        width: min(85%, 800px);
        margin: 0 auto;

        @media (max-width: 767px) {
            padding: 80px 0 110px;
        }
    }
    .Form-Item {

        /* &:has(.wpcf7-form-control:focus) {
            .Form-Item-Label {
                font-weight: 700;
            }
        } */
        &+& {
            margin-top: 67px;

            @media (max-width: 767px) {
                margin-top: 40px;
            }
        }
    }
    .Form-Item-Label {
        padding-left: 1em;
        font-size: clamp(0.875rem, 0.795rem + 0.33vw, 1.188rem);
        color: var(--blue);
        letter-spacing: 0.08em;

    }
    .wpcf7-form-control-wrap {
        display: block;
        margin-top: 10px;

        .wpcf7-form-control {
            border-radius: 20px 20px 0 0;
            border: none;
            border-bottom: 2px solid var(--blue);
            width: 100%;
            height: 3.4em;
            background-color: var(--design-color01);
            padding: 0 20px;
            transition: all 0.15s;

            &:focus {
                outline: none;
                border-bottom-color: #00aedd;
                box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
            }
            @media (max-width: 767px) {
                border-radius: 10px 10px 0 0;
            }
        }
        .wpcf7-textarea {
            padding: 20px;
            height: 380px;

            @media (max-width: 767px) {
                height: 260px;
            }
        }
    }
    .button-wrap {
        position: relative;
        width: 315px;
        height: 83px;
        margin: 115px auto 0;

        &::after {
            position: absolute;
            content: "";
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            width: 30px;
            aspect-ratio: 1 / 1;
            background: url(../img/assets/arrow01.png) no-repeat center center / contain;
        }

        @media (max-width: 767px) {
            margin-top: 80px;
            width: 180px;
            height: 45px;

            &::after {
                right: 15px;
                width: 20px;
            }
        }

        .wpcf7-submit {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 100vh;
            background-color: var(--blue);
            font-size: clamp(1.063rem, 0.999rem + 0.26vw, 1.313rem);
            color: #fff;
            font-weight: 400;

            &:hover {
                cursor: pointer;
            }
        }
    }
}


.company-page .company-container {
    padding: 0 0 305px;

    @media (max-width: 767px) {
        padding: 80px 0 170px;
        flex-direction: column;
    }

    .inner {
        width: min(90%, 1000px);
        margin: 0 auto;
    }
    dl {
        width: 100%;
        display: flex;
        align-items: flex-start;
        padding: 34px 20px;
        border-bottom: 1px solid var(--blue);

        &:first-of-type {
            border-top: 1px solid var(--blue);
        }

        @media (max-width: 767px) {
            padding: 18px 5px;
        }

        dt {
            width: 24%;
            color: var(--blue);
            font-size: clamp(0.813rem, 0.733rem + 0.33vw, 1.125rem);
            font-weight: 500;
            letter-spacing: 0.1em;

            @media (max-width: 767px) {
                width: 32%;
            }
        }
        dd {
            width: 76%;
            font-size: clamp(0.813rem, 0.733rem + 0.33vw, 1.125rem);
            letter-spacing: 0.1em;

            @media (max-width: 767px) {
                width: 68%;
            }
        }
    }
}



/*========================================================
    朝食プラン
==========================================================*/
.BK-container {
    position: relative;

    .logo {
        position: absolute;
        top: 0;
        left: 0;
        width: clamp(22.25rem, 17.208rem + 10.5vw, 29.813rem);
        padding: 28px 56px 35px 70px;
        background-color: #000;

        @media (max-width: 959px) {
            width: 275px;
            padding: 18px 30px 20px 39px;
        }
        @media (max-width: 360px) {
            width: 225px;
            padding: 18px 26px 20px 24px;
        }
    }

    .link_sp {
        position: fixed;
        top: 10px;
        right: 14px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid #fff;
        font-family: var(--font-maru);
        font-size: 21px;
        background-color: #4bd98f;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 990;

        @media (max-width: 360px) {
            right: 9px;
        }

        .en {
            font-size: 15px;
            color: #fff;
        }
    }
}

.BK-container .top {
    padding: 64px 0 66px;
    display: flex;
    gap: 90px;
    align-items: center;
    justify-content: center;

    @media (max-width: 1200px) {
        gap: 30px;
    }
    @media (max-width: 959px) {
        flex-direction: column;
        padding: 112px 0 67px;
        gap: 0;
    }
    @media (max-width: 360px) {
        padding-bottom: 97px;
    }

    .top_L {
        width: min(35%, 528px);

        @media (max-width: 959px) {
            width: min(83.8%, 500px);
        }

        .title {
            display: inline-block;
            max-width: 530px;
            position: relative;

            &::after {
                position: absolute;
                content: "";
                top: 100%;
                left: -130px;
                width: clamp(25rem, 18rem + 11.67vw, 32rem);
                height: 73.4px;
                background: url(../img/morning/jpg_png/waveLine.png) no-repeat center center /contain;
            }

            @media (max-width: 959px) {
                width: 100%;
                margin: 0 auto;

                &::after {
                    left: -90px;
                    width: clamp(19.813rem, 18.099rem + 7.03vw, 22.313rem);
                    height: clamp(3.125rem, 2.054rem + 4.39vw, 4.688rem);
                }
            }
        }
        .txt {
            margin-top: 63px;
            text-align: right;
            font-family: var(--font-ja-gothic02);
            font-size: clamp(1.313rem, 1.217rem + 0.39vw, 1.688rem);
            letter-spacing: 0.06em;

            @media (max-width: 360px) {
                font-size: 19px;
            }
        }
        .price {
            text-align: right;
            font-family: var(--font-maru);
            font-size: clamp(2.938rem, 2.826rem + 0.46vw, 3.375rem);

            .yen {
                font-family: var(--font-ja-gothic02);
                font-size: clamp(1.5rem, 1.436rem + 0.26vw, 1.75rem);
                margin: 0 5px 0 7px;
            }
            .tax {
                font-family: var(--font-ja-gothic02);
                font-size: 24.6px;
            }
        }
    }

    .top_R {
        width: min(52%, 795px);

        @media (max-width: 959px) {
            width: 100%;
            margin-top: 84.7px;
        }

        .food {

            @media (max-width: 959px) {
                margin: 0 auto;
                width: min(89%, 536px);
            }
        }

        .sub-wrap {
            width: 86.8%;
            margin: 35px auto 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 70px;
            padding: 0 25px;
            border-top: 1px solid #6e5948;
            border-bottom: 1px solid #6e5948;

            @media (max-width: 767px) {
                width: min(90.5%, 550px);
                height: 80px;
                padding: 0;
            }

            .img {
                width: 57px;

                @media (max-width: 959px) {
                    width: 71px;
                }
                @media (max-width: 360px) {
                    width: 50px;
                }
            }
            .txt {
                font-family: var(--font-maru);
                font-size: clamp(0.938rem, 0.842rem + 0.39vw, 1.313rem);
                line-height: 1.1875em;
                color: #6e5948;
                margin-left: 1em;

                @media (max-width: 360px) {
                    font-size: 13px;
                }
            }
        }

        .food02 {
            width: min(95%, 500px);
            margin: 27px auto 0;
        }
    }
}

.BK-container .menu-container {
    margin-top: 180px;
    padding-bottom: 139px;
    position: relative;
    background-color: #fdfbd5;

    &::before {
        position: absolute;
        content: "";
        top: -181.5px;
        left: 0;
        width: 100%;
        height: 181.5px;
        background: url(../img/morning/jpg_png/point_Bg.png) no-repeat center bottom / cover;
    }

    @media (max-width: 767px) {
        margin-top: 42px;
        padding-bottom: 75px;

        &::before {
            top: -62px;
            height: 62px;
            background: url(../img/morning/jpg_png/point_Bg_sp.png) no-repeat center bottom / cover;
        }
    }

    .inner {
        width: min(90%, 1227px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: min(88%, 450px);
        }
    }
}
.BK-container .inner .menu-block {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;

    &+& {
        margin-top: 87px;

        @media (max-width: 767px) {
            margin-top: 58px;
        }
    }

    @media (max-width: 767px) {
        flex-direction: column;

        &:nth-of-type(2) {
            flex-direction: column-reverse;
        }
    }

    .img {
        width: 46.5%;
        position: relative;

        @media (max-width: 767px) {
            width: 100%;
        }

        picture {
            border-radius: 20px;
            overflow: hidden;

            @media (max-width: 767px) {
                border-radius: 13px;
            }
        }

        &::after {
            position: absolute;
            content: "";
        }

        &.img01::after {
            background: url(../img/morning/jpg_png/menu01-illust.png) no-repeat center center / contain;
            width: clamp(12.5rem, 8.125rem + 7.29vw, 16.875rem);
            aspect-ratio: 1 / 1;
            top: 56%;
            left: 71%;
        }
        &.img02::after {
            background: url(../img/morning/jpg_png/menu02-illust.png) no-repeat center center / contain;
            top: 54%;
            left: -92px;
            width: clamp(11.25rem, 6.875rem + 7.29vw, 15.625rem);
            aspect-ratio: 1 / 1;
        }

        @media (max-width: 1200px) {
            &.img01::after {
                left: 55%;
            }
            &.img02::after {
                left: 0;
            }
        }
        @media (max-width: 767px) {
            &::after {
                display: none;
            }
        }
    }

    .text-box {
        width: 47.8%;

        @media (max-width: 767px) {
            width: 100%;
            position: relative;
            top: -50px;
            z-index: 2;
        }

        .menu-icon {
            display: block;
            width: 92px;

            @media (max-width: 767px) {
                width: 85px;
                margin-left: -10px;
            }
        }
        .name {
            font-family: var(--font-ja-gothic02);
            font-size: clamp(1.688rem, 1.648rem + 0.16vw, 1.844rem);
            font-weight: 500;
            line-height: 1.38em;
            max-width: 371px;
            text-align: center;
            margin: 0 auto;
            padding-bottom: 30px;
            background-image: radial-gradient(circle, #e50012 2px, transparent 2px);
            background-position: left bottom;
            background-repeat: repeat-x;
            background-size: 8px 4px;

            @media (max-width: 767px) {
                width: 100%;
                padding-bottom: 20px;
            }

            .sub {
                font-family: var(--font-ja-gothic02);
                font-size: 23px;
            }
        }
        .txt {
            max-width: 468px;
            margin: 40px auto 0;
            font-family: var(--font-ja-gothic02);
            font-size: 16.5px;
            line-height: 1.7em;

            @media (max-width: 767px) {
                width: 95%;
                font-size: 16px;
            }
        }
        @media (max-width: 767px) {
            .txt01 {
                position: relative;
    
                &::after {
                    position: absolute;
                    content: "";
                    top: 65%;
                    right: -30px;
                    width: 154px;
                    height: 154px;
                    background: url(../img/morning/jpg_png/menu01-illust.png) no-repeat center center / contain;
                }
                @media (max-width: 360px) {
                    &::after {
                        right: -20px;
                    }
                }
            }
        }
    }
}

.BK-container .inner .link {
    margin: 143px auto 0;
    width: 512px;
    height: 80px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-maru);
    font-size: clamp(1.625rem, 1.577rem + 0.2vw, 1.813rem);
    background-color: #4bd98f;

    @media (max-width: 767px) {
        margin: 20px auto 0;
        width: 100%;
        height: 74px;
    }
    @media (max-width: 360px) {
        font-size: 23px;
    }
}

.BK-container .guide-container {
    width: min(93%, 1160px);
    margin: 113px auto 95px;

    @media (max-width: 1200px) {
        border: none;
        margin: 56px auto 42px;
        width: min(93%, 790px);
    }

    .guide-block {
        border-top: 1px solid #c8c8c8;
        display: flex;
        padding: 60px 30px;

        @media (max-width: 767px) {
            display: block;
            padding: 60px 15px;
        }
    }

    .guide-block .title {
        flex-basis: 268px;
        height: 67px;
        margin-right: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #e50012;
        color: #e50012;
        font-family: var(--font-ja-gothic02);
        font-size: clamp(1.313rem, 1.281rem + 0.13vw, 1.438rem);
        font-weight: 500;

        @media (max-width: 767px) {
            width: 245px;
            height: 61px;
            margin: 0 auto 40px;
        }
    }
    .guide-block .item-wrap {
        width: 60%;
        flex-grow: 1;

        @media (max-width: 767px) {
            width: 100%;
        }

        >.txt {
            font-family: var(--font-ja-gothic02);
            font-size: clamp(1.125rem, 1.1rem + 0.1vw, 1.225rem);
            line-height: 1.7em;
            height: 67px;
            display: flex;
            align-items: center;

            &+& {
                margin-top: 1.3em;
            }

            @media (max-width: 767px) {
                height: auto;
                display: block;
            }
            @media (max-width: 767px) {
                text-align: center;
            }
            @media (max-width: 350px) {
                font-size: 15px;
            }

            .bold {
                font-family: var(--font-ja-gothic02);
                letter-spacing: 0.06em;
                font-weight: 800;
                margin-right: 5px;

                @media (max-width: 767px) {
                    margin-right: 3px;
                }
            }
        }
        .sub {
            margin: 23px auto 0;
            padding: 35px 26px;
            background-color: #e7f4fb;

            @media (max-width: 1200px) {
                width: 100%;
                padding: 30px 25px;
            }

            .txt {
                font-family: var(--font-ja-gothic02);
                font-size: clamp(0.938rem, 0.906rem + 0.13vw, 1.063rem);
                padding-left: 1.2em;
                position: relative;
                text-align: left;

                &::before {
                    position: absolute;
                    content: "※";
                    top: 0;
                    left: 0;
                }

                &+& {
                    margin-top: 1em;
                }
            }
        }
        .is_w360 {
            display: none;

            @media (max-width: 360px) {
                display: block;
            }
        }
    }
    .block01 {
        align-items: center;

        @media (max-width: 767px) {
            padding: 60px 0;
        }
    }
    .block02 {
        border-bottom: 1px solid #c8c8c8;

        .item {

            &+& {
                margin-top: 38px;

                @media (max-width: 767px) {
                    margin-top: 53px;
                }
            }

            .menu-name {
                display: flex;
                align-items: center;
                height: 67px;
                padding-left: 37px;
                font-family: var(--font-ja-gothic02);
                font-size: clamp(1.313rem, 1.281rem + 0.13vw, 1.438rem);
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    width: 1em;
                    height: 1lh;
                    background: url(../img/morning/jpg_png/flower.png) no-repeat center center / contain;
                }

                @media (max-width: 767px) {
                    padding-left: 25px;
                    display: block;
                    height: auto;
                }
            }
            .txt {
                width: fit-content;
                margin: 10px auto 0;
                font-family: var(--font-ja-gothic02);
                font-size: 18px;
                border-bottom: 4px solid #49ade3;
                position: relative;

                @media (max-width: 767px) {
                    font-size: 17px;
                }

                .big {
                    font-family: var(--font-morning);
                    font-size: clamp(2.125rem, 2.077rem + 0.2vw, 2.313rem);
                    margin: 0 8px 0 3px;

                    @media (max-width: 360px) {
                        font-size: 30px;
                    }
                }
            }
            .sub {
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                width: 100%;
                height: 1lh;
                text-align: center;
                white-space: nowrap;
                margin-top: 20px;
                font-family: var(--font-ja-gothic02);
                font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);

                @media (max-width: 767px) {
                    margin-top: 10px;
                }
                @media (max-width: 360px) {
                    font-size: 14px;
                }
            }
        }
    }

    .guide-block .item-inner {

        &+& {
            margin-top: 20px;
        }

        @media (max-width: 767px) {
            margin-top: 20px;
        }
        dt.tit {
            font-family: var(--font-ja-gothic02);
            font-size: 14px;
            padding-left: 1.2em;
            position: relative;
            
            &::before {
                position: absolute;
                content: "■";
                top: 0;
                left: 0;
            }
            
            @media (max-width: 767px) {
                font-weight: bold;
            }
        }
        .list {
            margin-top: 5px;
            font-size: clamp(0.938rem, 0.906rem + 0.13vw, 1.063rem);

            .note {
                color: #606060;
                font-size: 13px;
            }
        }
    }
}

.BK-container .attention {
    width: min(90%, 1090px);
    margin:  0 auto;
    padding: 56px 0 65px;
    border: 2px solid #000;
    margin-bottom: 120px;

    @media (max-width: 767px) {
        padding: 47px 26px 42px;
        margin-bottom: 75px;
    }
    @media (max-width: 360px) {
        width: 95%;
        padding: 38px 15px 35px;
    }

    .title {
        display: block;
        text-align: center;
        font-family: var(--font-maru);
        font-weight: bold;
        font-size: 25px;

        @media (max-width: 767px) {
            font-size: 27px;
        }
        @media (max-width: 360px) {
            font-size: 25px;
        }
    }
    .txt {
        margin-top: 24px;
        font-family: var(--font-maru);
        font-size: clamp(1rem, 0.968rem + 0.13vw, 1.125rem);
        line-height: 1.7em;
        text-align: center;

        @media (max-width: 767px) {
            text-align-last: left;
        }
        @media (max-width: 360px) {
            font-size: 15px;
        }
    }
}















/*========================================================
    予約サイト一覧
==========================================================*/
.booking-container {

    .title {
        text-align: center;
        font-weight: 700;
        font-size: 37px;
        padding-bottom: 0.5em;
        color: var(--blue);
        letter-spacing: 0.1em;
        margin-bottom: 20px;
        position: relative;

        &::before {
            position: absolute;
            content: "";
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 1px;
            background-color: var(--blue);
        }

        @media (max-width: 767px) {
            font-size: clamp(1.5rem, 0.859rem + 2.63vw, 2.125rem);
        }

        .en {
            display: block;
            font-weight: 400;
            font-size: 20px;
            letter-spacing: 0;
            line-height: 1;
        }
    }

    .txt {
        position: relative;
        width: fit-content;
        margin: 0 auto;
        text-align: center;
        font-size: 18px;

        @media (max-width: 767px) {
            font-size: 14px;
        }

        &+& {
            margin-top: 10px;
        }
    }

    .inner {
        width: min(80%, 1000px);
        margin: 40px auto 0;
        display: flex;
        gap: 60px;

        @media (max-width: 959px) {
            margin-top: 30px;
            gap: 40px;
        }
        @media (max-width: 767px) {
            flex-wrap: wrap;
            gap: 10px;
        }

        .booking-other {
            height: 80px;
            max-width: 27%;

            @media (max-width: 767px) {
                height: 50px;
                max-width: 40%;
                margin:  0 auto;
            }

            img,picture {
                width: auto;
                object-fit: contain;
            }
        }
    }
}





