@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 .title_img {
		position: relative;
		bottom: 0;
		top: auto;
	}
	#top_title_wrap h3 {
		top: 140px;
		font-size: 56px;
		margin: 0 0 30px;
	}
	#top_title_wrap p.sub {
		top: 220px;
		font-size: 14px;
	}
}

/*---------------------------------------------------------
	
	    ギャラリー レイアウト
	
---------------------------------------------------------*/

#gallery {
	margin: 0;
	padding: 5em 0 4em;
	background: #F1EEED;
}
#gallery h4{
	text-align: center;
	font-size: 2.0em;
	margin: 0 0 0.6em;
}
#gallery .sub{
	font-size: 0.9em;
	color: #999;
	text-align: center;
	margin-bottom: 1.5em;
}
#gallery ul {
	margin: 0 0 3.0em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#gallery ul li {
	width: 18%;
	margin: 0 1% 0.6em;
}
#gallery ul.custom li img {
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media screen and (min-width: 768px) {

	#gallery {
		margin: 0;
		padding: 70px 0 60px;
	}
	#gallery .container {
		width: 90%;
		min-width: 960px;
	}
	#gallery h4{
		text-align: center;
		font-size: 24px;
		margin: 0 0 10px;
	}
	#gallery .sub{
		font-size: 11px;
		margin-bottom: 30px;
	}
	#gallery ul {
		margin: 0 0 70px;
	}
	#gallery ul li {
		width: 11.4%;
		margin: 0 0.3% 10px;
	}
	#gallery ul.custom li img {
	}

}

/*=============================================
	
	ボタン
	
==============================================*/
.btn_list {
	width: 74%;
	margin: 0 auto 5em;
	padding: 1.5rem 8%;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;

}
.btn_list div {
	text-align: center;
	margin: 0 0 1rem;
}
.btn_list div:last-of-type {
	margin: 0 0 0;
}
.btn_list div a {
	display: block;
	background-color: #887249;
	color: #FFF;
	padding: 0.5rem 0;
	font-size: 0.9em;
}
@media screen and (min-width: 768px) {
	.btn_list {
		width: 80%;
		min-width: 720px;
		max-width: 960px;
		margin: 0 auto 90px;
		padding: 50px 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.btn_list div {
		margin: 0 5% 0;
		width: 40%;
	}
	.btn_list div:last-of-type {
		margin: 0 5% 0;
	}
	.btn_list div a {
		padding: 20px 0;
		font-size: 13px;
	}
}