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

.open {
	cursor:pointer;
	display: none;	
}
#pop-up {
	display: none;
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background: rgba(0,0,0,0.30);
	/*background: rgba(0,0,0,0);*/
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 500px;
	/*height: 240px;*/
	height: auto;
	background-color: #ffffff;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-o-border-radius: 6px;
	-ms-border-radius: 6px;
	box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 20%);
    -o-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 18px;
	margin: 2em;
}
.text p {
	line-height: 1.6em;
	padding: 0;
}
.close_overlay {
	color: transparent;
	position: absolute;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0);
}
.close {
	position: absolute;
    top: -15px;
    right: -15px;
    font-size: 20px;
    background: #89c01c;
	border: solid 2px #fff;
    border-radius: 500px;
	-moz-border-radius: 500px;
	-webkit-border-radius: 500px;
	-o-border-radius: 500px;
	-ms-border-radius: 500px;
	box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 3px 3px 1px rgb(0 0 0 / 20%);
    -o-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.2);
    color: #fff;
    width: 2em;
    height: 2em;
    line-height: 32px;
    text-align: center;
}

/* =======================  

 -- スマホ対応 - 個別

==========================*/

@media screen and (max-width: 730px) {
	.text {
		font-size: 2.5vw;
	}
}
