.cookie-consent {
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 1.5% 10%;
	font-size: .9rem;
	line-height: 1.7;
	color: #fff;
	background: rgba(0,0,0,.7);
	box-sizing: border-box;
	visibility: hidden;
	z-index: 99;
}
.cookie-consent.is-show {
	visibility: visible;
}
.cookie-text {
	width: 70%;
	text-align: left;
}
.cookie-text a {
	color: #fff;
	text-decoration:underline;
}
.cookie-agree {
	width: 15%;
	margin-left: 4%;
	padding: .5rem;
	font-size: 1rem;
	border: 1px solid #fff;
}
.cookie-reject {
	position: absolute;
	right: 0;
	width: 10%;
	font-size: 1.8rem;
}
.cookie-agree:hover, .cookie-reject:hover {
	cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
	display: none;
}
/* ゆっくり消える */
.cc-hide2 {
	animation: hide 1s linear 0s;
	animation-fill-mode: forwards;
}
@keyframes hide {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		visibility: hidden;
	}
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
	.cookie-consent {
		flex-direction: column;
		font-size: .8rem;
		padding: 3.5rem 2rem 2rem;
	}
	.cookie-text {
		width: 100%;
		margin-bottom: 1rem;
	}
	.cookie-agree {
		width: 40%;
		margin-left: 0;
		font-size: .9rem;
	}
	.cookie-reject {
		top: 0.5rem;
		right: 1.5rem;
	}
}