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

.header__title {
	width: 37.188vw;
	position: absolute;
	top: 0;
	left: 3.75vw;
	z-index: 2;
}

.header__slide {
	line-height: 0;
	position: relative;
	z-index: 1;
}

.header__slide--item {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.header__slide--item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transform-origin: center;
	transition: opacity 2s ease-in-out;
}

.add-animation .header__slide--item img {
	animation: zoomUp 10s linear 0s normal both;
}

.header__slide--text {
	position: absolute;
	bottom: 5px;
	right: 35px;
	color: #fff;
	text-align: right;
	text-shadow: 0 0 9px rgba(0, 0, 0, 0.45);
	font-size: min(2rem, 1.563vw);
	font-weight: 400;
	line-height: 47px;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 84.8vw;
		left: 50%;
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
	}

	.header__slide--text {
		bottom: 0px;
		right: 10px;
		font-size: min(1.6rem, 4.267vw);
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	padding: min(6.5rem, 5.078vw) 0 min(8.5rem, 6.641vw);
	text-align: center;
}

.gnav__title {
	margin-bottom: min(3.5rem, 2.734vw);
	line-height: 2;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 400;
}

.gnav__list {
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 8rem);
	column-gap: 18px;
	row-gap: min(4rem, 3.125vw);
	justify-content: center;
}

.gnav__list--item {
	width: 18rem;
	height: 18rem;
	margin: 0;
	grid-column: span 2;
}

.gnav__list--item:nth-child(1) {
	grid-column: 2 / span 2;
}

.gnav__list:has(.gnav__list--item:nth-child(11))
.gnav__list--item:nth-child(6) {
	grid-column: 1 / span 2;
}

/* ▼ 10個（下段5個）になった場合は中央寄せ */
.gnav__list:not(:has(.gnav__list--item:nth-child(11)))
.gnav__list--item:nth-child(6) {
	grid-column: 2 / span 2;
}

.gnav__list--item a {
	background-image: url(../img/bg-link.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100%;
	color: rgb(var(--wht));
	font-size: min(1.6rem, 1.25vw);
	font-weight: 600;
	text-decoration: none;
	display: block;
	position: relative;
}

.gnav__list--item a:hover {
	background-image: url(../img/bg-link_on.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100%;
	opacity: 1;
}

.gnav__list--item a::after {
	background-image: url(../img/icon-arrow02.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 16px;
	height: 18px;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.gnav__list--item-inner {
	background-position: center top min(1.8rem, 1.406vw);
	background-size: 50%;
	background-repeat: no-repeat;
	padding-top: 50px;
	height: 100%;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gnav01 .gnav__list--item-inner {
	background-image: url(../img/gnav01.webp);
}

.gnav02 .gnav__list--item-inner {
	background-image: url(../img/gnav02.webp);
}

.gnav03 .gnav__list--item-inner {
	background-image: url(../img/gnav03.webp);
}

.gnav04 .gnav__list--item-inner {
	background-image: url(../img/gnav04.webp);
}

.gnav05 .gnav__list--item-inner {
	background-image: url(../img/gnav05.webp);
}

.gnav06 .gnav__list--item-inner {
	background-image: url(../img/gnav06.webp);
}

.gnav07 .gnav__list--item-inner {
	background-image: url(../img/gnav07.webp);
}

.gnav08 .gnav__list--item-inner {
	background-image: url(../img/gnav08.webp);
}

.gnav09 .gnav__list--item-inner {
	background-image: url(../img/gnav09.webp);
}

.gnav10 .gnav__list--item-inner {
	background-image: url(../img/gnav10.webp);
}

.gnav11 .gnav__list--item-inner {
	background-image: url(../img/gnav11.webp);
}


@media screen and (max-width: 768px) {
	.gnav {
		padding: 14.667vw 0 24vw;
	}

	.gnav__title {
		margin-bottom: 13.333vw;
		line-height: 1.9;
		font-size: min(1.6rem, 4.267vw);
	}

	.gnav__list {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 10px;
		row-gap:inherit;
	}

	.gnav__list--item {
		margin-bottom: 6.133vw;
		width: 110px;
		height: 110px;
	}

	.gnav__list--item:not(:nth-child(4n)) {
		margin-right: 0;
	}

	.gnav__list--item a {
		font-size: min(1.1rem, 2.933vw);
	}

	.gnav__list--item-inner {
		padding-bottom: 7.8vw;
	}
}

@media (hover: none) and (pointer: coarse) {
	.gnav__list--item a:hover {
		background-image: url(../img/bg-link.svg);
	}
}

/* ----------------------------------------------------
	main
---------------------------------------------------- */
.main {
	padding-bottom: min(15rem, 11.719vw);
}

@media screen and (max-width: 768px) {
	.main {
		padding-bottom: 26.667vw;
	}
}

/* ----------------------------------------------------
	section
---------------------------------------------------- */
.section {
	width: 100vw;
	position: relative;
}

.section:not(:last-of-type) {
	margin-bottom: 6.641vw;
}

.section__image {
	padding-top: 6.641vw;
	width: 70.313vw;
	position: relative;
}

.section:nth-child(even) .section__image {
	margin-left: auto;
}

.section__content {
	background-color: rgba(var(--wht), 0.95);
	width: 37.344vw;
	height: 42.344vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	z-index: 1;
}

.section:nth-child(odd) .section__content {
	/* left: -3.906vw; */
	right: -3.906vw;
	border-radius: 0 0 0 80px;
}

.section:nth-child(even) .section__content {
	/* right: -4.219vw; */
	left: -4.219vw;
	border-radius: 0 0 80px 0;
}

.section__content--title {
	background-position: center top;
	background-repeat: no-repeat;
	margin-bottom: 1.875vw;
	line-height: 1.3;
	color: #F98E90;
	font-family: var(--mincho);
	font-size: 2.734vw;
	font-weight: 500;
	text-align: center;
}

.section__content--title .en {
	color: #97C2C1;
	margin-bottom: 2.344vw;
	line-height: 1;
	font-family: var(--marck);
	font-size: 27px;
	font-weight: 400;
	display: block;
}

.section__content--title .en.typeB {
	color: #F57C6A;
}

.section__content--text {
	margin-bottom: 2.031vw;
	width: 25.781vw;
	line-height: 2;
	font-size: 1.172vw;
	font-weight: 400;
}

.section__content .link-button {
	width: 20.625vw;
	height: 4.063vw;
	font-size: 1.25vw;
	border-radius: 4.063vw;
}

.section__content .link-button::after {
	width: 2.031vw;
	height: 1.484vw;
	position: absolute;
	top: 50%;
	right: 1.016vw;
	transform: translateY(-50%);
	content: "";
}

.section__content .link-button.is-coming-soon {
	pointer-events: none;
	position: relative;
}

.link-button.is-coming-soon::after {
	content: "Coming Soon";
	background: rgba(84, 84, 84, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #FFF8F4;
	font-size: 1.25vw;
	white-space: nowrap;
	border-radius: 30vw;
}

/* object */
.section__content .object {
	width: 13.438vw;
	height: 10.313vw;
	top: 41.406vw;
}

/* icon */
.section__content--title {
	background-size: 100px;
	padding-top: 90px;
}

#ohanami .section__content--title {
	background-image: url(../img/icon_ohanami.webp);
}

#onsen-spa .section__content--title {
	background-image: url(../img/icon_onsen-spa.webp);
}

#spring-pickup .section__content--title {
	background-image: url(../img/icon_spring-pickup.webp);
}

#graduation-trip .section__content--title {
	background-image: url(../img/icon_graduation-trip.webp);
}

#spring-ski .section__content--title {
	background-image: url(../img/icon_spring-ski.webp);
}

#golf-stay .section__content--title {
	background-image: url(../img/icon_golf-stay.webp);
}

#goldenweek-pickup .section__content--title {
	background-image: url(../img/icon_goldenweek-pickup.webp);
}

#strawberry-fair .section__content--title {
	background-image: url(../img/icon_strawberry-fair.webp);
}

#spring-sweets .section__content--title {
	background-image: url(../img/icon_spring-sweets.webp);
}

#valentine-whiteday .section__content--title {
	background-image: url(../img/icon_valentine-whiteday.webp);
}

#spring-menu .section__content--title {
	background-image: url(../img/icon_spring-menu.webp);
}

@media screen and (max-width: 768px) {
	.section {
		padding-top: 33.333vw;
		overflow: hidden;
		display: flex;
		flex-direction: column-reverse;
	}

	.section:not(:last-of-type) {
		margin-bottom: 20vw;
	}

	.section__image {
		margin-bottom: 8vw;
		width: 100%;
	}

	.section:nth-child(odd) .section__image {
		margin-left: 0;
	}

	.section__content {
		background: none;
		width: 100%;
		height: auto;
		border-radius: 0;
		display: block;
		position: relative;
		top: auto;
	}

	.section:nth-child(odd) .section__content {
		left: auto;
		right: auto;
	}

	.section:nth-child(even) .section__content {
		right: auto;
		left: auto;
	}

	.section__content--title {
		background-color: rgba(var(--wht), 0.95);
		margin-bottom: 0;
		width: 63.467vw;
		height: 60.467vw;
		font-size: 6.4vw;
		border-radius: 0 0 0 52px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: -170.667vw;
		right: -3.2vw;
		left: auto;
		padding-bottom: 30px;
		background-position: center 15px;
	}

	.section:nth-child(even) .section__content--title {
		right: auto;
		left: -3.2vw;
		border-radius: 0 0 52px 0;
	}

	.section__content--title .en {
		margin-bottom: 0;
		line-height: 2.5;
		font-size: min(1.8rem, 4.8vw);
		font-weight: 400;
		display: block;
	}

	.section__content--text {
		margin: 0 auto 8vw;
		width: 91.467vw;
		font-size: 3.733vw;
	}

	.section__content .link-button {
		margin: 0 auto;
		width: 90%;
		height: 18.133vw;
		font-size: 4.533vw;
		border-radius: 18.133vw;
		background-size: 100%;
	}

	.section__content .link-button::after {
		font-size: 4.533vw;
		width: 8.031vw;
		height: 5.484vw;
		position: absolute;
		top: 50%;
		right: 5.016vw;
		transform: translateY(-50%);
		content: "";
	}

	.link-button.is-coming-soon::after {
		content: "Coming Soon";
		background: rgba(84, 84, 84, 0.8);
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		font-size: 4.533vw;
		font-weight: 600;
		letter-spacing: 0.08em;
		color: #FFF8F4;
		white-space: nowrap;
		border-radius: 30vw;
	}

	/* icon */
	.section__content--title {
		background-repeat: no-repeat;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--wht));
	padding-bottom: min(5rem, 3.906vw);
}

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

/*
	banner
------------------------------ */
.banner {
	background-color: rgb(var(--wht));
	padding: min(10rem, 7.813vw) 0;
}

.banner__title {
	margin: 0 auto min(2.5rem, 1.953vw);
	font-size: min(2.3rem, 1.797vw);
	text-align: center;
}

.banner__list {
	margin: 0 auto;
	width: min(67.6rem, 52.813vw);
}

.banner__list--item:not(:last-of-type) {
	margin-bottom: min(2rem, 1.563vw);
}

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

	.banner__title {
		margin-bottom: 1em;
		font-size: 4vw;
	}

	.banner__list {
		width: 91.2vw;
	}

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

/*
	spgr
------------------------------ */
.spgr {
	background-color: #F4F4EE;
	padding: min(10rem, 7.813vw) 0;
}

.spgr__logo {
	margin: 0 auto min(3rem, 2.344vw);
	width: min(22.7rem, 17.734vw);
}

.spgr__title {
	margin-bottom: min(3rem, 2.344vw);
	font-size: min(2.5rem, 1.953vw);
	font-weight: 500;
	text-align: center;
}

.spgr__title small {
	font-size: min(1.9rem, 1.484vw);
	display: block;
}

.spgr .link-button {
	background-color: rgba(153, 133, 66, 1);
	background-image: none;
	margin: 0 auto;
	width: min(29.4rem, 22.969vw);
	height: min(5.8rem, 4.531vw);
	font-size: min(1.7rem, 1.328vw);
	border-radius: min(5.8rem, 4.531vw);
}

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

.spgr .link-button::after {
	width: min(2.9rem, 2.266vw);
	height: min(2.1rem, 1.641vw);
	right: min(1.5rem, 1.172vw);
}

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

	.spgr__logo {
		margin-bottom: 8vw;
		width: 60.533vw;
	}

	.spgr__title {
		margin-bottom: 8vw;
		font-size: 5.333vw;
	}

	.spgr__title small {
		font-size: 4.267vw;
	}

	.spgr .link-button {
		width: 78.4vw;
		height: 15.467vw;
		font-size: 4.533vw;
		border-radius: 15.467vw;
	}

	.spgr .link-button::after {
		width: 7.733vw;
		height: 5.6vw;
		right: 4vw;
	}
}

/*
	note
------------------------------ */
.footer .note {
	padding: min(5rem, 3.906vw) 0;
	text-align: center;
}

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

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	padding-bottom: min(5rem, 3.906vw);
	line-height: 1;
	font-size: min(1.6rem, 1.25vw);
	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 {
		padding-bottom: 8vw;
		font-size: 4vw;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	font-size: min(1.3rem, 1.016vw);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 2.4vw;
	}
}