@charset "utf-8";

/* jQuery発展編 */

.carousel div.carouselImg01 {
    height: 310px;
    background-image: url(../my-imges/shop/shop-bg-main01.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel div.carouselImg02 {
    height: 310px;
    background-image: url(../my-imges/shop/shop-bg-main02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel div.carouselImg03 {
    height: 310px;
    background-image: url(../my-imges/shop/shop-bg-main03.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.title h1 {
    font-size: 30px;
    margin-top: 50px;
    text-align: center;
}

.title p {
    font-size: 20px;
    margin-top: 20px;
}

.shop-contents {
    width: 1080px;
    max-width: 90%;
    margin-top: 70px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
}

.shop-item {
    flex-grow: 1;
    max-width: 765px;
}

.shop-menu {
    flex-shrink: 0;
    margin-right: 40px;
}

.item-list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px);
    column-gap: 50px;
    row-gap: 40px;
}

.item-list a img {
    display: block;
}


.item-list dl {
    margin-top: 10px;
}

.item-list dt {
    text-align: center;
}

.item-list dd {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
    text-align: center;
}

.shop-menu ul li {
    font-size: 18px;
    line-height: 20px;
    margin-top: 10px;
}

.shop-menu h2 {
    font-size: 25px;
}


@media (max-width: 800px) {
    /* jQuery発展編 */
    /* モーダル */

    .close-btn {
        position: absolute;
        top: 70px;
        right: 20px;
        color: white;
        font-size: 40px;
        text-decoration: none;
        cursor: pointer;
    }

    .shop-contents {
        display: block;
        max-width: 100%;
        margin-top: 50px;
    }

    .shop-item {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .shop-item h2 {
        text-align: center;
    }

    .item-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
    }

    .shop-menu {
        margin-top: 40px;
        background-color: #dce6d2;
        margin-right: 0;
    }

    .shop-menu-inner h2 {
        text-align: center;
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .shop-menu-inner ul {
        text-align: center;
        padding-bottom: 15px;
    }


}