/* --------------------------------------------------
	トップページモーダルスタイル
-------------------------------------------------- */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 12px;
	background: #fff;
	border-radius: 8px;
	padding: 60px 30px 40px 30px;
	max-width: 430px;
	width: 90%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
	position: absolute;
	top: 32px;
	right: 32px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
	line-height: 1;
}

.modal-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: black;
}

.modal-body img {
	margin-bottom: 60px;
}

.modal-body h2 {
	font-size: 22px;
	margin-bottom: 16px;
	text-align: center;
}

.modal-body span {
	display: inline-block;
}

.modal-body p {
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

.modal-body button {
	margin-top: 51px;
	height: 48px;
	padding: 10px 35px;
	font-size: 14px;
	color: white;
	background-color: #EC6D56;
	border-radius: 24px;
	border: none;
}