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

.header__title {
	width: 37.188vw;
	position: absolute;
	top: 3.75vw;
	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;
}

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

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

@media screen and (max-width: 768px) {
	.header__title {
		width: 84.8vw;
		top: 6.133vw;
		left: -4.8vw;
	}
}

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

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

.gnav__list {
	margin: 0 auto;
	width: min(95.4rem, 74.531vw);
	display: flex;
	flex-wrap: wrap;
}

.gnav__list--item {
	margin-bottom: min(4rem, 3.125vw);
	width: min(22.5rem, 17.578vw);
	height: min(13.6rem, 10.625vw);
}

.gnav__list--item:not(:nth-child(4n)) {
	margin-right: min(1.8rem, 1.406vw);
}

.gnav__list--item a {
	background-image: url(../img/bg-link.webp);
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 100% auto;
	height: 100%;
	color: rgb(var(--wht));
	font-size: min(2.2rem, 1.719vw);
	font-weight: 600;
	text-decoration: none;
	border-radius: min(0.5rem, 0.391vw);
	display: block;
	position: relative;
}

.gnav__list--item a:hover {
	background-image: url(../img/bg-link_sp.webp);
}

.gnav__list--item a::after {
	background-image: url(../img/icon-arrow02.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: min(2.8rem, 2.188vw);
	height: min(2.8rem, 2.188vw);
	position: absolute;
	bottom: max(-1.4rem, -1.094vw);
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.gnav__list--item-inner {
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: min(2.5rem, 1.953vw);
	height: 100%;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.gnav01 .gnav__list--item-inner {
	background-image: url(../img/gnav01.svg);
	background-position: center top min(1.5rem, 1.172vw);
	background-size: min(9.7rem, 7.578vw) min(6.1rem, 4.766vw);
}

.gnav02 .gnav__list--item-inner {
	background-image: url(../img/gnav02.svg);
	background-position: center top min(1.3rem, 1.016vw);
	background-size: min(6.6rem, 5.156vw) min(6.9rem, 5.391vw);
}

.gnav03 .gnav__list--item-inner {
	background-image: url(../img/gnav03.svg);
	background-position: center top min(1.8rem, 1.406vw);
	background-size: min(7.5rem, 5.859vw) min(5.8rem, 4.531vw);
}

.gnav04 .gnav__list--item-inner {
	background-image: url(../img/gnav04.svg);
	background-position: center top min(1.5rem, 1.172vw);
	background-size: min(8rem, 6.25vw) min(6.3rem, 4.922vw);
}

.gnav05 .gnav__list--item-inner {
	background-image: url(../img/gnav05.svg);
	background-position: center top min(1.5rem, 1.172vw);
	background-size: min(7.5rem, 5.859vw) min(6.3rem, 4.922vw);
}

.gnav06 .gnav__list--item-inner {
	background-image: url(../img/gnav06.svg);
	background-position: center top min(2.2rem, 1.719vw);
	background-size: min(7.9rem, 6.172vw) min(5.3rem, 4.141vw);
}

.gnav07 .gnav__list--item-inner {
	background-image: url(../img/gnav07.svg);
	background-position: center top min(1.8rem, 1.406vw);
	background-size: min(6.2rem, 4.844vw) min(6rem, 4.688vw);
}

.gnav08 .gnav__list--item-inner {
	background-image: url(../img/gnav08.svg);
	background-position: center top min(2.5rem, 1.953vw);
	background-size: min(6.5rem, 5.078vw) min(4.9rem, 3.828vw);
}

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

	.gnav__title {
		margin-bottom: 13.333vw;
		line-height: 1.9;
		font-size: 5.067vw;
	}

	.gnav__list {
		width: 91.467vw;
		justify-content: space-between;
	}

	.gnav__list--item {
		margin-bottom: 6.133vw;
		width: 44vw;
		height: 26.667vw;
	}

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

	.gnav__list--item a {
		font-size: 4.267vw;
		border-radius: 0.8vw;
	}

	.gnav__list--item a::after {
		width: 5.333vw;
		height: 5.333vw;
		bottom: -2.667vw;
	}

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

	.gnav01 .gnav__list--item-inner {
		background-position: center top 2.933vw;
		background-size: 18.933vw 12vw;
	}

	.gnav02 .gnav__list--item-inner {
		background-position: center top 2.4vw;
		background-size: 13.067vw 13.6vw;
	}

	.gnav03 .gnav__list--item-inner {
		background-position: center top 3.733vw;
		background-size: 14.667vw 11.467vw;
	}

	.gnav04 .gnav__list--item-inner {
		background-position: center top 2.667vw;
		background-size: 15.733vw 12.267vw;
	}

	.gnav05 .gnav__list--item-inner {
		background-position: center top 2.667vw;
		background-size: 14.667vw 12.267vw;
	}

	.gnav06 .gnav__list--item-inner {
		background-position: center top 4.267vw;
		background-size: 15.467vw 10.4vw;
	}

	.gnav07 .gnav__list--item-inner {
		background-position: center top 3.467vw;
		background-size: 12.267vw 11.733vw;
	}

	.gnav08 .gnav__list--item-inner {
		background-position: center top 4.8vw;
		background-size: 12.8vw 9.6vw;
	}
}

/* ----------------------------------------------------
	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(odd) .section__image {
	margin-left: auto;
}

.section__content {
	background-color: rgba(var(--wht), 0.95);
	width: 42.344vw;
	height: 42.344vw;
	border-radius: 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;
}

.section:nth-child(even) .section__content {
	right: -4.219vw;
}

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

.section__content--title .en {
	margin-bottom: 2.344vw;
	line-height: 1;
	font-family: var(--damion);
	font-size: 1.953vw;
	font-weight: 400;
	display: block;
}

.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: "";
}

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

.section:nth-child(odd) .section__content .object {
	background-image: url(../img/obj-snow01.svg);
	left: 7.109vw;
}

.section:nth-child(even) .section__content .object {
	background-image: url(../img/obj-snow02.svg);
	right: 7.109vw;
}

/* icon */
#travel .section__content--title {
	background-image: url(../img/icon-travel.svg);
	background-size: 6.641vw auto;
	padding-top: 6.016vw;
}

#xmas .section__content--title {
	background-image: url(../img/icon-xmas.svg);
	background-size: 5.234vw auto;
	padding-top: 7.188vw;
}

#newyear .section__content--title {
	background-image: url(../img/icon-newyear.svg);
	background-size: 5.859vw auto;
	padding-top: 6.328vw;
}

#plan .section__content--title {
	background-image: url(../img/icon-plan.svg);
	background-size: 6.25vw auto;
	padding-top: 6.875vw;
}

#spa .section__content--title {
	background-image: url(../img/icon-spa.svg);
	background-size: 5.859vw auto;
	padding-top: 6.719vw;
}

#taste .section__content--title {
	background-image: url(../img/icon-taste.svg);
	background-size: 5.938vw auto;
	padding-top: 6.172vw;
}

#ski .section__content--title {
	background-image: url(../img/icon-ski.svg);
	background-size: 4.844vw auto;
	padding-top: 6.484vw;
}

#support .section__content--title {
	background-image: url(../img/icon-support.svg);
	background-size: 5.078vw auto;
	padding-top: 4.844vw;
}


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

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

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

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

	.section__content--title .en {
		margin-bottom: 0;
		line-height: 2.5;
		font-family: var(--damion);
		font-size: 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: 91.467vw;
		height: 18.133vw;
		font-size: 4.533vw;
		border-radius: 18.133vw;
	}

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

	/* object */
	.section__content .object {
		width: 33.6vw;
		height: 25.867vw;
		top: -162.667vw;
	}

	.section:nth-child(odd) .section__content .object {
		background-image: url(../img/obj-snow01.svg);
		right: 4.267vw;
		left: auto;
	}

	.section:nth-child(even) .section__content .object {
		background-image: url(../img/obj-snow02.svg);
		right: auto;
		left: 4.267vw;
	}

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

	#travel .section__content--title {
		background-position: center top 9.6vw;
		background-size: 16.8vw auto;
		padding-top: 9.6vw;
	}

	#xmas .section__content--title {
		background-position: center top 7.2vw;
		background-size: 14.133vw auto;
		padding-top: 7.2vw;
	}

	#newyear .section__content--title {
		background-position: center top 9.067vw;
		background-size: 14.133vw auto;
		padding-top: 9.067vw;
	}

	#plan .section__content--title {
		background-position: center top 7.733vw;
		background-size: 18.133vw auto;
		padding-top: 7.733vw;
	}

	#spa .section__content--title {
		background-position: center top 10.933vw;
		background-size: 14.133vw auto;
		padding-top: 10.933vw;
	}

	#taste .section__content--title {
		background-position: center top 14.667vw;
		background-size: 16.8vw auto;
		padding-top: 14.667vw;
	}

	#ski .section__content--title {
		background-position: center top 8.8vw;
		background-size: 11.733vw auto;
		padding-top: 8.8vw;
	}

	#support .section__content--title {
		background-position: center top 8.8vw;
		background-size: 14.933vw auto;
		padding-top: 8.8vw;
	}
}

/* ----------------------------------------------------
	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;
	}
}