.head-container {
	width: 100%;
	height: 100%;
	padding-bottom: 50px;
}
.head-container > * {
	max-width: 1728px;
	max-height: 300px;
	margin: 0 auto;
}
.thanks-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;
	padding: 80px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* 完了メッセージのスタイル */
.thanks-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}

.thanks-message {
	margin-bottom: 40px;
}

.thanks-message h2 {
	font-size: 28px;
	font-weight: 700;
	color: #000;
	margin-bottom: 20px;
}

.thanks-message p {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.8;
	color: #000;
	margin-bottom: 30px;
}

/* 連絡先情報のスタイル */
.contact-info {
	background: #f6fbf4;
	padding: 25px;
	border-radius: 5px;
	margin: 30px 0;
}
.contact-info h3 {
	font-size: 14px;
	font-weight: 700;
	color: #000;
	margin-bottom: 15px;
}
.contact-info strong {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	margin-bottom: 10px;
}
.contact-info p {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 10px;
}
/* ボタンスタイル */
.back-button {
	display: inline-block;
	background-color: #4caf50;
	color: #fff;
	padding: 15px 40px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.3s ease;
	margin-top: 20px;
}

.back-button:hover {
	background-color: #45a049;
}

/* 区切り線 */
.separator {
	width: 100%;
	height: 2px;
	background-color: #000;
	margin: 20px auto;
}

/* アイコン */
.thanks-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(76, 175, 80, 0.1);
	border-radius: 50%;
}

.thanks-icon i {
	font-size: 40px;
	color: #4caf50;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.page-header {
		height: 200px;
	}
	.page-header .head-container h1 {
		font-size: 24px;
	}
	.page-header .head-container p {
		font-size: 14px;
	}
	.thanks-title {
		margin: 30px 0 10px;
		padding: 0;
	}
	.content-section {
		padding: 40px 20px;
	}
	.thanks-container {
		padding: 20px;
	}
	.thanks-message h2 {
		font-size: 18px;
	}
	.thanks-message p {
		font-size: 12px;
	}
	.contact-info strong {
		font-size: 24px;
	}
	.contact-info p {
		font-size: 14px;
	}
}
