@charset "UTF-8";

:root {
	/* font */
	--gothic: "Noto Sans JP", serif;
	--mincho: "Noto Serif JP", serif;
	--garamond: "garamond-premier-pro", serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 252, 249;
	--gry: 47, 47, 47;
	--gld: 153, 133, 66;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--blk));
	line-height: 1.8;
	position: relative;
}

a {
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body,
th,
td {
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: normal;
}

@media screen and (max-width: 768px) {

	body,
	th,
	td {
		font-size: 4.26667vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	display: flex;
	position: relative;
}

/* note */
ul.note li {
	font-size: 14px;
}

ul.note li::before {
	content: "※";
}

ul.note.en li::before {
	content: "*";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a,
.linkBtn span.button {
	background: rgb(var(--gld));
	margin: 0 auto;
	width: 340px;
	height: 60px;
	color: rgb(var(--wht));
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn span.button {
	transition: all 0.5s ease 0s;
}

.linkBtn a:hover,
.linkBtn span.button:hover {
	background: rgba(var(--gld), 0.5);
}

.linkBtn a svg {
	width: 18px;
	height: auto;
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 1366px) {

	.linkBtn a,
	.linkBtn span.button {
		width: 24.89019vw;
		height: 4.39239vw;
		font-size: 1.31772vw;
	}

	.linkBtn a svg {
		width: 1.31772vw;
		right: 1.61054vw;
	}
}

@media screen and (max-width: 768px) {

	.linkBtn a,
	.linkBtn span.button {
		width: 100%;
		height: 15.38462vw;
		font-size: 4.61538vw;
	}

	.linkBtn a svg {
		width: 4.61538vw;
		right: 5.64103vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--gld), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.headerContents {
	position: absolute;
	top: 15.59297vw;
	left: 9.91228vw;
	z-index: 2;
}

.header__title {
	margin-bottom: 2.34261vw;
	line-height: 1.58;
	font-size: 3.66032vw;
	font-weight: 600;
}

.header__title .members {
	line-height: 2.48;
	font-size: 2.12299vw;
	display: block;
}

.header__details--title {
	margin-bottom: 1.46413vw;
	line-height: 1.43;
	font-family: var(--mincho);
	font-size: 2.34261vw;
	font-weight: 600;
}

.header__details--text {
	line-height: 1.88;
	font-size: 1.24451vw;
}

@media screen and (max-width: 768px) {
	.header {
		height: 185.38462vw;
	}

	.headerContents {
		padding: 0 6.15385vw;
		width: 100%;
		top: auto;
		bottom: 0;
		left: 0;
	}

	.header__title {
		margin-bottom: 4.87179vw;
		line-height: 1.65;
		font-size: 8.71795vw;
	}

	.header__title .members {
		line-height: 3;
		font-size: 5.38462vw;
	}

	.header__details--title {
		margin-bottom: 14.35897vw;
		line-height: 1.73;
		font-size: 5.64103vw;
		letter-spacing: -0.005em;
	}

	.header__details--text {
		line-height: 2.25;
		font-size: 4.10256vw;
	}

	.headerSlide {
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--blk));
	padding: 52px 50px;
	color: rgb(var(--wht));
}

.footer__logo {
	margin: 0 auto 50px;
	width: 120px;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 17.69231vw 0;
	}

	.footer__logo {
		margin-bottom: 8.53333vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	margin-bottom: 5px;
	line-height: 2.8;
	color: rgb(var(--wht));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--wht));
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		content: "";
	}

	.footer__hotelNav li {
		margin-bottom: 1rem;
		justify-content: center;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		content: "|";
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

/*
	copy
------------------------------ */
.copy {
	color: rgb(var(--wht));
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.copy {
		font-size: 2.66667vw;
		letter-spacing: -0.005em;
	}
}

/* ----------------------------------------------------
	membersLogo
---------------------------------------------------- */
.membersLogo {
	width: 178px;
	position: absolute;
	top: 3.07018vw;
	left: 3.77193vw;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.membersLogo {
		width: 36.92308vw;
		top: 5.38462vw;
		left: 6.41026vw;
	}
}

/* ----------------------------------------------------
	language
---------------------------------------------------- */
.language {
	background: rgba(var(--wht), 0.4);
	width: 126px;
	font-size: 14px;
	line-height: 1;
	border: solid 1px rgb(var(--wht));
	border-radius: 18px;
	position: fixed;
	top: 33px;
	right: 41px;
	z-index: 3;
	cursor: pointer;
}

.language__title {
	padding-left: 28px;
	height: 37px;
	font-family: var(--cardo);
	font-weight: bold;
	border-radius: 18px 18px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.language__title::before {
	background: url(../img/arrow01.svg) center no-repeat;
	background-size: 100% auto;
	width: 8px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(180deg);
	transition: all 0.5s ease 0s;
	content: "";
}

.language__title.active::before {
	transform: translateY(-50%) rotate(720deg);
}

.language__select {
	text-align: center;
	border-radius: 0 0 18px 18px;
	display: none;
}

.select__list--item {
	padding: 0 15px;
	font-weight: normal;
}

.language__link {
	height: 32px;
	color: rgb(var(--wht));
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

span.language__link {
	cursor: default;
}

.select__list--item:not(:last-of-type) .language__link {
	border-bottom: solid 1px rgb(var(--light-beg));
}

@media screen and (max-width: 1280px) {
	.language {
		top: 3.90625vw;
		right: 3.90625vw;
	}
}

@media screen and (max-width: 768px) {
	.language {
		width: 27.69231vw;
		font-size: 3.58974vw;
		border-radius: 4.10256vw;
		top: 3.58974vw;
		right: 3.58974vw;
	}

	.language__title {
		padding-left: 4.87179vw;
		height: 8.20513vw;
		border-radius: 4.10256vw 4.10256vw 0 0;
	}

	.language__title::before {
		width: 1.53846vw;
		height: 2.5641vw;
		right: 2.5641vw;
	}

	.language__select {
		border-radius: 0 0 4.10256vw 4.10256vw;
	}

	.select__list--item {
		padding: 0 15px;
	}

	.language__link {
		height: 8.20513vw;
	}
}