/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Serif+KR:wght@400;500;600&display=swap');

/* 共通 */
main.en-main{
    background: #F7FDFE;
}

/* ヘッダーのスクロール制御 */
.l-header .p-header-nav_drower nav.drower-menu{
    width: 100vw;
}
.l-header .p-side-nav{
    top:auto;
    bottom: 20%;
}
.l-header .p-header-nav {
    width: fit-content;
    padding: 0 20px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.p-header-nav.header-hidden {
    transform: translateY(-100%);
}

.p-side-nav {
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
}

.p-side-nav.header-hidden {
    transform: translateX(100%);
}

/* 言語選択ドロップダウン */
.p-header-nav .p-header-nav_drower{
    width: 33%;
}
.p-header-nav .p-header-nav_logo{
    width: 30%;
}
.p-header-nav .p-header-nav_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(225deg, rgba(164, 134, 77, 0.64) 0%, rgba(88, 71, 41, 0.64) 100%);
    position: relative;
    width: 120px;
    height: 100%;
    margin: 0 16px;
}
.p-header-nav .p-header-nav_lang:hover{
    background: linear-gradient(225deg, rgba(164, 134, 77, 0.4) 0%, rgba(88, 71, 41, 0.4) 100%);
}

.p-header-nav .p-header-nav_lang img{
    width: 36px;
    aspect-ratio: 1/1;
}
.lang-trigger {
    cursor: pointer;
    padding: 8px;
}

.lang-dropdown {
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.lang-dropdown li {
    margin: 0;
}

.lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.lang-dropdown a:hover {
    background-color: #f5f5f5;
}

.lang-dropdown a:focus {
    outline: none;
    background-color: #e6f3ff;
}
h2{
    color: #05432B;
    text-align: center;
    font-family: Lora;
    font-size: clamp(2rem, 1.515rem + 2.07vw, 4rem);
    font-style: normal;
    font-weight: 400;
    line-height: 112%; /* 71.68px */
    letter-spacing: 0.5px;
}
h3{
    color: #05432B;
    font-family: Lora;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: 0.5px;
}
p{
    color: #222;
    font-family: Lora;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 28px */
    letter-spacing: 0.5px;
}
a{
    text-decoration: none;
}

._inner{
    width: 90%;
    max-width: 1680px;
    margin: 0 auto;
}
._col3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
}
._col3-item{
    width: 100%;
}
.p-side-nav_btn{
    text-align: center;
    font-size: 14px !important;
}
body:has(.kr-main) .p-side-nav_btn{
    font-family: "Noto Serif KR";
}
.p-header-nav_drower nav.drower-menu ul .lang{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.p-header-nav_drower nav.drower-menu ul .lang img{
    width: 36px;
    aspect-ratio: 1/1;
}
.p-header-nav_drower nav.drower-menu ul .lang a{
    font-size: 14px;
    opacity: 0.7;
}
.p-header-nav_drower nav.drower-menu ul .lang a::after{
    display: none;
}
.p-header-nav_drower nav.drower-menu ul .lang a:nth-of-type(2){
    opacity: 1;
}

/* スライダー */
.slide {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.slide-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.kr-main .slide-container{
    padding-bottom: 10px;
    background: linear-gradient(180deg, rgba(143, 227, 234, 0.00) 40%, #B8EEF3 100%);
}
.slide-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center;
}

.slide-item {
    flex: 0 0 80%;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    transform: scale(0.95);
}


.slide-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-controls {
    position: absolute;
    bottom: calc(2.5% + 32px); /* 画像の下からの距離をここで調整 */
    right: calc(7.5% + 32px);   /* 画像の右端に合わせる */
    z-index: 2;
    display: flex;
    gap: 16px; /* ボタン間の隙間 */
    /* ↓ この一行で、ボタン群が画像の内側に入ります */
    transform: translateX(-100%); 
    width: 5%;
    min-width: 80px;
}

.slide-prev,
.slide-next {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    aspect-ratio: 1/1;
    cursor: pointer;
    padding: 0;
}

.slide-indicators {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CDCDCD;
    cursor: pointer;
}

.indicator.active {
    width: 18px;
    height: 18px;
    background: #A7884E;
}

/* 画像モーダルスライド */
.room-content-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: hidden;
}

.room-content-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-modal-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.content-modal-slide-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
}

.content-modal-slide-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* モーダルコントロール */
.modal-controls {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
}

.modal-counter {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.modal-close {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

/* モーダルトリガー */
#room1-modal-start,
#room2-modal-start {
    cursor: pointer;
    color: #05432B;
    min-width: 182px;
    padding-bottom: 12px;
    width: fit-content;
    margin-top: 32px;
}
#room1-modal-start p,
#room2-modal-start p{
    color: #A7884E;
}
#room1-modal-start::after,
#room2-modal-start::after{
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-image: url(../img/en.kr/arrow-right.webp);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
#room1-modal-start:hover,
#room2-modal-start:hover {
    color: #A7884E;
}
/* mv */
.p-top-mv-img{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.p-top-mv-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* about */
.about{
    padding:144px 0 0;
}
.about-inner{
    padding: 0 0 160px 0;
    position: relative;
}
.about-inner::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    aspect-ratio: 461/450;
    background-image: url(../img/en.kr/about-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about .slide{
    background: #F7FDFE;
}
.about .slide-indicators{
    bottom: 5%;
}
.about .slide-controls {
    bottom: calc(7.5% + 32px);
}
.about h2{
    font-size: clamp(2.75rem, 2.204rem + 2.33vw, 5rem);
    text-align: left;
    margin-bottom: 64px;
}
.about-flex{
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.about-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 40%;
}
.about-text img{
    width: 45%;
    margin-left: auto;

}
.about-img{
    width: 60%;
}


/* experience */
.experience{
    position: relative;
    padding-top: 140px;
    background: linear-gradient(180deg, #F7FDFE 0%,#BAEFF3 30%, #C8E6E8 100%);
    padding-bottom: 520px;
}
.experience::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url(../img/en.kr/ex-bg.webp);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.experience::before{
    content: 'Relax, Your Way, at LEO';
    /* text */
    color: #FFF;
    text-align: center;
    font-family: Lora;
    font-size: clamp(4rem, 3.333rem + 2.85vw, 6.75rem);
    font-style: normal;
    font-weight: 400;
    line-height: 112%; /* 120.96px */
    letter-spacing: 0.5px;
    /* position */
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}
.experience h2{
    margin-bottom: 40px;
}
.experience-inner > p{
    text-align: center;
    margin-bottom: 64px;
}
.experience-flex{
    display: flex;

}
.experience-item img{
    margin-bottom: 24px;
}
.experience-item h3{
    margin-bottom: 24px;
}



/* room */
.room{
    padding: 140px 0 0;
}
.room-inner h2{
    margin-bottom: 40px;
}
.room-inner > p{
    text-align: center;
    margin-bottom: 40px;
}
.room-nav{
    display: flex;
    justify-content: center;
    gap: 2%;
}
.room-nav-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80x;
    padding: 0 20px;
    height: 48px;
    border: 1px solid #A7884E;
}
.room-nav-link::before{
    content: '';
    width: 28px;
    height: 14px;
    background-image: url(../img/en.kr/arrow-bottom.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.room-nav-link p{
    color: #A7884E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 32px */
    letter-spacing: 0.5px;
}
.room-content-img{
    margin-right: -10%;
    background-image: url(../img/en.kr/room1-1.webp);
    aspect-ratio: 22/13;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 64px;
    box-sizing: border-box;
    margin:80px 0 64px;
}
.room-content-img.reverse{
    background-image: url(../img/en.kr/room2-1.webp);
    margin-right: 0;
    margin-left: -10%;
}
.room-content-text{
    position: relative;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    background:  rgba(247, 253, 254, 0.80) ;
    padding: 56px 50px 24px 100px;
    box-sizing: border-box;
    gap: 16px;
}
.reverse .room-content-text{
    padding: 56px 100px 24px 50px;
}
.room-content-text::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 50px;
    height: 100%;
    background: rgba(247, 253, 254, 0.80);
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: 2;
}
.reverse .room-content-text{
    margin-left: auto;
}
.reverse .room-content-text::before{
    right: auto;
    left: 0;
    transform: translateX(-100%);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.room-content-text h3{
    color: #222;
    font-family: Lora;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 50.4px */
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.room-content-info{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2%;
}
.room-content-info-text{
    width: 50%;
}
.room-content-info-text h4{
    color: #05432B;
    font-family: Lora;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(5, 67, 43, 0.30);
    margin-bottom: 24px;
}
.room-content-info-item{
    margin-bottom: 32px;
}
.room-content-info-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}
.room-content-info-flex p:first-of-type{
    width: 30%;
}
.room-content-info-flex p:last-of-type{
    width: 70%;
}
/* アコーディオン */
.room-content-info-accordion {
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
}

.room-content-info-accordion.expanded {
    max-height: none;
}

.room-content-info-accordion::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #F7FDFE);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.room-content-info-accordion.expanded::after {
    opacity: 0;
}

.room-content-info-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
    height: 48px;
    border: 1px solid #A7884E;
    padding: 0 32px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px auto 0;
}
.room-content-info-btn::after{
    content: '';
    width: 28px;
    height: 14px;
    background-image: url(../img/en.kr/arrow-bottom.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.room-content-info-btn p {
    color: #A7884E;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.room-content-info-btn:hover p {
    color: #A7884E;
}

.room-content-info-img{
    width: 50%;
}


/* facility */
.facility {
    padding: 100px 0 140px;
    background: linear-gradient(180deg, #F7FDFE 0%, #B8EEF3 70%, #F7FDFE 100%);
}
.facility h2{
    margin-bottom: 40px;
}
.facility-inner > p{
    text-align: center;
    margin-bottom: 64px;
}
/* アクセス */
.access iframe{
    position: static;
    width: 100%;
    aspect-ratio: 18/7;
    margin-top: 56px;
}

/* attraction */
.attraction {
    padding: 100px 0 140px;
    background: linear-gradient(180deg, #F7FDFE 0%, #B8EEF3 70%, #F7FDFE 100%);
}
.attraction h2{
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 64px;
}
.attraction-inner{
    width: 95%;
    display: flex;
    align-items: stretch;
    gap: 40px;
    transform: translateX(5%);
    margin-left: 0;
}
.slide-text-box {
    width: 40%;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.slide-text-box h2 {
    color: #05432B;
    font-size: 36px;
    margin-bottom: 24px;
    text-align: left;
}

#slide-duration {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
#slide-duration::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../img/en.kr/walk-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#slide-duration[data-duration*="drive"]::before {
    background-image: url(../img/en.kr/car-icon.webp);
}

.slide-text-box .slide-controls {
    display: flex;
    gap: 16px;
}
.attraction .slide-controls{
    position: static;
    transform: none;
    margin-left: auto;
}

.slide-text-box .slide-prev,
.slide-text-box .slide-next {
    background: none;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.attraction-slider {
    width: 60%;
    position: relative;
    overflow: hidden;
}

.attraction-slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.attraction .slide-item {
    flex: 0 0 calc(80% - 15px);
    height: 100%;
    margin-right: 15px;
    position: relative;
    transform: scale(1);
}

.attraction .slide-item img {
    width: 100%;
    object-fit: cover;
}

/* attractionのレスポンシブ対応 */
@media (max-width: 768px) {
    .attraction {
        flex-direction: column;
        padding: 50px 0 100px;
    }
    .attraction h2{
        margin-bottom: 24px;
    }
    .slide-text-box {
        width: 90%;
        margin: 0 auto 20px;
        padding: 20px;
    }
    
    .slide-text-box h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .slide-text-box p {
        font-size: 14px;
    }
    
    .attraction-slider {
        width: 100%;
    }
    
    .attraction .slide-item {
        flex: 0 0 90%;
        margin-right: 10px;
    }
    
    .slide-text-box .slide-controls {
        justify-content: center;
    }
}

/* contact */
.contact{
    padding: 100px 0 0;
}
.contact h2{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 36px;
    text-align: left;
    margin-bottom: 40px;
    cursor: auto;
}
.contact h2::after{
    content: '';
    display: block;
    width: 64px;
    aspect-ratio: 1/1;
    background-image: url(../img/en.kr/insta-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.contact-flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2%;
}
.contact-item{
    width: 25%;
    margin-top: 40px;
}
.contact-item:nth-of-type(even){
    margin-top: 0;
}


/* footer */
body:has(.kr-main) .l-wrapper .p-footer h3{
    font-family: "Noto Serif KR";
}
body:has(.kr-main) .l-wrapper .p-footer_reserve--btn{
    font-family: "Noto Serif KR";
}
body:has(.kr-main) .p-footer_reserve--access{
    font-family: "Noto Serif KR";
}
body:has(.kr-main) .p-footer_reserve--call{
    font-family: "Noto Serif KR";
}
body:has(.kr-main) .p-footer_reserve--call span{
    font-family: "Noto Serif KR";
}
.l-wrapper .p-footer{
    background-image: url(../img/en.kr/footer-bg.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding-top: 200px;
}
.l-wrapper .p-footer_inner{
    width: 90%;
    max-width: 1680px;
    margin: 0 auto;
    align-items: stretch;
    padding-bottom:24px ;
}
.l-wrapper .p-footer_info{
    width: 33%;
}
.p-footer_sns{
    margin-top: 48px;
    margin-bottom: 0;
}
.p-footer_detail{
    width: 33%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2%;
}
.l-wrapper .p-footer_nav{
    width: 33%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center ;
}
.l-wrapper .p-footer_nav li{
    margin:0;
    text-align: center;
}
.l-wrapper .p-footer .copyright{
    background: #0024A1;
}

#sb_instagram #sbi_images .sbi_item:nth-child(odd){
    margin-top: 40px !important;
}
#sb_instagram > div{
    gap: 16px !important;
}

.sp-only{
    display: none;
}
@media screen and (max-width: 768px) {
    .sp-only{
        display: block;
    }
    .pc-only{
        display: none;
    }
    .l-header .p-header-nav{
        padding-right: 0;
    }
    .p-header-nav .p-header-nav_lang{
        width: 80px;
        margin-right: 0;
    }
    .l-header .p-side-nav{
        bottom: 10%;
    }
    ._inner h2{
        text-align: left;
        margin-bottom: 24px !important;
    }
    ._inner p{
        text-align: left;
    }


    .about-inner{
        padding-bottom: 80px;
    }
    .about-inner::after{
        display: none;
    }
    .about-flex{
        flex-direction: column;
    }
    .about-text{
        width: 100%;
    }
    .about-text img{
        width: 100%;
    }
    .about-img{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 4%;
    }
    .about-img img{
        width: 66%;
    }
    .about-img img:nth-of-type(1){
        width: 30%;
    }
    .about .slide-controls{
        bottom: calc(7.5% + 8px);
        right: calc(7.5% + 32px);
        transform: translateX(0);
    }
    .about .slide-indicators{
        bottom: -10px;
        z-index: 2;
    }
    .about .indicator.active{
        width: 12px;
        height: 12px;
    }
    .about .indicator{
        width: 8px;
        height: 8px;
    }


    .experience{
        padding-bottom: 360px;
    }
    .experience::before{
        content: 'Relax,\A Your Way,\A at LEO';
        white-space: pre-line;
        text-align: left;
        width: 90%;
        margin: 0 auto;
    }

    .experience-inner > p{
        margin-bottom: 40px;
    }


    /* experienceスライダー（SP版のみ） */
    .experience-flex{
        display: flex;
        position: relative;
        z-index: 1;
    }
    .experience-flex-wrapper{
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }
    .experience-item{
        flex: 0 0 100%;
        margin-right: 24px;
        box-sizing: border-box;
    }
    
    .experience-controls {
        position: absolute;
        top: calc(90vw - 8px);
        right: 8px;
        transform: translateY(-100%);
        display: flex;
        gap: 12px;
        z-index: 2;
    }
    
    button.experience-prev{
        background: url(../img/en.kr/slide-prev.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    button.experience-next{
        background: url(../img/en.kr/slide-next.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    button.experience-prev,
    button.experience-next {
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        position: relative;
        z-index: 2;
    }
    
    .experience-prev:hover,
    .experience-next:hover {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .experience-indicators {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translate(-50%, 100%);
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .experience-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #CDCDCD;
        cursor: pointer;
    }
    
    .experience-indicator.active {
        width: 12px;
        height: 12px;
        background: #A7884E;
    }
    .experience-item img{
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    .experience::after{
        height: 280px;
    }


    .room{
        padding:72px 0 0 ;
    }
    .room-nav{
        flex-direction: column;
        gap:16px ;
    }
    .room-nav-link{
        justify-content: center;
        gap: 8px;
    }
    .room-content{
        width: 100vw;
        margin-left: -5vw;
    }
    .room-content-img{
        aspect-ratio: 375/600;
    }
    .room-content-img.reverse{
        width: 100vw;
        margin-right: -5vw;
        margin-left: 0;
    }
    .room-content-text{
        width: 90%;
        flex-direction: column;
        padding-left: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .reverse .room-content-text{
        width: 90%;
        padding-left: 20px;
    }
    .room-content-text::before{
        display: none;
    }
    .room-content-text h3{
        font-size: 20px;
    }
    .room-content-info{
        flex-direction: column;
    }
    .room-content-info-text{
        width: 100%;
    }
    .room-content-info-accordion{
        width: 100%;
    }
    .room-content-info-img{
        width: 100%;
    }

    /* facilityスライダー（SP版のみ） */
    .facility-flex{
        display: flex;
        position: relative;
        z-index: 1;
    }
    .facility-flex-wrapper{
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
    }
    .facility-item{
        flex: 0 0 100%;
        margin-right: 24px;
        box-sizing: border-box;
    }
    
    .facility-controls {
        min-width: 80px;
        position: absolute;
        bottom: 8px;
        right: 8px;
        display: flex;
        gap: 12px;
        z-index: 2;
    }
    
    .facility-prev {
        background-image: url(../img/en.kr/slide-prev.webp);
        background-color: transparent;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        width: 36px;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        padding: 0;
    }
    .facility-next{
        background-image: url(../img/en.kr/slide-next.webp);
        background-color: transparent;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: none;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        width: 36px;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        padding: 0;
    }
    
    .facility-prev:hover,
    .facility-next:hover {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .facility-indicators {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translate(-50%, 100%);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .facility-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #CDCDCD;
        cursor: pointer;
    }
    
    .facility-indicator.active {
        width: 12px;
        height: 12px;
        background: #A7884E;
    }
    .facility-item img{
        aspect-ratio: 335/452;
        object-fit: cover;
    }



    .attraction{
        padding-bottom: 72px;
    }
    .attraction-inner{
        flex-direction: column-reverse;
    }
    .slide-text-box{
        padding: 0;
        margin: 0;
    }
    .attraction .slide-controls{
        position: absolute;
        top:48vw;
    }
    .slide-text-box .slide-prev img,
    .slide-text-box .slide-next img{
        display: none;
    }
    .slide-text-box .slide-prev{
        background-image: url(../img/en.kr/slide-prev.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .slide-text-box .slide-next{
        background-image: url(../img/en.kr/slide-next.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .contact{
        padding: 0;
    }
    .contact h2{
        align-items: end;
        gap: 20px;
    }
    .contact h2::after{
        width: 48px;
    }
    .contact-flex{
        flex-wrap: wrap;
        padding: 0 5%;
    }
    .contact-item{
        width: 48%;
        margin-top: 0;
    }
    .contact-item:nth-of-type(even){
        margin-top: 20px;
    }


    .l-wrapper .p-footer{
        background-image: url(../img/en.kr/footer-bg-sp.webp);
        background-position: top;
    }
    .l-wrapper .p-footer_inner{
        align-items: center;
    }
    .l-wrapper .p-footer_info{
        width: 60%;
        gap: 24px;
    }
    .l-wrapper .p-footer_nav{
        width: 60%;
    }
    .l-wrapper .p-footer_reserve--btn{
        width: 100%;
        max-width: none;
        margin-top: 40px;
    }

    #sb_instagram #sbi_images .sbi_item:nth-child(3){
        margin-top: 0 !important;
    }
    #sb_instagram #sbi_images .sbi_item:nth-child(4){
        margin-top: -40px !important;
    }
}


/* page-ko.php */
.kr-main h1{
    font-family: "Noto Serif KR";
}

.kr-main h2{
    font-family: "Noto Serif KR";
}

.kr-main h3{
    font-family: "Noto Serif KR";
}
.kr-main h4{
    font-family: "Noto Serif KR";
}

.kr-main p{
    font-family: "Noto Serif KR";
}
.kr-main .experience{
    background: #F7FDFE;
    padding-bottom: 160px;
}
.kr-main .experience::after,
.kr-main .experience::before{
    display: none;
}
.kr-main .room.experience{
    background: linear-gradient(180deg, #B8EEF3 0%, #F7FDFE 10%, #F7FDFE 100%);
    padding-bottom: 520px;
}
.kr-main .room.experience::before{
    display: block;
}
.kr-main .room.experience::after{
    display: block;
    background-image: url(../img/en.kr/kr-ex-bg.webp);
}

.amenity{
    padding-bottom: 140px;
}
.amenity-inner {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
.amenity-inner h2{
    margin-bottom: 64px;
}
.amenity-inner h3{
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}
.amenity-inner h3:last-of-type{
    margin-top: 64px;
}
.amenity-wrap{
    border: 1px solid #05432B;
    padding: 80px 5%;
    box-sizing: border-box;
}
.amenity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding:40px 4% ;
    box-sizing: border-box;
    margin-bottom: 16px;
    background: #FFF;
}
.amenity-item > p:last-of-type{
    width: 70%;
}
.amenity-item > p:first-of-type{
    font-weight: 600;
    width: 30%;
}
.amenity-item .amenity-item-layout{
    width: 70%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.amenity-item .amenity-item-layout p{
    display: flex;
    align-items: center;
    gap: 8px;
}
.amenity-item .amenity-item-layout p:first-of-type::before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/en.kr/amenity-parking.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.amenity-item .amenity-item-layout p:last-of-type::before{
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    background-image: url(../img/en.kr/amenity-wave.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.amenity-flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
}
.amenity-flex-item{
    width: 33%;
}
.amenity-flex-item img{
    margin-bottom: 16px;
}
.amenity-flex-item p{
    color: #05432B;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .amenity-item{
        flex-direction: column;
        align-items: start;
    }
    .amenity-item > p:first-of-type{
        width: 100%;
    }
    .amenity-item > p:last-of-type{
        width: 100%;
    }   
    .amenity-item .amenity-item-layout{
        width: 100%;
    }
    .amenity-item .amenity-item-layout p{
        width: 100%;
    }

    .amenity-flex{
        flex-direction: column;
    }
    .amenity-flex-item{
        width: 100%;
    }
}