
label {
    color: blue;
    text-underline-position: above;
}

.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}

#pop-up111 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up111:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up127 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up127:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up002 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up002:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up045 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up045:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up121 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up121:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up129 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up129:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up097 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up097:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up134 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up134:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up014 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up014:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up135 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up135:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

#pop-up139 {
	display: none; /* label でコントロールするので input は非表示に */
}
#pop-up139:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}


.window {
	width: 90vw;
	max-width: 490px;
	height: 130px;
	background-color: rgba(255,255,255,0.8);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 16px;
	width: 90vw;
	max-width: 220px;
	color: #ffffff;
    background-color:royalblue;
    border-radius: 6px;
	text-align: center;
	align-items: center;
	margin: 0.4em;
    padding:0.6em;
}

.text a {
	color: #ffffff;
	text-decoration-line: none;

}


.close {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
}