@charset "utf-8";

:root {
    --color-default: #000;
    --color-main: #736357;
    --color-back-main: #f7f7f5;
    --color-back-sub: #9d9d86;
    --header-height: 180px;
    --container-width: 1100px;
    --container-half-width: 550px;
    --overwrap-width: 1320px;
    --container-padding: 30px;
    --font-size-base: 18px;
    --font-gothic: "Noto Sans JP", "Yu Gothic", "Meiryo", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Arial", sans-serif;
    --font-mincho: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "MS PMincho", "Times New Roman", serif;
    --font-en: "Times New Roman", "Noto Serif JP", serif;
    --transition-speed: .3s;
}

/*
html{
	scroll-behavior: smooth;
}
*/
body {
    min-height: 100svh;
    color: var(--color-default);
    font-family: var(--font-mincho);
    font-size: var(--font-size-base);
    font-weight: 400;
    background: #fff;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    -webkit-text-size-adjust: 100%;
}

input,
textarea,
select,
button {
    color: var(--color-default);
    font-family: var(--font-mincho);
    font-weight: 400;
}

/*
::placeholder {
  color: #999;
}
*/

img {
    max-width: 100%;
    /*width: auto;*/
    height: auto;
    /*image-rendering: -webkit-optimize-contrast;*/
}

img[src$=".svg"] {
    width: 100%;
}

a[href^="tel:"]:hover {
    opacity: 1;
}

:lang(en) {
    font-family: var(--font-en);
}

/*
p:lang(en){font-family: var(--font-en);}
*/

.main-wrapper {
    position: relative;
    z-index: 1;
}

@media (min-width:1024px) {

    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }

}

@media (hover: hover) {

    main {
        position: relative;
        z-index: 1;

        & a:any-link:hover,
        & button:enabled:hover {
            opacity: .6;
        }
    }
}

.text-trim {
    text-box: trim-both text;
    /*
	※フォント次第では
	text-box: trim-both cap alphabetic;
	*/
}


/* グローバルヘッダー ※minmax 1920pxベース
--------------------------------------------------------------- */

.g-header {
    --header-padding: min(3.13vw, 60px);
    --menu-size: 60px;
    box-sizing: border-box;
    display: grid;
    place-content: center end;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-padding) * 2 + min(2.19vw, 42px));
    padding-right: calc(min(6.77vw, 130px) + var(--menu-size));
    z-index: 2;

    @media (hover: hover) {

        & a:hover,
        & button:hover {
            opacity: .5;
        }
    }

}

.g-header__heading {
    font-size: 24px;
    font-weight: 500;
}

.g-header__menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: min(4.17vw, 80px);

    & a {
        text-decoration: none;
    }

    & li {
        position: relative;
    }
}

.g-desktop-menu__has-child {

    &:hover>.g-dropdown-menu,
    &:focus-within>.g-dropdown-menu {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }
}

.g-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transition: opacity var(--transition-speed), visibility 0s var(--transition-speed);

    /* ドロップダウンのスタイリング */
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    /*
    left: 50%;
    transform: translateX(-50%);
    */
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    /*gap: 1.83em;*/
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    min-width: 160px;
    padding: 10px 0;
    z-index: 1;

    & a {
        display: block;
        padding: .4em .5em;
        line-height: 1.2;

        @media (hover: hover) {

            &:hover,
            &:focus-within {
                opacity: 1;
                color: #fff;
                background: rgba(73, 52, 37, .8);
            }
        }
    }

}


/* グローバルメニューボタン
--------------------------------------------------------------- */
.g-menu-button {
    --border-color: #000;
    box-sizing: border-box;
    position: fixed;
    top: var(--header-padding);
    right: var(--header-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--menu-size);
    min-width: 0;
    aspect-ratio: 60/42;
    padding: 0;
    border: 0;
    margin: auto;
    background: none;
    box-shadow: none;
    line-height: 1;
    cursor: pointer;
    z-index: 3;

    .g-menu-button-line {

        & span,
        &::before,
        &::after {
            content: "";
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 2px;
            margin: auto;
            background: var(--border-color);
            border-radius: 1px;
            transition: .3s;
        }

        &::before {
            transform: translate(0, -19px);
        }

        &::after {
            transform: translate(0, 19px);
        }

    }
}

.menu-active {
    .g-menu-button .g-menu-button-line {

        & span,
        &::before,
        &::after {
            background: #000 !important;
        }

        & span {
            opacity: 0;
        }

        &::before {
            transform: rotate(45deg);
        }

        &::after {
            transform: rotate(-45deg);
        }
    }
}


/* グローバルナビゲーション
--------------------------------------------------------------- */

.g-nav {
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgb(255 255 255 / .9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    overscroll-behavior-y: contain;
}

.g-nav__inner {
    box-sizing: border-box;
    display: grid;
    place-content: center;
    min-height: 100%;
    padding: 50px;
}

.navigation-container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 0 min(10.42vw, 200px);
    min-height: 335px;
}

.navigation__logo {
    width: min(32.81vw, 430px);

    & img {
        width: 100%;
    }
}

.navigation__body {
    font-size: 24px;
    color: var(--color-default);

    & section:not(:last-child) {
        margin-bottom: 2.5em;
    }

    & a {
        color: var(--color-default);
        text-decoration: none;
    }
}

.navigation__title {
    font-weight: 500;
    margin-bottom: .5em;
}

.navigation__language-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .75em;
    margin-left: min(1.25vw, 24px);

    & li:not(:last-child) {
        &::after {
            content: "/";
            margin-inline: 1em;
        }
    }

    & a.on {
        opacity: .3;
        pointer-events: none;
    }
}

.navigation__yado-list {
    margin-left: min(1.25vw, 24px);

    & li:not(:last-child) {
        margin-bottom: .5em;
    }

    & li::before {
        content: "-";
    }

    .navigation__reservation {
        display: block;
        color: var(--color-main);
        font-size: .75em;
        font-weight: 500;

        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;

        &::before {
            content: "-";
            margin-right: .3em;
        }

        &::after {
            content: "";
            display: block;
            width: 1em;
            min-width: 0;
            aspect-ratio: 1 / 1;
            mask: url(../img/common/icon_blank.svg) center center / contain no-repeat;
            background-color: var(--color-main);
            margin-left: .5em;
        }
    }
}



/* メインビジュアル
--------------------------------------------------------------- */

.main-visual {
    position: relative;
    display: grid;
    grid-template-columns: 40.625% minmax(0, 1fr);
    gap: 0;
    min-width: 0;
    aspect-ratio: 1920/1000;
    background: #fff;

    .main-visual__content {
        display: grid;
        place-content: center;
    }

    @media print,
    screen and (min-width: 1023px) {

        .main-visual__heading {}

        .main-visual__logo img {
            display: block;
            width: min(33.6vw, 430px);
            margin-inline: auto;
            transform: translate(-2.08vw, 0);
        }

        .main-visual__text {
            display: block;
            width: min(26.88vw, 344px);
            margin: 3.13vw auto 0;

            .main-visual__catchphrase {
                display: block;
            }

            .main-visual__address {
                display: block;
                margin-top: min(1.56vw, 30px);
            }

            & img {
                width: 100%;
            }
        }

    }

    .main-visual__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        border-radius: 0 0 0 2.08vw;
    }
}


/* メインコンテナー
--------------------------------------------------------------- */

.main-wrapper {
    position: relative;
    padding-bottom: min(11.98vw, 230px);
}

.main-visual+.main-wrapper {
    margin-top: min(9.90vw, 190px);
}

.content-inner {
    max-width: var(--container-width);
    padding-inline: var(--container-padding);
    margin-inline: auto;
}

.overwrap-inner {
    width: min(var(--overwrap-width),
            calc(50vw + var(--container-half-width) - var(--container-padding)),
            calc(100vw - var(--container-padding) - var(--container-padding)));
}


/* ルームセクション
--------------------------------------------------------------- */

.section-room {
    padding-block: min(8.85vw, 170px) min(6.25vw, 120px);
    background: var(--color-back-main);

    &:not(:last-child) {
        margin-bottom: min(11.98vw, 230px);
    }
}


/* ルームコンテナ
--------------------------------------------------------------- */

.room {
    display: grid;
    grid-template-columns: 48.48% minmax(0, 1fr);
    gap: min(1.04vw, 20px) min(2.08vw, 40px);

    .room__header {
        grid-column: 1 / -1;
    }

    .room__heading {
        font-size: 36px;
        font-weight: 500;
        line-height: 1.4;
        text-box: trim-both cap alphabetic;
    }

    .room__heading-point {
        display: inline-block;

        &::before,
        &::after {
            content: "│";
        }
    }

    .room__address {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 2em;
        margin-top: 1.66em;
    }

    .room__body-inner {
        padding: min(2.86vw, 55px) min(1.82vw, 35px) 0;

        .list-facility {
            margin-top: min(2.08vw, 40px);
        }
    }

    .button-airbnb {
        margin: calc(min(2.08vw, 40px) * 2) auto 0;
    }
}


/* グローバルフッター
--------------------------------------------------------------- */

.g-footer {
    position: relative;
    font-family: var(--font-gothic);
    font-weight: 400;
    padding: 90px 40px 20px;
    background: var(--color-back-main);
    z-index: 1;

    & dt {
        font-size: 22px;
        line-height: 1.5;
    }

    & dd {
        font-size: 14px;
    }

    & small {
        display: block;
        font-size: 12px;
        margin-top: 1.3em;
    }
}



/* 固定メニュー用 アンカー位置調整
--------------------------------------------------------------- */
/*
.anchor-block {
    scroll-margin-top: 130px;
}
*/


/* 以下、SP 414pxベース
--------------------------------------------------------------- */

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

    :root {
        scrollbar-width: none;

        --header-height: 16.43vw;
        --container-width: auto;
        --container-padding: 4.83vw;
        --container-margin: 12.08vw;
        --font-size-base: 3.38vw;
    }

    :root::-webkit-scrollbar {
        display: none;
    }

    img {
        max-width: 100%;
        width: auto;
        height: auto;
    }


    /* SP グローバルヘッダー ※vw 414px
	--------------------------------------------------------------- */

    .g-header {
        --header-padding: 4.83vw;
        --menu-size: 9.66vw;
        height: auto;
        padding-right: 0;
    }

    .g-header__menu {
        display: none;
    }


    /* SP グローバルメニューボタン
    --------------------------------------------------------------- */
    .g-menu-button {

        &.is-sp-mv-color {
            --border-color: #fff;
        }

        .g-menu-button-line {

            & span,
            &::before,
            &::after {
                height: .48vw;
                border-radius: .24vw;
            }

            &::before {
                transform: translate(0, -3.14vw);
            }

            &::after {
                transform: translate(0, 3.14vw);
            }

        }
    }


    /* SP グローバルナビゲーション
    --------------------------------------------------------------- */

    .g-nav {
        --gap: 16.43vw;
        backdrop-filter: blur(1.93vw);
        -webkit-backdrop-filter: blur(1.93vw);
    }

    .g-nav__inner {
        display: block;
        place-content: start center;
        padding: var(--gap);
    }

    .navigation-container {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--gap);
        min-height: auto;
    }

    .navigation__logo {
        width: 57.97vw;
        margin-inline: auto;
        order: 2;
    }

    .navigation__body {
        font-size: 4.83vw;
    }

    .navigation__language-list {
        margin-left: 4.83vw;
    }

    .navigation__yado-list {
        margin-left: 4.83vw;

        .navigation__reservation {
            margin-top: .2em;
        }
    }



    /* SP メインビジュアル
    --------------------------------------------------------------- */

    .main-visual {
        --min-size: 115.94vw;
        position: relative;
        display: block;
        aspect-ratio: auto;
        min-height: var(--min-size);
        background: #fff;
        user-select: none;

        .main-visual__content {
            position: absolute;
            inset: 0;
            display: block;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(.72vw);
            -webkit-backdrop-filter: blur(.72vw);
        }

        .main-visual__heading {
            position: absolute;
            inset: 0;
            width: 82.13vw;
            max-width: var(--min-size);
            height: fit-content;
            margin: auto;
            transform: none;
            filter: drop-shadow(.72vw .72vw .72vw rgba(0, 0, 0, .8));
        }

        .main-visual__logo {
            width: 69.08vw;
            max-width: 100%;

            & img {
                width: 100%;
            }
        }

        .main-visual__text {
            text-align: right;
            margin-top: 7.25vw;

            .main-visual__catchphrase {
                display: block;
                margin-left: auto;
            }

            .main-visual__address {
                display: block;
                margin: 5.08vw 0 0 auto;
                margin-top: 5.80vw;
            }

            & img {
                width: 84%;
            }
        }

        .main-visual__media img {
            height: 100svh;
            min-height: var(--min-size);
            border-radius: 0;
        }
    }


    /* SP キャッチフレーズ
    --------------------------------------------------------------- */

    .sp-catchphrase {
        display: grid;
        place-content: center;
        width: 100%;
        height: 100svh;

        & img {
            width: 86vw;
        }
    }


    /* SP メインコンテナー
    --------------------------------------------------------------- */

    .main-wrapper {
        padding-bottom: 9.66vw;
    }

    .main-visual+.main-wrapper {
        margin-top: 9.66vw;
    }

    .content-inner {
        max-width: none;
        padding-inline: var(--container-padding);
    }

    .overwrap-inner {
        width: auto;
    }


    /* SP ルームセクション
    --------------------------------------------------------------- */

    .section-room {
        padding-block: 9.66vw;
        background: var(--color-back-main);

        &:not(:last-child) {
            margin-bottom: 9.66vw;
        }
    }


    /* SP ルームコンテナ
    --------------------------------------------------------------- */

    .room {
        grid-template-columns: minmax(0, 1fr);
        gap: 4.83vw;

        .room__heading {
            font-size: 6.76vw;
        }

        .room__heading-point {
            display: block;
            font-size: .6em;
            margin-top: .2em;
        }

        .room__address {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            gap: 1em;
            margin-top: 4.83vw;
        }

        .room__body-inner {
            padding: var(--container-padding) 0 0;

            .list-facility {
                margin-top: 2.42vw;
            }
        }

        .button-airbnb {
            margin-top: 7.25vw;
        }

        .room__media {
            position: relative;
            margin-right: calc(-1 * var(--container-padding));
            overflow: auto;
            padding-right: var(--container-padding);
            margin-top: 2.42vw;
        }
    }

    .sp-carousel-wrapper {
        position: relative;

        &::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            display: block;
            width: var(--container-padding);
            height: 100%;
            background: linear-gradient(to right, rgba(247, 247, 245, 0) 0%, rgba(247, 247, 245, .7) 50%, rgba(247, 247, 245, .9) 100%);
            transform: translate(100%, 0);
        }
    }


    /* SP グローバルフッター
    --------------------------------------------------------------- */

    .g-footer {
        padding: 9.66vw var(--container-padding) var(--container-padding);

        & dt {
            font-size: 4.35vw;
        }

        & dd {
            font-size: 2.90vw;
        }

        & small {
            font-size: 2.42vw;
        }
    }



    /* SP 固定メニュー用 アンカー位置調整
	--------------------------------------------------------------- */
    /*
    .anchor-block {
        scroll-margin-top: 130px;
    }
*/
    .overwrap-inner {
        width: 100%;
    }

}