@charset "UTF-8";
/*====================================
学校の住所、地図
=====================================*/
.map_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #edf5f1;
}
.map_info,
.map_map {
	width: 50%; /*1:1で並べる*/
}
/*テキスト情報*/
.map_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1rem;
}
/*Googleマップ埋め込み*/
.map_map {
	border-left: 1px solid #fff; /*境界線を入れる*/
}

/*地図情報の所在地名*/
.address-ttl {
	font-size: 1.9rem;
	margin-bottom: 1rem;
}
/*地図情報*/
.address-txt {
	line-height: 1.75em;
}

/* googlemap調整（レスポンシブ化） */
.gmap {
	position: relative;
	height: 0;
	overflow: hidden;
	}

.gmap iframe,
.gmap object,
.gmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
	/*====================================
	学校の住所、地図	769px以上
	=====================================*/
	@media screen and (min-width: 769px) {
		.gmap {
			padding-bottom: 40vh; /*Googleマップの高さ 画面の40%*/
		}
	}
	/*====================================
	学校の住所、地図	768px以下
	=====================================*/
	@media screen and (max-width: 768px) {
		.address-ttl {
			font-size: 1.25rem;
		}
		.gmap {
			padding-bottom: 30vh; /*Googleマップの高さ 画面の30%*/
		}
		.map_info {
			display: block;
		}
		.map_info, .map_map {
			width: 100%;
		}
	}

	/*====================================
	学校の住所、地図	560px以下
	=====================================*/
	@media screen and (max-width: 560px) {
		.map_info_text,
		.map_info,
		.map_map {
			width: 100%;
		}
}


