/* CSS Document */
@charset "utf-8";
:root{
    /* 色の設定 */
    --white: #ffffff;
    --black: #333333;
    --brown: #603813;
    --accentPink: #e52f81;
    --red: #ff0000;
    --pink: #fcedf0;
    --gray: #f3f1ed;

    /* Google Fonts */
    /* ▼ FV内のテキスト */
    --NotoSerifJP: "Noto Serif JP", serif;
    /* ▼ 英文のフォント */
    --mPLUS1p:: "M PLUS 1p", sans-serif;
}
html{
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    margin: 0 auto;
    height: auto;
    background: var(--white);
    color: var(--brown);
    font-family: var(--mPLUS1p);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    text-align: left;
    padding-top: 130px;
    overflow-x: hidden;
}

a{
    font-size: 1rem;
    text-decoration: none;
    color: var(--blackOff);
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
button{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
button:focus{
    outline: none;
}
@media (hover: hover){
    a:hover,
    button:hover{
        cursor: pointer;
        opacity: 0.6;
    }
}
a.is-pressing,
button.is-pressing{
    opacity: 0.6;
}
a:focus,
a:focus-visible,
button:focus,
button:focus-visible{
    opacity: 1;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h3{
    font-size: 1.17rem;
    font-weight: normal;
}
/* fv中のテキスト */
h4{
    font-size: 1.5rem;
    font-weight: normal;
    font-family: "Noto Serif JP", serif;
}
p{
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
}
small{
    font-size: 0.875rem;
}
/* ▼ バーガー開閉のためのチェックボックス。見た目を非表示 */
.menu-toggle-common{
    display: none;
}

header{
    width: 100%;
    height: 130px;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

    .header-inner{
        width: 100%;
        height: 100%;
        padding-left: 1%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;

        h1{
            padding-top: 1.25rem;
            a{
                display: block;
                width: 266px;
                height: auto;
                aspect-ratio: 351/83;
                img{
                    width: 100%;
                    height: 100%;
                }
                .visually-hidden{
                    position: absolute;
                    width: 1px;
                    height: 1px;
                    padding: 0;
                    margin: -1px;
                    overflow: hidden;
                    clip: rect(0 0 0 0);
                    clip-path: inset(50%);
                    white-space: nowrap;
                    border: 0;
                }
            }
        }

        .nav-pc{
            width: calc(100% - 266px - 137.64px);
            height: 100%;
            ul{
                width: max(717px,59.38dvw);
                height: 100%;
                margin: 0 auto;
                padding-top: 1.75rem;
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                li{
                    width: fit-content;
                    height: 100%;
                    list-style: none;
                    padding: 0 0.5rem;

                    a{
                        width: 100%;
                        height: 100%;
                        white-space: nowrap;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        color: var(--brown);
                        img{
                            display: block;
                            width: 40px;
                            height: auto;
                            aspect-ratio: 1;
                            object-fit: contain;
                            object-position: center;
                        }
                        .menu-text{
                            font-size: 14px;
                            line-height: 1.2;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                        }
                    }
                }
            }
        }
        .btn-menu-icon{
            display: none;
        }

        /* ▼ 言語切り替えボタン */
        .language-switcher{
            width: 152px;
            height: 40px;
            position: absolute;
            top: -8px;
            right: 136px;

            .btn-language{
                width: 100%;
                height: 40px;
                font-size: 12.8px;
                color: var(--brown);
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.35rem;
                .icon-lang{
                    width: 16px;
                    height: 16px;
                    object-fit: contain;
                }
                
                .arrow{
                    width: 12.3px;
                    height: auto;
                    padding-top: 3%;
                    object-fit: contain;
                    transition: transform 0.25s ease;
                }
            }
            .language-dropdown{
                width: 128px;
                background: var(--white);
                border-radius: 12px;
                box-shadow: 0 0 5px rgba(0,0,0,0.18);
                padding: 0.5rem;
                position: absolute;
                top: calc(68% + 12px);
                left: 50%;
                z-index: 100;
                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: 40px;
                    font-size: 14px;
                    font-family: var(--mPLUS1p);
                    font-weight: 500;
                    color: var(--brown);
                    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(--gray);
                }
                .language-option:hover{
                    opacity: 0.5;
                }
                .language-option.is-current{
                    opacity: 1;
                    font-weight: 700;
                }
            }
        }
        .language-switcher.is-open .btn-language .arrow{
            transform: rotate(180deg);
        }
        .language-switcher.is-open .language-dropdown{
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* ▼ 予約ボタン */
        .btn-booking{
            width: auto;
            height: 100%;
            aspect-ratio: 18/17;
            background: var(--brown);
            a{
                display: block;
                width: 100%;
                height: 100%;
                font-size: 14px;
                color: var(--white);
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                img{
                    width: 40px;
                    height: auto;
                    object-fit: contain;
                    object-position: center;
                    aspect-ratio: 1;
                    .menu-text{
                        font-size: 14px;
                        line-height: 1.2;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                    }
                }
                .btn-text-sp{
                    display: none;
                }
            }
        }
    }
    .nav-sp{display: none;}
}
#mainvisual{
    width: 100%;
    height: auto;
    aspect-ratio: 1920/930;
    position: relative;
    h2{
        position: absolute;
        top: 16%;
        right: 17.5%;
        span{
            display: block;
            font-size: 2.48dvw;
            text-align: right;
            color: var(--accentPink);
            line-height: 1.1;
            font-weight: 500;
            font-family: var(--NotoSerifJP);
            /* ▼ 白い縁取り */
            -webkit-text-stroke: 6px var(--white);
            paint-order: stroke fill;
            text-shadow:
                0 0 1px var(--white),
                0 0 2px var(--white),
                0 0 3px var(--white),
                0 0 4px var(--white),
                0 0 5px var(--white),
                0 0 6px var(--white);
        }
    }
}

#GuestRooms,#aufguss,#breakfast{
    position: relative;
    h2{
        width: 100%;
        height: 298px;
        font-size: 3rem;
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

/* ▼ スライドとテキストのひとまとまり */
    .item{
        width: 1300px;
        height: 455.96px;
        margin: 0 auto 12rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;

        .sl-main-img{
            width: 52.69%;
            aspect-ratio: 685/456;
            box-sizing: border-box;
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            position: relative;
            z-index: 1;

            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        .sl-main-img .slide-current,
        .sl-main-img .slide-next,
        .sl-main-img .slide-prev{
            position: absolute;
            inset: 0;
        }

        .sl-main-img .slide-current{
            transform: translateX(0);
            opacity: 1;
            z-index: 1;
        }

        .sl-main-img .slide-next{
            transform: translateX(60px);
            opacity: 0;
            z-index: 2;
        }

        .sl-main-img .slide-prev{
            transform: translateX(-60px);
            opacity: 0;
            z-index: 2;
        }

        .sl-main-img.is-animating .slide-next,
        .sl-main-img.is-animating .slide-prev{
            transform: translateX(0);
            opacity: 1;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .sl-main-img.is-animating .slide-current.to-left{
            transform: translateX(-60px);
            opacity: 0;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .sl-main-img.is-animating .slide-current.to-right{
            transform: translateX(60px);
            opacity: 0;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .content{
            width: 44.77%;
            height: 100%;
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;

            h3{
                width: 100%;
                height: auto;
                font-size: 2.25rem;
                font-weight: bold;
                line-height: 75px;
                text-align: center;
                white-space: nowrap;
                color: var(--white);
                background: var(--brown);
            }

            p{
                font-size: 1.063rem;
            }

            .sl-imgs{
                width: 100%;
                height: 91px;
                display: flex;
                justify-content: space-between;
                align-items: center;

                button{
                    display: block;
                    width: 24%;
                    height: 100%;
                    border: 3px solid transparent;
                    box-sizing: border-box;
                    overflow: hidden;
                    transition: border-color .3s ease;
                    cursor: pointer;
                    padding: 0;
                    background: none;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }

                button.is-active{
                    border-color: var(--brown);
                }
            }
        }
    }

    .item-sp{
        display: none;
    }
    /* スライドとテキストのひとまとまり。ここまで */
}
#GuestRooms .item.is-reverse{
    flex-direction: row-reverse;
}
#GuestRooms .item::before{
    content: "";
    width: 30%;
    height: 74.5%;
    position: absolute;
    bottom: -18%;
    z-index: 0;
}
#GuestRooms .item:not(.is-reverse)::before{
    left: calc(50% - 50vw);
    background: var(--pink);
}
#GuestRooms .item.is-reverse::before{
    right: calc(50% - 50vw);
    background: var(--gray);
}
#GuestRooms .item .sl-main-img,
#GuestRooms .item .content{
    position: relative;
    z-index: 1;
}

/* イラスト：カピピン（GUEST ROOMS 右） */
#GuestRooms .illust01{
    width: clamp(144px,8.9dvw,180px);
    aspect-ratio: 190/339;
    position: absolute;
    top: 0.5%;
    right: 5%;
    z-index: -1;
    img{
        display: block;
        width: 100%;
        height: 100%;
    }
}

#largeBath,#sakuraSpa{
    background: var(--gray);
    position: relative;
    padding: 0 0 0.1rem 0;
    h2{
        width: 100%;
        height: 298px;
        font-size: 3rem;
        text-align: center;
        background: var(--white);
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

/* ▼ スライドとテキストのひとまとまり */
    .item{
        width: 1300px;
        height: 455.96px;
        margin: 6rem auto 6rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;

        .sl-main-img{
            width: 52.69%;
            aspect-ratio: 685/456;
            box-sizing: border-box;
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            position: relative;
            z-index: 1;

            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        .sl-main-img .slide-current,
        .sl-main-img .slide-next,
        .sl-main-img .slide-prev{
            position: absolute;
            inset: 0;
        }

        .sl-main-img .slide-current{
            transform: translateX(0);
            opacity: 1;
            z-index: 1;
        }

        .sl-main-img .slide-next{
            transform: translateX(60px);
            opacity: 0;
            z-index: 2;
        }

        .sl-main-img .slide-prev{
            transform: translateX(-60px);
            opacity: 0;
            z-index: 2;
        }

        .sl-main-img.is-animating .slide-next,
        .sl-main-img.is-animating .slide-prev{
            transform: translateX(0);
            opacity: 1;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .sl-main-img.is-animating .slide-current.to-left{
            transform: translateX(-60px);
            opacity: 0;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .sl-main-img.is-animating .slide-current.to-right{
            transform: translateX(60px);
            opacity: 0;
            transition:
                transform .45s ease,
                opacity .45s ease;
        }

        .content{
            width: 44.77%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;

            h3{
                width: 100%;
                height: auto;
                font-size: 2.25rem;
                font-weight: bold;
                line-height: 75px;
                text-align: center;
                white-space: nowrap;
                color: var(--white);
                background: var(--brown);
            }

            p{
                width: 100%;
                font-size: 1.063rem;
            }
            small{
                font-size: 1.063rem;
                color: var(--accentPink);
                margin: 0 auto 0 0;
            }

            .sl-imgs{
                width: 100%;
                height: 91px;
                display: flex;
                justify-content: space-between;
                align-items: center;

                button{
                    display: block;
                    width: 24%;
                    height: 100%;
                    border: 3px solid transparent;
                    box-sizing: border-box;
                    overflow: hidden;
                    transition: border-color .3s ease;
                    cursor: pointer;
                    padding: 0;
                    background: none;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }

                button.is-active{
                    border-color: var(--brown);
                }
            }
        }
    }
    /* イラスト：江平五サ郎（LARGE BATH 右） */
    .illust02{
        width: 400px;
        aspect-ratio: 416/217;
        position: absolute;
        top: 2%;
        right: 3%;
        z-index: 10;
        img{
            display: block;
            width: 100%;
            height: 100%;
        }
    }

    .item-sp{
        display: none;
    }

    .item-flex{
        width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 6rem;

        .item-sp-start{
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            margin: 0 0 6rem;

            h3{
                width: 100%;
                height: auto;
                font-size: clamp(20px,5dvw,2.25rem);
                font-weight: bold;
                line-height: 75px;
                text-align: center;
                white-space: nowrap;
                color: var(--white);
                background: var(--brown);
            }

            p{
                display: block;
                font-size: 1.063rem;
                padding: 2rem 0 0;
                margin-bottom: 0.25rem;
            }

            small{
                display: block;
                flex: 1;
                font-size: 1.063rem;
                color: var(--accentPink);
                margin: 0 auto 0 0;
                padding: 0 0 2rem;
            }

            .sl-main-img{
                width: 100%;
                aspect-ratio: 685/456;
                box-sizing: border-box;
                box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
                overflow: hidden;
                position: relative;
                margin-bottom: 2.5rem;
            }

            .sl-main-img .slide-current,
            .sl-main-img .slide-next,
            .sl-main-img .slide-prev{
                position: absolute;
                inset: 0;
            }
            .sl-main-img .slide-current{
                transform: translateX(0);
                opacity: 1;
                z-index: 1;
            }
            .sl-main-img .slide-next{
                transform: translateX(60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img .slide-prev{
                transform: translateX(-60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img.is-animating .slide-next,
            .sl-main-img.is-animating .slide-prev{
                transform: translateX(0);
                opacity: 1;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-left{
                transform: translateX(-60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-right{
                transform: translateX(60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
    
            .sl-imgs{
                width: 100%;
                height: auto;
                aspect-ratio: 624/100;
                display: flex;
                justify-content: space-between;
                align-items: center;
    
                button{
                    display: block;
                    width: 24%;
                    height: 100%;
                    border: 2px solid transparent;
                    box-sizing: border-box;
                    overflow: hidden;
                    transition: border-color .3s ease;
                    cursor: pointer;
                    padding: 0;
                    background: none;
    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }
    
                button.is-active{
                    border-color: var(--brown);
                }
            }
        }
    }
    /* スライドとテキストのひとまとまり。ここまで */
}
#sakuraSpa{
    background: var(--pink);
}
#largeBath .item.is-reverse,
#sakuraSpa .item.is-reverse{
    flex-direction: row-reverse;
}

/* イラスト：岩盤浴をする女性（SAKURA SPA& 右） */
.illust03{
    width: 320px;
    aspect-ratio: 348/262;
    position: absolute;
    top: 1%;
    right: 4%;
    z-index: 10;
    img{
        display: block;
        width: 100%;
        height: 100%;
    }
}

#aufguss{
    padding: 6rem 0;
    background: #000000;
    .item{
        margin: 0 auto;
        .content{
            p{
                color: var(--white);
            }
            .sl-imgs button:empty{
                pointer-events: none;
                cursor: default;
                opacity: 1;
            }
        }
    }
}
@media (hover: hover){
    .sl-imgs button:empty:hover{
        opacity: 1;
        cursor: default;
    }
}

#breakfast{
    padding: 6rem 0 6rem;
    background: var(--white);
    position: relative;
    .item{
        margin: 0 auto;
        flex-direction: row-reverse;
    }
    
    /* イラスト：朝食をとるカピピン（BREAKFAST 右） */
    .illust04{
        width: 319px;
        aspect-ratio: 319/256;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        img{
            display: block;
            width: 100%;
            height: 100%;
        }
    }
}

.btn-bottom-fixed{
    width: 80px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accentPink);
    position: fixed;
    bottom: 1%;
    right: 2%;
    z-index: 999;
    a{
        display: block;
        width: 100%;
        height: 100%;
        font-size: 14px;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 0.5rem;
        img{
            width: 34px;
            aspect-ratio: 85/100;
            object-fit: contain;
            object-position: center;
            aspect-ratio: 1;
        }
        .btn-text{
            font-size: 12.8px;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-bottom: 0.75rem;
        }
    }
}

#guest-info{
    background: var(--gray);
    h2{
        width: 100%;
        height: 298px;
        font-size: 3rem;
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .guest-info-inner{
        width: min(1300px,90%);
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 1rem;
        .item{
            width: max(193px,20%);
            font-family: var(--NotoSerifJP);
            text-align: center;
            margin-bottom: 4rem;
            display: flex;
            flex-direction: column;
            .item-img{
                width: 135px;
                height: 118px;
                margin: 0 auto 1rem;
            }
            h4{
                font-size: 1.5rem;
                font-weight: normal;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
            p{
                flex: 1;
            }
            small{
                color: var(--red);
            }
        }
    }
}

#access{
    .access-inner{
        width: min(1300px,90%);
        margin: 0 auto 2rem;
        background: var(--white);
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        .text{
            width: 48%;
            h2{
                width: 100%;
                height: auto;
                font-size: 2.25rem;
                font-weight: bold;
                line-height: 160px;
                text-align: center;
                white-space: nowrap;
            }
            dl{
                text-align: left;
                display: flex;
                align-items: center;
                margin-bottom: 2rem;
                dt{
                    min-width: 105px;
                    font-size: 1.5rem;
                    font-family: var(--NotoSerifJP);
                    font-weight: normal;
                    line-height: 1;
                    margin-right: 2rem;
                    white-space: nowrap;
                }
                dd{
                    font-size: 1rem;
                    font-family: var(--NotoSerifJP);
                    color: #666666;
                    line-height: 1.4;
                }
            }
            .dl-ko{
                text-align: left;
                display: flex;
                align-items: center;
                margin-bottom: 2rem;
                dt{
                    min-width: 212px;
                    font-size: 1.5rem;
                    font-family: var(--NotoSerifJP);
                    font-weight: normal;
                    line-height: 1;
                    margin-right: 2rem;
                    white-space: nowrap;
                }
                dd{
                    font-size: 1rem;
                    font-family: var(--NotoSerifJP);
                    color: #666666;
                    line-height: 1.4;
                }
            }
        }
        .map-img{
            width: 48%;
            display: flex;
            align-items: flex-end;
            iframe{
                display: block;
                width: 100%;
                height: 300px;
                border: none;
            }
        }
    }
}

#nearby-guide{
    background: var(--white);
    position: relative;
    h2{
        width: 100%;
        height: 298px;
        font-size: 3rem;
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        position: relative;
    }
    .nearby-guide-inner{
        width: min(1300px,90%);
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 3.33%;
        .item{
            width: max(400px,30%);
            font-family: var(--NotoSerifJP);
            text-align: center;
            margin-bottom: 4rem;
            display: flex;
            flex-direction: column;
            .item-img{
                width: 100%;
                height: auto;
                aspect-ratio: 40/28;
                margin: 0 auto 1rem;
            }
            h4{
                font-size: 1.5rem;
                font-weight: normal;
                line-height: 1.2;
                margin-bottom: 1rem;
                flex: 1;
            }
        }
    }
    /* イラスト：横向いて歩くカピピン（NEARBY GUIDE 右） */
    .illust05{
        width: 160px;
        aspect-ratio: 198/286;
        position: absolute;
        top: 1.5%;
        right: 3%;
        z-index: 10;
        img{
            display: block;
            width: 100%;
            height: 100%;
        }
    }
}

footer{
    width: 100%;
    background: var(--brown);
    padding: 3rem 0;
    .footer-inner{
        width: min(1300px,90%);
        margin: 0 auto;
        h2{
            display: block;
            width: fit-content;
            padding-top: 1.25rem;
            margin: 0 auto 1.5rem;
            a{
                display: block;
                width: 266px;
                height: auto;
                aspect-ratio: 351/83;
                img{
                    width: 100%;
                    height: 100%;
                }
            }
        }
        address{
            text-align: center;
            p{
                font-size: clamp(1rem,4.44dvw,1.5rem);
                font-family: var(--NotoSerifJP);
                color: var(--white);
                margin-bottom: 0.5rem;
                a{
                    font-size: clamp(1rem,4.44dvw,1.5rem);
                    color: var(--white);
                }
                .sp-br{
                    display: none;
                }
            }
        }
    }

}

@media screen and (max-width:1760px){
    #breakfast{
        /* イラスト：朝食をとるカピピン（BREAKFAST 右） */
        .illust04{
            width: 128px;
        }
    }
}

@media screen and (max-width:1326px){
    #GuestRooms,#aufguss,#breakfast,#nearby-guide{
        h2{
            font-size: clamp(24px, 6.65dvw, 3rem);
            height: clamp(200px,55.5dvw,298px);
        }

        .item{display: none;}
        .item-sp{
            display: block;
            width: min(684.96px,90%);
            height: auto;
            margin: 0 auto 6rem;
    
            h3{
                width: 100%;
                height: auto;
                font-size: clamp(20px,5dvw,2.25rem);
                font-weight: bold;
                line-height: 75px;
                text-align: center;
                white-space: nowrap;
                color: var(--white);
                background: var(--brown);
            }

            p{
                display: block;
                font-size: 1.063rem;
                padding: 2rem 0;
                position: relative;
                .sousyoku{
                    display: block;
                    width: 33.33%;
                    height: 90%;
                    background: var(--pink);
                    position: absolute;
                    top: 5%;
                    left: 0;
                    z-index: -1;
                }
            }
            &.is-reverse p .sousyoku{
                background: var(--gray);
                left: auto;
                right: 0;
            }

            .sl-main-img{
                width: 100%;
                aspect-ratio: 685/456;
                box-sizing: border-box;
                box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
                overflow: hidden;
                position: relative;
                margin-bottom: 2.5rem;
    
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }
            }
            .sl-main-img .slide-current,
            .sl-main-img .slide-next,
            .sl-main-img .slide-prev{
                position: absolute;
                inset: 0;
            }
            .sl-main-img .slide-current{
                transform: translateX(0);
                opacity: 1;
                z-index: 1;
            }
            .sl-main-img .slide-next{
                transform: translateX(60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img .slide-prev{
                transform: translateX(-60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img.is-animating .slide-next,
            .sl-main-img.is-animating .slide-prev{
                transform: translateX(0);
                opacity: 1;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-left{
                transform: translateX(-60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-right{
                transform: translateX(60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
    
            .sl-imgs{
                width: 100%;
                height: auto;
                aspect-ratio: 624/100;
                display: flex;
                justify-content: space-between;
                align-items: center;
    
                button{
                    display: block;
                    width: 24%;
                    height: 100%;
                    border: 2px solid transparent;
                    box-sizing: border-box;
                    overflow: hidden;
                    transition: border-color .3s ease;
                    cursor: pointer;
                    padding: 0;
                    background: none;
    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }
    
                button.is-active{
                    border-color: var(--brown);
                }
            }
        }
    }
    /* イラスト：カピピン（GUEST ROOMS 上） */
    #GuestRooms .illust01{
        width: clamp(40px,11.1dvw,64px);
        aspect-ratio: 190/339;
        position: absolute;
        top: clamp(5.75px, calc(133.09px - 20.38vw), 59.73px);
        left: 50%;
        transform: translateX(-50%);
        img{
            display: block;
            width: 100%;
            height: 100%;
        }
    }

    #largeBath,#sakuraSpa{
        h2{
            font-size: clamp(24px, 6.65dvw, 3rem);
            height: clamp(200px,55.5dvw,298px);
            }

        .item{display: none;}
        .item-sp{
            display: block;
            width: min(684.96px,90%);
            height: auto;
            margin: 0 auto 6rem;
    
            h3{
                width: 100%;
                height: auto;
                font-size: clamp(20px,5dvw,2.25rem);
                font-weight: bold;
                line-height: 75px;
                text-align: center;
                white-space: nowrap;
                color: var(--white);
                background: var(--brown);
            }

            p{
                display: block;
                font-size: 1.063rem;
                padding: 2rem 0 0;
            }
            small{
                display: block;
                font-size: 1.063rem;
                color: var(--accentPink);
                margin: 0 auto 0 0;
                padding: 0 0 2rem;
            }

            .sl-main-img{
                width: 100%;
                aspect-ratio: 685/456;
                box-sizing: border-box;
                box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
                overflow: hidden;
                position: relative;
                margin-bottom: 2.5rem;
    
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }
            }
            .sl-main-img .slide-current,
            .sl-main-img .slide-next,
            .sl-main-img .slide-prev{
                position: absolute;
                inset: 0;
            }
            .sl-main-img .slide-current{
                transform: translateX(0);
                opacity: 1;
                z-index: 1;
            }
            .sl-main-img .slide-next{
                transform: translateX(60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img .slide-prev{
                transform: translateX(-60px);
                opacity: 0;
                z-index: 2;
            }
            .sl-main-img.is-animating .slide-next,
            .sl-main-img.is-animating .slide-prev{
                transform: translateX(0);
                opacity: 1;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-left{
                transform: translateX(-60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
            .sl-main-img.is-animating .slide-current.to-right{
                transform: translateX(60px);
                opacity: 0;
                transition:
                    transform .45s ease,
                    opacity .45s ease;
            }
    
            .sl-imgs{
                width: 100%;
                height: auto;
                aspect-ratio: 624/100;
                display: flex;
                justify-content: space-between;
                align-items: center;
    
                button{
                    display: block;
                    width: 24%;
                    height: 100%;
                    border: 2px solid transparent;
                    box-sizing: border-box;
                    overflow: hidden;
                    transition: border-color .3s ease;
                    cursor: pointer;
                    padding: 0;
                    background: none;
    
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }
                }
    
                button.is-active{
                    border-color: var(--brown);
                }
            }
        }
        .item-flex{
            width: min(684.96px,90%);
            flex-direction: column;
            justify-content: center;
            gap: 0;
        }
    }
    /* イラスト：江平五サ郎（LARGE BATH 上） */
    #largeBath .illust02{
        width: clamp(128px,35.6dvw,160px);
        position: absolute;
        top: 0.6%;
        left: 50%;
        transform: translateX(-50%);
    }
    /* イラスト：岩盤浴女性（SAKURA SPA& 上） */
    #sakuraSpa .illust03{
        width: clamp(112px,31.1dvw,168px);
        position: absolute;
        top: clamp(3.1px, calc(17.81px - 4.95vw), 0px);
        left: 50%;
        transform: translateX(-50%);
    }
    /* イラスト：朝食をとるカピピン（BREAKFAST 下中央） */
    #breakfast{
        padding: 6rem 0 1rem;
        .illust04{
            left: 50%;
            transform: translateX(-50%);
        }
    }

    #aufguss .item-sp{
        margin: 0 auto;
        p{
            color: var(--white);
        }
    }
    #guest-info{
        h2{
            font-size: clamp(24px, 6.65dvw, 3rem);
            height: clamp(200px,55.5dvw,298px);
        }
    }
}

@media screen and (max-width:1130px){
    html{
        scroll-padding-top: 60px;
    }
    body{
        padding-top: 60px;
    }
    header .header-inner .nav-pc,
    header .header-inner .language-switcher,
    header .header-inner .btn-booking{
        display: none;
    }

    header{
        height: 60px;

        .header-inner{
            padding: 10px 1rem;

            h1{
                padding-top: 0.5rem;

                a{
                    width: 180px;
                }
            }

            .btn-menu-icon{
                width: 40px;
                height: 40px;
                background: var(--brown);
                display: block;
                cursor: pointer;
                position: relative;
                z-index: 30;
                border-radius: 4px;

                span{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 20px;
                    height: 2px;
                    background: var(--white);
                    transform-origin: center;
                    transition: all 0.3s ease;
                }

                span:nth-child(1){
                    transform: translate(-50%, calc(-50% - 6px));
                }

                span:nth-child(2){
                    transform: translate(-50%, -50%);
                }

                span:nth-child(3){
                    transform: translate(-50%, calc(-50% + 6px));
                }
            }
        }

        .nav-sp{
            display: block;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: calc(100dvh - 60px);
            background: var(--white);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 20;

            ul{
                width: 100%;
                margin: 0;
                padding: 0;
                list-style: none;
            }

            li{
                width: 100%;
                margin: 0;
                padding: 0;
                list-style: none;
                border-top: 1px solid #eeeeee;

                a{
                    width: 100%;
                    min-height: 58px;
                    padding: 0 0 0 1.35rem;
                    background: #ffffff;
                    color: #333333;
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    gap: 14px;

                    img{
                        width: 20px;
                        height: 20px;
                        object-fit: contain;
                        object-position: center;
                        flex-shrink: 0;
                    }

                    .menu-text{
                        font-size: 14px;
                        line-height: 1.4;
                        color: var(--black);
                        font-weight: 500;
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        gap: 0;
                    }
                }
            }

            .mobile-reserve{
                a{
                    min-height: 52px;
                    background: var(--brown);
                    color: var(--white);
                    font-weight: 700;

                    img{
                        filter: brightness(0) invert(1);
                    }

                    .menu-text{
                        color: var(--white);
                        font-weight: 500;
                    }
                }
            }

            .nav-language-group{
                min-height: 62px;
                padding: 0 0 0 1.35rem;
                border-top: 1px solid #eeeeee;
                display: flex;
                align-items: center;
                gap: 22px;

                img{
                    width: 18px;
                    height: 18px;
                    object-fit: contain;
                    flex-shrink: 0;
                }

                a{
                    width: auto;
                    min-height: auto;
                    padding: 0;
                    background: transparent;
                    color: #333333;
                    font-size: 13px;
                    line-height: 1;
                    display: inline-flex;
                    align-items: center;
                }
            }
        }
    }

    #menu-toggle-common:checked ~ .nav-sp{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #menu-toggle-common:checked + .header-inner{
        .btn-menu-icon{
            span:nth-child(1){
                transform: translate(-50%, -50%) rotate(45deg);
            }

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

            span:nth-child(3){
                transform: translate(-50%, -50%) rotate(-45deg);
            }
        }
    }

    #mainvisual{
        width: 100%;
        height: auto;
        aspect-ratio: 1366/796;
        h2{
            position: absolute;
            top: 11%;
            right: 4.5%;
            span{
                font-size: clamp(16px,4.45dvw,32px);
                line-height: 1.1;
                /* ▼ 白い縁取り */
                -webkit-text-stroke: 5px var(--white);
                paint-order: stroke fill;
                text-shadow:
                    0 0 1px var(--white),
                    0 0 1px var(--white),
                    0 0 2px var(--white),
                    0 0 3px var(--white),
                    0 0 4px var(--white),
                    0 0 5px var(--white);
            }
        }
    }
}

@media screen and (max-width:920px){
    #nearby-guide{
        /* イラスト：横向いて歩くカピピン（NEARBY GUIDE 右） */
        .illust05{
            width: 72px;
            top: 185px;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    #access{
        .access-inner{
            flex-direction: column;
            .text{
                width: 100%;
            }
            .map-img{
                width: 100%;
                display: flex;
                align-items: flex-end;
                iframe{
                    width: 100%;
                    height: auto;
                    aspect-ratio: 4/3;
                    max-height: 300px;
                }
            }
        }
    }
    footer{
        .footer-inner{
            address{
                p{
                    .sp-br{
                        display: block;
                        line-height: 0;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:540px){
    #nearby-guide{
        /* イラスト：横向いて歩くカピピン（NEARBY GUIDE 右） */
        .illust05{
            width: 56px;
            top: clamp(116px, calc(-36px + 42.22vw), 192px);
        }
    }
}

@media screen and (max-width:530px){
    #GuestRooms .illust01{
        top: 0.3%;
    }

    #access{
        .access-inner{
            .text{
                .dl-ko{
                    text-align: center;
                    flex-direction: column;
                    dt{
                        margin-bottom: 0.5rem;
                    }
                }
            }
        }
    }
    
    footer{
        padding: 3rem 0 5rem;
    }
}

@media screen and (max-width:500px){
    #guest-info{
        .guest-info-inner{
            .item{
                width: 80%;
            }
        }
    }
}