@charset "UTF-8";
/* CSS Document */

.page-header-map {
	width: 100%;
	height: 140px;
	display: flex;
	justify-content: center;
	align-items: center;   /* 中のh1をハコに対して完全に上下中央揃えにする */
}

.page-header-map h1 {
	font-size: clamp(28px, 1vw, 35px);
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
}

.page-header-map h1 span {
	font-family: 'Noto Serif JP', serif, "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", sans-serif;
	font-size: clamp(12px, 1vw, 15px);
	color: #fff;
	letter-spacing: 0.5em;
	font-weight: 400;
	margin-top: clamp(10px, 1.2vw, 14px); /*英語「OUTLINE」との間の距離の調整*/
}

.map-content {
	padding: 100px 0;
	color: #000;
}

/* セクション同士の間隔 */
.map-section {
	margin-bottom: 60px;
}
.map-section:last-child {
	margin-bottom: 0;
}

.map-btn {
	width: 100%;
	max-width: 470px;
	height: auto;
	color: #fff;
	background-color: #65889a;
	font-size: 20px;
	text-align: center;
	margin: 65px auto 0;
}

.map-btn a {
	color: #fff;
	padding: 30px 0;
	box-sizing: border-box;
}

.map-btn a:hover {
	background-color: #5b7c89;
}



/* sp */
@media (max-width: 768px) {
.map-content {
	padding: 60px 20px;
	box-sizing: border-box;
}

}


/* 調整 */
@media (max-width: 430px) {
.page-header-map {
	height: 90px;
}

.map-btn {
	font-size: 18px;
	margin: 30px auto 0;
}

}