@charset "utf-8";
/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
#layer_board_area {
	display: none;
	position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 3vw;
    overflow-y: auto;
    box-sizing: border-box; /*スクロールバーを非表示*/
    -ms-overflow-style: none; /*スクロールバーを非表示*/
    scrollbar-width: none; /*スクロールバーを非表示*/
    z-index: 150;
}
#layer_board_area::-webkit-scrollbar {
	display:none; /*スクロールバーを非表示*/
}
.layer_board_bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	cursor: pointer;
	background: #000;
	z-index: 0;
}
/* --modalWindow ポップアップ部分-- */
.layer_board {
	display: none;
	position: relative;
	width: 80%;
	max-width: 730px;
	margin: 3em auto;
	padding: 1.5em 3em;
	border-radius: 30px;
	box-sizing: border-box;
	background: #f9e937;
	z-index: 10;
}
.layer_board.shortLayer {
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* --modalWindow バツ(閉じる)ボタン-- */
.layer_board .mdl_btn_close.circle_btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-image: url("close.png");
	background-size: cover;
	transition: .15s;
	cursor: pointer;
}
.layer_board .mdl_btn_close.circle_btn:hover {
	transform: rotate(90deg);
}

/* --↑必須なのはここまで↑-- */

/* --modalWindow タイトル部分-- */
.layer_borad_title {
	font-size: 200%;
	font-weight: 200;
	color: #ED344E;
}
/* --modalWindow コンテンツ部分-- */
.layer_borad_content {
	margin: 1em auto 1.5em;
	text-align: center;
}

.layer_borad_content .image{
	margin: 0 0 35px 0;
}
.layer_borad_content .text{
	line-height: 1.333;
	margin: 0 0 25px 0;
}
.layer_borad_content .text>strong{
	color: var(--main-color);
	font-size: 3rem;
	display: inline-block;
	margin: 0 0 15px 0;
}
.layer_borad_content .button .btn{
	background: var(--main-color);
	border-radius: 30px;
	display: block;
	max-width: 400px;
	padding: 15px;
	text-align: center;
	color: var(--base-color);
	margin: 0 auto;
	text-decoration: none;
	border: 1px solid transparent;
}
.layer_borad_content .button .btn:hover{
	border: 1px solid var(--main-color);
	background: transparent;
	color: var(--main-color);

}

@media screen and (max-width:480px) {
	.layer_board {
		width: 90%;
		margin: 3em auto;
		padding: 1.5em;
	border-radius: 20px;
	}
	.layer_board .mdl_btn_close.circle_btn {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
	.layer_borad_content .text>strong{
		font-size: 1.8rem;
	}
}

