@charset "utf-8";
:root{
    --white: #ffffff;
    --black: #333333;
    --orange: #f46e45;
    --orangeOff: #ea8a59;
    --navy: #2a315b;
    --gray: #717070;
    --gray-b3: #b3b3b3;
    --warm-gray: #e1d8d1;
    --cream: #fdf5e8;
    --info-title: #f9ebd7;

    --Caslon: 'Libre Caslon Text', serif;
    --ZenKakuGothicNew: "Zen Kaku Gothic New","Yu Gothic","Meiryo","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
    --NotoSansJP: "Noto Sans JP","Yu Gothic","Meiryo","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
}

.icons{
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    margin: 0 1rem;
}

#header{
    width: 100%;
    height: 120px;
    padding-top: 0.4rem;
    background: var(--gray);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;

    .menu-toggle-common{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .header-inner-sp{display: none;}

    .header-inner{
        width: min(1440px,100%);
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;

        .header-top{
            width: min(1209px,98%);
            height: 80px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;

            h1{
                width: 310px;
                height: auto;
                aspect-ratio: 677/103;
                margin-top: 0.75rem;
                flex-shrink: 0;
            }

            .sub-menu{
                width: 560px;
                height: 50px;
                background: var(--white);
                border-radius: 30px;
                padding: 0 0.25rem 0 1rem;
                display: grid;
                grid-template-columns: 1fr 1fr 1px .3fr 1px .3fr 1px .4fr;
                align-items: center;
                justify-content: space-between;
                position: relative;
                z-index: 100;

                a{
                    display: grid;
                    place-items: center;
                    text-decoration: none;
                }

                .reserve-bbq{
                    height: 30px;
                    background: var(--orangeOff);
                    border-radius: 15px;
                    font-size: 0.85rem;
                    line-height: 1;
                    color: var(--white);
                    text-align: center;
                    margin-right: 0.5rem;
                    white-space: nowrap;
                }

                .reserve-lodging{
                    height: 30px;
                    background: var(--navy);
                    border-radius: 15px;
                    font-size: 0.85rem;
                    line-height: 1;
                    color: var(--white);
                    text-align: center;
                    margin-right: 0.75rem;
                    white-space: nowrap;
                }

                .btn-language{
                    width: 52px;
                    height: 100%;

                    img{
                        display: block;
                        width: 20px;
                        height: auto;
                        aspect-ratio: 1;
                    }
                }

                .btn-mail{
                    width: 54px;
                    height: 100%;

                    img{
                        display: block;
                        width: auto;
                        height: 20px;
                        aspect-ratio: 43/32;
                    }
                }

                .btn-menu{
                    width: 59px;
                    height: 100%;
                    display: grid;
                    place-items: center;
                    cursor: pointer;
                    color: var(--black);
                    text-decoration: none;
                    user-select: none;

                    .btn-menu-inner{
                        width: 100%;
                        height: 100%;
                        display: grid;
                        place-items: center;
                        position: relative;

                        .btn-menu-icon{
                            width: 30px;
                            height: 8px;
                            display: block;
                            position: relative;
                            top: -3px;

                            span{
                                display: block;
                                width: 24px;
                                height: 2px;
                                background: var(--black);
                                border-radius: 999px;
                                position: absolute;
                                left: 0;
                                transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
                                transform-origin: center;
                            }

                            span:nth-child(1){
                                top: 4px;
                            }

                            span:nth-child(2){
                                top: 11px;
                            }

                            span:nth-child(3){
                                top: 19px;
                            }
                        }

                        .btn-menu-text{
                            display: block;
                            font-size: 0.85rem;
                            line-height: 0;
                            letter-spacing: 0.02rem;
                            position: relative;
                            top: -4px;
                        }
                    }
                }
            }
        }

        nav{
            width: min(812px,98%);
            height: 36px;
            margin: 0 auto;

            ul{
                width: 100%;
                height: 100%;
                display: grid;
                grid-template-columns: repeat(8,1fr);
                list-style: none;
            }

            li{
                height: 60%;
                border-left: 1px solid var(--white);

                &:last-child{
                    border-right: 1px solid var(--white);
                }
            }

            a{
                display: grid;
                place-items: center;
                width: 100%;
                height: 100%;
                font-size: 0.85rem;
                color: var(--white);
                text-align: center;
                white-space: nowrap;
            }
        }
    }
}

body:has(#menu-toggle-common:checked){
    overflow: hidden;

    #header{
        background: transparent;
        z-index: 990;

        .header-inner{
            > nav{
                opacity: 0;
                pointer-events: none;
            }

            .header-top{
                > h1,
                > .icons{
                    opacity: 0;
                    pointer-events: none;
                }

                .sub-menu{
                    background: transparent;
                    z-index: 990;

                    .reserve-bbq,
                    .reserve-lodging,
                    .border,
                    .btn-language,
                    .btn-mail{
                        opacity: 0;
                        pointer-events: none;
                    }

                    .btn-menu{
                        position: relative;
                        z-index: 999;

                        .btn-menu-text{
                            opacity: 0;
                            visibility: hidden;
                        }

                        .btn-menu-icon{
                            position: fixed;
                            top: 3%;
                            right: 3%;

                            &::before{
                                content: "";
                                width: 44px;
                                height: 44px;
                                border: 1px solid var(--white);
                                border-radius: 50%;
                                position: absolute;
                                top: -4px;
                                left: -10px;
                            }

                            span{
                                background: var(--white);
                            }

                            span:nth-child(1){
                                top: 17px;
                                transform: rotate(45deg);
                            }

                            span:nth-child(2){
                                opacity: 0;
                            }

                            span:nth-child(3){
                                top: 17px;
                                transform: rotate(-45deg);
                            }
                        }
                    }
                }
            }
        }
    }
}

/* バーガー展開時の全画面メニュー（PC） */
#global-menu-panel{
    width: 100%;
    height: 100dvh;
    background: rgba(51,51,51,0.96);
    position: fixed;
    inset: 0;
    z-index: 980;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
    will-change: opacity;

    .global-menu-layout{
        width: 100%;
        min-height: 100dvh;
        position: relative;
    }

    .menu-bg{
        width: calc(100% - 960px);
        height: 100%;
        object-fit: cover;
        object-position: left center;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transform: scale(1.03);
        transition: opacity 0.6s ease, transform 0.6s ease;
        will-change: opacity, transform;
    }

    .global-menu{
        width: 960px;
        min-height: 100dvh;
        height: auto;
        background: var(--gray);
        color: var(--white);
        padding: 6rem 4rem 0;
        position: relative;
        margin-left: auto;
        z-index: 980;
        opacity: 0;
        transform: translateX(24px);
        transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
        will-change: opacity, transform;
    }

    .menu-logo{
        width: 100%;
        margin-bottom: 1rem;

        img{
            width: 340px;
        }
    }

    .global-menu-inner-top{
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;

        address{
            width: 382px;
        }

        nav{
            width: 310px;
            display: flex;
            justify-content: space-between;
            margin-top: -0.7rem;

            .global-menu-ul{
                display: flex;
                flex-direction: column;
                text-align: left;

                li{
                    width: 140px;
                    height: 3rem;
                    font-weight: normal;
                    border: none;
                    list-style: none;

                    a{
                        display: block;
                        font-size: 1rem;
                        line-height: 3rem;
                        text-align: left;
                    }
                }
            }

            .global-menu-ul:first-of-type{
                width: 140px;
                flex: 0 0 140px;
            }

            .global-menu-ul:first-of-type li{
                width: 140px;
            }
        }
    }

    .link-btn3{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;

        a{
            width: 30%;
            height: 6rem;
            text-align: center;
            border: 1px solid var(--white);
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
        }
    }

    .wave-line-white{
        width: 100%;
        height: 8px;
        margin: 2rem 0;
        border: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='8' viewBox='0 0 40 8'%3E%3Cpath d='M0 4 Q5 0 10 4 T20 4 T30 4 T40 4' stroke='%23ffffff' fill='none' stroke-width='2'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
        background-position: center;
        background-size: 40px 8px;
    }

    .links{
        display: flex;
        flex-direction: column;

        .links-inner{
            display: flex;
            justify-content: flex-start;
            gap: 2rem;

            a{
                width: fit-content;
                height: 3rem;
                font-size: 15px;
                font-weight: normal;
                color: var(--white);
                white-space: nowrap;
                display: flex;
                align-items: center;

                img{
                    width: 14px;
                    height: 14px;
                }
            }
        }
    }
}

/* SP 全画面メニュー 非表示 */
#global-menu-panel-sp{
    display: none;
}

@media screen and (min-width:960px){
    body:has(#menu-toggle-common:checked){
        #global-menu-panel{
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: opacity 0.45s ease, visibility 0s linear 0s;

            .menu-bg{
                opacity: 1;
                transform: scale(1);
            }

            .global-menu{
                opacity: 1;
                transform: translateX(0);
            }
        }
    }
}

@media screen and (max-width:960px){
    #header{
        width: 100%;
        height: 107px;
        padding-top: 20px;
        background: rgba(0,0,0,0);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 90;

        .header-inner{display: none;}

        .header-inner-sp{
            width: 96%;
            height: 100%;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 1rem;

            h1{
                width: 250px;
                height: auto;
                aspect-ratio: 240/36;
                flex-shrink: 0;
                line-height: 0;

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

            .sub-menu{
                width: 45%;
                height: 100%;
                padding: 0 0.25rem 0 1rem;
                position: relative;
                z-index: 100;

                .inner-top{
                    width: 100%;
                    height: 50%;
                    padding-top: 3px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    a{
                        display: grid;
                        place-items: center;
                        text-decoration: none;
                    }

                    .border{
                        width: 1px;
                        height: 50%;
                    }
                }

                .inner-bottom{
                    width: 100%;
                    height: 50%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    a{
                        display: grid;
                        place-items: center;
                        text-decoration: none;
                    }

                    .reserve-bbq{
                        width: max(128px,48%);
                        height: 30px;
                        background: var(--orangeOff);
                        border-radius: 15px;
                        font-size: 0.85rem;
                        line-height: 1;
                        color: var(--white);
                        text-align: center;
                        white-space: nowrap;
                        padding: 0 0.5rem;
                    }

                    .reserve-lodging{
                        width: max(128px,48%);
                        height: 30px;
                        background: var(--navy);
                        border-radius: 15px;
                        font-size: 0.85rem;
                        line-height: 1;
                        color: var(--white);
                        text-align: center;
                        white-space: nowrap;
                        padding: 0 0.5rem;
                    }
                }

                .btn-language{
                    width: 52px;
                    height: 100%;

                    img{
                        display: block;
                        width: 20px;
                        height: auto;
                        aspect-ratio: 1;
                    }
                }

                .btn-mail{
                    width: 54px;
                    height: 100%;

                    img{
                        display: block;
                        width: auto;
                        height: 20px;
                        aspect-ratio: 43/32;
                    }
                }

                .btn-menu{
                    width: 59px;
                    height: 100%;
                    display: grid;
                    place-items: center;
                    cursor: pointer;
                    color: var(--black);
                    text-decoration: none;
                    user-select: none;

                    .btn-menu-inner{
                        width: 100%;
                        height: 100%;
                        display: grid;
                        place-items: center;
                        position: relative;

                        .btn-menu-icon{
                            width: 30px;
                            height: 8px;
                            display: block;
                            position: relative;
                            top: -3px;

                            span{
                                display: block;
                                width: 24px;
                                height: 2px;
                                background: var(--black);
                                border-radius: 999px;
                                position: absolute;
                                left: 0;
                                transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
                                transform-origin: center;
                            }

                            span:nth-child(1){
                                top: 4px;
                            }

                            span:nth-child(2){
                                top: 11px;
                            }

                            span:nth-child(3){
                                top: 19px;
                            }
                        }

                        .btn-menu-text{
                            display: block;
                            font-size: 0.85rem;
                            line-height: 0;
                            letter-spacing: 0.02rem;
                            position: relative;
                            top: 0;
                        }
                    }
                }
            }
        }
    }

    #global-menu-panel-sp{
        display: block;
        width: 100%;
        height: 100dvh;
        background: var(--navy);
        position: fixed;
        inset: 0;
        z-index: 980;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.45s ease, visibility 0s linear 0.45s;
        will-change: opacity;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;

        .global-menu-sp{
            width: 100%;
            height: auto;
            margin: 0 auto;
            color: var(--white);
            padding: 55px 6% 40px;
            position: relative;
            z-index: 981;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
            overflow: visible;

            nav{
                width: 280px;
                margin: 0 auto 2rem;
                display: flex;
                justify-content: space-between;

                .global-menu-ul{
                    display: flex;
                    flex-direction: column;
                    text-align: left;

                    li{
                        width: 117px;
                        height: 3rem;
                        font-weight: normal;
                        border: none;
                        list-style: none;

                        a{
                            display: block;
                            font-size: 1rem;
                            line-height: 3rem;
                            text-align: left;
                        }
                    }
                }

                .global-menu-ul:first-of-type{
                    width: 118px;
                    flex: 0 0 118px;
                }

                .global-menu-ul:first-of-type li{
                    width: 118px;
                }
            }

            .link-btn3{
                width: 272px;
                margin: 0 auto 2rem;

                a{
                    width: 288px;
                    height: 6rem;
                    margin: 0 auto 1.5rem;
                    text-align: center;
                    border: 1px solid var(--white);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
                    align-items: center;
                }
            }

            .wave-line-white{
                width: 80%;
                margin: 2.5rem auto;
            }

            .global-menu-sp-head{
                width: fit-content;
                margin: 0 auto 2rem;

                img{
                    display: block;
                    width: min(281px,70%);
                    height: auto;
                    margin: 0 auto;
                }
            }

            address{
                width: fit-content;
                font-style: normal;
                line-height: 1.8;
                margin: 0 auto 1.5rem;

                a{
                    width: fit-content;
                }
            }

            .chack-time{
                width: 260px;
                text-align: center;
                margin: 0 auto 1.5rem;
                display: flex;
                justify-content: space-between;

                .border{
                    width: 100%;
                    height: 1px;
                    background: var(--white);
                    margin: 0.25rem 0;
                }
            }

            .icons{
                width: 150px;
                height: 40px;
                display: flex;
                justify-content: space-between;
                margin: 0 auto 1.5rem;
            }
        }

        .links{
            width: 100%;
            background: var(--cream);
            color: var(--black);
            padding: 1.5rem 0 2rem;

            .links-inner{
                width: 306.89px;
                margin: 0 auto;

                a{
                    height: 3rem;
                    font-size: 14px;
                    font-weight: normal;
                    color: var(--navy);
                    white-space: nowrap;
                    display: flex;
                    align-items: center;

                    img{
                        width: 14px;
                        height: 14px;
                    }
                }
            }
        }
    }

    body:has(#menu-toggle-common:checked){
        #header{
            background: transparent;
            z-index: 990;
            pointer-events: none;

            .header-inner-sp{
                background: transparent;
                pointer-events: none;

                > h1{
                    opacity: 0;
                    pointer-events: none;
                }

                .sub-menu{
                    background: transparent;
                    z-index: 990;
                    pointer-events: none;

                    .inner-top{
                        opacity: 1;
                        pointer-events: none;
                    }

                    .inner-bottom,
                    .reserve-bbq,
                    .reserve-lodging,
                    .border,
                    .btn-language,
                    .btn-mail{
                        opacity: 0;
                        pointer-events: none;
                    }

                    .inner-top .border,
                    .inner-top .btn-language,
                    .inner-top .btn-mail{
                        opacity: 0;
                        pointer-events: none;
                    }

                    .btn-menu{
                        position: relative;
                        top: -9%;
                        left: -7%;
                        z-index: 999;
                        pointer-events: auto;

                        .btn-menu-inner{
                            pointer-events: auto;
                        }

                        .btn-menu-text{
                            opacity: 0;
                            visibility: hidden;
                            pointer-events: none;
                        }

                        .btn-menu-icon{
                            position: relative;
                            pointer-events: auto;

                            &::before{
                                content: "";
                                width: 44px;
                                height: 44px;
                                border: 1px solid var(--white);
                                border-radius: 50%;
                                position: absolute;
                                top: -4px;
                                left: -10px;
                            }

                            span{
                                background: var(--white);
                            }

                            span:nth-child(1){
                                top: 17px;
                                transform: rotate(45deg);
                            }

                            span:nth-child(2){
                                opacity: 0;
                            }

                            span:nth-child(3){
                                top: 17px;
                                transform: rotate(-45deg);
                            }
                        }
                    }
                }
            }

            .header-inner{
                display: none;
            }
        }

        #global-menu-panel-sp{
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: opacity 0.45s ease, visibility 0s linear 0s;

            .menu-bg{
                opacity: 1;
                transform: scale(1);
            }

            .global-menu-sp{
                opacity: 1;
                transform: translateY(0);
            }
        }

        #global-menu-panel{
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
    }
}

@media screen and (max-width:540px){
    #header{
        .header-inner-sp{
            h1{
                width: 135px;
                margin-top: -36px;
            }

            .sub-menu{
                width: 49%;
                height: 100%;
                padding: 0 0 0 0.75rem;
                position: relative;
                z-index: 100;

                .inner-bottom{
                    width: 80%;
                    height: 30px;
                    position: fixed;
                    top: 67px;
                    left: 10%;

                    .border{
                        height: 50%;
                    }
                }

                .btn-language{
                    width: 48px;
                    height: 100%;

                    img{
                        width: 18px;
                    }
                }

                .btn-mail{
                    width: 54px;
                    height: 100%;

                    img{
                        height: 18px;
                    }
                }

                .btn-menu{
                    width: 59px;

                    .btn-menu-inner{
                        .btn-menu-icon{
                            width: 24px;
                            height: 7px;

                            span{
                                display: block;
                                width: 24px;
                                height: 2px;
                                background: var(--black);
                                border-radius: 999px;
                                position: absolute;
                                left: 0;
                                transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
                                transform-origin: center;
                            }

                            span:nth-child(1){
                                top: 4px;
                            }

                            span:nth-child(2){
                                top: 11.25px;
                            }

                            span:nth-child(3){
                                top: 19px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* 言語切り替えのためのcss */
#header{
    .language-switcher{
        width: 52px;
        height: 100%;
        position: relative;
        .btn-language{
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            img{
                display: block;
                width: 20px;
                height: auto;
                aspect-ratio: 1;
            }
        }
        .language-dropdown{
            width: 210px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            padding: 1rem;
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            .language-option{
                width: 100%;
                min-height: 48px;
                font-size: 1rem;
                font-family: var(--NotoSansJP);
                font-weight: 500;
                color: var(--black);
                text-align: center;
                background: transparent;
                border: 0;
                display: grid;
                place-items: center;
                opacity: 1;
                transition: opacity 0.3s ease, color 0.3s ease;
            }
            .language-option + .language-option{
                border-top: 1px solid var(--warm-gray);
            }
            .language-option:hover{
                opacity: 0.5;
            }
            .language-option.is-current{
                opacity: 1;
                font-weight: 700;
            }
        }
        &.is-open{
            .language-dropdown{
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }
        }
    }
}
#google_translate_element{
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate{
    display: none !important;
}
body{
    top: 0 !important;
}
.goog-logo-link,
.goog-te-gadget span{
    display: none !important;
}
.goog-te-gadget{
    font-size: 0 !important;
}
@media screen and (max-width:960px){
    #header{
        .header-inner-sp{
            .sub-menu{
                .inner-top{
                    position: relative;
                    z-index: 20;
                    .language-switcher{
                        width: 48px;
                        height: 100%;
                        position: relative;
                        z-index: 30;
                        .language-dropdown{
                            width: 210px;
                            top: calc(100% + 10px);
                            left: 50%;
                            z-index: 40;
                            transform: translateX(-50%);
                        }
                    }
                }
            }
        }
    }
}
@media (hover: hover){
    #header{
        .language-switcher{
            position: relative;

            &::after{
                content: "";
                width: 100%;
                height: 12px;
                position: absolute;
                top: 100%;
                left: 0;
            }

            &:hover{
                .language-dropdown{
                    opacity: 1;
                    visibility: visible;
                    pointer-events: auto;
                }

                .btn-language{
                    opacity: 0.5;
                }
            }
        }
    }
}