@charset "UTF-8";

/* 1150px～1400px 3列 */
.productListTile {
    width: 33.02%;
}
/* 1400px～1700px 4列 */
@media screen and (min-width: 1400px) {
    .productListTile {
        width: 24.77%;
    }
}
/* 1700px～2200px 6列 */
@media screen and (min-width: 1700px) {
    .productListTile {
        width: 16.46%;
    }
}
/* 2200px～3000px 8列 */
@media screen and (min-width: 2200px) {
    .productListTile {
        width: 12.34%;
    }
}
/* 3000px以上 12列 */
@media screen and (min-width: 3000px) {
    .productListTile {
        width: 8.21%;
    }
}