@charset "utf-8";

/*=============================================
	
	タイトル枠
	
==============================================*/
#top_title_wrap {
	text-align: center;
	color: #FFF;
	position: relative;
	margin: 0 0 0;
}
#top_title_wrap .title_img {
	position: relative;
}
#top_title_wrap .title_img:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #000;
	opacity: 0.3;
	display:block;
}
#top_title_wrap h3 {
	position: absolute;
	left: 0;
	top: 3.5em;
	width: 100%;
	font-size: 3.6em;
	line-height: 1.0em;
}
#top_title_wrap p.sub {
	position: absolute;
	left: 0;
	top: 16em;
	width: 100%;
	font-size: 1.1em;
	line-height: 1.0em;
}

@media print, screen and (min-width: 769px) {
	#top_title_wrap {
		padding: 0 0;
		text-align: center;
		margin: 0 0 0;
		max-height: 360px;
		overflow: hidden;
	}
	#top_title_wrap h3 {
		top: 140px;
		font-size: 56px;
		margin: 0 0 30px;
	}
	#top_title_wrap p.sub {
		top: 220px;
		font-size: 14px;
	}
}


/*=============================================
	
	レビューリスト
	
==============================================*/
.review_list {
	padding: 3em 0;
	background-color: #EDEAE9;
}
.review_list .container {

}
.review_list .box {
	position: relative;
	padding: 2.5em 5%;
	margin-bottom: 2em;
	background-color: #FFF;
	border-radius: 10px;
}
.review_list .box .title {
	border-bottom: 1px dotted #CCC;
	margin-bottom: 1em;
	padding-bottom: 1em;
	font-size: 1.2em;
	color: #887249;
}
.review_list .box .body {
	font-size: 1em;
	line-height: 2;
}

@media print, screen and (min-width: 769px) {

	.review_list {
		padding: 50px 0;
	}
	.review_list .container {
		width: 90%;
		max-width: 1280px;
		min-width: 960px;
	}
	.review_list .box {
		padding: 30px 3%;
		margin-bottom: 30px;
		width: 84%;
	}
	.review_list .box:nth-of-type(2n) {
		margin-left: 10%;
	}
	.review_list .box .title {
		margin-bottom: 25px;
		padding-bottom: 25px;
		font-size: 16px;
	}
	.review_list .box .body {
		font-size: 13px;
	}

}