@charset "utf-8";
/*コンテンツのひとかたまり
--------------------*/
.contBox {
	margin:20px 0;
	padding:50px 0 10px 0;
	/*border-bottom:1px dotted #eee;*/
	/*border-top:1px solid #eee*/
}

/*レコメンド商品用
--------------------*/
.recoitem a.btn {
	border-radius:10px;
	padding:10px;
	margin:10px 0;
	font-size:small;
}

/*レコメンド商品　recommendArea,couponArea,pickupなどで使用
--------------------*/
.itemBox {
/*float用　margin,padding,border指定するとレイアウト崩壊の危険あり*/
}
.recoitem {
	text-align:center;
	padding:5px;
	margin:1px;
}
.recoitem .image {
	text-align:center;
	/*padding:5px 5px 0 5px;*/
}
.recoitem .image img {
	width:100%;
}
.recoitem .image img {
	max-width:600px;
	background-image:url(../parts/bg_soldout.gif);
	background-size:100%;
}
.recoitem .name {
	font-size:12px;
	overflow:hidden;
	max-width:300px;
    max-height: 20px;
}
.recoitem .price {
	color:#c00;
	font-weight:bold;
	font-size:18px;
}
.recoitem .originalprice {
	color:#333;
	font-size:16px;
	font-weight:bold;
	margin:0px;
	text-decoration:line-through;
}
.recoitem .originalprice:before {
	content:'通常価格';
}
.recoitem .saleprice {
	color:#fff;
	text-shadow:none;
	font-weight:bold;
	padding:5px;
	background:#c00;
    font-size: 14px;
}

.recoitem .bookmark {
	/*楽天のお気に入りに登録用　不要時はdisplay:none;*/
	display:none;
}

/*レコメンドエリア
--------------------*/
.recommendArea {
    width: 95%;
	margin:10px auto;
    display: flex;
    flex-wrap: wrap;
}
.recommendArea .recoitem {
	border:1px solid #ddd;
}

/*子要素の幅を％で指定してfloatさせる
cfを併記して使用
--------------------*/
/*
PCだと指定％、SPだと大きく表示
*/
.per20 > * {
	float:left;
	width:20%;
}
.per25 > * {
	float:left;
	width:25%;
}
.per33 > * {
	float:left;
	width:33%;
}
.per50 > * {
	float:left;
	width:50%;
}

.per100pcsp > * {
	float:none;
	width:100%;
}

/*
PCもSPも同じ％にしたい場合はこちらを指定
*/
.per20pcsp > * {
	float:left;
	width:20%;
}
.per25pcsp > * {
	float:left;
	width:25%;
}
.per33pcsp > * {
	float:left;
	width:33%;
}
.per50pcsp > * {
	float:left;
	width:50%;
}
.per100pcsp > * {
	float:none;
	width:100%;
}

/* Media Queries
***********************/
@media screen and (max-width: 980px) {
	/*floatBox percent*/
	.per20 > * {
		float:left;
		width:33%;
	}
	.per25 > * {
		float:left;
		width:33%;
	}
	.per33 > * {
		float:left;
		width:33%;
	}
	.per50 > * {
		float:left;
		width:50%;
	}
	.per100 > * {
		float:none;
		width:100%;
	}
}
@media screen and (max-width: 645px) {
	/*floatBox percent*/
	.per20 > * {
		float:left;
		width:50%;
	}
	.per25 > * {
		float:left;
		width:50%;
	}
	.per33 > * {
		float:left;
		width:50%;
	}
	.per50 > * {
		float:left;
		width:50%;
	}
	.per100 > * {
		float:none;
		width:100%;
	}
}
