/**
 * 共通ページヘッダースタイル
 * すべてのページで使用される .page-header の統一スタイル
 */

.page-header {
	height: 350px;
	margin: 10px auto;
	padding: 10px 23px;
	font-family: 'Noto Sans JP';
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #d8cfc2;
	z-index: 1;
}

.page-header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	z-index: 2;
}

.page-header .head-container {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 50px;
}

.page-header .head-container > * {
	max-width: 1728px;
	max-height: 300px;
}

.page-header .head-container h1 {
	color: #4c4948;
	font-family: 'Noto Sans JP';
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.page-header .head-container p {
	color: #4c4948;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.page-header {
		height: 200px;
	}
	.page-header .head-container h1 {
		font-size: 24px;
	}
	.page-header .head-container p {
		font-size: 14px;
	}
}
