.thanks-title {
	display: flex;
	align-items: center;
	color: #af9448
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 114px 12px 20px;
}

/* コンテンツ全体のレイアウト */
.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: #f2f2f2;
	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: #af9448;
	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: #ffffff;
	color: #af9448;
	border: 1px solid #af9448;
}

/* 区切り線 */
.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: #D8CFC2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.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;
	}
}
