/* popup common */
body.pop_open {
	overflow: hidden;
	height: 100%;
}
.bg_pop {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
}
.popwrap {
	display: none;
	box-sizing: border-box;
	overflow: auto;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10001;
}
.popwrap.top-type .popup {
	top: 0;
	transform: translate(-50%, 0);
}
.popup {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 333;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 30px 38px;
	border: solid 1px #ebebeb;
	border-radius: 10px;
	background: #fff;
	transform: translate(-50%, -50%);
	box-shadow: 5px 5px 6px rgba(152, 152, 152, .2);
}
.pop_title {
	display: block;
	margin-bottom: 30px;
	color: #054A8F;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
.pop_close {
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 10px;
	height: 10px;
	border: none;
	background: url('/images/common/pop_close.png') no-repeat;
	background-size: 10px 10px;
}

@media screen and (max-width: 720px) {
	.popup {
		padding: 39px 15px;
	}
	.pop_title {
		font-size: 20px;
	}
}