@charset "utf-8";
/* CSS Document */
html,body {
	height: 100%;
}


* html .layer_board_bg,
* html .layer_board {
	position: absolute;
}

.layer_board_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	
	z-index: 1000;
	
	top: 0;
	left: 0;
	
	display: none;
	cursor: pointer;
	background: hsla(0,0%,0%,1.00);
}

.layer_board {
	display: none;
    position: fixed;
    color: #000;
    background-color: white;
    border-radius: 10px;
    max-width: 800px;
	z-index: 2000;
    padding: 2em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.layer_board p{
    font-size: 1rem;
    line-height: 1.8
}
