@charset "UTF-8";




/* スマホのみ表示 */
.sp_only {
    display: none;
}

/* menu_fv */
.menu__fv {
    padding: 35vw 0 10vw;
    background-image: url(../../images/sec1-bg.jpeg);
}

.menu__fv h1 {
    text-align: center;
    font-size: 7vw;
    line-height: 1em;
}


.menu__fv .en {
    text-align: center;
    font-size: 5vw;
    color: #a18861;
}

@media screen and (min-width: 681px) {
    .menu__fv {
        padding: 120px 0 100px;
    }

    .menu__fv h1 {
        font-size: 30px;
    }

    .menu__fv .en {
        font-size: 25px;
    }

}

/* menu */
.menu {
    padding-bottom: 10vw;
}

.menu .img-box {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 60%;
}

@media screen and (min-width: 681px) {
    .menu .img-box {
        display: none;

    }
}

.menu .img-box img {
    position: absolute;
    top: 0;
    left: 0;
}

.menu ul {
    margin-top: 10vw;
    display: flex;
    flex-direction: column;
    gap: 10vw;
    padding: 0 3vw;
}

.menu ul li {
    border-left: 3px solid #c1b4a4;
    padding-left: 3vw;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.menu ul li.visible {
    opacity: 1;
    transform: translateX(0);
}

.menu .ttlbox {
    display: flex;
    justify-content: space-between;
    font-size: 5vw;
    font-weight: 600;
}

@media screen and (min-width: 681px) {
    .menu .ttlbox {
        font-size: 25px;
    }

}


.menu .ttlbox p {
    color: #a18861;
}

.menu .txtbox {
    margin-top: 2vw;
    font-size: 4vw;
    line-height: 1.2em;
}

@media screen and (min-width: 681px) {
    .menu .txtbox {
        font-size: 15px;
    }
}

.menu .txt {
    margin-top: 5vw;
    line-height: 1.5em;
    text-align: justify;
    padding: 0 3vw;
    font-size: 4vw;
    font-weight: 500;
    text-decoration: underline dotted;
}

@media screen and (min-width: 681px) {
    .menu .txt {
        text-align: center;
        font-size: 18px;
    }
}

.menu .reserve {
    margin-top: 5vw;
    display: block;
    position: relative;
    font-size: 6vw;
    transition: all .2s;
}

@media screen and (min-width: 681px) {
    .menu .reserve {
        margin: 30px auto 0;
        font-size: 25px;
        width: 350px;
        text-align: center;
    }
}


.menu .reserve:hover {
    opacity: 0.5;
}

.menu .reserve::before {
    position: absolute;
    display: block;
    content: "";
    right: 5%;
    top: 50%;
    width: 6vw;
    height: 2vw;
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 6vw solid #c1b4a4;
    transition: all 1.5s;
}

@media screen and (min-width: 681px) {
    .menu .reserve::before {
        width: 30px;
        height: 16px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 30px solid #c1b4a4;
        right: 5px;
    }

}

.menu .reserve.visible::before {
    transform: translateY(-50%) rotateX(180deg);
}

.menu .reserve::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: #c1b4a4;
}

@media screen and (min-width: 681px) {
    .menu .reserve::after {
        width: 100%;
        left: 0;
    }

}

.menu .payment {
    margin-top: 10vw;
}

@media screen and (min-width: 681px) {
    .menu .payment {
        margin-top: 80px;
    }

}

@media screen and (max-width: 680px) {
    .sp_only {
        display: block;
    }
}