.modal-open {
	cursor: pointer;
}
.modal-overlay {
	z-index: 1;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background: rgba(0, 0, 0, 0.5);
}
.modal-content {
	z-index: 2;
	display: none;
	position: fixed;
	max-width: 500px;
	margin: 0 15px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	background: #fff;
	font-size: 16px;
	text-align: center;
}
.modal-content .c-button-mail {
	margin: auto;
	margin-top: 10px;
	margin-bottom: 30px;
}
.modal-header {
	display: flex;
	justify-content:center;
	padding: 2rem;
	padding-bottom: 1rem;
	margin-bottom: 10px;
}
.modal-header .close {
	cursor: pointer;
	background: transparent;
	border: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	outline: none;
	opacity: .5;
}
.modal-check-body {
	padding: 0 40px;
}
.modal-check-body strong {
	font-size: 20px;
	padding: 10px;
}
.modal-check-body .txt {
	margin-top: 10px;
	font-size: 14px;
}
@media screen and (max-width:768px) {
	.modal-check-body {
		padding: 0 20px;
	}
	/* .modal-check-body .txt {
		font-size: 14px;
	} */
}
.modal-check-body .midashi {
	font-size: 24px;
	font-weight: bold;
	color: #004cb3;
	margin-top: 20px;
}
.modal-header .close:hover {
	opacity: .75;
}
.modal-body {
	padding: 1rem;
}
.modal-footer {
	display: flex;
	justify-content: center;
	padding: 1rem;
}
.check-btn {
	display: inline-block;
	font-weight: 400;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	outline: none;
	background: #6c757d;
	border: 1px solid #6c757d;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: 0.15s;
	cursor: pointer;
	font-size: 13px;
}
.check-btn:hover {
	background: #5a6268;
	border-color: #545b62;
	opacity: 0.7;
	transition: 0.7s;
}