@charset "utf-8";
/* CSS Document */


.body-product-list ol,
.body-product-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}



/* メイン
----------------------------------------------------------------------------------------------*/
.body-product-list .main_img {
	width: 100%;
	margin-bottom: 30px;
}
.body-product-list p.description {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 30px;
}



/* 選ぶ （アンカーリンク）
----------------------------------------------------------------------------------------------*/
.body-product-list .anchor_box {
	margin-bottom: 50px;
}
.body-product-list .anchor_box ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.body-product-list .anchor_box ul li {
	position: relative;
	width: 24%;
	background: #347c78;
	border-radius: 5px;	
	margin: 0 1.2% 1.2% 0;
}
.body-product-list .anchor_box ul li::after {
	content: "";
	background: url(https://profoods.business/uploads/category/icon_arrow_down.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-size: contain;
	width: 9px;
	height: 5px;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translate(0, -50%);
}
.body-product-list .anchor_box ul li:nth-child(4n) {
	margin: 0 0 1% 0;
}
.body-product-list .anchor_box ul li a {
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;	
	padding: 4% 0 8% 0;
	box-sizing: border-box;
	text-decoration: none;
}


/* ランキング
----------------------------------------------------------------------------------------------*/
.body-product-list .ranking {
	margin-bottom: 10px;
}
.body-product-list .ranking h2 {
	font-size: 22px;
	border-bottom: 1px solid #94a5a6;
	padding-bottom: 13px;
	margin-bottom: 20px;
}
.body-product-list .ranking ol {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.body-product-list .ranking ol li.item {
	width: 18.4%;
	margin: 0 2% 2% 0;
}
.body-product-list .ranking ol li.item:nth-child(5n) {
	margin: 0 0 2% 0;
}
.body-product-list .ranking ol li.item .thumb {
	position: relative;
	max-width: 179px;
	max-height: 179px;
}
.body-product-list .ranking ol li.item .thumb::after {
	content: "";
	max-width: 28px;	
	max-height: 28px;
	width: 18%;
	height: 18%;
	position: absolute;
	top: 0;
	left: 0;
}
.body-product-list .ranking ol li.item:nth-child(1) .thumb::after {
	background: url(https://profoods.business/uploads/category/icon_ranking1.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.body-product-list .ranking ol li.item:nth-child(2) .thumb::after {
	background: url(https://profoods.business/uploads/category/icon_ranking2.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.body-product-list .ranking ol li.item:nth-child(3) .thumb::after {
	background: url(https://profoods.business/uploads/category/icon_ranking3.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.body-product-list .ranking ol li.item:nth-child(4) .thumb::after {
	background: url(https://profoods.business/uploads/category/icon_ranking4.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.body-product-list .ranking ol li.item:nth-child(5) .thumb::after {
	background: url(https://profoods.business/uploads/category/icon_ranking5.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.body-product-list .ranking ol li.item .name {
	color: #666666;
	font-size: 13px;
	font-weight: 700;
}
.body-product-list .ranking ol li.item .detail {
	color: #666666;
	font-size: 13px;
}



/* タイプ別
----------------------------------------------------------------------------------------------*/
.body-product-list .type_box {
	margin-bottom: 10px;
}
.body-product-list .type_box h2 {
	font-size: 22px;
	border-bottom: 1px solid #94a5a6;
	padding-bottom: 13px;
	margin-bottom: 20px;
}
.body-product-list .type_box ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.body-product-list .type_box ul li.item {
	max-width: 225px;
	width: 23.5%;
	margin:0 2% 2% 0;
}
.body-product-list .type_box ul li.item:nth-child(4n) {
	margin:0 0 2% 0;
}
.body-product-list .type_box ul li.item .thumb{
	max-width: 225px;
	max-height: 225px;
	margin-bottom: 10px;
}

.body-product-list .type_box ul li.item .name {
	color: #666666;
	font-size: 13px;
	font-weight: 700;
}
.body-product-list .type_box ul li.item .detail {
	color: #666666;
	font-size: 13px;
}

/*画像の高さを揃える*/
.body-product-list .product-text-content-wrapper {
	/* 縦方向にFlexboxを適用 */display: flex;
	flex-direction: column;
	/* 親要素（.product-item）の高さ全体を使う */height: 100%;
}
.body-product-list .product-text-content-wrapper .thumb-area {
	/* これがキーです。余分なスペースをすべてこのエリアが吸い取ります。 */flex-grow: 1; 
	/* 商品名コンテンツをエリアの上端に揃えるためのFlexbox（オプション） */display: flex;
	align-items: flex-start;
}
.body-product-list .product-text-content-wrapper .name-area {
/* 領域を確保するため、縮まないように設定 */flex-shrink: 0;
 /* 必要に応じて、説明文の行数に合わせた最小の高さを設定 */ min-height: 180px;
}




/* メーカーで選ぶ
----------------------------------------------------------------------------------------------*/
.body-product-list .choose_box {
	margin-bottom: 50px;
}
.body-product-list .choose_box h2 {
	font-size: 22px;
	border-bottom: 1px solid #94a5a6;
	padding-bottom: 13px;
	margin-bottom: 20px;
}
.body-product-list .choose_box ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.body-product-list .choose_box ul li {
	max-width: 180px;
	width: 18.4%;
	background: #347c78;	
	border-radius: 5px;
	margin:0 2% 2% 0;
}
.body-product-list .choose_box ul li:nth-child(5n) {
	margin:0 0 2% 0;
}
.body-product-list .choose_box ul li a {
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 7% 0;
	box-sizing: border-box;
	text-decoration: none;
}

/*他のメーカー*/
.body-product-list .choose_box .btn_other{
	text-align: right;
}
.body-product-list .choose_box .btn_other a {
	font-size: 15px;
	color: #666666;
}
.body-product-list .choose_box .btn_other a:before {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f0da";
	margin-right: .3em;
}
