/* モーダルの背景 */
.modal_overlay {
	display: none; /* 初期状態では非表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* 半透明の黒背景 */
	z-index: 9999;
}

/* モーダルの中身 */
.modal_content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	z-index: 10000;
}

.modal_button {
	margin: 15px 5px 10px;
	padding: 10px 20px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.modal_button:hover {
	background: #0056b3;
}

.close_button {
	margin: 15px 2px 10px;
	padding: 10px 20px;
	background: #ccc;
	color: black;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.close_button:hover {
	background: #999;
}

.modal_text_main {
	font-size: 105%;
	font-weight: bold;
	margin: 20px;
}

.modal_text_inner {
	text-align: left;
	margin: 10px;
}
