@charset "UTF-8";

:root {
	--basic: #343432;
	--gold: #A08D71;
}
.cookies-wrap {
	font-family: "Roboto", serif;
	font-style: normal;
	color: var(--basic);
	line-height: 1.6;
}
.cookies-wrap-jp {
	font-family: "Noto Sans JP", serif;
}

/* ------------------------------ */
/* .cookies-wrap */
/* ------------------------------ */

@media (min-width: 768px) {
	.cookies-wrap .d-md-inline {
		display: inline;
	}
	.cookies-wrap .d-md-none {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.cookies-wrap .d-none {
		display: none !important;
	}
}

.cookies-wrap {
	position: fixed;
	right: 20px;
	bottom: 4.5vw;
	align-items: center;
	width: 510px;
	min-height: 75px;
	background-color: #ffffff;
	border: 1px solid #D9DADA;
	font-size: 12px;
	padding: 10px 33px 10px 20px;
	z-index: 200;
	display: none;
}
.cookies-wrap.visible {
	display: flex;
}
.cookies-wrap dl {
	width: 100%;
}
.cookies-wrap dl dt {
	flex: 1;
	letter-spacing: 0.03em;
	padding-right: 10px;
}
.cookies-wrap dl dt a {
	display: inline-block;
	font-weight: 500;
	text-decoration: underline;
	margin-left: 10px;
}
.cookies-wrap dl dd .row-btn {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4px;
}
.cookies-wrap dl dd .col-btn {
	width: 100%;
	padding: 0 4px;
}
.cookies-wrap dl dd .col-btn > * {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 35px;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	transition: 0.3s;
	color: #ffffff;
}
.cookies-wrap dl dd .accept {
	background-color: var(--basic);
	color: #ffffff;
}
.cookies-wrap dl dd .policy {
	border: 1px solid var(--basic);
	color: var(--basic);
}
@media (min-width: 768px) {
	.cookies-wrap dl {
		display: flex;
		align-items: center;
	}
	.cookies-wrap dl dt a:hover {
		text-decoration: none;
	}
	.cookies-wrap dl dd {
		width: 125px;
	}
	.cookies-wrap dl dd .accept:hover {
		opacity: 0.85;
	}
}
@media (max-width: 767px) {
	.cookies-wrap {
		right: auto;
		bottom: 3vw;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 40px);
		max-width: 575px;
		min-width: 320px;
		font-size: 11px;
		padding: 10px 15px 15px 15px;
	}
	.cookies-wrap dl dd {
		margin-top: 7px;
	}
	.cookies-wrap dl dd .col-btn {
		width: 50%;
	}
	.cookies-wrap dl dd .col-btn > * {
		height: 32px;
		font-size: 12px;
	}
}

/* .close */
.cookies-wrap .close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 14px;
	height: 14px;
	cursor: pointer;
}
.cookies-wrap .close-btn::before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	content: "";
	width: 1px;
	height: 14px;
	background-color: var(--basic);
}
.cookies-wrap .close-btn::after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	content: "";
	width: 1px;
	height: 14px;
	background-color: var(--basic);
}

/* ------------------------------ */
/* .page-st__center__page-top */
/* ------------------------------ */

.page-st__center__page-top {
	transition: 0.3s;
}
@media (max-width: 1599px) {
	.page-st__center__page-top.nocookie {
		bottom: calc(5.5vw + 75px);
	}
}
@media (max-width: 767px) {
	.page-st__center__page-top.nocookie {
		bottom: calc(5.25vw + 100px);
	}
}