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: #000;
}

.layer_board {
	display: none;
	position: fixed;
	width: 60%;/*68%*/
	text-align: center;
	z-index: 2000;
	left:50%;
	top:16%;
	transform: translate(-50%, 0%);
/*    background: url(../img/common/wall.jpg) no-repeat top;*/
    background-size: cover;
/*    padding: 40px;*/
}

.layer_board div {
    display: flex;
}

.layer_board div .pg_btn {
    width: 48%;
    margin: 20px;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
	line-height: 3.4;
    background: #418CB6;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.layer_board div .pg_btn a {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.layer_board div .pg_btn a:hover {
    color: #dbb019!important;
}
    
@media(max-width:768px){
	.layer_board {
			width: 95%;
			margin: 20px auto;
		}

.layer_board div {
    display: block!important;
}

.layer_board div .pg_btn {
    display: block!important;
    width: 85%!important;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    background: #418CB6;
    font-weight: bold;
    font-size: 18px;
	line-height: 2.4;
}
}
