.head-container {
	width: 100%;
	height: 100%;
	padding-bottom: 50px;
}
.head-container > * {
	max-width: 1728px;
	max-height: 300px;
	margin: 0 auto;
}
.contact-title {
	display: flex;
	align-items: center;
	color: #fff;
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 114px 12px 20px;
}
.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: linear-gradient(to bottom, #5cb531, #219651);
	z-index: 1;
}

.page-header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #c8dcd0 13.32%, #fff 64.82%);
	mix-blend-mode: multiply;
	z-index: 2;
}

.page-header .head-container {
	position: relative;
	z-index: 3;
}
.page-header .head-container h1 {
	color: #fff;
	font-family: 'Noto Sans JP';
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.page-header .head-container p {
	color: #fff;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}
/* コンテンツ全体のレイアウト */
.content-section {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	padding: 126px 0;
}

/* テキスト部分のスタイル */
.content-text {
	width: 500px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #333;
}

/* 問い合わせフォームのスタイル */
.contact-form {
	width: 500px;
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* フォーム内のスタイル */
.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: #4caf50;
	outline: none;
}

/* 送信ボタンのスタイル */
.contact-form .submit-button {
	background-color: #4caf50;
	color: #fff;
	padding: 15px;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
	background-color: #45a049;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
	.content-section {
		flex-direction: column;
		align-items: center;
	}

	.content-text,
	.contact-form {
		width: 100%;
		max-width: 800px;
	}
}

@media (max-width: 768px) {
	.page-header {
		height: 200px;
	}
	.page-header .head-container h1 {
		font-size: 24px;
	}
	.page-header .head-container p {
		font-size: 14px;
	}
	.contact-title {
		margin: 30px 0 10px;
		padding: 0;
	}
	.content-section {
		padding: 36px 20px;
	}
	.content-text {
		text-align: left;
	}

	.contact-form {
		padding: 20px;
	}
}
