@charset "UTF-8";

/* mv */
.main-visual {
    height: 30vw;
    position: relative;
    background: url(../images/mv-dinner.png) no-repeat center / cover;
}

.main-visual h2 {
    font-size: 4vw;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-shadow: 1px 1px 6px #000;
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* dinner */
.dinner{
    padding: 5vw 0;
    background: url(../images/bg-sub-dinner.png) no-repeat center top / cover;
}

.dinner-inner{
    width: 120rem;
    max-width: 90%;
    margin: auto;
}

.dinner-inner h3{
    font-size: 1.5vw;
    line-height: 1.5;
    margin: 0 0 5vw;
}

.dinner-list01{
    display: flex;
    justify-content: space-between;
    margin: 0 0 5vw;
}

.dinner-list01 li{
    width: 45%;
}

.dinner-list01 li h2{
    font-size: 2.8vw;
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 2vw;
}

.dinner-list01 li img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.dinner-list02{
    display: flex;
    justify-content: space-between;
    margin: min(-20vw,-25rem) 0 0;
}

.dinner-list02 li{
    width: 45%;
}

.dinner-list02 li:nth-of-type(2){
    padding: max(17vw,23rem) 0 0;
}

.dinner-list02 li h2{
    font-size: 2.8vw;
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 2vw;
}

.dinner-list02 li img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.dinner-menu{
    font-size: max(1vw,1.5rem);
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    line-height: 1.8;
    margin: 0 0 2vw;
}

.dinner-menu dt{
    width: 80%;
}

.dinner-menu dd{
    width: 20%;
    text-align: right;
}

@media screen and (max-width:968px) {
    /* mv */
    .main-visual {
        height: 65vw;
        position: relative;
        background: url(../images/mv-dinner-sp.png) no-repeat center / cover;
    }

    .main-visual h2 {
        white-space: nowrap;
        font-size: 4rem;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        text-shadow: 1px 1px 6px #000;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    /* dinner */
    .dinner{
        padding: 5vw 0;
        background: url(../images/bg-sub-dinner.png) no-repeat center top / cover;
    }

    .dinner-inner{
        width: 120rem;
        max-width: 90%;
        margin: auto;
    }

    .dinner-inner h3{
        font-size: 2rem;
        line-height: 1.5;
        margin: 0 0 5rem;
    }

    .dinner-list01{
        display: flex;
        justify-content: space-between;
        margin: 0 0 5rem;
        flex-direction: column;
    }

    .dinner-list01 li{
        width: 100%;
    }

    .dinner-list01 li h2{
        font-size: 3rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0 0 2rem;
    }

    .dinner-list01 li img{
        width: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }

    .dinner-list02{
        display: flex;
        justify-content: space-between;
        margin: 0 0 5rem;
        flex-direction: column;
        gap: 5rem;
    }

    .dinner-list02 li{
        width: 100%;
    }

    .dinner-list02 li:nth-of-type(2){
        padding: 0;
    }

    .dinner-list02 li h2{
        font-size: 3rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0 0 2rem;
    }

    .dinner-list02 li img{
        width: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }

    .dinner-menu{
        font-size: 1.6rem;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        line-height: 1.8;
        margin: 0 0 3rem;
    }

    .dinner-menu dt{
        width: 75%;
    }

    .dinner-menu dd{
        width: 25%;
        text-align: right;
    }
}