#product_list{
	display:flex;
	flex-wrap:wrap;
	list-style:none;
}

#product_list li{
	width:32%;
	margin-right:2%;
	margin-bottom:2%;
	background-color:#fff;
}

#product_list li > figure{
	padding-top:1em;
}
#product_list li img{
	width:100%;
}

#product_list li:nth-child(3n){
	margin-right:0;
}

#product_list li a{
	display:block;
	padding:1em;
}

#product_list li a figure{
	margin-bottom:1em;
}

#product_list li a figure img{
	display:block;
	width:100%;
}

#product_list li a h2{
	line-height:1.8em;
	font-weight:normal;
}

#type{
	background-color:#fff;
	margin-bottom:1em;
	text-align:center;
	padding:2em;
}

#type h2{
	margin-bottom:1em;
}

#type img{
	width:100%;
}
#type .flex{
	display:flex;
	justify-content:space-between;
}

#type span{
	display:block;
	height:1px;
	width:100%;
	background-color:#5a4c37;
	margin:1em 0;
}

@media only screen and (max-width: 767px){
	#product_list li{
		width:49%;
	}
	#product_list li:nth-child(3n){
		margin-right:2%;
	}
	#product_list li:nth-child(even){
		margin-right:0;
	}
}