@charset "UTF-8";

.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}

.popup.is-show {
	opacity: 1;
	visibility: visible;
}

.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 550px;
	background-color: #fff;
	z-index: 2;
	border-radius: 3px;
}

.popup-inner img {
	width: 100%;
	border-radius: 3px 3px 0 0;
}

div#modalCloseCloss:hover {
	opacity: 0.7;
}

.modalCloseButton {
	position: absolute;
	left: 92%;
	top: -48px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}

.lineClose {
	display: inline-block;
	vertical-align: middle;
	color: #FFF;
	line-height: 1;
	width: 2rem;
	height: 0.2rem;
	background: currentColor;
	border-radius: 0.1rem;
	position: relative;
	transform: rotate(45deg);
}

.lineClose::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	transform: rotate(90deg);
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	z-index: 1;
	cursor: pointer;
}

.modalBottom {
	padding: 22px 30px;
	text-align: center;
	font-weight: bold;
}

.modalBottom p {
	margin: 0;
}
