@charset "UTF-8";

/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	padding: 85px 0 195px;
	position: relative;
}
#headline::before {
	content: "";
	width: 1px;
	height: 100px;
	background: #003a7d;
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
}
#headline h1 {
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1;
	color: #003a7d;
	text-align: center;
}
#headline h1::after {
	font-size: 14px;
	display: block;
	margin-top: 20px;
}
@media screen and (max-width: 840px) {
	#headline {
		padding: 50px 0 140px;
	}
	#headline::before {
		height: 80px;
		bottom: 40px;
	}
	#headline h1 {
		font-size: 34px;
	}
	#headline h1::after {
		font-size: 12px;
	}
}
@media screen and (max-width: 640px) {
	#headline {
		padding: 30px 0 80px;
	}
	#headline::before {
		height: 40px;
		bottom: 25px;
	}
	#headline h1 {
		font-size: 28px;
	}
	#headline h1::after {
		font-size: 11px;
		margin-top: 10px;
	}
}