/* 共通CSS */
:root {
    --common-bg-color: #FAF6EC;
    --common-border-radius: 4px;
    --common-accent-color: #E68A33;
    --common-label-color: #EA9D3F;
    /* --common-button-gradient: linear-gradient(282deg, #E68A33 0.94%, #F1C450 99.79%); */
    --common-button-color: #776232;
    --contents-width: 1080px;
    --font-gothic: "Zen Kaku Gothic New", sans-serif;
    --font-mincho: "Zen Old Mincho", serif;
    --font-en: "Marcellus", serif;
    interpolate-size: allow-keywords;
}

@property --btn-color-start {
    syntax: '<color>';
    inherits: false;
    initial-value: #E68A33;
}

@property --btn-color-end {
    syntax: '<color>';
    inherits: false;
    initial-value: #F1C450;
}

html {
    /* font-size: 10px; */
}

body {
    background-color: var(--common-bg-color);
    font-size: 1.6rem;
    font-family: var(--font-gothic);
    line-height: 180%;
    font-style: normal;
    font-variant: normal;
    color: #4A3F35;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    display: block;
    color: inherit;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default; 
    text-decoration: none;
    color: inherit;
  }
}

.link {
    transition: opacity 0.3s ease;

    &:hover {
        opacity: 0.6;
    }
}

hgroup {

    .sub-title {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-family: var(--font-en);
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 1.28px;
        margin-block-end: 16px;

        &.side {

            &::before {
                content: "";
                display: block;
                width: 24px;
                height: 1px;
                background-color: #4A3F35;
            }
        }

        &.both {

            &::before {
                content: "";
                display: block;
                width: 24px;
                height: 1px;
                background-color: #4A3F35;
            }

            &::after {
                content: "";
                display: block;
                width: 24px;
                height: 1px;
                background-color: #4A3F35;
            }

        }

        @media (max-width: 750px) {
            font-size: 14px;
        }
    }

    h2 {
        font-size: 35px;
        font-family: var(--font-mincho);
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 2.8px;

        @media (max-width: 750px) {
            font-size: 24px;
            letter-spacing: 1.92px;
        }
    }
}

.break-pc {
    display: block;

    @media (max-width: 750px) {
        display: none;
    }
}

.break-sp {
    display: none;

    @media (max-width: 750px) {
        display: block;
    }
}

main {
    padding-top: 143px;

    @media (max-width: 750px) {
        padding-top: 74px;
        padding-bottom: 100px;
    }
}

/* header */
header {

    &.header_pc {
        position: fixed;
        left: 50%;
        translate: -50% 0;
        background-color: var(--common-bg-color);
        width: 100%;
        z-index: 100;
    }

    &.header_sp {
        display: none;
    }

    & .header_inner-container {
        display: flex;
        justify-content: space-between;
        max-width: 1300px;
        height: 143px;
        margin-inline: auto;
        padding: 16px 32px 24px;

        & .logo {
            display: flex;
            max-width: 250px;
            width: 100%;
        }

        & .header_inner {
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            & .header_inner-buttons {
                display: flex;
                justify-content: flex-end;
                align-items: stretch;
                gap: 8px;

                & .button-access {
                    align-self: center;
                    border-radius: 100vmax;
                    border: 1px solid #877666;
                    height: 34px;
                    font-size: 13px;
                    font-weight: 500;
                    color: #766658;
                    line-height: 100%;
                    letter-spacing: 1.04px;
                    transition: background 0.3s ease;

                    &:hover {
                        background: #fff;
                    }

                    & a {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 4px;
                        padding: 8px 16px;

                        &::before {
                            content: "";
                            display: block;
                            background-image: url(../img/icn__access.svg);
                            background-size: contain;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 12px;
                            height: 16px;
                        }
                    }
                }

                & .button-contact {
                    align-self: center;
                    border-radius: 100vmax;
                    border: 1px solid #877666;
                    height: 34px;
                    font-size: 13px;
                    font-weight: 500;
                    color: #766658;
                    line-height: 100%;
                    letter-spacing: 1.04px;
                    margin-inline: 0 16px;
                    transition: background 0.3s ease;

                    &:hover {
                        background: #fff;
                    }

                    & a {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 4px;
                        padding: 8px 16px;

                        &::before {
                            content: "";
                            display: block;
                            background-image: url(../img/icn__contact-brn.svg);
                            background-size: contain;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 14px;
                            height: 11px;
                        }
                    }
                }

                & .button-reservation {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    background: linear-gradient(282deg, var(--btn-color-start) 0.94%, var(--btn-color-end) 99.79%);
                    border-radius: var(--common-border-radius);
                    font-size: 13px;
                    font-weight: 500;
                    color: #fff;
                    line-height: 100%;
                    letter-spacing: 1.04px;
                    transition: --btn-color-start 0.3s ease, --btn-color-end 0.3s ease;

                    &:hover {
                        --btn-color-start: #F1C450;
                        --btn-color-end: #E68A33;
                    }

                    & a {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 8px;
                        height: 60px;
                        padding: 12px 16px;

                        &::after {
                            content: "";
                            display: block;
                            background-image: url(../img/arrow__wht.svg);
                            background-size: contain;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 23px;
                            height: 9px;
                        }
                    }
                }

                & .button-corporate {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    background: var(--common-button-color);
                    border-radius: var(--common-border-radius);
                    font-size: 13px;
                    font-weight: 500;
                    color: #fff;
                    text-align: left;
                    line-height: 140%;
                    letter-spacing: 1.04px;
                    filter: brightness(100%);
                    transition: filter 0.3s ease;

                    &:hover {
                        filter: brightness(130%);
                    }

                    & a {
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        gap: 8px;
                        padding: 12px 16px;

                        &::after {
                            content: "";
                            display: block;
                            background-image: url(../img/arrow__wht.svg);
                            background-size: contain;
                            background-position: center;
                            background-repeat: no-repeat;
                            width: 23px;
                            height: 9px;
                        }
                    }
                }
            }

            & .header_inner-nav {

                & ul {
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;

                    & li {
                        font-size: 14px;
                        font-weight: 500;

                        &:not(:last-child) {
                            border-right: 1px solid rgba(74, 63, 53, 0.23);
                            /* margin-inline: 0 24px; */
                        }

                        & a {
                            line-height: 100%;
                            padding-inline: 24px;
                            padding-block: 4px;
                            transition: opacity 0.3s ease;

                            &:hover {
                                opacity: 0.6;
                            }
                        }
                    }
                }
            }
        }
    }


    @media (max-width: 820px) {

        &.header_pc {
            display: none;
        }

        &.header_sp {
            position: fixed;
            left: 50%;
            translate: -50% 0;
            background-color: var(--common-bg-color);
            width: 100%;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 74px;
            padding: 4.267vw;
            transition: padding 0.3s ease, height 0.3s ease;

            &.is-scrolled {
                padding-top: calc(4.267vw - 10px);
                padding-bottom: calc(4.267vw - 10px);
                
                height: 74px; 
            }

            & .header_inner-logo {
                max-width: 53.333vw;
            }

            & .btn-trigger {
                position: relative;
                width: 22px;
                height: 16px;
                cursor: pointer;
                display: inline-block;
                transition: all .5s;
                box-sizing: border-box;

                & span {
                    position: absolute;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: #4A3F35;
                    border-radius: 2px;
                    display: inline-block;
                    transition: all .5s;
                    box-sizing: border-box;

                    &:nth-of-type(1) {
                        top: 0;
                    }

                    &:nth-of-type(2) {
                        top: 7.5px;
                    }

                    &:nth-of-type(3) {
                        bottom: 0;
                    }
                }

                &.active {
                    & span {
                        &:nth-of-type(1) {
                            transform: translateY(7.5px) rotate(-35deg);
                        }

                        &:nth-of-type(2) {
                            opacity: 0;
                        }

                        &:nth-of-type(3) {
                            transform: translateY(-7.5px) rotate(35deg);
                        }
                    }
                }
            }
        }
    }
}

html.is-menu-open {
    overflow: hidden;

    /* & body {
        position: fixed;
        left: 0;
        width: 100%;
    } */
}

.header_sp-menu {
    display: none;
}

@media (max-width: 820px) {
    .header_sp-menu {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 74px);
        /* height: calc((var(--vh, 1vh) * 100) - 66px); */
        background-color: var(--common-bg-color);
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 4.267vw;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;

        &.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        & .header_sp-menu-nav {
            display: flex;
            flex-direction: column;
            margin-block-end: 32px;

            & li {
                border-bottom: 1px solid rgba(74, 63, 53, 0.23);
                font-size: 14px;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 1.12px;

                & a {
                    padding-block: 20px;
                }
            }
        }

        & .button-reservation {
            background: linear-gradient(282deg, var(--btn-color-start) 0.94%, var(--btn-color-end) 99.79%);
            border-radius: var(--common-border-radius);
            color: #FFF;
            font-size: 14px;
            font-weight: 700;
            line-height: 100%;
            letter-spacing: 1.12px;
            margin-block-end: 32px;

            &:hover {
                --btn-color-start: #F1C450;
                --btn-color-end: #E68A33;
            }

            & a {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                padding: 20px 16px;

                &::after {
                    content: "";
                    display: block;
                    background-image: url(../img/arrow__wht.svg);
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    width: 23px;
                    height: 9px;
                    translate: 0 1px;
                }
            }
        }

        & .button-corporate {
            background: var(--common-button-color);
            border-radius: var(--common-border-radius);
            color: #FFF;
            font-size: 14px;
            font-weight: 700;
            line-height: 100%;
            letter-spacing: 1.12px;
            margin-block-end: 32px;

            &:hover {
                filter: brightness(130%);

            }

            & a {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                padding: 20px 16px;

                &::after {
                    content: "";
                    display: block;
                    background-image: url(../img/arrow__wht.svg);
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    width: 23px;
                    height: 9px;
                    translate: 0 1px;
                }
            }
        }

        & .header_sp-menu-contact {
            text-align: center;

            & dt {
                font-size: 13px;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 1.04px;
            }

            & dd {
                font-size: 24px;
                font-weight: 500;
                line-height: 100%;
                letter-spacing: 1.92px;
                margin-block-start: 16px;
            }
        }

        & .header_sp-menu-contents {

            & ul {
                display: flex;
                justify-content: space-between;
                gap: 8px;
                width: 78.933vw;
                margin-inline: auto;
                margin-block-start: 24px;

                & li {
                    display: flex;
                    justify-content: center;
                    gap: 8px;
                }

                & .button-contact {
                    width: 100%;

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 8px;
                        background-color: #fff;
                        border: 1px solid #06C755;
                        border-radius: var(--common-border-radius);
                        width: 100%;
                        height: 100%;
                        font-size: 13px;
                        font-weight: 700;
                        text-align: center;
                        color: #06C755;
                        line-height: 120%;
                        letter-spacing: 1.04px;
                        padding-block: 10px;

                        &::before {
                            content: "";
                            display: block;
                            width: 26px;
                            height: 26px;
                            background-image: url(../img/icn__line.png);
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-position: center;
                        }
                    }
                }

                & .button-mail {
                    width: 100%;

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 8px;
                        background-color: #fff;
                        border: 1px solid var(--common-accent-color);
                        border-radius: var(--common-border-radius);
                        width: 100%;
                        height: 100%;
                        font-size: 13px;
                        font-weight: 700;
                        text-align: center;
                        color: var(--common-accent-color);
                        line-height: 120%;
                        letter-spacing: 1.04px;
                        padding-block: 10px;

                        &::before {
                            content: "";
                            display: block;
                            width: 18px;
                            height: 15px;
                            background-image: url(../img/icn__mail.svg);
                            background-size: contain;
                            background-repeat: no-repeat;
                            background-position: center;
                        }
                    }
                }
            }
        }
    }
}

/* footer */
footer {

    & .footer_inner {
        display: flex;
        justify-content: space-between;
        max-width: var(--contents-width);
        width: 100%;
        margin-inline: auto;
        padding-block: 24px;

        & .footer_inner-left {

            border-right: 1px solid rgba(74, 63, 53, 0.16);
            margin-right: 96px;
            padding-right: 96px;
            padding-block: 56px;

            & .footer_inner-instagram {

                margin-block-start: 48px;

                & a {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    font-family: var(--font-en);
                    font-weight: 500;
                    line-height: 150%;
                    letter-spacing: 1.12px;
                    transition: opacity 0.3s ease;

                    &:hover {
                        opacity: 0.5;
                    }
                }
            }
        }

        & .footer_inner-right {
            display: flex;
            gap: 80px;
            padding-block: 56px;

            & .footer_inner-nav {
                display: flex;
                flex-direction: column;
                gap: 32px;

                & li {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 8px;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 100%;
                    letter-spacing: 1.12px;

                    &::before {
                        content: '';
                        display: block;
                        background-color: #F2C85B;
                        border-radius: 50%;
                        width: 6px;
                        height: 6px;
                    }

                    & a {
                        transition: opacity 0.3s ease;

                        &:hover {
                            opacity: 0.6;
                        }
                    }
                }
            }

            & .footer_inner-address {

                & dt {
                    font-size: 13px;
                    font-weight: 500;
                    color: var(--common-accent-color);
                    line-height: 150%;
                    letter-spacing: 1.04px;
                    margin-block-end: 8px;
                }

                & dd {
                    font-size: 13px;
                    font-weight: 400;
                    line-height: 150%;
                    letter-spacing: 1.04px;
                    border-bottom: 1px solid rgba(74, 63, 53, 0.23);
                    padding-bottom: 16px;

                    &:not(:last-of-type) {
                        margin-bottom: 16px;
                    }
                }

            }
        }
    }

    & .copyright {
        background-color: var(--common-accent-color);
        font-size: 12px;
        font-weight: 500;
        color: #FFDAB7;
        line-height: 100%;
        text-align: center;
        letter-spacing: 0.96px;
        padding-block: 12px;
    }

    @media (max-width: 750px) {

        & .footer_inner {
            flex-direction: column;
            padding-inline: 4.267vw;

            & .footer_inner-left {
                border: none;
                margin-right: 0;
                padding-right: 0;
                padding-block: 40px 32px;

                & .footer_inner-logo {
                    width: 66.667vw;
                    height: auto;
                    aspect-ratio: 150 / 32;
                }

                & .footer_inner-instagram {
                    margin-block-start: 40px;
                }
            }

            & .footer_inner-right {
                flex-direction: column-reverse;
                gap: 32px;
                padding-block: 0 40px;

                & .footer_inner-nav {
                    gap: 24px;
                }
            }
        }
    }
}

/* fixed-contents */
& .fixed-anchor_top {
    position: fixed;
    right: 8px;
    bottom: 18px;
    transition: opacity 0.3s ease;
    z-index: 50;
    cursor: pointer;

    &:hover {
        opacity: 0.5;
    }

    @media (max-width: 750px) {
        bottom: 90px;
    }
}

& #btnToTop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;

    &.is-show {
        opacity: 1;
        visibility: visible;
    }

    &:hover {
    opacity: 0.6;
    }
}

.fixed-contents_pc {
    position: fixed;
    right: 0;
    bottom: 94px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    z-index: 100;

    & .fixed-contents_line {
        border-radius: 4px 0 0 4px;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #FFF;
        border-left: 1px solid #FFF;
        background: #6CB164;
        text-align: center;
        font-size: 15px;
        font-weight: 700;
        line-height: 120%;
        color: #FFF;
        letter-spacing: 1.2px;
        writing-mode: vertical-rl;
        text-orientation: upright;
        transition: opacity 0.3s ease;

        & a {
            padding: 16px 10px;
        }

        &:hover {
            opacity: 0.6;
        }
    }

    @media (max-width: 750px) {
        display: none;
    }
}

.fixed-contents_sp {
    display: none;
}

@media (max-width: 750px) {
    .fixed-contents_sp {
        display: grid;
        align-items: center;
        width: 100%;
        height: 82px;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
        background: rgb(255 255 255 / .8);
        backdrop-filter: blur(2px);
        padding: 14px 3.733vw;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;

        &.is-show {
            opacity: 1;
            visibility: visible;
        }

        & ul {
            display: flex;
            justify-content: space-between;
            gap: 13px;
            width: 80vw;
            height: 100%;
            margin-inline: auto;

            & li {
                display: flex;
                justify-content: center;
                gap: 8px;
            }

            & .fixed-contents_reservation {
                width: 100%;

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: linear-gradient(282deg, var(--btn-color-start) 0.94%, var(--btn-color-end) 99.79%);
                    border-radius: var(--common-border-radius);
                    width: 100%;
                    height: 100%;
                    font-size: 13px;
                    font-weight: 700;
                    color: #FFF;
                    line-height: 120%;
                    text-align: center;
                    letter-spacing: 1.04px;
                    padding-block: 10px;
                    transition: --btn-color-start 0.3s ease, --btn-color-end 0.3s ease;

                    &:hover {
                        --btn-color-start: #F1C450;
                        --btn-color-end: #E68A33;
                    }
                }
            }

            & .fixed-contents_contact {
                width: 100%;

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 8px;
                    background-color: #fff;
                    border: 1px solid #06C755;
                    border-radius: var(--common-border-radius);
                    width: 100%;
                    height: 100%;
                    font-size: 13px;
                    font-weight: 700;
                    text-align: center;
                    color: #06C755;
                    line-height: 120%;
                    letter-spacing: 1.04px;
                    padding-block: 10px;

                    &::before {
                        content: "";
                        display: block;
                        width: 26px;
                        height: 26px;
                        background-image: url(../img/icn__line.png);
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
            }
        }
    }
}


