@charset "utf-8";
/* CSS Document */

.under_mv {
    background-image: url(/wp/wp-content/uploads/2020/10/mv_bg-1.png);
}

.lineup_csus .under_mv {
    background-image: url(/wp/wp-content/themes/twentynineteen/images/top_products_colorstainless.jpg);
}

.lineup_sus .under_mv {
    background-image: url(/wp/wp-content/themes/twentynineteen/images/top_products_stainless.jpg);
}

.lineup_itemlist {
    padding: 35px 10px;
    margin-bottom: 60px;
}

.lineup_itemlist .inner {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.lineup_itemlist .item {
    width: 20%;
    padding: 10px;
    float: left;
    cursor: pointer;
    position: relative;
}

.lineup_itemlist .item span.tag_cat{
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
    background: #9c0505;
    color: #fff;
    font-size: 12px;
    padding: 0 1em;
}

.lineup_itemlist .item .thum {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    display: block;
}

.thum img {
    width: 100%;
    height: 126px;
    background-color: #eee;
}

.thum img[data-bg] {
    /*background-image: url(./files/loader.gif);*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.lineup_itemlist .item.new .thum::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: url(/wp/wp-content/uploads/2020/10/ico_new.png) no-repeat right top;
    background-size: contain;
    z-index: 4;
}

.lineup_itemlist .item p {
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

.lineup_itemlist .item:hover p {
    opacity: 0.7;
}

.lightbox {
    padding-top: 100px;
}

@media (max-width: 1240px) {
    .thum img {
        height: calc((180vw - 216px) / 16);
    }
}

@media (max-width: 1000px) {
    .lineup_itemlist .item {
        width: 25%;
    }

    .thum img {
        height: calc((225vw - 225px) / 16);
    }

    .lineup_itemlist .inner {
        max-width: 100%;
    }
}

/**追加CSS SP START**/
@media (max-width: 750px) {

    .lineup_itemlist .item {
        width: 50%;
    }

    .thum img {
        height: calc(27.66375vw - 5.53275px);
    }

}