@charset "UTF-8";
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@supports not (min-block-size:100dvb){:where(html){block-size:100%}}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){block-size:100%;block-size:100dvb;line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:2px solid var(--focus-color,Highlight);outline-offset:2px}:where(.visually-hidden:not(:focus,:active,:focus-within,.not-visually-hidden)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}
:root{
    --txt:#3d2820;
    --gold:#B29D6C;
    --grey:#C4C4C4;
    /* --lightpink:#FFBDCE; */
    --lightblue:#c0f3ff;
    /* --pink:#F76D7E; */
    --blue:#00b4e5;
    --lightyellow:#f8f7f3;
    --yellow:#ffd900;
    --brown:#784231;
    --olive:#7D6E3A;
    --orange:#f7931e;
    --lightorange:#ffcb8d;
    --redbrown:#c43404;
    --skyblue:#92c0d4;
    --s:clamp(8px,2vw,15px);
    --ss:clamp(8px,1vw,12px);
    --txt:clamp(13px,2vw,21px);
    --h3:clamp(14px,3vw,32px);
    --h4ttl:clamp(18px,3vw,35px);
}
@font-face{
    font-family: "NotoSans";
    src:
        local("NotoSans"),
        url("fonts/NotoSans-VariableFont_wdth\,wght.ttf") format("truetype");
}
@font-face {
    font-family: "Ryumin-L";
    src: local("Ryumin"),
         url("fonts/AP-OTF-RyuminPr6N-Light.otf") format("opentype");

}
@font-face {
    font-family: "Ryumin-M";
    src: local("Ryumin"),
         url("fonts/AP-OTF-RyuminPr6N-Medium.otf") format("opentype");
}
html{
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body{
    background-color: #fff;
    color: #3d2820;
    font-size: var(--txt);
    font-family: "Ryumin-M";
}
a{
    text-decoration: none;
    transition: ease .2s;
    color: #3d2820;
}
a:hover{
    transition: ease .2s;
    opacity: .8;
    cursor: pointer;
}
svg{
    overflow: visible;
}
.splide__slide.is-active span,
.splide__slide.is-prev span,
.splide__slide span.is-prev {
    animation: scale 5s ease-in-out 0s normal both;
}
@keyframes scale {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
.splide,
.splide__track,
.splide__list,
.splide__slide {
    height: 100%;
    max-height:100vh;
    width: 100%;
}
.splide {
    position: relative;
    height: 100%;
    font-family: "Ryumin-L";
}
.splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #fff;
}
.splide__slide span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: scale(1.5); 
}
.splide__track [aria-live='polite']  .splide__slide span{
    animation-play-state: paused;
}
.splide__controller {
    position: absolute;
    bottom: 10px;
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-flow: column;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.splide__pagination {
    position: static;
    display: grid;
    grid-auto-flow: column;
    column-gap: 10px;
    padding: 0;
    text-align: center;
}
.splide__pagination li button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
}
.splide__pagination li button .is-active {
    background-color: red;
}
.splide__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 0;
    border-radius: 50%;
}
.splide__toggle svg {
    width: 50%;
    fill: red;
}
.splide__pagination,.splide__arrows{
    display: none;
}
.splide.is-initialized, .splide.is-rendered{
    height: fit-content;
}
img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#top{
    position: relative;
}
#top .title{
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
}
#top .title div{
    width: 51vw;
    min-width: 100px;
    max-width: 600px;
}
.flx{
    display: flex;
}
.clm{
    flex-direction: column;
}
.align-center{
    align-items: center;
    display: flex;
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
#top .logo{
    display: block;
    position: absolute;
    top: 0;
	left: 0;
    width: 16%;
    /*left: 2%;
    top: 4%;
    width: 9%;*/
    z-index: 1;
    max-width: 200px;
}
#top .rewards{
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
    background-color: #507787;
    border-bottom-left-radius: 2vw;
    padding: 2%;
}
#top .rewards img{
    display: block;
    max-width: 10px;
    width: 3%;
    margin: 2px 4px 0 0;
}
#top .rewards img,#top .rewards span{
    display: inline-block;
    color: #fff;
}
.bg{
    background-image: url("../img/bg.jpg");
    background-size: cover;
    margin: 0 auto;
}

/*.mv_txt{
    filter: drop-shadow(2px 2px 4px #8b2b22);
}*/

/* =============section special============= */
#special .inner{
    padding: 5em 2em 3em;
    max-width: 900px;
    margin: auto;
}
#special .pgr{
    width: 80%;
    margin:0 auto;
}
.center{
    text-align: center;
}
#special .blue{
    color: var(--skyblue);
    font-size: var(--h3);
}
#special .dark{
    color: #3d2820;
    font-size: var(--h3);
}
#special .blue2{
    color: var(--skyblue);
    font-size: var(--h3);
    border: 5px solid var(--skyblue);
    background-color: #fff;
    padding: 1.5em;
    border-radius: 20px;
}
#special .kikan{
    max-width: 650px;
    margin: 1.2em auto 2em;
    width: 100%;
}

#special h3{
    line-height:1.6;
    letter-spacing: 1.2px;
}
#special ul{
    margin: 2em 0;
}
#special ul li{
    margin: 0 .5em;
}

.inner .btn_wrap{
    margin-bottom: 3em;
}
.inner .btn_wrap2{
    margin-bottom: 0;
}
.inner .btn{
    background-color: var(--skyblue);
    color: #fff;
    border-radius: 80px;
    padding: 1em;
    display: block;
    width: 90%;
    max-width: 600px;
    margin: .5em auto;
    font-size: larger;
    line-height: 1.3;
    text-align: center;
}
.inner .btn2{
    background-color: var(--skyblue);
    color: #fff;
    border-radius: 80px;
    padding: 0.5em;
    display: block;
    width: 90%;
    max-width: 600px;
    margin: .5em auto;
    line-height: 1.3;
    text-align: center;
}
.inner .btn span{
    display: inline-block;
}
.inner .btn span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .2s;
}
.inner .btn:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .2s;
}


#room{
    margin: 4em 2em;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 0 2em;
}
#room h2{
    width: 90%;
    max-width: 500px;
    margin: auto;
}
#room article{
    border: 4px solid var(--skyblue);
    padding: 2em 1.2em;
    border-radius: 20px;
    margin: 0 auto 4em;
}
#room h3{
    color: var(--skyblue);
    font-size: var(--h3);
    margin-bottom: 1em;
}
#room h3 .img{
    max-width: 25px;
    margin-left:3px;
    width: 5%;
}
hr{
    background-color: var(--grey);
    outline: none;
    border: none;
    height: 1px;
    width: 100%;
    margin: .5em 0;
}
#room .room_ttl{
    font-size: var(--h4ttl);
}
#room article .label{

}
#room article .label li{
    background-color: var(--skyblue);
    font-size: var(--s);
    padding: 4px 6px;
    margin: 0 3px;
    line-height: 1.2;
    color: #fff;
    border-radius: 5px;
}
#room .txt{
    margin-left:1em;
}
#room article .photo{
    width: 40%;
}
#room .btn{
    margin: auto;
}
#room .btn a{
    border: solid 1px;
    border-radius: 5px;
    padding: .5em 1em;
    margin: 1em;
    transition: ease-in-out .2s;
}
#room .btn a:hover{
    color: #fff;
    background-color: var(--skyblue);
    transition: ease-in-out .2s;
    opacity: 1;
}
#room .btn a:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .1s;
}
#room .btn a span{
    display: inline-block;
}
#room .btn a span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .1s;
}
#room .wrap{
    margin: 2em auto 4em;
}
#room .kome{
    color: var(--skyblue);
    font-size: var(--s);
    margin:.2em 0 .3em;
}
#room .photo .imgkome{
    font-size: var(--s);
}
#room .renewal{
    position: relative;
}
#room .yoyaku{
    text-align: center;
    font-size: larger;
    color: var(--skyblue);
    padding: 0.5em 0 0.2em;
}
#room .spgr_price{
    font-size: clamp(27px, 2.4vw, 27px);
    font-family: "ryumin-L";
    letter-spacing:1px;

}
#room .spgr_price2{
    font-size: clamp(17px, 2.4vw, 27px);
    font-family: "ryumin-L";
    letter-spacing:1px;

}
#room .nomal_price{
    font-size: clamp(21px, 2.4vw, 27px);
    font-family: "ryumin-L";
    letter-spacing:1px;
}
#room .hosoku{
    font-size: clamp(10px, 2vw, 17px);
}
.winter_logo{
    width: 23%;
    margin: auto;
}
.button-1,
.button-2,
.button-3,
.button-4,
.button-5 {
    display: none;
}
.renewal::before{
    content: "";
    display: block;
    background: url(../img/renewal.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 45%;
    height: 12vw;
    max-height: 60px;
    position: absolute;
    left: 0;
    top: -2em;
}
#suggest{
    margin: 4em auto 1em;
}
#suggest .btn_wrap{
    margin-bottom: 3em;
}
#suggest .btn{
    background-color: var(--skyblue);
    color: #fff;
    border-radius: 80px;
    padding: 1em;
    display: block;
    width: 90%;
    max-width: 600px;
    margin: .5em auto;
    font-size: larger;
    line-height: 1.3;
}
#suggest .btn span{
    display: inline-block;
}
#suggest .btn span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .2s;
}
#suggest .btn:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .2s;
}
#suggest .inner{
    padding: 5em 2em 3em;
    max-width: 900px;
    margin: auto;
}
#suggest p{
    font-size: var(--h3);
}
#suggest .youtube{
    margin: 20px auto 30px;
}
#camp .gentei{
    width:90%;
    max-width: 900px;
    margin: 4em auto 2em;
}
#camp .oubo{
    color: #92c0d4;
    padding: 0em;
    width: 90%;
    max-width: 900px;
    margin: 3em auto;
    display: block;
}

#camp .btn{
    background-color:var(--skyblue);
    color: #fff;
    border-radius: 80px;
    padding: 1em;
    width: 60%;
    max-width: 500px;
    margin: auto;
    display: block;
    
}
#camp .btn span{
    display: inline-block;
}
#camp .btn span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .2s;
}
#camp .btn:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .2s;
}
#seibu{
    background-color: #f8f7f3;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    margin: 3em auto;
    padding-bottom: 1.7rem;
}
#seibu .app{
    padding: 4%;
    background-color: #f8f7f3;
    border-radius: 20px;
}
#seibu .app_dl{
    display: flex;
    justify-content:center;
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
}
#seibu .app_dl p{
    margin: 0 10px;
}
#seibu .btn{
    background-color:#93884b;
    color: #fff;
    border-radius: 80px;
    padding: 1em;
    width: 65%;
    max-width: 500px;
    margin: auto;
    display: block;
}
#seibu .btn span{
    display: inline-block;
}
#seibu .btn span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .2s;
}
#seibu .btn:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .2s;
}
.karupuri{
    width: 90%;
    max-width: 900px;
    margin: 3em auto;
}
#renewal .btn span{
    display: inline-block;
}
#renewal .btn span span{
    font-size: smaller;
    transform: translate(5px, 0);
    transition: ease-in-out .2s;
}
#renewal article .inner{
    max-width: 900px;
    width:90%;
    margin: auto;
    padding: 4em 0;
}
#renewal .btn{
    display: block;
    margin: 1em auto 0;
    padding: 1em;
    color: #fff;
    border: solid #fff 1px;
    width: 65%;
    max-width: 300px;
}
#renewal .re1{
    /* background-color: var(--brown); */
    background-color: #93884b;
}
#renewal .re2{
    /* background-color: var(--olive); */
    background-color: #507787;
}
#renewal .re1 .btn{
    /* background-color: var(--brown); */
    background-color: #93884b;
    border: 1px #fff solid;
    border-radius: unset;
}
#renewal .re2 .btn{
    /* background-color: var(--olive); */
    background-color: #507787;
    border: 1px #fff solid;
    border-radius: unset;
}
#renewal .btn:hover{
    background-color: #fff;
    opacity: 1;
}
#renewal .re1 .btn:hover{
    /* color: var(--brown); */
    color: #93884b;
}
#renewal .re2 .btn:hover{
    /* color: var(--olive); */
    color: #507787;
}
#renewal .btn:hover span span{
    transform: translate(10px, 0);
    transition: ease-in-out .2s;
}
.lounge a{
    border: 1px solid;
    border-radius: 5px;
    margin: -40px auto 0;
    text-align: center;
    width: 50%;
    display: block;
    padding: .5em 1em;
}
.lounge a:hover{
    color: #fff;
    background-color: var(--skyblue);
    transition: ease-in-out .2s;
    opacity: 1;
}
.letterspacing{
    letter-spacing: -0.2em;
}

#renewal{
    color: #fff;
    text-align: center;
}
#renewal h5{
    font-size: 2em;
    letter-spacing: 3px;
    padding: 0.3em 1em;
    border: 1px solid #fff;
    display: inline;
}
#renewal p{
    font-size: 1.5em;
    margin:2.2rem 0 2rem;
}
#renewal .renewal_description{
    font-size: 1em;
    font-family: "Ryumin-L";
    margin-bottom: 30px;
}

/* ===footerここから=== */
footer {
    background-color: var(--skyblue);
    width: 100%;
    box-sizing: border-box;
    color: #FFF;
    padding: 40px 0;
    font-family: "NotoSans";
}
footer .footer_wrap {
    width: 95%;
    margin: auto;
}
footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer ul.ico {
    margin-bottom: 20px;
}
footer ul.ico li a {
    display: block;
    margin: 0 15px;
}
footer ul.hotel_list a {
    border-left: solid 1px #FFF;
    padding: 0 10px;
    line-height: 1.5;
    text-decoration: none;
    color: #FFF;
    font-size: 1rem;
}
footer ul.hotel_list li:first-child a{
    border-left: 0;
  }
footer p.copy {
    margin-top: 20px;
    font-size: 0.75rem;
    text-align: center;

}
footer .sp_br{
    display: none;
}
/* ===footerここまで=== */


.txt_s{
    font-size: var(--s);
}
.eastkome{
    font-size: 0.8rem;
    color: var(--skyblue);
    margin: -30px auto 3em;
    text-align: center;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width:640px) {
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    #special .inner{
        padding: 3em 2em 3em;
    }
    #special .flx{
        width: 100%;
        display: flex;
    }
    #special .flx li{
        margin-bottom: 1.5em;
    }
    #room .content .wrap{
        flex-direction: column;
    }
    #room article .photo{
        width: 100%;
    }
    #room .txt{
        margin: 1em 0 0;
        text-align: center;
    }
    #room .btn{
        width: 100%;
        display:block;
    }
    #room .btn a{
        display:block;
        /* width: 100%; */
        margin: 1em .5em 1em;
        padding: .5em;
        text-align: center;
    }
    .winter_logo{
    width: 35%!important;
    }
    #suggest .inner{
        padding: 3em 2em .5em;
    }
    #suggest .youtube{
        width: 95%;
    }
    #seibu{
        border-radius: 15px;
    }
    .karupuri{
    width: 100%;
    }
    footer {
        padding: 20px 0 40px;
    }
    footer ul.ico {
        margin: 15px 0;
        justify-content: center;
    }
    footer ul.hotel_list{
        justify-content: space-around;
    }
    footer ul.hotel_list li{
        width: calc(100% / 3);
    }
    footer ul.hotel_list a {
        font-size: 0.65rem;
        padding: 0 5px;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }
    footer p.copy {
        font-size: 0.5rem;
    }
    br.sp_br{
        display: block;
    }
    .eastkome{
    font-size: 0.7rem;
    }
    .lounge a{
        width: 100%;
    }
.button_sp{
    margin: 2% 0% 7% 0%;
}
.button-1,
.button-2,
.button-3,
.button-4,
.button-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    margin: 10px auto;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(139, 201, 209, 0.39), 0 2px 3px -2px rgba(139, 201, 209, 0.39);
    background-color: #92c0d4;
    font-weight: 600;
    font-size: 0.9em;
    }

    .button-1:hover,
    .button-2:hover,
    .button-3:hover,
    .button-4:hover,
    .button-5:hover {
        background-color: #92c0d4;
    }
    #room article .label{
    margin: 0 auto;
    text-align: center;
}
}
@media screen and (max-width:420px) {
    #room .btn a span{
        letter-spacing: -2px;
    }
}

/* 2025.秋旅より追加 心躍る軽井沢の秋　楽しみ方色々 */
#recommend .splide,
#recommend .splide__track,
#recommend .splide__list,
#recommend .splide__slide {
    max-height:none;
}
#recommend{
    background-color: var(--skyblue);
    padding:20px 0 40px;
    margin-bottom:50px;
}
#recommend h2{
    max-width: 500px;
    margin:50px auto 10px;
    padding: 0 30px;
}
#recommend .slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}
#recommend .splide {
    width: 100%;
    color: #fff;
}
#recommend .slide-content {
    background: var(--skyblue);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
#recommend .slide-content:hover {
    transform: translateY(-5px);
}
#recommend .slide-text-content {
    padding-top: 5px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
#recommend .slide-midashi{
    margin-bottom: 20px;
}
#recommend .slide-midashi img{
    height: 28px;
    width: auto;
}
#recommend .slide-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 90px;
}
#recommend .slide-title span{
    font-family: "Ryumin-M";
}
#recommend .slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    height: 160px;
    flex-grow: 1; 
    /* 説明文エリアで高さを調整 */
    margin-bottom: 30px;
    padding-right: 10px;
    text-align: justify;
    word-break: break-all;
}
@media (max-width: 977px){
    #recommend .slide-description{
        height: 180px;
    }
}
@media (max-width: 863px){
    #recommend .slide-description{
        height: 210px;
    }
}
@media (max-width: 768px){
    #recommend .slide-description{
        height: 100px;
    }
}
@media (max-width: 580px){
    #recommend .slide-description{
        height: 150px;
    }
}
@media (max-width: 404px){
    #recommend .slide-description{
        height: 200px;
    }
}
#recommend .slide-image {
    object-fit: cover;
    display: block;
    text-decoration: none;
    border-radius: 12px;
}
#recommend .slide-text-content-lower {
    padding-top: 5px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* 残りの空間を埋める */
}
#recommend .slide-hotel {
    font-size: 1.1rem;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.6;
    color: #fff;
    /* height: 110px; */
}

/* PC版のスタイル */
@media (min-width: 769px) {
    #recommend .splide {
        padding-top: 60px;
    }
    
    /* PC版矢印コンテナ - 右上に配置 */
    #recommend .pc-arrow-container {
        position: absolute;
        top: 0;
        right: 5%;
        display: flex;
        align-items: center;
        gap: 15px;
        z-index: 10;
    }
    
    #recommend .pc-arrow {
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    #recommend .pc-arrow:hover {
        transform: scale(1.1);
    }
    
    #recommend .pc-arrow i {
        width: 16px;
        height: 5px;
        background: url(../img/icon-arrow_wh.png) no-repeat top left;
        background-size: 100%;
        border: none;
    }
    
    /* #recommend .pc-arrow--prev i {
        左向き矢印（デフォルト）
    } */
    
    #recommend .pc-arrow--next i {
        /* 右向き矢印（左向きを反転） */
        transform: scaleX(-1);
    }
    
    #recommend .slide-info {
        color: #fff;
        font-size: 14px;
    }
    
    /* PC版では元の矢印を非表示 */
    #recommend .splide__arrows {
        display: none !important;
    }
    
    /* PC版のスライド調整 */
    #recommend .slide-content {
        margin: 0 15px;
        width: 500px;
        max-width: none;
        height: auto!important;
    }
}

/* SP版のスタイル */
@media (max-width: 768px) {
    #recommend h2{
    margin:30px auto 50px;
    padding: 0 50px;
    }
    #recommend .pc-arrow-container {
        display: none;
    }
    
    #recommend .splide__track {
        overflow: visible;
    }
    
    #recommend .slide-content {
        margin: 0 5px;
        height: auto!important;
    }

    /* SP版矢印 - 中央ブロックの左右に配置 */
    #recommend .splide__arrow {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 2;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important; /* 透明度を強制的に1に設定 */
    }
    
    #recommend .splide__arrow--prev {
        left: 10%;
    }
    
    #recommend .splide__arrow--next {
        right: 10%;
    }
    
    /* SVGを非表示にして背景画像で置き換え */
    #recommend .splide__arrow svg {
        display: none;
    }
    
    #recommend .splide__arrow::before {
        content: '';
        width: 16px;
        height: 5px;
        background: url(../img/icon-arrow_wh.png) no-repeat top left;
        background-size: 100%;
        display: block;
    }
    
    #recommend .splide__arrow--next::before {
        transform: scaleX(-1);
    }
}

/* ページネーション */
#recommend .splide__pagination {
    bottom: -40px;
}

#recommend .splide__pagination__page {
    background: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    border: none;
    transition: all 0.3s ease;
}

#recommend .splide__pagination__page.is-active {
    background: #8B4513;
    transform: scale(1.2);
}