@charset "UTF-8";

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

	headline

-----------------------------------*/
#headline {
	width: 100%;
	height: 300px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: grid;
	place-items: center;
	grid-template-columns: 100%;
}
#headline h1 {
	display: block;
	max-width: 1180px;
	width: 94%;
	font-size: 36px;
	font-weight: 700;
}
#headline h1::after {
	content: "";
	display: block;
	font-size: 15px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.04em;
	color: #114C98;
	margin-top: 15px;
}
@media screen and (max-width: 840px) {
	#headline {
		height: 200px;
	}
	#headline h1 {
		font-size: 30px;
	}
	#headline h1::after {
		font-size: 13px;
	}
}
@media screen and (max-width: 640px) {
	#headline {
		height: 140px;
	}
	#headline h1 {
		font-size: 22px;
	}
	#headline h1::after {
		font-size: 11px;
		margin-top: 10px;
	}
}
/*-----------------------------------

	breadcrumb

-----------------------------------*/
#breadcrumb {
	width: min(1180px, 94%);
	margin: 0 auto;
	padding: 20px 0 40px;
	font-size: 14px;
	font-weight: 500;
	color: #114C98;
	display: flex;
	justify-content: right;
	gap: 25px;
}
#breadcrumb li:not(:last-child) {
	position: relative;
}
#breadcrumb li:not(:last-child)::after {
	content: "";
	width: 25px;
	height: 14px;
	background: url(../img/common/bc_arrow.svg) no-repeat center center/7px;
	position: absolute;
	top: 0;
	left: 100%;
}
@media screen and (max-width: 640px) {
	#breadcrumb {
		padding: 10px 0 20px;
		font-size: 12px;
		gap: 20px;
	}
	#breadcrumb li:not(:last-child)::after {
		width: 20px;
		height: 12px;
		background: url(../img/common/bc_arrow.svg) no-repeat center center/5px;
	}
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
	padding: 8vw 0 0;
}
@media screen and (max-width: 840px) {
	#contents {
		padding: 70px 0 0;
	}
}