@charset "utf-8";
/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box; /*スクロールバーを非表示*/
	-ms-overflow-style: none; /*スクロールバーを非表示*/
	scrollbar-width: none; /*スクロールバーを非表示*/
	z-index: 19;
}
div.modal {
	position: fixed;
	display:none;
	z-index:9999;
}
.pr_box {
	position: relative;
	width:70%;
	margin: 6em auto;
	padding: 3em;
	background:#E2E2E2;
	z-index: 20;
}
.disclaimer_inner	{
	margin: 2rem auto 3em auto;
	text-align : center;
	font-size: 1.2rem;
	font-weight : 500;
	line-height : 200%;
}
.disclaimer_inner .ask	{
	color : #000;
	font-weight : 900;
	margin-bottom : 1rem;
}
.disclaimer_inner .tx	{
	color : #E00012;
}
.disclaimer_inner .box_yn	{
	display : flex;
	width : 80%;
	margin : 3rem auto 0 auto;
}
.close_modal,
.close_modal_no	{
	display: block;
	position: relative;
	margin: 0 auto;
	width : 160px;
	padding: 0.8rem 1rem;
	font-size: 1.4rem;
	font-weight : 900;
	text-align: center;
	text-decoration: none;
	transition: .15s;
	color: #fff;
	border-radius : 1rem;
}
.close_modal	{border: 2px solid #E00012;background : #E00012;}
.close_modal_no	{border: 2px solid #585858;background : #585858;}

.close_modal:hover	{
	color: #E00012;
	border: 2px solid #E00012;
	background: #fff;
}
.close_modal_no:hover {
	color: #585858;
	border: 2px solid #585858;
	background: #fff;
}

@media screen and (max-width:768px) {
	.pr_box {
		width:80%;
		margin: 4em auto;
		padding: 2em;
	}
	.disclaimer_inner {
		font-size: 1rem;
		line-height : 180%;
	}
	.close_modal,
	.close_modal_no {
		width : 110px;
	}
}
@media screen and (max-width: 480px)	{
	.pr_box {
		width:84%;
		margin: 2em auto;
		padding: 1em ;
	}
	.disclaimer_inner .box_yn	{
		width : 94%;
		margin : 2rem auto 0 auto;
	}
	.close_modal,
	.close_modal_no {
		width : 90px;
	}
}