@charset "UTF-8";
#cookieWrap{
	display: none;
	/* display: inline-block; */
	position: fixed;
	z-index: 100;
	width: 100%;
	box-sizing: border-box;
	left: 0px;
	bottom: 0px;
	background: #fff;
	box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 60%);
	padding: 18px 16px;
	line-height: 1.75;
	color: #666;
	font-size: 12px;
	transition: .3s ease .15s;
	opacity: 1;
}
#cookieWrap.is-hidden {
	opacity: 0;
}
#cookieWrap a {
	display: inline-block;
	text-decoration: none;
	border-bottom:1px solid;
}
#cookieWrap a:hover {
	text-decoration: none;
}
.cookie--btn{
	text-align: center;
	padding: 0 0 0 8px ;
}
#cookieWrap .cookie--btn a{
	background: #111;
	color: #fff !important;
	font-weight: bold;
	padding: 4px 12px;
	text-align: center;
	border-radius: 2px;
	border-bottom:none;
}
.cookie--btn a:hover{
	background: #333;
	color: #fff;
}

.cookie--close{
	border: none;
	outline: none;
	position: absolute;
	right: 10px;
	top: -14px;
	font-size: 11px;
	background: #eee;
	color: #999;
	width: 28px;
	height: 28px;
	line-height: 28px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cookie--close:hover{
	color: #333;
}

/* 外部ツールでクッキー管理をしているサイトでは非表示 */
:is(.site_harleydavidson) #cookieWrap{
	display:none !important;
}