@charset "UTF-8";

/*--基本--*/

.widget_shop01_list .wrapper_item{
	overflow: hidden;
}
.widget_shop01_list .inner_item{
	width: 33.3%;
	margin: 0 0 20px;
	padding: 0 7.5px;
	box-sizing: border-box;
	float: left;
}
.widget_shop01_list .inner_item:nth-of-type(3n-2){
	/*.inner_item 1,4,7,10,13,…*/
	padding: 0 15px 0 0;
	clear: both;
}
.widget_shop01_list .inner_item:nth-of-type(3n){
	/*.inner_item 3,6,9,12,…*/
	padding: 0 0 0 15px;
}
.widget_shop01_list .inner_item:nth-of-type(1):nth-last-of-type(1){
	/*.inner_itemが1個だけのとき*/
	width: auto;
	float: none;
}
.widget_shop01_list .inner_item:nth-of-type(1):nth-last-of-type(2),
.widget_shop01_list .inner_item:nth-of-type(2):nth-last-of-type(1){
	/*.inner_itemが2個だけのとき*/
	width: 50%;
}
.widget_shop01_list .inner_item:nth-last-child(-n+3){
	/*.inner_itemが最後から3個*/
	margin-bottom: 0;
}
.widget_shop01_list .inner_item a *{
	transition: 0.3s ease-in-out;
}
.widget_shop01_list .inner_item a:hover *{
}
.widget_shop01_list .inner_item a>*{
	margin-bottom: 10px;
}
.widget_shop01_list .inner_item_img{
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.widget_shop01_list .inner_item_img:nth-last-of-type(1){
	/*画像だけのとき*/
	margin-bottom: 0;
}


@media screen and (max-width: 660px){
	.widget_shop01_list .inner_item{
		width: 50%;
		padding: 0 !important;
	}
	.widget_shop01_list .inner_item:nth-of-type(3n-2){
		/*.inner_item 1,4,7,10,13,…*/
		clear: none;
	}
	.widget_shop01_list .inner_item:nth-of-type(2n-1){
		/*.inner_item 1,3,5,7,9,…*/
		padding-right: 10px !important;
		clear: both;
	}
	.widget_shop01_list .inner_item:nth-of-type(2n){
		padding-left: 10px !important;
	}
	.widget_shop01_list .inner_item:nth-last-child(n+3){
		padding-bottom: 20px !important;
	}
}
@media screen and (max-width: 500px){
	.widget_shop01_list .inner_item,
	.widget_shop01_list .inner_item:nth-of-type(2n-1),
	.widget_shop01_list .inner_item:nth-of-type(2n){
		padding: 0 !important;
		float: none;
		width: auto;
	}
}