@charset "UTF-8";

/*ポップアップウィンドウのcss*/

.open {
	cursor:pointer;
        font-size: 2.0em;
}

#pop-up {
	display: none;
}
.overlay {
	display: none;
}
#pop-up:checked + .overlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.6);
}
.window {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90vw;
	max-width: 360px;
    padding: 20px;
	height: 300px;
	background-color: #fff;
	border-radius: 4px;
	align-items: center;
	transform: translate(-50%, -50%);
}
.close {
	position: absolute;
	top: 4px;
	right: 4px;
	cursor:pointer;
}


.contents {
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.osrtop{
width: 100%;
text-align: center;
font-size: x-small;
}

.p1{
font-size:2.0em;
margin: 1%;
}

.p2{
font-size: x-large;
padding: 1%;
}


