@charset "UTF-8";

/* ----------------------------------------------------
	kv
---------------------------------------------------- */
.kv {
	margin-bottom: 40px;
	display: flex;
	position: relative;
}

.kv__contents {
	background: rgb(var(--lightBlu));
	width: 37.5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.kv__contents--title {
	width: 65%;
}

.kv__contents--lead {
	font-family: var(--mincho);
	font-size: 1.66667vw;
	text-align: center;
}

.kvSlide {
	width: 62.5%;
}

.kvSlide__item {
	position: relative;
}

.kvSlide__item {
	background-repeat: no-repeat;
	width: 61.70179vw;
	height: 42.5vw;
	height: 33.33333vw;
}

.kvSlide__item.shimoda {
	background-image: url(../img/kv01.webp);
	background-position: center bottom;
	background-size: cover;
}

.kvSlide__item.oiso {
	background-image: url(../img/kv02.webp);
	background-position: center center;
	background-size: cover;
}

.kvSlide__item.kawana {
	background-image: url(../img/kv03.webp);
	background-position: center center;
	background-size: cover;
}

.kvSlide__item.kushiro {
	background-image: url(../img/kv04.webp);
	background-position: center bottom;
	background-size: cover;
}

.kvSlide__item img {
	display: none;
}

.kvSlide__item .hotelName {
	line-height: 1;
	color: rgb(var(--wht));
	font-size: 14px;
	font-weight: 600;
	position: absolute;
	right: 1em;
	bottom: 0.5em;
}

.field {
	display: none;
}

@media screen and (max-width: 1100px) {
	.kv {
		margin-bottom: 3.63636vw;
	}

	.kvSlide__item figcaption {
		font-size: 1.27273vw;
	}
}

@media screen and (max-width: 768px) {
	.kv {
		margin-bottom: 4.2vw;
		flex-direction: column-reverse;
	}

	.kv__contents {
		margin: 0 auto;
		width: calc(100% - 12.8vw);
		position: relative;
	}

	.kv__contents--title {
		width: 90vw;
		position: absolute;
		top: -146.66667vw;
		top: -141.33333vw;
		z-index: 2;
	}

	.kv__contents--lead {
		padding: 8vw 0;
		font-size: 5.86667vw;
	}

	.kvSlide {
		width: 100%;
		height: calc(100svh - 17.86667vw);
	}

	.kvSlide__item {
		height: 100%;
		position: relative;
	}

	.slick-list,
	.slick-track {
		height: 100%;
	}

	.kvSlide__item.shimoda {
		background-image: url(../img/kv01_sp.webp);
		background-position: center bottom;
		background-size: cover;
	}

	.kvSlide__item.oiso {
		background-image: url(../img/kv02_sp.webp);
		background-position: right -1px center;
		background-size: cover;
	}

	.kvSlide__item.kawana {
		background-image: url(../img/kv03_sp.webp);
		background-position: right -26.66667vw center;
		background-size: cover;
	}

	.kvSlide__item.kushiro {
		background-image: url(../img/kv04_sp.webp);
		background-position: left bottom;
		background-size: cover;
	}

	.kvSlide__item .hotelName {
		line-height: 1;
		color: rgb(var(--wht));
		font-size: 3.73333vw;
		font-weight: 600;
		position: absolute;
		right: 1em;
		bottom: 0.5em;
	}

	.field {
		color: rgb(var(--wht));
		font-size: 3.2vw;
		font-weight: bold;
		display: flex;
		justify-content: space-around;
		align-items: center;
		position: absolute;
		bottom: 50.66667vw;
		left: -2.4vw;
		transform: rotate(90deg);
	}

	.scroll {
		position: relative;
		animation: down 1.5s infinite;
	}

	.scroll svg {
		width: 10.66667vw;
		height: auto;
		fill: none;
		stroke: rgb(var(--wht));
		stroke-miterlimit: 10;
		position: absolute;
		bottom: 0;
		right: -1.5em;
		transition: 0.2s;
	}

	@keyframes down {
		0% {
			transform: translate(0);
		}

		20% {
			transform: translateX(10px);
		}

		40% {
			transform: translate(0);
		}
	}

	@-webkit-keyframes down {
		0% {
			transform: translate(0);
		}

		20% {
			transform: translateX(10px);
		}

		40% {
			transform: translate(0);
		}
	}
}

/* ----------------------------------------------------
	nav
---------------------------------------------------- */
.nav {
	padding: 0 50px;
}

.nav__list {
	margin: 0 auto;
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
}

.nav__list--item {
	margin-bottom: 5px;
	width: 30%;
}

.nav__list--item:not(:nth-child(3n)) {
	margin-right: 5%;
}

.nav__list--item a {
	padding: 5px 0 0 55px;
	width: 100%;
	height: 70px;
	line-height: 1.5;
	font-weight: bold;
	text-decoration: none;
	border-bottom: solid 5px rgb(var(--lightBlu));
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.nav__list--item a::before,
.nav__list--item a::after {
	position: absolute;
	content: "";
}

.nav__list--item a::before {
	background-position: center;
	background-repeat: no-repeat;
	width: 55px;
	height: 100%;
	top: 0;
	left: 0;
}

.nav__list--item a::after {
	width: 11px;
	height: 11px;
	border-top: solid 2px rgb(var(--blu));
	border-right: solid 2px rgb(var(--blu));
	top: 40%;
	right: 0.5em;
	transform: rotate(135deg);
}

.nav__list--item a .category {
	font-size: 14px;
}

.nav__list--item a .category.c01 {
	color: rgb(var(--orn));
}

.nav__list--item a .category.c02 {
	color: rgb(var(--grn));
}

.nav__list--item a .name {
	color: rgb(var(--nav));
	font-size: 18px;
}

.nav__list--item a.navIcon00::before {
	background-image: url(../img/icon00.webp);
	background-size: 69.32509% auto;
}

.nav__list--item a.navIcon01::before {
	background-image: url(../img/icon01.webp);
	background-size: 61.81818% auto;
}

.nav__list--item a.navIcon02::before {
	background-image: url(../img/icon02.webp);
	background-size: 69.32509% auto;
}

.nav__list--item a.navIcon03::before {
	background-image: url(../img/icon03.webp);
	background-size: 51.22291% auto;
}

.nav__list--item a.navIcon04::before {
	background-image: url(../img/icon04.webp);
	background-size: 58.62909% auto;
}

.nav__list--item a.navIcon05::before {
	background-image: url(../img/icon05.webp);
	background-size: 61.40873% auto;
}

.nav__list--item a.navIcon06::before {
	background-image: url(../img/icon06.webp);
	background-size: 44.70345% auto;
}

.nav__list--item a.navIcon07::before {
	background-image: url(../img/icon07.webp);
	background-size: 46.59745% auto;
}

.nav__list--item a.navIcon08::before {
	background-image: url(../img/icon08.webp);
	background-size: 64.00473% auto;
}

.nav__list--item a.navIcon09::before {
	background-image: url(../img/icon09.webp);
	background-size: 86.34891% auto;
}

@media screen and (max-width: 1100px) {
	.nav {
		padding: 0 4.54545vw;
	}

	.nav__list--item {
		margin-bottom: 0.45455vw;
	}

	.nav__list--item a {
		padding: 0.45455vw 0 0 5vw;
		height: 6.36364vw;
	}

	.nav__list--item a::before {
		width: 5vw;
	}

	.nav__list--item a::after {
		width: 1vw;
		height: 1vw;
	}

	.nav__list--item a .category {
		font-size: 1.27273vw;
	}

	.nav__list--item a .name {
		font-size: 1.63636vw;
	}
}

@media screen and (max-width: 768px) {
	.nav {
		padding: 0 6.4vw;
		justify-content: space-between;
	}

	.nav__list--item {
		margin-bottom: 1.33333vw;
		width: calc((100% - 4.8vw) / 2);
	}

	.nav__list--item:not(:nth-child(3n)) {
		margin-right: auto;
	}

	.nav__list--item:not(:nth-child(even)) {
		margin-right: 4.8vw;
	}

	.nav__list--item a {
		padding: 1.33333vw 0 0 9.33333vw;
		height: 18.66667vw;
	}

	.nav__list--item a::before {
		width: 9.33333vw;
	}

	.nav__list--item a::after {
		width: 2.13333vw;
		height: 2.13333vw;
	}

	.nav__list--item a .category {
		font-size: 3.46667vw;
	}

	.nav__list--item a .name {
		line-height: 1.25;
		font-size: 4vw;
	}
}

/* ----------------------------------------------------
	article
---------------------------------------------------- */
.article {
	padding: 100px 50px 0;
}

.article__category {
	margin: 0 auto;
	width: 1000px;
	display: flex;
	position: relative;
}

.article__category:nth-child(odd) {
	flex-direction: row-reverse;
}

.article__category:not(:last-of-type) {
	margin-bottom: 100px;
}

.article__category--images {
	width: 624px;
}

.article__category--contents {
	background: rgba(var(--yel), 0.8);
	padding: 64px 40px;
	width: 408px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.article__category:nth-child(odd) .article__category--contents {
	left: 0;
}

.article__category--contents .category {
	width: 100px;
	height: 30px;
	color: rgb(var(--wht));
	font-weight: bold;
	border-radius: 0 0 10px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.stay .category {
	background: rgb(var(--orn));
}

.restaurant .category {
	background: rgb(var(--grn));
}

.article__category .details__title {
	margin-bottom: 0.5em;
	font-family: var(--mincho);
	font-family: "Zen Old Mincho", serif;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.article__category .details__text .linkBtn {
	margin-top: 2em;
}

.article__category .details__text .linkBtn a {
	background: rgb(var(--blu));
	margin: 0 auto;
	width: 220px;
	height: 40px;
	color: rgb(var(--wht));
	text-decoration: none;
	border: solid 1px rgb(var(--blu))
}

.article__category .details__text .linkBtn a::before {
	width: 7px;
	height: 7px;
	border-top: solid 1px rgb(var(--wht));
	border-right: solid 1px rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%) rotate(45deg);
	content: "";
}

.article__category .details__text .linkBtn a:hover {
	background: rgb(var(--wht));
	color: rgb(var(--blu));
}

.article__category .details__text .linkBtn a:hover::before {
	border-color: rgb(var(--blu));
}

@media screen and (max-width: 1100px) {
	.article {
		padding: 9.09091vw 4.54545vw 0;
	}

	.article__category {
		width: 90.90909vw;
	}

	.article__category:not(:last-of-type) {
		margin-bottom: 9.09091vw;
	}

	.article__category--images {
		width: 56.72727vw;
	}

	.article__category--contents {
		padding: 5.81818vw 3.63636vw;
		width: 37.09091vw;
	}

	.article__category--contents .category {
		width: 9.09091vw;
		height: 2.72727vw;
		border-radius: 0 0 0.90909vw 0.90909vw;
	}

	.article__category .details__title {
		font-size: 2.54545vw;
	}

	.article__category .details__text .linkBtn a {
		width: 20vw;
		height: 3.63636vw;
	}

	.article__category .details__text .linkBtn a::before {
		width: 0.63636vw;
		height: 0.63636vw;
	}
}

@media screen and (max-width: 768px) {
	.article {
		padding: 15.46667vw 0 0;
	}

	.article__category,
	.article__category:nth-child(odd) {
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.article__category:not(:last-of-type) {
		margin-bottom: 4vw;
	}

	.article__category .category {
		font-size: 3.46667vw;
	}

	.article__category--images {
		margin-right: auto;
		width: 85%;
		position: relative;
		z-index: 2;
	}

	.article__category:nth-child(odd) .article__category--images {
		margin: 0 0 0 auto;
	}

	.article__category--contents {
		margin-left: auto;
		padding: 15.2vw 5.86667vw 6.4vw;
		width: 80%;
		position: relative;
		top: -7.2vw;
		right: auto;
		z-index: 1;
		transform: translateY(0);
	}

	.article__category:nth-child(odd) .article__category--contents {
		margin: 0 auto 0 0;
		left: auto;
	}

	.article__category--contents .category {
		padding: 0 1em;
		width: auto;
		height: 5.6vw;
		border-radius: 5.6vw;
		display: inline-flex;
		position: static;
		transform: translateX(0);
	}

	.article__category .details__title {
		margin-bottom: 0.5em;
		font-family: var(--mincho);
		font-size: 5.33333vw;
		text-align: left;
	}

	.article__category .details__text .text {
		font-size: 3.73333vw;
	}

	.article__category .details__text .linkBtn {
		margin-top: 1em;
	}

	.article__category .details__text .linkBtn a {
		width: 100%;
		height: 12vw;
	}

	.article__category .details__text .linkBtn a::before {
		width: 1.86667vw;
		height: 1.86667vw;
	}
}