@charset "utf-8";
/* CSS Document */
.open {
	cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
	text-align: center;
	color: #62A0D9;
	background-color: #FFFFFF;
	width: 100%;
	height: auto;
	padding-top: 5px;
	display: block;
	padding-bottom: 5px;
}
#dr_1-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#dr_2-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#dr_3-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#dr_4-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#dr_5-up {
	display: none; /* label でコントロールするので input は非表示に */
}
#dr_6-up {
	display: none; /* label でコントロールするので input は非表示に */
}

.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#dr_1-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#dr_2-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#dr_3-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#dr_4-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#dr_5-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
#dr_6-up:checked + .overlay {
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.window {
	width: 320px;
	max-width: 380px;
	height: 700px;
	background-color: #ffffff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.text {
	font-size: 18px;
	margin: 0;
}
.close {
	cursor: pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
	color: #232323;
}
