@charset "utf-8";

/* main_visual
---------------------------------------------------*/
.main_visual {
    width: 100%;
    background-color: #fff;
}
.main_visual .mv-wrap {
    position: relative;
}
.main_visual .mv-img img {
    width: 100%;
}
.main_visual .mv-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}
.main_visual .mv-title .name_en {
    line-height: 1.6em;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.2em;
}
.main_visual .mv-title .name {
    line-height: 1.6em;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.main_visual .category_description {
    padding: 70px 0;
}
.main_visual .category_description p {
    line-height: 2.25em;
    text-align: center;
    letter-spacing: 0.1em;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    .main_visual .mv-title .name_en {
        font-size: 3.88vw;
    }
    .main_visual .mv-title .name {
        font-size: 5.27vw;
    }
    .main_visual .category_description {
        padding: 13.88vw 8.33vw;
    }
    .main_visual .category_description p {
        text-align: left;
    }
}


/* item-list-wrapper
---------------------------------------------------*/
.item-list-wrapper {
    background-color: #fcf9f7;
}
.item-list-wrapper .inner {
    padding: 100px 0 20px;
}
.item-list-wrapper .heading01 {
    text-align: center;
}
.message_box {
    padding: 20vh 0;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    .item-list-wrapper .inner {
        padding: 13.88vw 0 11.11vw;
    }
}


/* item_list
---------------------------------------------------*/
#item_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}
#item_list .product_box {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 80px;
}
#item_list .product_box:nth-of-type(3n) {
    margin-right: 0;
}
#item_list .item_photo {
    width: 100%;
    margin-bottom: 30px;
}
#item_list .item_name {
    line-height: 1.4em;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
#item_list .item_price {
    text-align: center;
}
#item_list .btn-wrap {
    margin-top: 30px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    #item_list {
        width: 83.33vw;
    }
    #item_list .product_box {
        width: 47.33%;
        margin-right: 5.34%;
        margin-bottom: 11.11vw;
    }
    #item_list .product_box:nth-child(3n) {
        margin-right: 5.34%;
    }
    #item_list .product_box:nth-child(2n) {
        margin-right: 0;
    }
    #item_list .item_photo {
        margin-bottom: 5.55vw;
    }
    #item_list .item_name {
        font-size: 3.88vw;
    }
    #item_list .btn-wrap {
        margin-top: 5.55vw;
    }
    #item_list .btn-wrap .btn {
        min-width: auto;
        width: 100%;
    }
}