@charset "utf-8";

/********************************************************
	
	flex-grid:| sm  | md  | lg  |  xl  |
	min-width:| 576 | 768 | 992 | 1200 |
	max-width:| 575 | 767 | 991 | 1199 |

********************************************************/
/* ======================================================

	共通 | メイン画像

====================================================== */
.hero {
 	height: 270px;
}
.hero__inner {
	height: 100%;
}
.hero__inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
@media screen and (max-width: 767px) {
	.hero {
	 	height: 60px;
	}
}
/* ======================================================

	共通 | タイトル

====================================================== */
.page-title{
	padding: 40px 0 70px;
	font-size: 3.4rem;
	text-align: center;
}
.page-title-sub{
	font-size: 2.6rem;
	color: #439c38;
}
@media screen and (max-width: 767px) {
	.page-title{
		padding: 40px 0 55px;
		font-size: 2.4rem;
	}
	.page-title-sub{
		font-size: 1.8rem;
	}
}
/* ======================================================

	アクセス

====================================================== */
.address{
	margin-bottom: 40px;
	background-color: #f5f5f6;
}
.address__info{
	padding: 35px 40px;
	background-color: #f5f5f6;
}
.address__info > p:nth-child(1){
	margin-bottom: 0.75em;
}
.address__info > p:nth-child(2){
	margin-bottom: 0.75em;
}
.address__info-sub{
	font-size: 1.4rem;
}
.address__map{
	height: 0;
	overflow: hidden;
	padding-bottom: 41.5%;
	position: relative;
}
.address__map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.address{
		margin-bottom: 30px;
	}
	.address__info{
		padding: 15px 10px;
	}
	.address__info-sub{
		font-size: 1.2rem;
	}
}