/* ------------------------------------------------------------------------------------------
* item_list
* ----------------------------------------------------------------------------------------- */
.item_list > li{
	position:relative;
	float:left;
	width:25%;
}
.item_list > li:not(:nth-child(-n+4)){
	margin-top:24px;
}
.item_list > li:before{
	position:absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	border:1px solid #ddd;
	content:"";
}
.item_list > li:nth-child(4n+1):before{
	right:18px;
}
.item_list > li:nth-child(4n+2):before{
	right:12px;
	left:6px;
}
.item_list > li:nth-child(4n+3):before{
	right:6px;
	left:12px;
}
.item_list > li:nth-child(4n):before{
	left:18px;
}
.item_list-inner{
	padding:24px;
}
.item_list > li:nth-child(4n+1) .item_list-inner{
	padding-right:42px;
}
.item_list > li:nth-child(4n+2) .item_list-inner{
	padding-right:36px;
	padding-left:30px;
}
.item_list > li:nth-child(4n+3) .item_list-inner{
	padding-right:30px;
	padding-left:36px;
}
.item_list > li:nth-child(4n) .item_list-inner{
	padding-left:42px;
}
.item_list-inner a{
	position:relative;
	display:block;
}
.item_list-img{
	position:relative;
	height:120px;
	margin-bottom:16px;
}
.item_list-img img{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	max-height:120px;
}
.item_list-name{
	line-height:1.3;
	font-size:18px;
}

.item_list-category{
	margin-left:15px;
}