@charset "utf-8";
/* CSS Document */

body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	max-width: 1000px;
	width: 80%;
    background-color: #fff;
}

.onetime_popup_title {
    position: relative;
    padding: 5%;
    margin: 0px;
    background-color: #3388dd;
    color: #fff;
    font-size: 200%;
    text-align: center;
    line-height: 1.5;
}

.onetime_popup_title_close {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    cursor: pointer;
}
.onetime_popup_title_close::before,
.onetime_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
}
.onetime_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.onetime_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.onetime_popup_content {
    padding: 60px 30px;
}

.PopLeft {
	float: left;
	width: 45%;
}

.PopRight {
	float: right;
	width: 50%;
	font-size: 120%;
}

.PopRight span {
	margin-top:15px;
	padding: 10px 15px;
	border-radius: 30px;
	border: 2px solid #3388dd;
	color: #3388dd;
	display: block;
	text-align: left;
}

.page_close {
	background: #000;
	width: 220px;
	padding: 10px 15px;
	margin: 0 auto;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	font-size: 90%;
}

@media only screen and (max-width: 768px) {
	
.onetime_popup_title {
    font-size: 150%;
}
	
.onetime_popup {
	width: 90%;
	max-height: 80%;
	overflow-y: scroll;
}
	
.PopLeft {
	display: none;
}

.PopRight {
	float: none;
	width: 100%;
	font-size: 120%;
}
.onetime_popup_content {
    padding: 10%;
}

}