/* Cookie同意バナー スタイル */
#cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.8);
	color: #fff;
	padding: 1rem;
	text-align: center;
	display: none;
	z-index: 1000;
	box-sizing:border-box;
}
.cookie-consent-wrap{
	display:flex;
	justify-content: center;
}
.cookie-consent-text{text-align:left;}
.cookie-consent-text a:link,
.cookie-consent-text a:visited,
.cookie-consent-text a:hover,
.cookie-consent-text a:active{color:#ffffff;}
.cookie-consent-button{
	width:240px;
	display:flex;
	justify-content:space-between;
	flex-shrink:0;
	margin-left:1rem;
}
.cookie-consent-button button {
	width:calc(50% - 0.5rem);
	font-weight:bold;
	margin: 0;
	padding: 0.5rem 1rem;
	border: none;
	cursor: pointer;
	box-sizing:border-box;
}
.cookie-consent-button .agree {
	background: #4caf50;
	color: #fff;
}
.cookie-consent-button .decline {
	background: #f44336;
	color: #fff;
}
@media (max-width: 768px) {
	.cookie-consent-wrap{flex-wrap:wrap;}
	.cookie-consent-text{width:100%;margin-bottom:1rem;}
	.cookie-consent-button{width:100%;margin-left:0;}
	.cookie-consent-button button{font-size:1rem;}
}
