
#container #box{
	width:1000px;
	margin:0 auto;
}
#box > h1{
	background: #CEEAEE;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 34px;
	border-radius: 20px;
}
#box > h1:before{
	content:url("../parts/icon_review.svg");
	margin-right:10px;
}

.category_area{
	display:flex;
	flex-wrap:wrap;
	margin: 20px 0 0px;
}
.category_box{
	margin:0px 10px 15px;
	padding:0px 0px;
	width:18%;
}
.category_title{
	font-weight:bold;
	background: #F2EEEB;
	padding: 3px 10px;
	border-radius: 3px;
	cursor:pointer;
}
	.category_title:before{
		content:"＋";
		font-weight:bold;
		font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
	.category_title.down:before{
		content:"－";
	}
.customer_comment_category li{
	padding: 0 10px;
	display: flex;
}
.customer_comment_category li:before{
	content: url(../parts/icon_list.png);
	font-weight: bold;
	padding-right: 8px;
}

section{
	background: #FBF3DE;
	margin: 0 0 13px;
	padding: 15px 30px;
	border-radius: 20px;
	clear:both;
}
section:last-child{
	margin-bottom:0;
}
section:nth-child(even){
	background:#CEEAEE;
}
section a{
	width: 320px;
	display: block;
}
	section a img{
		max-width:100%;
		display:block;
		margin-bottom:10px;
		margin-top:12px;
	}
.product_review dl{
	display: flex;
	border-bottom: 5px dotted #fff;
	padding-bottom: 15px;
	margin-bottom: 10px;
}
	.product_review dl:last-child{
		padding:0;
		margin:0;
		border:none;
	}
.product_review dl dt{
	width:320px;
	max-width:100%;
	margin-right:20px;
}
	.product_review dl dt img{
		display:block;
		width:100%;
		max-width:100%;
	}
	.product_review dl dt a{
		display:block;
	}
.product_review dl dd{
	width:100%;
}
.customer_comment_box{
	border-top:5px solid #fff;
	padding:10px 10px;
}
	.product_review .customer_comment_box:first-child{
		border:none;
	}
.customer_info{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.customer_comment{
	margin-bottom:10px;
}
.customer_remarks{
	margin-right:10px;
}
.read_more{
	border: none;
	background: #fff;
	padding: 4px 10px;
	border-radius: 3px;
	margin-left:5px;
}
.read_more:before{
	content:"+";
	margin-right:5px;
}
.open_read_more:before {
    content: "-";
    margin-right: 5px;
}

@media screen and (max-width:1179px){
	
	#container #box{
		margin:0 10px;
		width:auto!important;
	}
	.category_box{
		width: 22%;
	}
	
}

@media screen and ( max-width:799px) {
	
	section{
		padding:20px;
	}
	.category_box{
		width:27vw;
	}
	.product_review dl dt{
		width:65%;
		max-width:320px;
	}
	.product_review dl dt a{
		width:100%;
	}
	
}

@media screen and (max-width:400px){
	
	section{
		padding:15px 10px;
	}
	.category_box{
		width: 41vw;
	}
	.product_review dl{
		flex-wrap:wrap;
	}
	.product_review dl dt{
		margin:0 auto;
		width: 100%;
	}

	#box > h1{
		font-size:23px;
		min-height: 70px;
	}	
	#box > h1::before{
		content: "";
		background: url(../parts/icon_review.svg) no-repeat;
		width: 80px;
		height: 55px;
		background-size: contain;
	}
	
}