/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.header__content {
	width: 100%;
	color: rgb(var(--wht));
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.header__content--title {
	margin-bottom: 2.344vw;
	line-height: 1.3;
	font-size: 3.594vw;
}

.header__content--lead {
	font-size: 2.188vw;
}

.header__logo {
	width: 20rem;
	position: absolute;
	top: 2rem;
	left: 2rem;
	z-index: 2;
}

.header__bg {
	position: relative;
	z-index: 1;
}

.image-effect__media--zoom {
	overflow: hidden;
}

.image-effect__image--zoom {
	transform: scale(1.5);
	transition: transform 4s ease;
}

.image-effect.is-visible .image-effect__image--zoom {
	transform: scale(1);
}

.area-link {
	background-color: rgba(144, 102, 102, 1);
	width: 32.3rem;
	height: 5.1rem;
	color: rgb(var(--wht));
	font-size: 1.5rem;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 5;
}

.area-link--inner {
	padding-right: 2.4rem;
	display: inline-block;
	position: relative;
}

.area-link--inner::before {
	width: 0.8rem;
	height: 0.8rem;
	border-right: solid 1px rgb(var(--wht));
	border-bottom: solid 1px rgb(var(--wht));
	position: absolute;
	top: 0.7rem;
	right: 0;
	transform: rotate(45deg);
	content: "";
}

@media screen and (max-width: 768px) {
	.header__content {
		transform: translate(-50%, -25%);
	}

	.header__content--title {
		margin-bottom: 2rem;
		line-height: 1;
		font-size: 2rem;
	}

	.header__content--lead {
		font-size: 1.4rem;
	}

	.header__logo {
		width: 10rem;
		top: 7rem;
		left: 1rem;
	}

	.area-link {
		width: 100%;
		height: 5.9rem;
		font-size: 1.6rem;
	}

	.area-link--inner::before {
		top: 0.8rem;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	padding: 8rem 0;
}

.about__lead {
	margin-bottom: 5rem;
	line-height: 2.2;
	font-size: 1.7rem;
	text-align: center;
}

.about .img-marquee {
	overflow: hidden;
	--kv_scroll-item-width: 30rem;
	--kv_scroll-gap: 1.2rem;
	--kv_scroll-set-size: 9;
	--kv_scroll-speed: 50s;
}

.about .img-marquee__track {
	margin: 0;
	padding: 0;
	width: max-content;
	display: flex;
	gap: var(--kv_scroll-gap);
	animation: kvScroll var(--kv_scroll-speed) linear infinite;
}

.about .img-marquee__track--reverse {
	animation-name: kvScrollReverse;
}

.about .img-marquee__item {
	width: var(--kv_scroll-item-width);
	flex: 0 0 auto;
}

.about .img-marquee__item img {
	width: 100%;
	display: block;
}

@keyframes kvScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc((var(--kv_scroll-item-width) + var(--kv_scroll-gap)) * var(--kv_scroll-set-size) * -1));
	}
}

@media screen and (max-width: 768px) {
	.about {
		padding: 6.5rem 0;
	}

	.about__lead {
		margin-bottom: 4rem;
		line-height: 2;
		font-size: 1.3rem;
	}

	.about .img-marquee {
		--kv_scroll-item-width: 24.6rem;
		--kv_scroll-gap: 1rem;
	}
}

/* ----------------------------------------------------
	experience
---------------------------------------------------- */
.experience {
	background-color: rgb(var(--wht));
	padding: 10rem 0;
}

.experience__title {
	margin-bottom: 14.2rem;
	text-align: center;
}

.experience__title--inner {
	padding: 0 1rem 1rem;
	line-height: normal;
	font-size: 2.8rem;
	font-weight: 500;
	border-bottom: solid 2px rgba(153, 133, 66, 1);
	display: inline-block;
}

.experience .note {
	font-family: var(--gothic);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.experience {
		padding: 5rem 0;
	}

	.experience__title {
		margin-bottom: 8.5rem;
	}

	.experience__title--inner {
		font-size: 2rem;
	}
}

/*
	scene
------------------------------ */
.scene {
	margin-bottom: 16.2rem;
	display: flex;
	justify-content: flex-end;
}

.scene:last-of-type {
	margin-bottom: 11rem;
}

.scene__content {
	width: 40rem;
}

.scene:nth-of-type(even) {
	flex-direction: row-reverse;
}

.scene:nth-of-type(odd) .scene__content {
	margin-right: 7rem;
}

.scene:nth-of-type(even) .scene__content {
	margin-left: 7rem;
}

.scene__content--title {
	color: rgba(153, 133, 66, 1);
	font-family: var(--garamond);
	font-size: 3.3rem;
	font-weight: 600;
	position: relative;
}

.scene__content--title img {
	width: 10.3rem;
	position: absolute;
	top: -6.5rem;
	left: -3.2rem;
}

.scene__content--time {
	margin-bottom: 3rem;
	font-size: 1.7rem;
	display: flex;
	align-items: center;
}

.scene__content--time::before {
	background-color: rgb(var(--blk));
	margin-right: 0.7rem;
	width: 4.5rem;
	height: 1px;
	content: "";
}

.scene__content--detail-title {
	margin-bottom: 1rem;
	font-size: 2.5rem;
	font-weight: 500;
}

.scene__content--detail-text {
	line-height: 2.2;
	font-size: 1.7rem;
}

.scene__image {
	width: 58.672vw;
}

@media screen and (max-width: 768px) {
	.scene {
		margin-bottom: 11.6rem;
		display: block;
	}

	.scene:last-of-type {
		margin-bottom: 6rem;
	}

	.scene__content {
		margin-bottom: 3rem;
		padding: 0 3.5rem;
		width: 100%;
	}

	.scene:nth-of-type(odd) .scene__content,
	.scene:nth-of-type(even) .scene__content {
		margin: 0 0 3rem;
	}

	.scene__content--title {
		font-size: 2.6rem;
	}

	.scene__content--title img {
		width: 8.4rem;
		top: -5rem;
		left: -1.5rem;
	}

	.scene__content--time {
		margin-bottom: 1.8rem;
		font-size: 1.3rem;
	}

	.scene__content--time::before {
		width: 3.8rem;
	}

	.scene__content--detail-title {
		font-size: 2rem;
	}

	.scene__content--detail-text {
		line-height: 2.2;
		font-size: 1.3rem;
	}

	.scene__image {
		width: 100%;
	}
}

/* ----------------------------------------------------
	area
---------------------------------------------------- */
.area {
	margin: 0 auto;
	padding-top: 10rem;
	width: 118.4rem;
}

.area__title {
	margin-bottom: 9rem;
	text-align: center;
}

.area__title--inner {
	padding: 0 1rem 1rem;
	line-height: normal;
	font-size: 2.8rem;
	font-weight: 500;
	border-bottom: solid 2px rgba(153, 133, 66, 1);
	display: inline-block;
}

.area__nav {
	margin-bottom: 7rem;
}

.area__nav--list {
	display: flex;
}

.area__nav--item {
	width: 28.4rem;
}

.area__nav--item:not(:last-of-type) {
	margin-right: 1.5rem;
}

.area__nav--item a {
	background-color: rgba(64, 64, 64, 1);
	width: 100%;
	height: 8.6rem;
	color: rgb(var(--wht));
	font-size: 1.9rem;
	position: relative;
}

.area__nav--item a::before {
	width: 1.1rem;
	height: 1.1rem;
	border-right: solid 1px rgb(var(--wht));
	border-bottom: solid 1px rgb(var(--wht));
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	content: "";
}

.area__name {
	margin-bottom: 7rem;
	font-size: 2.3rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.area {
		padding: 5rem 0.8rem 0;
		width: 100%;
	}

	.area__title {
		margin-bottom: 3.5rem;
	}

	.area__title--inner {
		font-size: 2rem;
	}

	.area__nav {
		margin-bottom: 4rem;
	}

	.area__nav--list {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.area__nav--item {
		margin-bottom: 1.5rem;
		width: 17.8rem;
	}

	.area__nav--item:not(:last-of-type) {
		margin-right: 0;
	}

	.area__nav--item a {
		height: 7.1rem;
		font-size: 1.5rem;
	}

	.area__nav--item a::before {
		width: 0.8rem;
		height: 0.8rem;
	}

	.area__name {
		margin-bottom: 3rem;
		font-size: 1.8rem;
	}
}

/*
	lounge
------------------------------ */
.lounge {
	margin-bottom: 14rem;
}

.lounge__title {
	background-color: rgb(var(--wht));
	margin-bottom: 3.3rem;
	height: 13.8rem;
	font-size: 2.4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lounge__title .prefectures,
.lounge__title .lounge-name {
	font-size: 1.9rem;
}

.lounge__content {
	display: flex;
	justify-content: space-between;
}

.lounge__detail {
	width: 43.2rem;
	display: flex;
	flex-direction: column;
}

.lounge__detail--title {
	margin-bottom: 1.8rem;
	font-size: 2.2rem;
	font-weight: 500;
}

.lounge__category {
	margin-bottom: 1.8rem;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.5rem;
	display: flex;
}

.lounge__category--item {
	background-color: rgba(144, 102, 102, 1);
	padding: 0 1.7rem;
	height: 2.7rem;
	border-radius: 2.7rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lounge__category--item:not(:last-of-type) {
	margin-right: 0.8rem;
}

.lounge__detail--text {
	line-height: 2;
	font-size: 1.7rem;
}

.lounge__detail--link {
	margin-top: auto;
}

.lounge__detail .link-button {
	background-color: rgba(163, 153, 123, 1);
	background-image: url(../img/arrow-link.svg);
	background-position: center right 1.6rem;
	background-repeat: no-repeat;
	background-size: 1.6rem auto;
	margin-top: 1.2rem;
	color: rgb(var(--wht));
	height: 5.8rem;
	font-size: 1.8rem;
}

.lounge__detail .link-button:hover {
	background-color: rgba(104, 97, 76, 1);
	opacity: 1;
}

.lounge__image {
	width: 70.4rem;
}

@media screen and (max-width: 768px) {
	.lounge {
		margin-bottom: 6rem;
	}

	.lounge__title {
		margin-bottom: 1rem;
		padding: 1rem 0;
		height: auto;
		font-size: 1.8rem;
		text-align: center;
	}

	.lounge__title .hotel-name {
		line-height: 1.2;
	}

	.lounge__title .prefectures,
	.lounge__title .lounge-name {
		font-size: 1.6rem;
	}

	.lounge__content {
		flex-direction: column-reverse;
	}

	.lounge__detail {
		width: 100%;
	}

	.lounge__detail--title {
		margin-bottom: 1.2rem;
		font-size: 1.6rem;
	}

	.lounge__category {
		margin-bottom: 1.2rem;
		font-size: 1.2rem;
	}

	.lounge__category--item {
		padding: 0 1.4rem;
		height: 2.2rem;
		border-radius: 2.2rem;
	}

	.lounge__category--item:not(:last-of-type) {
		margin-right: 0.6rem;
	}

	.lounge__detail--text {
		font-size: 1.3rem;
	}

	.lounge__detail--link {
		margin-top: 0.7rem;
	}

	.lounge__detail .link-button {
		background-position: center right 1.3rem;
		background-size: 1.1rem auto;
		margin-top: 0.8rem;
		font-size: 1.6rem;
	}

	.lounge__image {
		margin-bottom: 3rem;
		width: 100%;
	}
}

/* ----------------------------------------------------
	members
---------------------------------------------------- */
.members {
	background-image: url(../img/members-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 12rem 0;
	color: rgb(var(--wht));
}

.members__content {
	margin: 0 auto;
	width: 99.1rem;
}

.members__title {
	margin-bottom: 6rem;
	text-align: center;
}

.members__title--inner {
	padding: 0 2rem 1rem;
	font-size: 2.8rem;
	font-weight: 500;
	border-bottom: solid 2px rgba(153, 133, 66, 1);
	display: inline-block;
}

.members__title--inner small {
	font-size: 1.8rem;
	display: block;
}

.members__logo {
	margin: 0 auto 3.2rem;
	width: 22rem;
}

.members__lead {
	margin-bottom: 3.8rem;
	line-height: 2.2;
	font-size: 1.7rem;
	text-align: center;
}

.members__list {
	margin-bottom: 4.8rem;
	display: flex;
	justify-content: space-between;
}

.members__list--item {
	background-color: rgb(var(--wht));
	padding-bottom: 3rem;
	width: 22.9rem;
	color: rgb(var(--blk));
	border-radius: 1.4rem;
}

.members__icon {
	height: 11.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.members__icon img {
	width: 7.8rem;
}

.members__text {
	line-height: 1.7;
	font-size: 1.7rem;
	text-align: center;
}

.members .link-button {
	background-color: rgba(153, 133, 66, 1);
	background-image: url(../img/arrow-link.svg);
	background-position: center right 1.6rem;
	background-repeat: no-repeat;
	background-size: 1.6rem auto;
	margin: 0 auto;
	color: rgb(var(--wht));
	width: 43.2rem;
	height: 5.8rem;
	font-size: 1.8rem;
}

.members .link-button:hover {
	background-color: rgba(104, 97, 76, 1);
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.members {
		background-image: url(../img/members-bg_sp.webp);
		padding: 6.6rem 0;
	}

	.members__content {
		width: 100%;
	}

	.members__title {
		margin-bottom: 3.9rem;
	}

	.members__title--inner {
		padding: 0 1rem 1rem;
		font-size: 2rem;
	}

	.members__title--inner small {
		font-size: 1.4rem;
	}

	.members__logo {
		margin-bottom: 2rem;
		width: 18.1rem;
	}

	.members__lead {
		margin-bottom: 2rem;
		line-height: 2;
		font-size: 1.3rem;
	}

	.members__list {
		margin-bottom: 1.7rem;
		padding: 0 1.4rem;
		flex-wrap: wrap;
	}

	.members__list--item {
		margin-bottom: 1.5rem;
		padding-bottom: 2rem;
		width: 16.5rem;
		border-radius: 1rem;
	}

	.members__icon {
		height: 9rem;
	}

	.members__icon img {
		width: 5.6rem;
	}

	.members__text {
		font-size: 1.2rem;
	}

	.members .link-button {
		background-position: center right 1.3rem;
		background-size: 1.1rem auto;
		width: 31.7rem;
		font-size: 1.6rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--wht));
	padding: 4rem 0;
	font-family: var(--gothic);
}

.footer__note {
	margin: 0 auto 4rem;
	width: 85rem;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.footer__note {
		margin-bottom: 3rem;
		width: 100%;
		line-height: 2.2;
		display: block;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel-nav::before,
.footer .hotel-nav__item::after {
	content: "|";
}

.footer .hotel-nav__item a {
	padding: 0 1em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		font-size: 4.267vw;
		text-align: center;
		display: block;
	}

	.footer .hotel-nav::before {
		content: "";
	}

	.footer .hotel-nav__item::before,
	.footer .hotel-nav__item::after {
		content: "|";
	}

	.footer .hotel-nav__item:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.footer .hotel-nav__item a {
		padding: 0 1em;
		text-decoration: none;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	margin-top: 2em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 2.933vw;
	}
}