#cookie-consent{
	display: none;
	position: fixed;
	right: 24px;
	bottom: 24px;
	left: 24px;
	font-size: 15px;
	z-index: 999;
}
#cookie-consent .inner{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 960px;
	margin-right: auto;
	margin-left: auto;
	padding: 16px 28px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 8px -4px #6e6e6e;
	pointer-events: auto;
}
#cookie-consent .inner .text{
	flex: 1;
}
#cookie-consent .inner .text a{
	color: #2683C6;
	padding-bottom: 1px;
	background:linear-gradient(#4EA0DB,#4EA0DB) 0 100%/100% 1px no-repeat;
	background-position:100% 100%;
	transition:background .4s cubic-bezier(.4,.1,.3,1);
}
#cookie-consent .inner .text a:hover{
	background-size:0 1px;
}
#cookie-consent .inner .button{
	display: flex;
	gap: 10px;
}
#cookie-consent .inner .button button{
	display: block;
	min-width: 150px;
	padding: 12px;
	background-color: #2683C6;
	border: none;
	text-align: center;
	font-size: 14px;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	letter-spacing: .1em;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}
#cookie-consent .inner .button button:hover{
	opacity: 0.8;
}
#cookie-consent .inner .button button.decline{
	background-color: #fff;
	text-decoration: underline;
	font-weight: bold;
	color: #2683C6;
}

@media screen and (max-width: 875px){
	
	#cookie-consent .inner .text br{
		display: none;
	}
	
}

@media screen and (max-width: 767px){
	
	#cookie-consent{
		right: 18px;
		bottom: 18px;
		left: 18px;
		font-size: 14px;
	}
	#cookie-consent .inner{
		flex-direction: column;
		gap: 15px;
		padding: 15px 20px;
	}
	#cookie-consent .inner .button button{
		min-width: 100px;
		padding: 10px;
	}
	
}

@media screen and (max-width: 479px){
	
	#cookie-consent .inner .button{
		flex-direction: column;
		width: 100%;
	}
	
}