@charset "utf-8";
/* List CSS */
/* tmp-categoris.php / tmp-products.php / tmp-tags.php で使用 */

/* MAIN
--------------------------------------------------------------------------------------*/
main {
    display: block;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.6;
    overflow: hidden;
}

/* Menu
*************************************** */
.tab_menu {
    margin: 20px auto;
}

.owl-carousel {
    margin: 0 auto;
    width: 100%;
}

.owl-carousel .owl-dots.disabled {
    display: block;
}

.owl-theme .owl-nav {
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-] {
    margin-top: 50px;
    z-index: 120;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-dots {
    display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #666666;
}

/* Contents
*************************************** */
.frame_box {
    padding-top: 10px;
}

.product_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product_box {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 10px 50px;
    padding-top: 7px;
    text-align: left;
    transition: all .2s ease-in-out;
}

.product_box:hover {
    opacity: .7;
}

.product_box .jacket_box {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
}

.product_box .jacket {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
}

.product_box .back_img {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    filter: blur(10px);
}

.product_box .on_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.bnr_detail {
    width: 100%;
    height: 90px;
    padding: 7px 12px;
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.8rem;
    border-radius: 0 0 20px 20px;
    background-color: rgba(0, 0, 0, .7);
    overflow: hidden;
    display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* 行数指定 */
}

h3 p {
    font-size: 1.6rem;
}

.type {
    padding: 3px 7px;
    border-radius: 3px;
}

.opus_type_0010,
.opus_type_0020,
.opus_type_0030,
.opus_type_0040,
.opus_type_0050,
.opus_type_0060,
.opus_type_0070,
.opus_type_0080,
.opus_type_0090,
.opus_type_0110,
.opus_type_0120,
.opus_type_0150,
.opus_type_0160,
.opus_type_0170,
.opus_type_0180,
.opus_type_XXXX {
    border: solid 1px #ec3227;
    background-color: #fff;
    color: #ec3227;
}

.opus_type_0140 {
    background-color: #01509d;
    color: #fff;
}

.opus_type_0100, .opus_type_0130 {
    background-color: #ef4e00;
    color: #fff;
}

.cat {
    border: 1px solid #000;
}

.sale_title {
    font-size: 1.8rem;
}

.gift {
    background-color: #bd0b00;
    color: #fff;
}

/* PAGINATION
*************************************** */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    line-height: 1;
}

.pagination a, .pagination span {
    display: block;
    margin: 8px;
    padding: 5px 8px;
    border-radius: 5px;
    border: solid 1px #a9a7a7;
    color: #666666;
    font-weight: bold;
    transition: all .2s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
    .pagination a, .pagination span {
        padding-top: 10px;
    }
}

.pagination a:hover, .pagination .current {
    border: solid 1px #E60028;
    color: #E60028;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
    /* Contents
    *************************************** */
    .product_list {
        justify-content: space-between;
    }

    .product_box {
        margin: 0 5px 50px;
        width: 42.5vw;
    }

    .product_box .jacket_box {
        width: 42.5vw;
        height: 42.5vw;
    }

    .jacket {
        max-width: 205px;
        max-height: 205px;
    }

     /* PAGINATION
    *************************************** */
    .pagination a, .pagination span {
        margin: 5px;
    }

}
/* (max-width: 480px) end */

/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
    /* MAIN
    --------------------------------------------------------------------------------------*/

    /* PRODUCT
    *************************************** */
    .product_box {
        max-width: 200px;
    }

    .product_box .jacket_box {
        max-width: 200px;
        max-height: 200px;
    }

    .products .jacket {
        max-width: 200px;
        max-height: 200px;
    }

}
/* (min-width: 481px) and (max-width: 1023px) end */