@charset "UTF-8";

:root {
	--basic: #343432;
	--gold: #A08D71;
}
body {
	font-family: "Roboto", serif;
	font-style: normal;
	color: var(--basic);
}
.min {
	font-family: "EB Garamond", serif;
	font-style: normal;
	letter-spacing: 0.1em;
}
a,
a:hover {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
	font-weight: 400;
}
dl, dt, dd {
	font-weight: 400;
	margin: 0;
}
.relative {
	position: relative;
}
.container {
	max-width: 1300px;
	padding-left: 50px;
	padding-right: 50px;
}
.row-0 {
	margin: 0;
}
.row-0 > * {
	padding: 0;
}
@media (min-width: 768px) {
}
@media (max-width: 767px) {
	.site {
		min-width: 320px;
	}
	.container {
		max-width: 575px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.container-fluid {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ------------------------------ */
/* img */
/* ------------------------------ */

@media (min-width: 768px) {
	.bnr-wrap a:hover {
		opacity: 0.85;
	}
}

/* ------------------------------ */
/* .btn */
/* ------------------------------ */

.btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	min-height: 55px;
	border-radius: 3px;
	font-family: "EB Garamond", serif;
	font-style: normal;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.4;
	padding: 10px 20px;
}
.btn-gold {
	background-color: var(--gold);
	border: 1px solid var(--gold);
	color: #ffffff;
}
.btn-white {
	border: 1px solid #ffffff;
	color: #ffffff;
}
.btn-black {
	border: 1px solid var(--basic);
	color: var(--basic);
}
.btn-blank span {
	display: inline-block;
	background-image: url("../img/common/icon-blank.svg");
	background-repeat: no-repeat;
	background-position: right center;
	padding: 0 22px 1px 0;
}
@media (min-width: 768px) {
	.btn-gold:hover {
		background-color: #ffffff;
		color: var(--gold);
	}
	.btn-white:hover {
		background-color: #ffffff;
		color: var(--basic);
	}
	.btn-black:hover {
		background-color: var(--basic);
		color: #ffffff;
	}
	.btn-blank:hover span {
		background-image: url("../img/common/icon-blank-gold.svg");
	}
}
@media (max-width: 767px) {
	.btn {
		min-height: 45px;
		font-size: 16px;
	}
	.btn-gold:hover {
		color: #ffffff;
	}
	.btn-white:hover {
		color: #ffffff;
	}
	.btn-black:hover {
		color: var(--basic);
	}
}

/*----------------------------------------*/
/* .footer */
/*----------------------------------------*/

.footer {
	position: relative;
	background-color: var(--basic);
	color: #D9DADA;
	font-size: 14px;
	padding-bottom: 110px;
}
.footer .container {
	max-width: 100%;
}
.footer .inner {
	position: relative;
	padding: 30px 0;
}
.footer .nav {
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.footer .nav::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #D9DADA;
	opacity: 0.25;
}
.footer .nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.footer .nav ul li {
	margin-bottom: 10px;
}
.footer .nav ul li a {
	color: #D9DADA;
}
.footer .copyright {
	font-size: 12px;
	letter-spacing: 0;
}
.footer .bnr-wrap ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: fit-content;
}
@media (min-width: 1200px) {
	.footer .inner {
		max-width: 1270px;
	}
	.footer .bnr-wrap {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.footer .nav::after {
		max-width: 610px;
	}
}
@media (min-width: 768px) {
	.footer .nav::after {
		width: 100%;
	}
	.footer .nav ul li {
		display: inline-block;
		margin-right: 25px;
	}
}
@media (min-width: 576px) {
	.footer .bnr-wrap ul {
		display: flex;
		align-items: center;
		margin: 0 -5px;
	}
	.footer .bnr-wrap ul li {
		width: 50%;
		padding: 0 5px;
	}
}
@media (max-width: 1199px) {
	.footer .copyright {
		margin-bottom: 30px;
	}
}
@media (max-width: 991px) {
	.footer {
		padding-bottom: 65px;
	}
	.footer .container {
		padding: 0 40px;
	}
	.footer .inner {
		padding: 25px 0;
	}
	.footer .copyright {
		font-size: 11px;
		margin-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.footer .bnr-wrap ul li + li {
		margin-top: 10px;
	}
}

/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	padding: 0;
	position: fixed;
	right: 50px;
	bottom: 125px;
	transition: 0.5s;
	transform: translateY(20px);
	width: 48px;
	background-color: rgba(25,22,22,0.85);
	backdrop-filter: blur(15px); /* 背面のぼかし効果 */
	-webkit-backdrop-filter: blur(15px); /* Safari対応 */
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	opacity: 1;
}
.to-top a {
	display: block;
}
@media (max-width: 1199px) {
	.to-top {
		bottom: 80px;
		width: 40px;
	}
}
@media (max-width: 767px) {
	.to-top {
		right: 20px;
		bottom: 75px;
	}
}

/*----------------------------------------*/
/* .mv */
/*----------------------------------------*/

.mv {
	position: relative;
}

/* .mv-grad */
.mv-grad {
	position: relative;
}
.mv-grad::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 15%) 20%, rgb(0 0 0 / 15%) 60%, rgb(0 0 0 / 45%) 80%, rgb(0 0 0 / 65%) 100%);
}

/* .mv-title */
.mv .mv-txt {
	position: absolute;
	left:0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: #ffffff;
}
.mv .mv-txt .mv-title {
	margin: 0 0 80px 0;
}
.mv .mv-txt .btn {
	max-width: 350px;
	margin: 0 auto;
}
@media (max-width: 1199px) {
	.mv .mv-txt .mv-title img {
		max-width: 90%;
	}
}
@media (max-width: 767px) {
	.mv .mv-txt .container {
		max-width: 100%;
	}
	.mv .mv-txt .mv-title {
		margin-bottom: 35px;
	}
	.mv .mv-txt .btn {
		font-size: 14px;
		max-width: 250px;
	}
}
@media (max-width: 575px) {
	.mv .mv-txt .mv-title img {
		max-width: 100%;
	}
}

/*----------------------------------------*/
/* .mv.moment */
/*----------------------------------------*/
 
.mv.moment .mv-img {
	height: 830px;
	overflow: hidden;
}
.mv.moment .mv-img img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
@media (min-width: 768px) {
	.mv.moment .mv-txt {
		padding-top: 80px;
	}
}
@media (max-width: 767px) {
	.mv.moment .mv-img {
		height: 480px;
	}
}
@media (max-width: 575px) {
	.mv.moment .mv-img {
		height: 340px;
	}
	.mv .mv-txt .mv-title img {
		width: 100%;
		max-width: 390px;
	}
}

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

.cookies-wrap {
	position: fixed;
	right: 50px;
	bottom: 137px;
	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: 1199px) {
	.cookies-wrap {
		bottom: 80px;
	}
}
@media (max-width: 767px) {
	.cookies-wrap {
		right: auto;
		bottom: 75px;
		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);
}

/*----------------------------------------*/
/* 位置変更 */
/*----------------------------------------*/

.to-top.nocookie {
	bottom: 225px;
}
@media (max-width: 1199px) {
	.to-top.nocookie {
		bottom: 170px;
	}
}
@media (max-width: 767px) {
	.to-top.nocookie {
		bottom: 185px;
	}
}

/*----------------------------------------*/
/* スクロールエフェクト */
/*----------------------------------------*/

/* sa-fadeup */
.sa-fadeup {
  opacity: 0; /* 初期表示は非表示 */
  transform: translateY(50px); /* 下に配置し、縮小状態にする */
  transition: transform 1s ease-out, opacity 1s ease-out; /* アニメーションを設定 */
}

.sa-fadeup.active {
  opacity: 1; /* 表示する */
  transform: translateY(0); /* 元の位置・サイズに戻す */
}