@charset "utf-8";
/*----- Modal -----*/
.modal {
	height: 100%;
	position: fixed;
	top: 0;
	display: none;
	width: 100%;
	z-index: -1;
}
.modalOverlay {
	background: rgba(0, 0, 0, .9);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}
.modalConts,
.modalOpenState.active {
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 11;
	width: 92%;
}
.modalOpenState.active {
	top: 100%;
	z-index: 99999;
}
.modalClose {
	cursor: pointer;
	height: 4.78%;
	max-height: 32px;
	max-width: 32px;
	position: absolute;
	right: 4%;
	top: 2%;
	width: 8.5%;
	z-index: 999999;
}
.modalClose:before,
.modalClose:after {
	background: #fff;
	content: '';
	height: 2px;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 100%;

}
.modalClose:before {
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
.modalClose:after {
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
}
/*** modal active ***/
body.active {
	overflow: hidden;
	position: fixed;
	top: 0;
}
#wrapper #age_form.active,
#wrapper #enter.active,
#wrapper #enter_none.active {
	position: relative;
	z-index: 999;
}

/*----- Contents -----*/
.modalConts .box .boxInner {
	color: #fff;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 2%;
}
.modalConts .box .message {
	margin-bottom: 2rem;
}
.modalConts .box .message p {
	font-size: 3.75vw;/*14*/
	line-height: 1.5;
	margin-bottom: 1rem;
}
.modalConts .box .message .ttl {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 1.5rem;
	text-align: center;
}
/*----- Notice -----*/
.modalConts .box#gdprNotice .message .ttl {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 1.5rem;
}
.modalConts .box#gdprNotice .message p a {
	border-bottom: solid #fff 1px;
	color: #fff;
}
.modalConts .box#gdprNotice .message p a:hover {
	border-bottom: none;
	opacity: 1;
}
.modalConts .box#gdprNotice nav ul {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
}
.modalConts .box#gdprNotice nav ul li {
	text-align: center;
	width: 48%;
}
.modalConts .box#gdprNotice nav ul li a {
	border: solid #fff 1px;
	border-radius: .5em;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: block;
	line-height: 1.5;
	padding: 6% 4%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
.modalConts .box#gdprNotice nav ul li a:active {
	background: #fff;
	color: #000;
	opacity: 1;
	text-decoration: none;
}

/*----- Refuse -----*/
.modalConts .box#gdprRefuse {
	display: none;
}
.modalConts .box#gdprRefuse .ttl {
	color: #f00;
}

/*** active ***/
.modal.active {
	display: block;
	z-index: 9999;
}
/*** SP（横） ***/
@media only screen and (orientation: landscape) and (max-width: 767px) {
	.modal {
		overflow-y: scroll;
	}
	.modalOverlay {
		overflow-y: scroll;
		position: fixed;
	}
	.modalConts,
	.modalOpenState.active {
		left: 50%;
		position: absolute;
		top: 0;
		-webkit-transform: translate(-50%,0);
		-ms-transform: translate(-50%,0);
		transform: translate(-50%,0);
	}
	.modalConts .box .boxInner {
		padding: 4% 2%;
	}
	.modalClose {
		top: 4%;
	}
}
/*** SP（横）/TB ***/
@media only screen and (min-width: 599px) and (max-width: 1023px) {
	.modalConts .box .message p {
		font-size: 2.5vw;
	}
}
/*** PC ***/
@media only screen and (min-width: 1023px) {
	.modalClose {
		height: 32px;
		right: 32px;
		top: 32px;
		width: 32px;
	}
	.modalConts,
	.modalOpenState.active {
		margin: auto;
		max-width: 850px;
	}
	.modalConts .box .boxInner {
		overflow-y: auto;
	}
	.modalConts .box .message {
		text-align: center;
	}
	.modalConts .box .message p {
		font-size: 87.5%;
	}
	.modalConts .box#gdprNotice nav ul {
		margin: auto;
		width: 56.5%;
	}
	.modalConts .box#gdprNotice nav ul li a:hover {
		background: #fff;
		color: #000;
		opacity: 1;
		text-decoration: none;
	}
}