@charset "UTF-8";

/* mv */
.main-visual {
    height: 30vw;
    position: relative;
    background: url(../images/mv-shop.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;
}

/* shop */
.shop-info {
    background: url(../images/bg-shop.png) no-repeat center / cover;
    padding: 7vw 0;
}

.shop-info h2 {
    font-size: 4vw;
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0 0 7vw;
}

.shop-info > img:nth-of-type(1) {
    position: absolute;
    top: -10vw;
    right: 0;
    width: 13.23vw;
}

.shop-info > img:nth-of-type(2) {
    position: absolute;
    bottom: -8vw;
    left: 0;
    width: 18.803vw;
}

.shop-list {
    display: flex;
    width: 135rem;
    max-width: 90%;
    margin: 0 auto 7vw;
    gap: 5vw;
}

.shop-list li:nth-of-type(1) {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.shop-list li:nth-of-type(2) {
    width: 55%;
}

.shop-list li img {
    width: 100%;
}

.shop-detail {
    display: flex;
    flex-wrap: wrap;
    font-size: max(0.9vw, 1.4rem);
    font-family: zen-old-mincho, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.shop-detail dt {
    width: 30%;
    margin: 0 0 1vw;
    padding: 0 0 1vw;
    border-bottom: 1px #000 solid;
    line-height: 1.5;
}

.shop-detail dd {
    width: 70%;
    margin: 0 0 1vw;
    padding: 0 0 1vw;
    border-bottom: 1px #000 solid;
    line-height: 1.5;
}

.shop-info > p{
    font-size: max(1vw,1.2rem);
    font-family: zen-old-mincho, sans-serif;
    font-weight: 700;
    font-style: normal;
    width: 35rem;
    max-width: 30%;
    margin: 0 auto 5vw;
}

.store-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1vw;
    width: 90%;
    margin: 0 auto;
}

.store-gallery li {
    width: 32%;
}

.store-gallery li img {
    width: 100%;
}

.store-table{
    display: flex;
    width: 40rem;
    margin: 0 auto 5vw;
    font-size: max(1vw,1.4rem);
    gap: 1vw;
    line-height: 1.5;
}

@media screen and (max-width:968px) {
    /* mv */
    .main-visual {
        height: 65vw;
        position: relative;
        background: url(../images/mv-shop-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;
    }

    /* shop */
    .shop-info {
        background: url(../images/bg-top-shop.png) no-repeat center / cover;
        padding: 5rem 0;
    }

    .shop-info h2 {
        font-size: 5rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        margin: 0 0 5rem;
    }

    .shop-info > img:nth-of-type(1) {
        position: absolute;
        top: -10vw;
        right: 0;
        width: 13.23vw;
    }

    .shop-info > img:nth-of-type(2) {
        position: absolute;
        bottom: -8vw;
        left: 0;
        width: 18.803vw;
    }

    .shop-list {
        display: flex;
        width: 135rem;
        max-width: 90%;
        margin: 0 auto 7rem;
        gap: 5vw;
        flex-direction: column-reverse;
    }

    .shop-list li:nth-of-type(1) {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }

    .shop-list li:nth-of-type(2) {
        width: 100%;
    }

    .shop-list li img {
        width: 100%;
    }

    .shop-detail {
        display: flex;
        flex-wrap: wrap;
        font-size: max(0.9vw, 1.6rem);
        font-family: zen-old-mincho, sans-serif;
        font-weight: 700;
        font-style: normal;
        flex-direction: column;
    }

    .shop-detail dt {
        width: 100%;
        margin: 0 0 2rem;
        padding: 0 0 2rem;
        border-bottom: 1px #000 solid;
        line-height: 1.5;
    }

    .shop-detail dd {
        width: 100%;
        margin: 0 0 2rem;
        padding: 0 0 2rem;
        border-bottom: 1px #000 solid;
        line-height: 1.5;
    }

    .shop-info > p{
        font-size: max(1vw,1.2rem);
        font-family: zen-old-mincho, sans-serif;
        font-weight: 700;
        font-style: normal;
        width: 35rem;
        max-width: 30%;
        margin: 0 auto 5vw;
    }
    
    .store-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1rem;
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .store-gallery li {
        width: 100%;
    }
    
    .store-gallery li img {
        width: 100%;
    }
    
    .store-table{
        display: flex;
        width: 25rem;
        max-width: 60%;
        margin: 0 auto 5rem;
        font-size: max(0.9vw, 1.6rem);
        gap: 1vw;
        line-height: 1.5;
        justify-content: space-between;
    }
}