@charset "UTF-8";
.open {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#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: 90vw;
	max-width: 600px;
	height: 240px;
	background-color: #ffffff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.wrap > h1{
    font-family: "Noto Sans Japanese";
    font-size: 3.0rem;
    color: #071b33;
    font-weight: bold;
    border-left: 4px solid #ff2c1e;
    line-height: 1.2;
    padding-left: .5em;
    margin-bottom: 5px;
}
.wrap > ul li a{
		font-size: 2.5rem;
		color:#ff2c1e !important;
}

.wrap > p{
		font-size: 1.5rem;
		text-align: right;
}

.wrap{
	display:flex;
	flex-flow: column;
}

.text {
	font-size: 18px;
	margin: 0;
}
.close {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 20px;
}
.overlay .window .wrap ul li:first-child:after {
	content: "Excel";
	width: 34px;
	height: 15px;
	border: 1px solid #0C7238;
	border-radius: 2px;
	font-size: 9px;
	display: inline-block;
	text-align: center;
	color: #0C7238;
	line-height: 1.3;
	padding: 1.4px 0;
	background: #fff;
	font-weight: normal;
	vertical-align: middle;
	margin-left: 10px;
	text-indent: 0;
}

.overlay .window .wrap ul li:after {
	content: "PDF";
	width: 34px;
	height: 15px;
	border: 1px solid #ff2c1e;
	border-radius: 2px;
	font-size: 9px;
	display: inline-block;
	text-align: center;
	color: #ff2c1e;
	line-height: 1.3;
	padding: 1.4px 0;
	background: #fff;
	font-weight: normal;
	vertical-align: middle;
	margin-left: 10px;
	text-indent: 0;
}
