@charset "utf-8";

:root {
    --color-white: #fff;
    --color-black: #000;
    --color-72762c: #72762c;
    --color-c57a15: #c57a15;
    --color-f0eadb: #f0eadb;
    --color-402300: #402300;
    --color-335719: #335719;
    --color-C6574A: #C6574A;
    --color-f0f0f0: #f0f0f0;
    --color-3F3557: #3F3557;
    --font-Cantata_One: 'Cantata One', serif;
}

.introduction .desc {
    text-align: center;
}

.bx_stay_nav {
    background: var(--color-f0f0f0);
}

.stay_nav {
    display: grid;
    grid-template-columns: repeat(2, 40%);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px 20px;
    justify-content: center;
}

.stay_nav li {
    border-radius: 10px;
    color: var(--color-f0f0f0);
    background: #2968C7;
    text-align: center;
    font-size: 16px;
}

.stay_nav li:nth-child(2) {
    background: #55BFAD;
}

.stay_nav li:nth-child(3) {
    background: #ECA943;
}

.stay_nav li:nth-child(4) {
    background: #D9659B;
}

.stay_nav li a {
    position: relative;
    display: block;
    padding: 10px;
}

.stay_nav li a:hover {
    opacity: 1;
}

.stay_nav li a:hover img {
    opacity: 0.5;
}

.stay_nav li a.active:after {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    content: "";
    width: 30px;
    height: 26px;
    border: 22px solid transparent;
    border-top: 21px solid #2968C7;
}

.stay_nav li:nth-child(2) a.active:after {
    border-top: 21px solid #55BFAD;
}

.stay_nav li:nth-child(3) a.active:after {
    border-top: 21px solid #ECA943;
}

.stay_nav li:nth-child(4) a.active:after {
    border-top: 21px solid #D9659B;
}

.stay_nav li a span {
    font-size: 12px;
}

.stay_nav img {
    width: 100%;
    height: 94px;
    object-fit: cover;
}

.stay_nav li a p {
    font-size: 16px;
}

@media (min-width:1090px) {
        .word_keep {
        word-break: keep-all;
    }
}

@media (min-width:768px) {
    .page section.mv {
        background: url(/paselanomori/images/stay/mv_stay.webp) no-repeat;
        background-position-y: 70%;
        background-size: cover;
    }

    .stay_nav {
        grid-template-columns: repeat(4, 22%);
        grid-template-rows: auto;
        justify-content: center;
    }
}

.scene>div.tabcont {
    display: none;
}

.scene>div.tabcont.active {
    display: block;
}

.scene .bx_day:nth-of-type(even) {
    background: var(--color-f0f0f0);
}

.page section:nth-child(odd) .bx_day:nth-of-type(odd) {
    background: var(--color-white);
}

.bx_ttl .ttl_sub {
    color: var(--color-402300);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.bx_ttl img {
    margin-top: 20px;
}

.bx_stay {
    margin: 0 auto 40px;
}

.ttl_day {
    margin-bottom: 30px;
    color: var(--color-335719);
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.ttl_time {
    margin-bottom: 10px;
    color: var(--color-72762c);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.card_stay {
    display: grid;
    /* justify-content: center; */
    gap: 20px;
    line-height: 1.8;
}

.card_ttl {
    color: var(--color-402300);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.card_stay img {
    border-radius: 10px;
}

.bx_slider .stay_slider div {
    gap: 10px;
}

.stay_slider img {
    border-radius: 10px;
}

.slider_ttl {
    margin-bottom: 20px;
}

.card_stay .stay_slider img,
.card_stay .stay_slider .bx_desc {
    margin-bottom: 10px;
}

.bx_slider .bx_desc {
    padding-top: 20px;
}

.card_stay .stay_slider .slick-dots {
    bottom: -10px;
}

.bx_btn {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
}

a.link02 {
    width: 100%;
}

@media (min-width:768px) {

    /* 左に画像 右に文章 */
    .bx_stay.img_left .card_stay {
        grid-template: "image title" minmax(30px, auto)
            "image description" auto
            "image description" auto
            / 1fr 1fr;
        gap: 20px 40px;
    }

    /* 左に文章 右に画像 */
    .bx_stay.img_right .card_stay {
        grid-template: "title image" minmax(30px, auto)
            "description image" auto
            "description image" auto
            / 1fr 1fr;
        gap: 20px 40px;
        text-align: right;
    }

    .bx_stay .card_stay.flex,
    .bx_stay:nth-of-type(even) .card_stay.flex {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .bx_card_ttl .card_ttl,
    .bx_card_ttl .ttl_time {
        text-align: left;
    }

    .card_stay {
        gap: 30px 40px;
    }

    .bx_card_ttl {
        grid-area: title;
    }

    .bx_card_ttl:has(.ttl_time) {
        display: grid;
    }

    .bx_card_ttl .card_ttl,
    .bx_card_ttl .ttl_time {
        text-align: left;
    }

    .card_stay img {
        grid-area: image;
    }

    .card_stay .bx_desc {
        grid-area: description;
    }

    .card_stay .bx_desc:has(.desc+.desc) {
        display: grid;
    }

    .bx_desc .desc+.desc {
        margin-top: 20px;
    }

    /* 偶数の場合 テキスト右揃え */
    .bx_stay.img_right .card_stay .bx_card_ttl .card_ttl,
    .bx_stay.img_right .card_stay .bx_card_ttl .ttl_time,
    .bx_stay.img_right .card_stay .desc {
        text-align: right;
    }

    .card_stay.flex .bx_card_ttl .card_ttl,
    .card_stay.flex .bx_card_ttl .ttl_time,
    .card_stay.flex .desc {
        text-align: center;
    }

    .stay_slider {
        max-width: 60%;
        margin: 0 auto;
    }

    .stay_slider.slick-initialized .slick-slide {
        gap: 20px;
    }

    .stay_slider .slick-dots {
        bottom: -40px;
    }

    .slider_ttl {
        margin-bottom: 30px;
        text-align: center;
    }

    .bx_slider .bx_desc {
        max-width: 60%;
        margin: 0 auto;
        padding-top: 30px;
    }

    .bx_stay {
        margin: 0 auto 80px;
    }

    .ttl_time {
        margin-bottom: 10px;
    }

    .bx_btn {
        padding-bottom: 80px;
    }

    a.link02 {
        width: 368px;
    }
}