/* エラーページ共通スタイル */
.errorPage {
	min-height: calc(100vh - 140px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.errorPage_inner {
	max-width: 600px;
	width: 100%;
	text-align: center;
}

.errorPage_status {
	font-size: 8rem;
	font-weight: 700;
	color: #027041;
	line-height: 1;
	margin-bottom: 20px;
}

.errorPage_icon {
	margin: 0 auto 30px;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.errorPage_icon img {
	width: 100%;
	height: auto;
}

.errorPage_title {
	font-size: 2.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.4;
}

.errorPage_message {
	font-size: 1.6rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 15px;
}

.errorPage_subMessage {
	font-size: 1.4rem;
	color: #999;
	line-height: 1.6;
	margin-bottom: 40px;
}

.errorPage_actions {
	display: flex;
	flex-direction: row;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.errorPage_button {
	display: inline-block;
	padding: 15px 40px;
	background: #027041;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	min-width: 200px;
	text-align: center;
	border: none;
	cursor: pointer;
}

.errorPage_button:hover {
	background: #035a2f;
	transform: translateY(-2px);
	text-decoration: none;
	color: #fff;
}

.errorPage_button:active {
	transform: translateY(0);
}

.errorPage_button:focus {
	outline: 2px solid #9cc813;
	outline-offset: 2px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.errorPage {
		min-height: calc(100vh - 200px);
		padding: 30px 15px;
	}

	.errorPage_status {
		font-size: 6rem;
		margin-bottom: 15px;
	}

	.errorPage_icon {
		width: 60px;
		height: 60px;
		margin-bottom: 20px;
	}

	.errorPage_title {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.errorPage_message {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	.errorPage_subMessage {
		font-size: 1.3rem;
		margin-bottom: 30px;
	}

	.errorPage_actions {
		flex-direction: column;
	}

	.errorPage_button {
		padding: 12px 30px;
		font-size: 1.4rem;
		min-width: 180px;
		width: 100%;
		max-width: 300px;
	}
}

