@charset "UTF-8";

/* モーダル本体（隠し状態） */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2000;
}

/* モーダルウィンドウ */
.modal-window {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 700px;
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 規約テキストエリア（スクロール可能） */
.modal-content {
	max-height: 60vh;
	overflow-y: auto;
	margin-bottom: 20px;
	text-align: left;
	font-size: 14px;
	line-height: 1.8;
	color: #333;
	padding-right: 10px;
}

.modal-content h2 {
	font-size: 18px;
	margin-bottom: 15px;
	border-left: 4px solid #0b8793;
	padding-left: 10px;
}

.modal-content p {
	margin-bottom: 15px;
}

/* 閉じるボタン */
.modal-close-btn {
	display: block;
	width: 120px;
	margin: 0 auto;
	padding: 10px;
	background-color: #333;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
	border: none;
}

.modal-close-btn:hover {
	background-color: #555;
}

/* フォーム内の強調表示 */
.consent-area {
	background-color: #fffde7;
	/* ほんのり黄色（注意喚起・親切色） */
	border: 1px solid #ffe082;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.consent-guide {
	font-size: 0.9em;
	color: #333;
	margin: 0 0 10px 0;
	font-weight: bold;
}

.consent-label {
	display: flex;
	cursor: pointer;
}

/* モバイル対応：画面いっぱいに広げる */
@media screen and (max-width: 639px) {
	.modal-window {
		width: 95%;
		padding: 30px 20px;
	}
}