@charset "utf-8";
/* CSS Document */

.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90%;
	max-width: 930px;
	height:90%;
	max-height:500px;
	background-color: #ffffff;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
}
.close {
	cursor:pointer;
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 30px;
}
.pop_body{
	margin:0px 50px 0px 50px;
	text-align:left;
	height:auto;
	max-height:450px;
	overflow-y: auto;
}
@media only screen and (max-width:510px){
.window{
	height:90%;
	max-height:none;
}	
.pop_body{
	max-height:80%;
	margin:0px 20px 10px 20px;
	overflow-y: scroll;
}
}
.pop_title{
	font-weight:bold;
	font-size:24px;
	color:#F00;
	text-align:center;
	margin-bottom:1em;
}
ul.pop_caution{
	padding-left: 1.5em;
}
ul.pop_caution li{
	text-indent: -1.5em;
	line-height:1.5em;
}
ul.pop_caution li::before{
	content: "※";
    margin-right: 0.2em;
}
.pop_agree{
	font-weight:bold;
	font-size:20px;
	color:#F00;
	text-align:center;
	margin-bottom:1em;
}
.text {
	font-size: 18px;
	margin: 0;
}


ul.btnSet{
	display: flex;
	justify-content: center;
	margin-bottom:0 !important;
}
ul.btnSet li{
	margin-right:20px;
	margin-bottom:0 !important;
}
ul.btnSet li:last-child{
	margin-right:0;
}
.btn_back{
	cursor:pointer;
}
.pop_btn{
	min-width:150px;
	display:inline-block;
	text-align:center;
	padding:0.6em 1em 0.5em 1em;
	line-height:1.2em;
	font-size:20px;
	color:#fff;
	text-decoration:none;
	position: relative;
	margin-bottom:0.5em;
	border:none;
	
	border-radius: 10px;
	background: rgb(2,0,36);
	background: linear-gradient(120deg, rgba(2,0,36,1) 0%, rgba(0,107,207,1) 0%, rgba(0,148,180,1) 100%);
}
#mainContent a.pop_btn{
	color:#fff;
	text-decoration:none;
}

label.open{
	width:auto;
	display:inline-block;
	text-align:left;
	padding:0.7em 2em 0.5em 2em;
	line-height:1.2em;
	font-size:40px;
	color:#fff;
	text-decoration:none;
	position: relative;
	margin-bottom:0.5em;
	text-align:center;
	
	border-radius: 100px;
	background: rgb(2,0,36);
	background: linear-gradient(120deg, rgba(2,0,36,1) 0%, rgba(0,107,207,1) 0%, rgba(0,148,180,1) 100%);
}