@charset "utf-8";
@import url(./notosansjp.css);
/* @import url(../other/fonts.googleapis.com_30773b); */
 
input#modal {
	display: none;
}
input#modal + label {
	width: 100%;
	height: 120%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2147483646;
	background: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}
input#modal + label div {
	position: fixed;
	width: 1000px; /*画像の横幅*/
	top: 50%;
	left: 50%;
	margin: -300px 0 0 -500px; /*画像の高さと幅の半分 marginをマイナス */
	background: none;
background-color: #FFFFFF;
	border: none;
}
input#modal + label div::before {
    content: "× Close";
    position: absolute;
    bottom: -20%;
    right: 0;
    left: 0;
	background-color: #CCCCCC;
    margin: 30px auto;
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    /* padding: 10px 0 0 0;*/
}
input#modal:checked + label {
	display: none;
}