<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* クッキーの同意確認 */
@keyframes ga-cookie-accept-bar-slide-in {
	from {
		transform:translateY(10rem)
	}
	to {
		transform:translateY(0)
	}
}
@keyframes ga-cookie-accept-bar-slide-out {
	from {
		transform:translateY(0)
	}
	to {
		transform:translateY(100%)
	}
}
.module-ga-cookie-accept-bar {
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	margin:0;
	padding: 0 20px;
	background-color: rgba(238, 238, 238, 0.95);
	overflow:hidden;
	z-index:10000;
	animation-duration:.6s;
	animation-name:ga-cookie-accept-bar-slide-in;
}
#name-ga-cookie-accept-bar.is-close {
	animation-name: ga-cookie-accept-bar-slide-out;
	animation-fill-mode: forwards;
}
.module-ga-cookie-accept-bar.state-remove {
	display:none
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-bar-inner {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 2.8rem 0;
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-bar-header {
	position:absolute;
	width:1px;
	height:1px;
	padding:0;
	margin:-1px;
	overflow:hidden;
	clip:rect(0,0,0,0);
	white-space:nowrap;
	border-width:0
}
.module-ga-cookie-accept-bar p {
	margin:0;
	padding:0;
	line-height: 1.3;
}
.module-ga-cookie-accept-bar p a {
	text-decoration: underline;
	color: #0071a1;
}

.module-ga-cookie-accept-bar p a::after {
	content: "＞";
	display: inline-block;
}
.module-ga-cookie-accept-bar a {
	color:inherit;
	text-decoration:underline
}
.module-ga-cookie-accept-bar svg {
	vertical-align:middle;
	margin-right:.2rem
}
.module-ga-cookie-accept-bar .module-ga-cookie-btn {
	margin-top:1rem;
	display:flex;
	flex-flow: column wrap;
	align-items:center
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn {
	appearance:none;
	transition:.3s ease-out;
	flex-shrink: 0;
	width: 7em;
	margin-left: 2em;
	padding: 1.0rem 0;
	white-space: nowrap;
	background-color: #8D8D8E;
	color: #FFFFFF;
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn:hover {
	background-color:#666666;
	cursor:pointer
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn:focus {
	outline:2px solid #fff
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
	margin-top: 1rem;
	padding: 1.0rem 0;
	background-color: #ffffff;
	color: #666666;
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn.module-ga-cookie-deny-btn:hover {
	background-color:#d9d9d9;
	cursor:pointer
}
.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn.module-ga-cookie-deny-btn:focus {
	outline:2px solid #b91c1c
}
.module-ga-cookie-accept-bar .cookie-close {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 26px;
	padding-bottom: 4px;
	background-color: #E1E1E2;
	font-size: 2.6rem;
	color: #8D8D8E;
	z-index: 5;
}
@media (max-width:767px) {
	.module-ga-cookie-accept-bar .module-ga-cookie-accept-bar-inner {
		flex-flow: column wrap;
	}
	.module-ga-cookie-accept-bar p {
		overflow-y: scroll;
		height: 5em;
	}
	.module-ga-cookie-accept-bar .module-ga-cookie-btn {
		flex-direction: row;
	}
	.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn {
		margin-left: 0;
	}
	.module-ga-cookie-accept-bar .module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
		margin-top: 0;
		margin-left: 2em;
	}
	.module-ga-cookie-accept-bar .cookie-close {
		margin-right: -20px;
	}
}
</pre></body></html>