.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  background: rgba(255,255,255,0.3);
  color: #fff;
  display: block;
  padding: 20px 10%;
  margin: 100px auto 0 auto;
  width: 50%;
  border-radius: 10px;
  position: relative;
  z-index: 30;
  text-align: center;
}
label.open:hover {
 top: -3px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 30%);
}
#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: 80%;
	background-color: #224a74;
  background-image: url(../images/popup-haikei.webp);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  padding: 40px;
}
.text {
	font-size: 16px;
	margin: 0;
  color: #fff;
  text-align: left;
}
.close {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
  color: #fff;
}

.window span{
  color: #ddb484;
  font-weight: bold;
}


/** -------- スマホ -------- **/

@media screen and (max-width: 820px) {

.text {
 font-size: 10px;
}
.window{
	padding: 15px;
	width: 90%;
}

}