@charset "utf-8";
.cookieUseWrap {
	display: none;
}
.cookieUse {
	display: flex;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	background: rgba(150, 150, 150, 0.9);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.cookieUse a {
	color: #fff;
}
.cookieUse a.outlink span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
}
.cookieUse a.outlink span::before,
.cookieUse a.outlink span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 6px;
}
.cookieUse a.outlink span::before {
  right: 3px;
  background: #ffffff;
  transform: translateY(-50%);
}
.cookieUse a.outlink span::after {
  right: 5px;
  border: #ffffff solid 1px;
  border-width: 0 0 1px 1px;
  transform: translateY(-15%);
}
.cookieUse.is-fadeIn {
	visibility: visible;
	animation: fadein 0.6s ease-out 0s 1;
}
.cookieUse.is-fadeOut {
	visibility: hidden;
	animation: fadeout 0.4s ease-out 0s 1;
}
.cookieUse_inner {
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 20px 30px;
	box-sizing: content-box;
	font-size: 13px;
	letter-spacing: normal;
	text-align: left;
	line-height: 1.7;
}
.cookieUse_inner p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
}
.cookieUse_txtLink {
	display: inline-block;
	text-decoration: underline;
}
.cookieUse_itemBtns {
	display: flex;
	margin: 0 -8px 0 33px;
}
.cookieUse_itemBtns > * {
	width: 180px;
	margin: 0 6px;
	list-style-type: none;
}
.cookieUse_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 1.0);
	box-sizing: border-box;
	font-size: 13px;
	line-height: 2.6;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
	transition: all .3s ease;
}
a.cookieUse_btn {
	text-decoration: none;
	color: #333;
}
@media screen and (min-width: 769px) {
	.cookieUse_txtLink:hover {
		text-decoration: none;
	}
	.cookieUse_btn:hover {
		background: rgba(255, 255, 255, 0.5);
		border-color: rgba(255, 255, 255, 0.1);
	}
}
@media screen and (max-width: 768px) {
	.cookieUse_inner {
		padding: 20px 24px;
	}
	.cookieUse_itemBtns {
		margin: 0 -8px 0 10px;
	}
	.cookieUse_itemBtns > * {
		width: 100px;
	}
	.cookieUse_txtLink {
		margin-left: 0;
	}
}
@keyframes fadeout {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}