@charset "euc-jp";
/*==================================================
商品一覧ページ
==================================================*/
/* product-type
--------------------------------------*/
.product-type {
	max-width: 1000px;
	width: 84.7%;
	margin: 0 auto 50px;
}
.product-type ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #E0E0E0;
}
.product-type li {
	width: calc(100%/5);
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
	box-sizing: border-box;
	text-align: center;
}
.product-type li a {
	position: relative;
	top: 50%;
	-webkit-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	transform: translate(0,-50%);
	font-size: 12px;
	line-height: 120%;
	padding: 12px 5px;
}
@media (min-width:1001px) and (max-width:9999px) {
	.product-type li:nth-child(n+6) {
		border-top: none;
	}
}
@media screen and (max-width:1000px) {
	.product-type li {
		width: calc(100%/3);	
	}
	.product-type li:nth-child(n+4) {
		border-top: none;
	}
}
@media screen and (max-width:768px) {
	.product-type {
		width: 100%;
		margin: 0 auto 10%;
	}
	.product-type li {
		width: calc(100%/2);	
	}
	.product-type li:nth-child(n+3) {
		border-top: none;
	}
	.product-type li a {
		font-size: 3.2vw;
		padding: 6% 2%;
	}
}