.top-products {
    margin: 40px auto 0;
    padding: 0;
    width: 100%;
}

.top-products-list {
    position: relative;
    display: flex;
    flex-flow: wrap;
}

.top-products-list .images-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: all .4s linear;
    pointer-events: none;
}

.top-products-list .images-hover img {
    width: 100%;
    transition: transform 8s linear;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.top-products-list .image {
    position: relative;
    z-index: 1;
    transition: all .2s linear;
}

.top-products-list .image img {
    width: 100%;
}

.top-products-list .titletag {
    text-align: center;
    position: absolute;
    padding: 0;
    width: 100%;
    bottom: 0;
    transition: all .35s linear;
    z-index: 3;
}

.top-products-list .ttl {
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: .08em;
    margin: 0 0 10px;
    padding: 0 0 10px;
    position: relative;
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-products-list .ttl:after {
    content: "";
    background: #333;
    width: 90%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 5%;
}

.top-products-list .is-hover .ttl:after {
    background: #fff;
}

.top-products-list .txt {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 16px;
    padding: 0 0 20px;
}

.top-products-list .item {
    cursor: pointer;
    width: 50%;
}

@media (min-width: 769px) {

    .top-products-list .titletag {
        bottom: -30px;
        box-shadow: 0 6px 17px rgba(0, 0, 0, .06);
        background-color: #fff;
        width: calc(25% - 16px);
        min-height: 105px;
        padding: 10px 0 0;
    }

    .top-products-list .item {
        width: 25%;
    }

    .top-products-list .item:nth-child(1) .titletag {
        left: 0.8%;
    }

    .top-products-list .item:nth-child(2) .titletag {
        left: 25.8%;
    }

    .top-products-list .item:nth-child(3) .titletag {
        left: 50.8%;
    }

    .top-products-list .item:nth-child(4) .titletag {
        left: 75.8%;
    }

    .top-products-list .item.no-hover .image {
        opacity: 0;
    }

    .top-products-list .item.is-hover .images-hover {
        z-index: 2;
        visibility: visible;
        opacity: 1;
    }

    .top-products-list .item.is-hover .images-hover img {
        transform: scale(1.3);
    }

    .top-products-list .item.is-hover .image {
        visibility: hidden;
        opacity: 0;
        z-index: 0;
    }

    .top-products-list .item.is-hover .titletag {
        background-color: #000;
        color: #fff;
    }

    .top-products-list .item.is-hover .txt {
        color: #fff;
    }

}

@media (max-width: 768px) {

    .top-products-list .item {
        width: 48%;
    }

    .top-products-list .titletag {
        left: 0;
        background: #fff;
    }

    .top-products-list .item {
        position: relative;
        margin: 0 1% 2%;
    }

}