@charset "UTF-8";

@media only screen and (max-width: 767px) {
	#modal-content .pc {
		display: none
	}

	.modal-info-area .pc {
		display: none
	}
}

@media only screen and (min-width: 767px) {
	#modal-content .sp {
		display: none
	}

	.modal-info-area .sp {
		display: none
	}
}

#modal-content {
	width: 50%;
	margin: 0;
	padding: 10px 20px;
	border: 2px solid #aaa;
	background: #fff;
	position: fixed;
	display: none;
	z-index: 99999;
}

@media only screen and (max-width: 767px) {
	#modal-content {
		width: 87%;
		margin: 0;
		padding: 10px 10px;
		border: 2px solid #aaa;
		background: #fff;
		position: fixed;
		display: none;
		z-index: 99999;
	}
}

#modal-overlay {
	z-index: 9999;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.75);
}

.modal-text {
	text-align: center;
	margin: 20px 0;
}

@media only screen and (max-width: 767px) {
	.modal-text {
		font-size: 80%;
		margin: 5px 0;
	}
}

.modal-image-area {
	text-align: center;
}

.modal-image {
	display: inline-block;
	width: 40%;
}

@media only screen and (max-width: 767px) {
	.modal-image {
		display: inline-block;
		width: 84%;
	}
}

.modal-info-area {
	background: #e79092;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}

.modal-info-link {
	text-decoration: underline;
}

.modal-info-link:hover {
	cursor: pointer;
}

.modal-button-area {
	text-align: right;
}

.modal-button-link {
	text-decoration: underline;
}

.modal-button-link:hover {
	cursor: pointer;
}