@charset "UTF-8";
@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');

@font-face {
    font-family: "Kosugi";
    src: url("../fonts/Kosugi.ttf") format("truetype");
}


/*========================================================
    変数
==========================================================*/
/* フォント */
:root {
    --font-ja-gothic01: "YuGothM", 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;
}

/* カラー */
: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);
    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);
    }
}

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;
                }
            }
        }
    }
}


.room-page,
.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;
        }
    }

    .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: 13px;
            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;
}

/*========================================================
    ヘッダー
==========================================================*/
#header {
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 20px 9vw;
    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;
            justify-content: right;
            /* gap: 60px; */

            @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: 10px;
                        font-weight: 300;
                    }
                }
            }
        }

        .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: 60px 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 60px;

            >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%);
} */




/*========================================================
    アニメーション
==========================================================*/
.fadein,
.fadein_right,
.fadein_left,
.fadein-list li {
    opacity: 0;

    &.on {
        opacity: 1;
    }
}

.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);
    line-height: 1.69em;
    text-align: center;
    z-index: 3;

    @media (max-width: 1440px) {
        top: 20px;
        left: 90px;
    }

    @media (max-width: 767px) {
        top: 30px;
        right: 23px;
        font-size: 20px;
        text-align: right;
    }

    .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: 140px 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 / 6;
            grid-row: 7;
            margin: 0;
        }

        @media (max-width: 450px) {
            grid-row: 5;
            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-row: 8;
        }

        @media (max-width: 590px) {
            margin-right: 0;
        }

        @media (max-width: 450px) {
            margin: 10px 20px 0 30px;
            grid-column: 6 / 10;
            grid-row: 5;
        }
    }

    .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: 13 / 22;
        }

        @media (max-width: 590px) {
            grid-column: 6 / 10;
        }

        @media (max-width: 450px) {
            grid-column: 6 / 10;
            grid-row: 9 / 14;
            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: 15 / 21;
        }

        @media (max-width: 450px) {
            grid-column: 1 / 5;
            grid-row: 10 / 12;
            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: 31 / 36;
        }

        @media (max-width: 450px) {
            grid-row: 19 / 22;
            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: 21 / 30;
        }

        @media (max-width: 590px) {
            grid-row: 23 / 30;
        }

        @media (max-width: 450px) {
            margin: 0 0 0 20px;
            grid-column: 1 / 5;
            grid-row: 13 / 18;
        }
    }

    .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: 23 / 29;
        }

        @media (max-width: 450px) {
            margin: 0;
            grid-column: 5 / 10;
            grid-row: 16 / 19;
            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: 580px;
            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: 37 / 40;
    }

    @media (max-width: 450px) {
        grid-column: 1 / 10;
        grid-row: 23 / 26;
    }

    .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: 60px 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) {
        padding-top: 90px;
        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-weight: 400;
                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;
            }

            @media (max-width: 340px) {
                padding: 30px 15px;
            }

            .point__list li {
                font-size: clamp(0.813rem, 0.787rem + 0.13vw, 0.938rem);
                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;
                    }
                }
            }
        }
    }
}


.room__index {
    padding-top: 170px;
    background-color: var(--design-color01);

    @media (max-width: 767px) {
        padding-top: 40px;
    }

    .room__index__inner {
        width: min(95%, 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 {
            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);

            @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;
            }

            .calender {
                width: 38px;
                margin-right: 23.4px;

                @media (max-width: 959px) {
                    width: 25px;
                }
                @media (max-width: 767px) {
                    width: 28px;
                    margin-right: 18px;
                }
            }

            &.qa {
                margin-top: 18px;
                background-color: var(--design-color01);
            }
        }

        .ig {
            display: block;
            margin-top: 48px;
            width: 33px;

            @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;

                &::before {
                    position: absolute;
                    content: "";
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: #fff;
                    transform-origin: right top;
                    transform: scale(0, 1);
                    transition: transform .3s;
                }

                &:hover {
                    opacity: 1;

                    &::before {
                        transform-origin: left top;
                        transform: scale(1, 1);
                    }
                }

                @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;

                &:hover {
                    opacity: 1;
                }

                @media (max-width: 959px) {
                    font-size: 13px;
                    margin-right: 1.5em;
                }
                @media (max-width: 767px) {
                    display: block;
                    margin: 0;

                    &+& {
                        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;
            }
        }
    }
}



/*========================================================
    部屋詳細
==========================================================*/

.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(0.875rem, 0.563rem + 0.52vw, 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: 25px;
            }
    
            .unit {
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                margin-bottom: 0.3em;

                @media (max-width: 767px) {
                    font-size: 13px;
                }
            }
        }
    
        .reservation-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: 12px auto 0;
            }
    
            @media (max-width: 767px) {
                margin-top: 35px;
                height: 40px;
                width: 88%;
                font-size: 13px;
            }
        }
    }

    .btn-container {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        /* 後で消す */
        /* display: none; */

        @media (max-width: 767px) {
            margin-top: 0;
        }

        .btn {
            background-color: transparent;
            border: 2px solid var(--blue);
            padding: 5px 25px 5px 10px;
            font-size: 14px;
            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) {
                font-size: 10px;
                border: 1px solid var(--blue);
            }
        }
    }

    .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;
            }
            
        }


        .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;
            }
        }

        .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;

            @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 0 60px 65px;
            background-color: var(--design-color01);

            @media (max-width: 1200px) {
                padding: 33px 15px 50px 15px;
            }

            @media (max-width: 767px) {
                order: 4;
                margin: 30px auto 0;
            }

            .point__list li {
                font-size: clamp(0.813rem, 0.787rem + 0.13vw, 0.938rem);
                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-size: 13px;
                    font-weight: 400;
                }
            }
        }
    }

    .img {
        width: 54%;

        @media (max-width: 767px) {
            width: 100%;
            order: 1;
        }
    }
}

.room-page .banner-wrap {
    width: min(93%, 1315px);
    margin: 0 auto;
    display: flex;
    gap: 22px;

    @media (max-width: 767px) {
        flex-direction: column;
        width: 85%;
        gap: 20px;
    }

    .banner {
        width: calc(100% / 3);
        height: 225px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;

        &::before {
            position: absolute;
            content: "";
            inset: 0;
            filter: blur(0) brightness(0.7);
            transition: all 0.6s ease;
            z-index: 1;
        }

        @media (max-width: 767px) {
            width: 100%;
            height: 155px;
        }

        .banner-tit {
            font-size: 31px;
            color: #fff;
            letter-spacing: 0.18em;
            z-index: 2;

            @media (max-width: 767px) {
                font-size: clamp(1.313rem, 0.671rem + 2.63vw, 1.938rem);
            }
        }

        .btn {
            margin-top: 10px;
            width: 193px;
            height: 46px;
            border: 1px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            letter-spacing: 0.17em;
            color: #fff;
            transition: all 0.6s;
            z-index: 2;

            @media (max-width: 767px) {
                width: 153px;
                height: 35px;
                font-size: clamp(0.813rem, 0.556rem + 1.05vw, 1.063rem);
            }
        }
    }

    .equipment::before {
        background: url(../img/jpg_png/banner01.jpg) center/cover no-repeat;
    }

    .amenity::before {
        background: url(../img/jpg_png/banner02.jpg) center/cover no-repeat;
    }

    .question::before {
        background: url(../img/jpg_png/banner01.jpg) center/cover no-repeat;
    }

    .banner:hover {
        opacity: 1;

        &::before {
            transform: scale(1.05);
            filter: blur(3px) brightness(0.7);
        }

        .btn {
            background-color: #fff;
            color: rgba(0, 0, 0, 0.7);
            transition: all 0.3s;
        }
    }
}

.room-page .attention {
    padding: 153px 0 136px;

    @media (max-width: 767px) {
        padding: 80px 0 97px;
    }

    .tit {
        font-size: 34px;
        text-align: center;
        color: var(--blue);
        letter-spacing: 0.1em;
        padding-bottom: 0.5em;
        position: relative;

        &::after {
            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);
        }
    }

    .attention-wrap {
        margin-top: 53px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 50px;

        @media (max-width: 767px) {
            margin: 50px auto 0;
            gap: 0px;
        }

        .attention-item {
            width: 184px;

            @media (max-width: 767px) {
                width: calc(100% / 3);
            }

            .img {
                width: 77%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 85%;
                }
            }

            .txt {
                margin-top: 0.5em;
                font-size: 23px;
                line-height: 1.3em;
                color: var(--blue);
                text-align: center;

                @media (max-width: 767px) {
                    white-space: nowrap;
                    transform-origin: center;
                    font-size: clamp(0.813rem, 0.166rem + 2.65vw, 1.438rem);
                }
            }
        }
    }
}

.room-page .facility-info {
    padding: 137px 0;
    background-color: var(--design-color01);

    @media (max-width: 767px) {
        padding: 30px 0;
    }

    .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);
            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);
            border-bottom: 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;
                    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;
                    }
                }
            }

            .map {
                margin-top: 55px;
                width: 76%;
                aspect-ratio: 1053 / 656;

                @media (max-width: 767px) {
                    width: 100%;
                    margin: 40px auto 0;
                }
            }
        }
    }
}


.room-page .other-rooms {
    padding: 90px 0 134px;
    background-color: #fff;

    /* 後で消す */
    display: none !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);

            @media (max-width: 767px) {
                font-size: 31px;
            }
        }

        .txt {
            font-size: 16px;
            letter-spacing: 0.12em;
            line-height: 1.875em;

            @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;

            @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);

                @media (max-width: 767px) {
                    flex: 0 0 80vw;
                    margin: 0 10px;
                    padding-bottom: 15px;
                }

                .img {
                    border-radius: 15px;
                    overflow: hidden;
                    border: 1px solid #606060;

                    @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.625rem + 0.73vw, 1.5rem);
                    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);
                        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: 5px;
                        font-size: 16px;
                        letter-spacing: 0.06em;
                        justify-content: space-between;
                    }
                }

                &:hover {
                    opacity: 1;

                    .img img {
                        transform: scale(1.05);
                    }

                    .tag {
                        border-color: var(--blue);
                        color: var(--blue);
                    }

                    .room-name {
                        color: var(--blue);

                        &::after {
                            margin-left: 45px;
                        }
                    }
                }
            }
        }
    }
}

.scroll-hint-icon {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}



/*========================================================
    設備・アメニティ
==========================================================*/
.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;
                }
            }
        }
    }
}

.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;
            }
        }
    }
}