/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--base: "Shippori Mincho", serif;
	--gothic: "Noto Sans JP", sans-serif;
	--Playfair: "Playfair Display", serif;
	--Song: "Song Myung", serif;
	--Tangerine: "Tangerine", cursive;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--pnk: 201, 125, 141;
	--blu: 84, 111, 144;
	--ppl: 109, 77, 131;
	--lav: 173, 120, 174;
	--brn: 128, 59, 45;
	--gift: 82, 17, 11;
	--line: 0, 185, 0;
	--marker: 253, 225, 70;
	--nav: 208, 155, 166;

	--pageTop-right: 1rem;
	--pageTop-bottom: 1rem;
}

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	background: rgb(var(--wht));
	color: rgb(var(--blk));
	font-family: var(--base);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

:where(input, select, textarea, button, label) {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

:where(a) {
	color: inherit;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

:where(a:hover) {
	text-decoration: none;
	opacity: 0.6;
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	display: none;
}

@media screen and (max-width: 768px) {
	.gnav {
		background-color: rgba(var(--nav), 1);
		padding-top: 21.333vw;
		width: 100%;
		height: 100%;
		display: block;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		z-index: 999;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding: 0 4vw;
	}

	.gnav__list--item:not(:last-of-type) {
		border-bottom: solid 1px rgb(var(--wht));
	}

	.gnav__list--item a {
		width: 100%;
		height: 21.333vw;
		color: rgb(var(--wht));
		font-size: 8vw;
		font-weight: 600;
		text-align: center;
		text-decoration: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* is-open */
	body.is-open {
		width: 100vw;
		height: 100vh;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
	}

	.is-open .gnav {
		transform: translateX(0);
	}
}

/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 6.667vw;
		height: 5.067vw;
		display: block;
		position: fixed;
		top: 5.067vw;
		right: 4vw;
		z-index: 1000;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner--item {
		background: rgb(var(--blk));
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 0;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 0;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		transform-origin: 0 0;
	}

	.is-open .toggle__inner--item:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

	.is-open .toggle__inner--item:nth-child(2) {
		opacity: 0;
	}

	.is-open .toggle__inner--item:nth-child(3) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--wht));
	padding: min(6rem, 4.392vw) 0 min(3rem, 2.196vw);
	font-family: var(--gothic);
	position: relative;
	z-index: 2;
}

.footer .telephone {
	text-decoration: none;
}

.footer__note {
	margin: 0 auto min(6rem, 4.392vw);
	width: min(114rem, 83.455vw);
}

.footer__contact {
	margin-bottom: min(4rem, 2.928vw);
	font-weight: 400;
	text-align: center;
}

.footer__contact--title {
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
}

.footer__contact--content {
	line-height: normal;
	font-size: min(4rem, 2.928vw);
	font-weight: 600;
}

.footer__contact--content small {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	display: block;
}

.footer__logo {
	margin: 0 auto min(4rem, 2.928vw);
	width: min(18.7rem, 13.69vw);
}

.footer__hotels {
	margin-bottom: min(4rem, 2.928vw);
	font-weight: 400;
	text-align: center;
}

.footer__hotels--name {
	margin-bottom: min(1rem, 0.732vw);
	font-size: min(2rem, 1.464vw);
}

.footer__hotels--content {
	font-size: min(1.5rem, 1.098vw);
}

.footer__hotels--content address {
	font-size: min(1.6rem, 1.171vw);
}

.footer__sns {
	margin-bottom: min(5rem, 3.66vw);
	display: flex;
	justify-content: center;
}

.footer__sns--item {
	margin: 0 min(3.5rem, 2.562vw);
	width: min(5rem, 3.66vw);
}

.footer__map {
	margin: 0 auto min(4rem, 2.928vw);
	width: min(114rem, 83.455vw);
}

.footer__map iframe {
	width: 100%;
	height: min(36.3rem, 26.574vw);
}

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

	.footer__note {
		margin-bottom: 5.333vw;
		padding: 0 4vw;
		width: 100%;
	}

	.footer__contact {
		margin-bottom: 8vw;
	}

	.footer__contact--title {
		font-size: 4.267vw;
	}

	.footer__contact--content {
		font-size: 6.4vw;
	}

	.footer__contact--content small {
		font-size: 4vw;
	}

	.footer__logo {
		margin-bottom: 8vw;
		width: 39.467vw;
	}

	.footer__hotels {
		margin-bottom: 6.4vw;
	}

	.footer__hotels--name {
		margin-bottom: 1.333vw;
		font-size: 4.267vw;
	}

	.footer__hotels--content {
		font-size: 4vw;
	}

	.footer__hotels--content address {
		font-size: 4.267vw;
	}

	.footer__sns {
		margin-bottom: 7.2vw;
	}

	.footer__sns--item {
		margin: 0 8vw;
		width: 11.733vw;
	}

	.footer__map {
		margin-bottom: 5.333vw;
		width: 100%;
	}

	.footer__map iframe {
		width: 100%;
		height: 49.067vw;
	}
}

/* 
	footer__line 
------------------------------ */
.footer__line {
	margin: 0 auto min(4rem, 2.928vw);
	padding: min(2rem, 1.464vw) min(3.6rem, 2.635vw);
	width: min(69rem, 50.512vw);
	border: solid 1px rgb(var(--blk));
	border-radius: min(1rem, 0.732vw);
}

.footer__line--title {
	margin-bottom: min(1.2rem, 0.878vw);
	padding-bottom: 0.5em;
	color: rgb(var(--line));
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	text-align: center;
	border-bottom: solid 1px rgb(var(--blk));
}

.footer__line--content {
	display: flex;
}

.footer__line--content .logo {
	margin-right: min(3rem, 2.196vw);
	width: min(10.5rem, 7.687vw);
	text-align: center;
}

.footer__line--content .logo img {
	width: min(6.6rem, 4.832vw);
}

.footer__line--content .logo figcaption {
	color: rgb(var(--line));
	font-size: min(1.2rem, 0.878vw);
}

.footer__line--content .detail {
	line-height: normal;
}

.footer__line--content .detail .text {
	margin-bottom: 0.5em;
	font-size: min(2rem, 1.464vw);
}

.footer__line--content .detail .text .marker {
	background: linear-gradient(transparent 60%, rgb(var(--marker)) 60%);
	font-size: min(2.5rem, 1.83vw);
}

.footer__line .link-button {
	background-color: rgb(var(--line));
	background-image: url(../img/icon-link-arrow.svg);
	background-position: center right 1em;
	background-repeat: no-repeat;
	background-size: min(1.5rem, 1.098vw) auto;
	margin: min(1.2rem, 0.878vw) auto 0;
	width: min(39rem, 28.551vw);
	height: min(5rem, 3.66vw);
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.318vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.footer__line {
		margin-bottom: 8vw;
		padding: 6.667vw 4vw;
		width: 80vw;
		border-radius: 2.667vw;
	}

	.footer__line--title {
		margin-bottom: 6.4vw;
		font-size: 4.267vw;
	}

	.footer__line--content {
		display: block;
	}

	.footer__line--content .logo {
		margin: 0 0 5.333vw;
		width: 100%;
		text-align: center;
	}

	.footer__line--content .logo img {
		width: 16vw;
	}

	.footer__line--content .logo figcaption {
		font-size: 2.933vw;
	}

	.footer__line--content .detail {
		margin: 0 auto;
		width: 56vw;
	}

	.footer__line--content .detail .text {
		font-size: 4.8vw;
	}

	.footer__line--content .detail .text .marker {
		font-size: 6.133vw;
	}

	.footer__line .link-button {
		background-position: center right 0.5em;
		background-size: 3.2vw auto;
		margin-top: 5.333vw;
		width: 56vw;
		height: 12vw;
		font-size: 4.267vw;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	margin-bottom: min(3rem, 2.196vw);
	line-height: normal;
	font-size: min(1.7rem, 1.245vw);
	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 {
		margin-bottom: 3.2vw;
		font-size: 4.267vw;
		display: block;
	}

	.footer .hotel-nav::before {
		content: "";
	}

	.footer .hotel-nav__item {
		margin: 0 auto;
		text-align: center;
	}

	.footer .hotel-nav__item:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.footer .hotel-nav__item::before,
	.footer .hotel-nav__item::after {
		content: "|";
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	line-height: normal;
	font-size: min(1.1rem, 0.805vw);
	text-align: center;
}

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