@charset "utf-8";

.mainvisual {
    height: 600px;
    margin-bottom: 120px;
    position: relative;
}

.mainvisual .fadeImg img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.mainvisual .fadeImg li {
    width: 70%;
    position: absolute;
    top: 80px;
    right: 0;
    opacity: 0;
    animation: fade 12s infinite;
}

.mainvisual .fadeImg li:nth-child(1) {
    animation-delay: 0s;
}

.mainvisual .fadeImg li:nth-child(2) {
    animation-delay: 3s;
}

.mainvisual .fadeImg li:nth-child(3) {
    animation-delay: 6s;
}

.mainvisual .fadeImg li:nth-child(4) {
    animation-delay: 9s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.mainvisual .catchphrase {
    font-size: 50px;
    text-shadow: 1px 1px 3px #fafafa;
    position: absolute;
    top: 280px;
    left: 6%;
}

.news {
    margin-bottom: 200px;
}

.news .heading,
.concept .heading {
    font-size: 32px;
    font-weight: 400;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.news .slider_news {
    width: 70%;
    margin: 40px auto 160px;
}

.news .slider_news .slick_img img {
    opacity: 0.3;
    transform: scale(0.8);
    transition: opacity .5s, transform .5s;
}

.news .slider_news .slick-center img {
    opacity: 1;
    transform: scale(1);
}

.sectionTitle {
    color: #2d004de6;
    font-size: clamp(24px, 4vw, 72px);
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-shadow: 1px 1px 1px #fafafa;
    margin: 0 0 -2.5vw 4vw;
    position: relative;
    z-index: 10;
}

.restaurant .sectionTitle,
.sightseeing .sectionTitle {
    text-align: right;
    margin: 0 4vw -2.5vw 0;
}

.btn {
    max-width: 240px;
    background-color: #fafafa;
    display: block;
    border: solid 1px #2d004d;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: #2d004d;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}

.btn:hover {
    color: #fafafa;
    opacity: 1;
}

.btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.stay,
.restaurant,
.wedding,
.sightseeing {
    margin-bottom: 120px;
}

.flex {
    display: flex;
    align-items: center;
}

.restaurant .flex,
.sightseeing .flex {
    flex-direction: row-reverse;
}

.flex .img {
    width: 65%;
}

.flex .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 10px 20px 5px #fff099;
}

.flex .text {
    width: 35%;
    background-color: #fafafa;
    padding: 5%;
    margin-left: -8%;
}

.restaurant .flex .text,
.sightseeing .flex .text {
    position: relative;
    z-index: 10;
    margin-right: -8%;
}

.text .title {
    font-size: 20px;
    margin-bottom: 40px;
}

.text .description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.concept .conceptText {
    line-height: 3;
    text-align: center;
    margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
    .mainvisual {
        height: 400px;
        margin-bottom: 40px;
    }

    .mainvisual .fadeImg img {
        height: 400px;
    }

    .mainvisual .fadeImg li {
        width: 100%;
        top: 0;
    }

    .mainvisual .catchphrase {
        color: #fafafa;
        text-shadow: 1px 1px 1px #777;
        font-size: 28px;
        top: 300px;
        left: 6%;
    }

    .news .heading,
    .concept .heading {
        font-size: 24px;
    }

    .news .slider_news {
        width: 90%;
    }

    .sectionTitle {
        font-size: 6vw;
        margin: 0 0 -4vw;
        text-align: center;
    }

    .restaurant .sectionTitle,
    .sightseeing .sectionTitle {
        text-align: center;
        margin: 0 0 -4vw;
    }

    .flex {
        flex-direction: column;
    }

    .restaurant .flex,
    .sightseeing .flex {
        flex-direction: column;
    }

    .flex .img {
        width: 100%;
    }

    .flex .img img {
        height: 300px;
        box-shadow: 0 10px 5px #fff099;
    }

    .flex .text {
        width: 100%;
        background-color: transparent;
        margin-left: 0;
        text-align: center;
    }

    .restaurant .flex .text,
    .sightseeing .flex .text {
        position: static;
        z-index: 0;
        margin-right: 0;
    }

    .flex .text a {
        display: inline-block;
        padding: 10px 20px;
        text-align: center;
    }

    .stay,
    .restaurant,
    .wedding,
    .sightseeing {
        margin-bottom: 60px;
    }

    .concept .conceptText {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 80px;
        padding: 0 40px;
    }
}

/* アニメーションロゴ設定 */
.opening {
    background-color: #fff;
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: open 1s 5s both;
}

@keyframes open {
    100% {
        opacity: 0;
        z-index: -1;
    }
}

.wrap {
    height: 100vh;
    overflow: hidden;
    animation: scroll 0s 8s both;
}

@keyframes scroll {
    100% {
        height: auto;
        overflow: visible;
    }
}