/* 商品一覧調整 */

/* PC：4列 */
.contents .row > a{
	display:block;
	float:left;
	width:25%;
	clear:none;
	color:inherit;
	text-decoration:none;
}

.contents .row > a > li{
	float:none !important;
	width:100% !important;
	clear:none !important;
	box-sizing:border-box;
}

.contents .row > a:nth-child(4n+1){
	clear:left;
}

/* タブレット：3列 */
@media screen and (max-width:1199px){
	.contents .row > a{
		width:33.3333%;
		clear:none;
	}

	.contents .row > a:nth-child(4n+1){
		clear:none;
	}

	.contents .row > a:nth-child(3n+1){
		clear:left;
	}
}

/* スマホ：2列 */
@media screen and (max-width:767px){
	.contents .row > a{
		width:50%;
		clear:none;
	}

	.contents .row > a:nth-child(3n+1),
	.contents .row > a:nth-child(4n+1){
		clear:none;
	}

	.contents .row > a:nth-child(2n+1){
		clear:left;
	}
}

/* float解除 */
.contents .row:after{
	content:"";
	display:block;
	clear:both;
}