@charset "UTF-8";

#cookieAreaBase {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	display: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 5;
}

#cookieArea {
	position: absolute;
	width: 100%;
/*	left: 50%;
	transform: translateX(-50%);*/
	background-color: #FFFFFF;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
	display: none;
}

#cookieArea p {
	margin: 20px 0;
	padding: 0 20px;
	color: #000;
}

.cookieStatement p {
	font-size: 16px;
}

@media (min-width: 480px) {
	#cookieArea p {
		margin: 20px 0;
		padding: 0 80px;
	}
}

.cookieStatement p a {
	color: #7138fa;
	font-weight: 900;
	opacity: 0.8;
	cursor: pointer;
	text-decoration: none;
}
.cookieStatement p a:hover {
	opacity: 1;
	background-color: #EEEEEE;
	border-radius: 4px;
}
.cookieStatement p span {
	display: inline-block;
	font-size: 100%;
}
.cookieStatementBtn {
	display: flex;
	justify-content: center;
	margin: 20px 0;
}
.cookieStatementBtn a {
	min-width: 16ex;
	margin: 0 10px;
	padding: 6px 12px;
	text-align: center;
	text-decoration: none;
	border-radius: 35px;
	border: solid 1px #CCCCCC;
	background-color: #775aff;
	color: #ffffff;
/*	font-size: 14px; */
	font-weight: bold;
	line-height: 1.4;
	opacity: 0.8;
	cursor: pointer;
}
.cookieStatementBtn a:hover {
	opacity: 1;
	background-color: #EEEEEE;
}

@media screen and (max-width: 619px){
	.cookieStatementBtn a {
		display: inline-block;
		width: auto;
		min-width: calc(50vw - 34px);
		padding: 10px 4px 10px 4px;
		margin: 8px 4px 0 4px;
	}
}
