/** Cookie同意 */
.cookie-consent {
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 12px;
	color: #fff;
	background: rgba(0,0,0,.7);
	padding: 1.2em;
	box-sizing: border-box;
	z-index: 100;
	visibility: hidden;
}
.cookie-consent .cc-text{
	margin-bottom: 10px;
}
.cookie-consent.is-show {
	visibility: visible;
}
.cookie-consent a {
	color: #fff !important;
}
.cc-btn-accept {
	color: #fff;
	background: coral;
	padding: .5em 1.5em;
	margin-left: 3em;
}
.cc-btn-reject {
	color: #fff;
	background: transparent;
	padding: .5em 1.5em;
}
.cookie-agree:hover {
	cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
	display: none;
}
/* ゆっくり消える */
.cc-hide2 {
	animation: hide 1s linear 0s;
	animation-fill-mode: forwards;
}