@charset "utf-8";

#gdprWrapper {
	align-items: center;
	background: #003A47;
	color: #fff;
	display: flex;
	font-size: 13px;
	justify-content: center;
	left: 0;
	line-height: 1.6;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

#gdprBox {
	max-width: 1000px;
	padding-bottom: 30px;
}

.gdprDescription {
	font-size: 1.7rem;
}

.gdprLink {
	color: #fff;
	text-decoration: underline;
}

.gdprButtonArea {
	display: flex;
	justify-content: center;
	font-size: 0.8rem;
}

.gdprButton {
	display: inline-block;
	position: relative;
	overflow: hidden;
	margin: 0 20px;
	transition: opacity .2s;
}

.gdprButton::before {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	box-sizing: border-box;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 84px;
	margin: auto;
}

#gdprYes,
#gdprNo {
	-webkit-appearance: none;
	width: 260px;
	padding: 7px 0 9px 100px;
	border: none;
	border-radius: 0;
	background-color: #fff;
	color: #000;
	font-size: 1.6rem;
	font-family: "Noto Sans JP","ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	text-align: left;
	cursor: pointer;
}

/* hover */
@media print, screen and (min-width: 40.0625em) {
	.gdprButton:hover {
		opacity: .7;
	}
}

@media screen and (max-width: 40em) {
	
	#gdprBox {
		width: 100%;
		padding: 0 18px 20px;
		box-sizing: border-box;
	}
	.gdprDescription {
		font-size: 1.4rem;
		line-height: 1.35714;
	}
	
	.gdprButton {
		margin: 0;
		width: 50%;
	}
	
	.gdprButton + .gdprButton {
		margin-left: 20px;
	}
	
	.gdprButton::before {
		left: 20px;
	}
	
	#gdprYes,
	#gdprNo {
		width: 100%;
		padding: 8px 0 10px 10%;
		font-size: 1.5rem;
		text-align: center;
	}
}
