@charset "utf-8";
/*----------------------------- popup -----------------------------*/
.popup{
	width:580px;
	margin-left:-290px;
	background:#FFF;
	cursor:default;
	position:fixed;
	left:50%;
	top:15px;
	display:none;
}

.popup_overlay{
	width:100%;
	height:100vh;
	background:rgba(0,0,0,0.5);
	cursor:pointer;
	position:fixed;
	top:0;
	left:0;
	z-index:2147483647;
	display:none;
}

.popup_hide_trigger{
	width:28px;
	height:28px;
	cursor:pointer;
	position:absolute;
	top:5px;
	right:5px;
	z-index:2147483647;
	transform:rotate(45deg);
}

.popup_hide_trigger::before, 
.popup_hide_trigger::after{
	content:"";
	background:#7f7f7f;
	display:inline-block;
	position:absolute;
}

.popup_hide_trigger::before{
	width:4px;
	height:100%;
	top:0;
	left:12px;
}

.popup_hide_trigger::after{
	width:100%;
	height:4px;
	top:12px;
	left:0;
}

.popup > div{
	width:100%;
	height:100%;
	overflow:auto;
}

@media screen and (max-width:950px){
	.popup{
		width:86%;
		margin-left:auto;
		left:7%;
	}
}
/*----------------------------- /popup -----------------------------*/