.product-items {
	margin: 0 -0.5em;
}
.product-items li {
	width: 50%;
	margin-bottom: 1.2em;
	position: relative;
	z-index: 0;
	padding: 0 0.5em;
}
	.product-items li .thmb {
		display: block;
		position: relative;
		z-index: 0;
		margin-bottom: 0.5em;
	}
	.product-items li .thmb::before {
		content: "";
		display: block;
		z-index: 0;
		width: 100%;
		padding-top: 100%;
	}
	.product-items li .thmb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		position: absolute;
		z-index: 1;
		left: 0px;
		top: 0px;
	}
	.product-items li .title {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.4em;
		margin-top: 0.8em;
		margin-bottom: 0.8em;
	}
	.product-items li .price {
		font-size: 110%;
		font-family: var(--font-min);
	}
	.product-items li .price .unit {
		opacity: 0.5;
	}
	.product-items li .price .val {
		font-weight: 400;
		letter-spacing: 0.00em;
	}
	.product-items li .price .tax {
		font-size: 65%;
		opacity: 0.6;
		margin-left: 0.3em;
		vertical-align: baseline;
		text-decoration: none;
		font-family: var(--font-g3);
		font-weight: 200;
	}
	.product-items li .content-wrap {
		overflow: hidden;
		width: 100%;
		margin-top: 0.7em;
	}
	.product-items li .content {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow: hidden;
		font-size: 0.61em;
		font-weight: 300;
		line-height: 1.7em;
		opacity: 0.8;
	}

@media only screen and (min-width:640px) {
	.product-items li {
		width: 33.33%;
	}
}
	
	
	
	
	
	
	
	