/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	height: 100dvh;
	position: relative;
}

.header__title {
	width: 100%;
	position: absolute;
	bottom: -0.22vw;
	z-index: 1;
}

.header .sea-more {
	color: rgb(var(--wht));
	font-family: var(--aboreto);
	font-size: 2.635vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.header .sea-more svg {
	width: 1.611vw;
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0% {
		opacity: 0;
		transform: rotate(90deg) translate(0, 0);
	}

	40% {
		opacity: 1;
	}

	80% {
		opacity: 0;
		transform: rotate(90deg) translate(1.464vw, 0);
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.header .sea-more {
		font-size: 2.6rem;
	}

	.header .sea-more svg {
		width: 1.6rem;
	}

	@keyframes scroll {
		0% {
			opacity: 0;
			transform: rotate(90deg) translate(0, 0);
		}

		40% {
			opacity: 1;
		}

		80% {
			opacity: 0;
			transform: rotate(90deg) translate(2rem, 0);
		}

		100% {
			opacity: 0;
		}
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	padding: 10rem 0;
	color: rgba(110, 110, 110, 1);
	text-align: center;
}

.about__title {
	margin-bottom: 2.4rem;
	font-size: 2.4rem;
	font-weight: 500
}

.about__lead--image {
	margin: 0 auto 3rem;
	width: 74rem;
}

.about__lead--text {
	line-height: 2.2;
	font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
	.about {
		padding: 6rem 0;
	}

	.about__title {
		font-size: 2.2rem;
	}

	.about__lead--image {
		width: 25rem;
	}

	.about__lead--text {
		line-height: 2;
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	crucible
---------------------------------------------------- */
.crucible {
	background-image: url(../img/crucible-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10rem 0;
	text-align: center;
}

.crucible__title {
	margin-bottom: 3rem;
	line-height: normal;
	font-size: 3.6rem;
	font-weight: 600;
}

.crucible__title--inner {
	background: linear-gradient(135deg, #8088ef 16%, #36bcfe 50%, #48e1b3 84%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	display: inline-block;
}

.crucible__date {
	margin-top: 1rem;
	font-size: 2rem;
	display: block;
}

.crucible__lead {
	margin-bottom: 4rem;
	line-height: 2.2;
	color: rgba(110, 110, 110, 1);
	font-size: 1.8rem;
}

.crucible .img-marquee {
	margin-bottom: 6rem;
	overflow: hidden;
	--kv_scroll-item-width: 43.631vw;
	--kv_scroll-gap: 0.878vw;
	--kv_scroll-set-size: 6;
	--kv_scroll-speed: 50s;
}

.crucible .img-marquee__track {
	list-style: none;
	margin: 0;
	padding: 0;
	width: max-content;
	display: flex;
	gap: var(--kv_scroll-gap);
	animation: kvScroll var(--kv_scroll-speed) linear infinite;
}

.crucible .img-marquee__item {
	width: var(--kv_scroll-item-width);
	flex: 0 0 auto;
}

@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));
	}
}

.crucible .link-button {
	background: linear-gradient(90deg, #8287EF 0%, #36BCFF 50%, #48E1B1 100%);
}

@media screen and (max-width: 768px) {
	.crucible {
		background-image: url(../img/crucible-bg_sp.webp);
		padding: 6rem 0;
	}

	.crucible__title {
		margin-bottom: 3rem;
		font-size: 2.4rem;
	}

	.crucible__date {
		font-size: 1.8rem;
	}

	.crucible__lead {
		line-height: 2;
		font-size: 1.5rem;
	}

	.crucible .img-marquee {
		margin-bottom: 4rem;
		--kv_scroll-item-width: 31rem;
		--kv_scroll-gap: 0.6rem;
	}
}

/* ----------------------------------------------------
	content-nav
---------------------------------------------------- */
.content-nav {
	padding: 10rem 0;
}

.content-nav__list {
	margin: 0 auto;
	width: 100rem;
	display: flex;
	justify-content: space-between;
}

.content-nav__list--item {
	width: 21.5rem;
}

.content-nav__list--item a {
	color: rgba(110, 110, 110, 1);
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.content-nav__list--item a:hover {
	opacity: 1;
}

.content-nav__image {
	margin-bottom: 1.5rem;
}

.content-nav__image--inner {
	width: 21.5rem;
	height: 21.5rem;
	overflow: hidden;
	border-radius: 50%;
	display: block;
	transition: all 0.5s ease 0s;
}

.content-nav__image--inner img {
	transition: all 0.5s ease 0s;
}

.content-nav a:hover .content-nav__image--inner {
	background-color: rgb(var(--blk));
}

.content-nav a:hover img {
	opacity: 0.5;
	transform: scale(1.2);
}

.content-nav__image--text {
	margin-top: 1.5rem;
	line-height: 1;
	font-family: var(--aboreto);
	font-size: 3.2rem;
	white-space: nowrap;
}

.content-nav__list--item a svg {
	width: 2.4rem;
	transform: rotate(90deg);
}

.content-nav__list--item a svg path {
	stroke: rgba(110, 110, 110, 1);
}

@media screen and (max-width: 768px) {
	.content-nav {
		padding: 6rem 0 2rem;
	}

	.content-nav__list {
		width: 29.4rem;
		flex-wrap: wrap;
	}

	.content-nav__list--item {
		margin-bottom: 2rem;
		width: 13rem;
	}

	.content-nav__image {
		margin-bottom: 0.8rem;
	}

	.content-nav__image--inner {
		width: 13rem;
		height: 13rem;
	}

	.content-nav__image--text {
		margin-top: 0.8rem;
		font-size: 1.8rem;
	}

	.content-nav__list--item a svg {
		width: 1.6rem;
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background-color: rgba(var(--wht), 0.8);
	height: 8rem;
	position: sticky;
	top: 0;
	z-index: 10;
}

.gnav__list {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__list--item {
	margin: 0 1.1rem;
	font-family: var(--aboreto);
	font-size: 2.4rem;
}

.gnav__list--item a {
	color: rgba(110, 110, 110, 1);
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.gnav {
		height: 5rem;
	}

	.gnav__list--item {
		margin: 0 0.6rem;
		font-size: 1.4rem;
		letter-spacing: -0.005rem;
		white-space: nowrap;
	}

	.gnav__list--item:first-child {
		margin-left: 0;
	}

	.gnav__list--item:last-child {
		margin-right: 0;
	}
}

/* ----------------------------------------------------
	cont
---------------------------------------------------- */
.cont__head {
	overflow: hidden;
	position: relative;
}

.cont__title {
	width: 100%;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--aboreto);
	font-size: 8.638vw;
	text-align: center;
	position: absolute;
	bottom: -0.366vw;
	left: 0;
	z-index: 1;
}

.cont__kv {
	overflow: hidden;
}

.cont__kv img {
	width: 100%;
	height: auto;
	display: block;
}

.cont .link-button.gla {
	background: rgba(110, 110, 110, 1);
}

@media screen and (max-width: 768px) {
	.cont__title {
		font-size: 3.2rem;
		bottom: 0;
	}
}

/*
	cont__body
------------------------------ */
.cont__body {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10rem 0 14rem;
}

.cont__nav {
	margin: 0 auto 10rem;
	width: 85.7rem;
}

.cont__nav--list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.cont__nav--item {
	width: 17.3rem;
}

.cont__nav--item:not(:last-of-type) {
	margin-right: 5.5rem;
}

.cont__nav--item a {
	display: block;
	position: relative;
}

.cont__nav--item a::before {
	background-image: url(../img/arrow-cont.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 1.2rem;
	height: 1.5rem;
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	content: "";
}

.cont__nav--image {
	position: relative;
}

.cont__nav--image figcaption {
	width: 100%;
	height: 100%;
	line-height: 1.6;
	color: rgb(var(--wht));
	font-size: 1.6rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 768px) {
	.cont__body {
		padding: 6rem 0;
	}

	.cont__nav {
		margin-bottom: 4.6rem;
		width: 33.2rem;
	}

	.cont__nav--item {
		margin-bottom: 1.4rem;
		width: 9.4rem;
	}

	.cont__nav--item:not(:last-of-type) {
		margin-right: 1.4rem;
	}

	.cont__nav--item a::before {
		width: 0.7rem;
		height: 0.9rem;
		bottom: 0.8rem;
	}

	.cont__nav--image figcaption {
		font-size: 1rem;
	}

	/* two-column */
	.two-column.cont__nav {
		width: 24rem;
	}

	.two-column.cont__nav .cont__nav--item:not(:last-of-type) {
		margin-right: 1.4rem;
	}

	.two-column.cont__nav .cont__nav--item:nth-child(even) {
		margin-right: 0;
	}
}

/*
	cont__list
------------------------------ */
.cont__list--item {
	text-align: center;
}

.cont__list--item:not(:last-of-type) {
	margin-bottom: 10rem;
}

.cont__list--item .link-button {
	margin-top: 3rem;
}

.cont__list+.link-button {
	margin-top: 10rem;
}

.cont__detail {
	line-height: normal;
}

.cont__detail--title {
	margin-bottom: 2rem;
	font-size: 3.2rem;
	font-weight: 600;
}

.cont__detail--date {
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 600;
}

.cont__detail--date .note {
	margin-top: 0.5rem;
}

.cont__detail--lead {
	margin-bottom: 3rem;
	font-size: 1.5rem;
}

.cont__detail--lead .text {
	line-height: 1.8;
}

.cont__detail--image {
	margin-bottom: 3rem;
}

.cunt__image {
	margin: 0 auto;
	/* width: 63.324vw; */
	width: 86.5rem;
}

.cont-slider__item {
	/* padding: 0 0.878vw; */
	padding: 0 1.2rem;
}

.cont-slider__detail {
	margin-top: 3rem;
	font-weight: 600;
}

.cont-slider__detail--title {
	margin-bottom: 1rem;
	font-size: 2.4rem;
}

.cont-slider__detail--place {
	font-size: 2rem;
}

.cont-slider__detail--place .time {
	display: block;
}

.cont-slider__detail--lead {
	margin-top: 3rem;
	font-size: 1.5rem;
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.cont__list--item:not(:last-of-type) {
		margin-bottom: 6rem;
	}

	.cont__list--item .link-button {
		margin-top: 2rem;
	}

	.cont__list+.link-button {
		margin-top: 6rem;
	}

	.cont__detail--title {
		margin-bottom: 1rem;
		font-size: 2rem;
		letter-spacing: -0.005em;
	}

	.cont__detail--date {
		margin-bottom: 1rem;
		font-size: 1.3rem;
	}

	.cont__detail--lead {
		font-size: 1.5rem;
	}

	.cunt__image {
		width: 32rem;
	}

	.cont-slider__item {
		padding: 0 1rem;
	}

	.cont-slider__detail--title {
		margin-bottom: 0.5rem;
		font-size: 1.8rem;
	}

	.cont-slider__detail--place {
		font-size: 1.6rem;
	}

	.cont-slider__detail--lead {
		margin-top: 1.5rem;
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	event
---------------------------------------------------- */
.event .cont__body {
	background-image: url(../img/event-bg.webp);
}

.event .link-button {
	background: linear-gradient(92deg, #59C632 17.46%, #C9DB74 86.79%);
}

.event .cont__detail--title,
.event .cont__detail--date {
	color: rgba(107, 192, 22, 1);
}

@media screen and (max-width: 768px) {
	.event .cont__body {
		background-image: url(../img/event-bg_sp.webp);
	}
}

/* ----------------------------------------------------
	pool
---------------------------------------------------- */
.pool .cont__body {
	background-image: url(../img/pool-bg.webp);
}

.pool .link-button {
	background: linear-gradient(92deg, #17B3D2 17.46%, #56DCB8 86.79%);
}

.pool .cont__detail--title,
.pool .cont__detail--date {
	color: rgba(88, 183, 202, 1);
}

@media screen and (max-width: 768px) {
	.pool .cont__body {
		background-image: url(../img/pool-bg_sp.webp);
	}
}

/* ----------------------------------------------------
	stay
---------------------------------------------------- */
.stay .cont__body {
	background-image: url(../img/stay-bg.webp);
}

.stay .link-button {
	background: linear-gradient(92deg, #E17BC1 17.46%, #FDA188 86.79%);
}

.stay .cont__detail--title,
.stay .cont__detail--date {
	color: rgba(216, 109, 154, 1);
}

@media screen and (max-width: 768px) {
	.stay .cont__body {
		background-image: url(../img/stay-bg_sp.webp);
	}
}

/* ----------------------------------------------------
	gourmet
---------------------------------------------------- */
.gourmet .cont__body {
	background-image: url(../img/gourmet-bg.webp);
}

.gourmet .link-button {
	background: linear-gradient(92deg, #E69D17 17.46%, #FFDA36 86.79%);
}

.gourmet .cont__detail--title,
.gourmet .cont__detail--date,
.gourmet .cont-slider__detail--title,
.gourmet .cont-slider__detail--place {
	color: rgba(230, 157, 23, 1);
}

@media screen and (max-width: 768px) {
	.gourmet .cont__body {
		background-image: url(../img/gourmet-bg_sp.webp);
	}
}

/* ----------------------------------------------------
	banner
---------------------------------------------------- */
.banner {
	padding: 14rem 0;
}

.banner__list {
	margin: 0 auto;
	width: 104rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.banner__list--item {
	width: calc((100% - 5.8rem) / 2);
	text-align: center;
}

.banner__list--item:nth-child(even) {
	margin-left: 5.8rem;
}

.banner__image {
	display: flex;
	flex-direction: column-reverse;
}

.banner__image figcaption {
	margin-bottom: 1rem;
	line-height: 1.5;
	font-size: 1.8rem;
}

/* collaboration */
.banner__list.collaboration {
	margin-bottom: 10rem;
}

.banner__list.collaboration li {
	margin: 0 auto;
	width: 73.8rem;
}

@media screen and (max-width: 768px) {
	.banner {
		padding: 6rem 0;
	}

	.banner__list {
		width: 32.8rem;
		display: block;
	}

	.banner__list--item {
		width: 100%;
	}

	.banner__list--item:nth-child(even) {
		margin-left: 0;
	}

	.banner__list--item:not(:last-of-type) {
		margin-bottom: 3rem;
	}

	.banner__image figcaption {
		font-size: 1.5rem;
	}

	/* collaboration */
	.banner__list.collaboration {
		margin-bottom: 3rem;
	}

	.banner__list.collaboration li {
		width: 100%;
	}
}

/* ----------------------------------------------------
	hotels
---------------------------------------------------- */
.hotels {
	background-image: url(../img/hotels-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10rem 0;
	color: rgb(var(--wht));
	text-align: center;
}

.hotels__logo {
	margin: 0 auto 3rem;
	width: 29rem;
}

.hotels__address {
	margin-bottom: 7rem;
	font-size: 2rem;
}

.hotels__sns--title {
	margin-bottom: 2rem;
	font-size: 2.6rem;
	font-weight: 500;
}

.hotels__sns--list {
	display: flex;
	justify-content: center;
}

.hotels__sns--item {
	margin: 0 1.8rem;
	width: 4.8rem;
}

.hotels .link-button {
	background-color: rgba(53, 98, 170, 1);
}

@media screen and (max-width: 768px) {
	.hotels {
		background-image: url(../img/hotels-bg_sp.webp);
		padding: 6rem 0;
	}

	.hotels__logo {
		margin-bottom: 2rem;
		width: 19.2rem;
	}

	.hotels__address {
		margin-bottom: 3rem;
		font-size: 1.5rem;
	}

	.hotels__sns--title {
		margin-bottom: 1.6rem;
		font-size: 1.6rem;
	}

	.hotels__sns--item {
		margin: 0 0.8rem;
		width: 3.8rem;
	}
}

/*
	fun
------------------------------ */
.hotels .fun {
	background-color: rgba(var(--wht), 0.8);
	margin: 0 auto 7rem;
	padding: 8rem 0;
	width: 74rem;
	color: rgb(var(--blk));
	border-radius: 1rem;
}

.hotels .fun__logo {
	margin: 0 auto 2rem;
	width: 31rem;
}

.hotels .fun__title {
	margin-bottom: 2rem;
	line-height: 1.5;
	font-size: 3rem;
	font-weight: 700;
}

.hotels .fun__lead {
	margin-bottom: 4rem;
	line-height: 2.2;
	color: rgba(110, 110, 110, 1);
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.hotels .fun {
		margin-bottom: 4rem;
		padding: 4rem 0;
		width: 34.8rem;
		border-radius: 0.8rem;
	}

	.hotels .fun__logo {
		width: 20.6rem;
	}

	.hotels .fun__title {
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.hotels .fun__lead {
		margin-bottom: 2rem;
		font-size: 1.3rem;
	}
}

/* ----------------------------------------------------
	map
---------------------------------------------------- */
.map iframe {
	width: 100%;
	height: 45rem;
}

@media screen and (max-width: 768px) {
	.map iframe {
		height: 25rem;
	}
}

/* ----------------------------------------------------
	spgr
---------------------------------------------------- */
.spgr {
	background-color: rgba(244, 244, 238, 1);
	padding: 8rem 0;
	text-align: center;
}

.spgr__logo {
	margin: 0 auto 3rem;
	width: 23rem;
}

.spgr__title {
	font-size: 1.8rem;
	font-weight: 500;
}

.spgr__lead {
	margin-bottom: 3rem;
	font-size: 2.4rem;
}

.spgr .link-button {
	background-color: rgba(153, 133, 66, 1);
}

@media screen and (max-width: 768px) {
	.spgr {
		padding: 6rem 0;
	}

	.spgr__logo {
		margin-bottom: 2.4rem;
		width: 20rem;
	}

	.spgr__title {
		font-size: 1.5rem;
	}

	.spgr__lead {
		font-size: 1.8rem;
	}
}

/* ----------------------------------------------------
	page-note
---------------------------------------------------- */
.page-note {
	margin: 0 auto;
	padding: 6rem 0 9rem;
	width: 92.2rem;
}

@media screen and (max-width: 768px) {
	.page-note {
		margin: 0 auto;
		padding: 3.6rem 0 5rem;
		width: 34.8rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
	.footer {
		padding-bottom: 2rem;
	}
}

/* 
	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: 1.4rem;
		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: 1rem;
		letter-spacing: -0.005rem;
	}
}