.pop_up_link {
	cursor: pointer;
}
.overlay, .pop_up_body, .pop_up > div {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}
.body_fix {
    overflow: hidden;
}
.page_blur .page {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
	filter: url('../img/blur.svg#blur');
    filter: progid:DXImageTransform.Microsoft.Blur(Strength=10);
}

.pop_up_body {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 300;
    transition-delay: .2s;
    background-color: rgba(23,41,70,0.7);
    overflow: auto;
    height: 100%;
}
.pop_up {
	color:#333333;
	vertical-align: middle;
	padding: 30px;
	width: 100%;
}
.pop_up > div {
	background-color: #fff;
	-webkit-transform: translate(0,-20px);
	-moz-transform: translate(0,-20px);
	-o-transform: translate(0,-20px);
	transform: translate(0,-20px);
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 50px;
	position: relative;
	box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.4);
	text-align: center;
}

.pop_up_wrap.act .pop_up > div, .pop_up_body.act .pop_up > div {
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
    transition: all .3s ease .3s;
}
.pop_up.min > div {
	max-width: 720px;
}
.pop_up .main_txt .ttl {
	font-size: 36px;
}
.pop_up .main_txt .note {
	max-width: none;
	padding: 0 77px;
}

.pop_up .close {
	background-position:-77px -286px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: block;
	position: absolute;
	top: 30px;
	right: 30px;
}
.pop_up_body.act, .pop_up_wrap.act .pop_up > div, .pop_up_body.act .pop_up > div  {
	visibility: visible;
	opacity: 1;
}
.pop_up_body > div {
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
}
.pop_up_wrap {
	display: table;
	width: 100%;
	height: 0;
}
.pop_up_wrap > div {
    display: table-cell;
    vertical-align: middle;
}
.pop_up .ttl {
	font-size: 24px;
	text-transform: uppercase;
}
#pop_up_ok .ttl {
	margin-bottom: 0;
}