/* ----------------------------------------------------
	opening
---------------------------------------------------- */
.opening {
	width: 100%;
	height: 100vh;
	height: 100lvh;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1100;

}

.opening__inner {
	background-image: url(../img/opening.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.opening__inner::before {
	background-color: rgb(var(--red));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -100vw;
	z-index: 1102;
	content: "";
	transition: left 1s ease, top 1s ease;
}

.opening__logo {
	color: rgb(var(--wht));
	width: 24.609vw;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1101;
	transform: translate(-50%, -50%);
	transition: opacity 2.5s ease;
}

.opening__logo.is-visible {
	opacity: 1;
}

.opening__inner.hide-content {
	background-image: none;
}

.opening__logo.is-hidden {
	display: none;
}

.opening__inner.before-cover::before {
	left: 0;
}

.opening__inner.slide-up::before {
	/* top: -100vh; */
	top: -100vh;
}

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

	.opening__logo {
		width: 62.933vw;
	}
}

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

/*
	logo-slide
------------------------------ */
.header .logo-slide {
	background-color: rgb(var(--red));
	height: 100%;
	position: absolute;
	top: 0;
}

.header .logo-slide.left {
	left: 0;
}

.header .logo-slide.right {
	right: 0;
}

.header .logo-slide__wrap {
	width: 60px;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header .logo-slide__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transform: translateZ(0);
}

.header .logo-slide__list--item {
	margin-bottom: 15px;
	width: 25px;
	height: auto;
}

.header .logo-slide__list--item img {
	width: 100%;
}

.header .logo-slide.left .logo-slide__list {
	animation-name: scrolldown;
}

.header .logo-slide.right .logo-slide__list {
	animation-name: scrollUp;
}

@keyframes scrolldown {
	0% {
		transform: translateY(-50%);
	}

	100% {
		transform: translateY(0%);
	}
}

@keyframes scrollUp {
	0% {
		transform: translateY(0%);
	}

	100% {
		transform: translateY(-50%);
	}
}

@media screen and (max-width: 768px) {
	.header .logo-slide {
		height: auto;
		top: auto;
		left: 0;
	}

	.header .logo-slide.left {
		display: none;
	}

	.header .logo-slide.right {
		bottom: 0;
	}

	.header .logo-slide__wrap {
		width: 100%;
		height: 60px;
		flex-direction: row;
	}

	.header .logo-slide__list {
		flex-direction: row;
		animation-duration: 15s;
	}

	.header .logo-slide__list--item {
		margin-right: 15px;
		margin-bottom: 0;
		width: 100%;
	}

	.header .logo-slide__list--item img {
		width: auto;
		height: 5.6vw;
		max-height: 43px;
	}

	.header .logo-slide.right .logo-slide__list {
		animation-name: scrollUp;
	}

	@keyframes scrollUp {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background-color: rgba(var(--wht), 0.9);
	width: 100%;
	line-height: 1;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__container {
	margin: 0 auto;
	padding: 0 min(4rem, 3.125vw);
	width: min(128rem, 100vw);
	height: min(8rem, 6.25vw);
	font-size: min(2.2rem, 1.719vw);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gnav__list,
.gnav__lang {
	display: flex;
}

.gnav__list--item:not(:last-of-type) {
	margin-right: min(4.8rem, 3.75vw);
}

.gnav__lang--item:not(:last-of-type)::after {
	margin-right: 0.25em;
	content: "/";
}

.gnav__list--item a,
.gnav__lang--item a {
	color: rgb(var(--blk));
	text-decoration: none;
}

.gnav a:hover,
.gnav__lang--item span {
	color: rgb(var(--red));
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.gnav {
		background-color: rgb(var(--red));
		padding: 24vw 0 0;
		width: 100%;
		height: 100dvh;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__container {
		width: 100%;
		height: auto;
		height: 100%;
		color: rgb(var(--wht));
		font-size: 9.6vw;
		display: block;
	}

	.gnav__list {
		padding-left: 13.333vw;
	}

	.gnav__lang {
		padding-left: 14.667vw;
	}

	.gnav__list {
		margin-bottom: 16vw;
		display: block;
	}

	.gnav__lang {
		font-size: 5.867vw;
	}

	.gnav__list--item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 13.333vw;
	}

	.gnav__list--item a {
		color: rgb(var(--wht));
	}

	.gnav__lang--item a {
		color: rgba(var(--wht), 0.5);
	}

	.gnav a:hover,
	.gnav__lang--item span {
		color: rgb(var(--wht));
		opacity: 1;
	}

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

	.is-open .gnav {
		height: 100lvh;
		z-index: 999;
		transform: translateX(0);
	}

	.is-open .overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}
}

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgba(var(--wht), 0.9);
		width: 18.667vw;
		height: 18.667vw;
		border-radius: 18.667vw;
		display: block;
		position: fixed;
		top: 2.667vw;
		right: 2.667vw;
		z-index: 1000;
	}

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

	.toggle__inner--item {
		background: rgb(var(--blk));
		width: 9.6vw;
		height: 0.533vw;
		border-radius: 0.533vw;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

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

	.toggle__inner--item:nth-child(2) {
		bottom: 6.667vw;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle {
		background: rgba(var(--wht), 0);
	}

	.is-open .toggle__inner--item {
		background: rgb(var(--wht));
		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) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	section
---------------------------------------------------- */
.section {
	padding: min(15rem, 11.719vw) 0;
	overflow: hidden;
}

.section__content {
	margin: 0 auto;
	width: min(100rem, 78.125vw);
}

.section__title {
	margin-bottom: min(2rem, 1.563vw);
	color: rgb(var(--red));
	font-size: min(8.3rem, 6.484vw);
	position: relative;
}

.section__title.left-line::before {
	background-color: rgb(var(--red));
	width: 100vw;
	height: min(0.2rem, 0.156vw);
	position: absolute;
	top: 50%;
	right: min(105rem, 82.031vw);
	transform: translateY(-50%);
	content: "";
}

.section__head {
	margin-bottom: min(4rem, 3.125vw);
	line-height: normal;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section__head--lead {
	color: rgb(var(--gra));
	font-size: min(2.5rem, 1.953vw);
}

.section__head--date {
	width: min(40rem, 31.25vw);
	height: min(3rem, 2.344vw);
	color: rgb(var(--red));
	font-size: min(2.2rem, 1.719vw);
	font-weight: 400;
	border: solid 1px rgb(var(--red));
	display: flex;
	justify-content: center;
	align-items: center;
}

.section__slide {
	margin-bottom: min(5rem, 3.906vw)
}

.section__slide .slick-dots {
	justify-content: flex-end;
}

.section__slide .slick-dots li button {
	background-color: rgb(var(--blk));
	border-color: rgb(var(--blk));
}

.section__slide .slick-dots li.slick-active button {
	background-color: rgb(var(--red));
	border-color: rgb(var(--red));
}

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

	.section__content {
		width: 100%;
	}

	.section__title {
		margin-bottom: 6.4vw;
		font-size: 12.8vw;
		text-align: center;
	}

	.section__title.left-line::before {
		display: none;
	}

	.section__head {
		margin-bottom: 6.4vw;
		text-align: center;
		display: block;
	}

	.section__head--lead {
		margin-bottom: 6.4vw;
		font-size: 6.667vw;
	}

	.section__head--date {
		margin: 0 auto;
		width: 80vw;
		height: 8vw;
		font-size: 5.867vw;
		letter-spacing: -0.005em;
	}

	.section__slide {
		margin-bottom: 21.333vw;
	}

	.section__slide .slick-dots {
		justify-content: center;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about .section__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about__logo {
	width: min(39.6rem, 30.938vw);
}

.about__content {
	width: min(54.2rem, 42.344vw);
}

.about__content--title {
	margin-bottom: min(2.6rem, 2.031vw);
	line-height: 1.75;
	font-size: min(2.9rem, 2.266vw);
	font-weight: 700;
}

.about__content--text {
	line-height: 2.5;
	font-size: min(1.6rem, 1.25vw);
}

@media screen and (max-width: 768px) {
	.about .section__content {
		text-align: center;
		display: block;
	}

	.about__logo {
		margin: 0 auto 16vw;
		width: 64vw;
	}

	.about__content {
		width: 100%;
	}

	.about__content--title {
		margin-bottom: 8vw;
		line-height: 1.85;
		font-size: 5.6vw;
	}

	.about__content--text {
		line-height: 2.12;
		font-size: 4.267vw;
	}
}

/* ----------------------------------------------------
	bayside
---------------------------------------------------- */
.bayside {
	background-color: rgb(var(--red));
	padding: min(13rem, 10.156vw) 0;
	color: rgb(var(--wht));
}

.bayside .section__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bayside__image {
	width: min(68rem, 53.125vw);
	position: relative;
}

.bayside__title {
	color: rgb(var(--beg));
	font-size: min(2.2rem, 1.719vw);
	position: absolute;
	top: max(-2.6rem, -2.031vw);
	left: 0;
}

.bayside__content {
	width: min(27rem, 21.094vw);
}

.bayside__content--title {
	margin-bottom: min(2.2rem, 1.719vw);
	font-size: min(3.6rem, 2.813vw);
}

.bayside__content--title .jp {
	line-height: 2;
	font-family: var(--gothic);
	font-size: min(2.1rem, 1.641vw);
	display: block
}

.bayside__content--text {
	line-height: 1.9;
	font-size: min(1.6rem, 1.25vw);
}

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

	.bayside .section__content {
		text-align: center;
		display: block;
	}

	.bayside__image {
		margin-bottom: 16vw;
		width: 100%;
	}

	.bayside__title {
		margin-bottom: 4vw;
		font-size: 5.6vw;
		position: static;
	}

	.bayside__content {
		width: 100%;
	}

	.bayside__content--title {
		margin-bottom: 6.4vw;
		font-size: 9.6vw;
	}

	.bayside__content--title .jp {
		line-height: 1.8;
		font-size: 5.6vw;
	}

	.bayside__content--text {
		font-size: 4.267vw;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.plan.type-top {
	align-items: flex-start;
}

.plan:not(:last-of-type) {
	margin-bottom: min(8rem, 6.25vw);
	padding-bottom: min(3rem, 2.344vw);
}

.plan__content {
	width: min(69rem, 53.906vw);
}

.plan__content--title {
	margin-bottom: min(3rem, 2.344vw);
	line-height: normal;
	font-size: min(2.1rem, 1.641vw);
	font-weight: 400;
	display: flex;
	align-items: center;
}

.plan__content--title .category {
	background-color: rgb(var(--red));
	margin-right: min(2rem, 1.563vw);
	color: rgb(var(--wht));
	width: min(13rem, 10.156vw);
	height: min(3rem, 2.344vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.plan__content--title .text {
	color: rgb(var(--red));
}

.plan__detail {
	margin-bottom: min(3rem, 2.344vw);
}

.plan__detail.bottom-line {
	margin-bottom: 0;
	padding-bottom: min(3rem, 2.344vw);
	border-bottom: solid 1px rgb(var(--blk));
}

.plan__detail--title {
	margin-bottom: min(1.3rem, 1.016vw);
	line-height: normal;
	font-size: min(3.8rem, 2.969vw);
	font-weight: 500;
}

.plan__detail--text {
	font-size: min(1.6rem, 1.25vw);
}

.plan__detail--text .benefits {
	margin-top: 1em;
	font-size: min(1.3rem, 1.016vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.plan {
		margin: 0 auto;
		width: 85.333vw;
		display: block;
	}

	.plan:not(:last-of-type) {
		margin-bottom: 16vw;
		padding-bottom: 16vw;
		border-bottom: solid 1px rgb(var(--blk));
	}

	.plan__content {
		width: 100%;
	}

	.plan__content--title {
		margin-bottom: 4.267vw;
		font-size: 5.867vw;
		text-align: center;
		display: block;
	}

	.plan__content--title .category {
		margin: 0 auto 4.267vw;
		width: 34.667vw;
		height: 8.8vw;
	}

	.plan__content--title .text {
		font-size: 3.467vw;
	}

	.plan__detail,
	.plan__detail.bottom-line {
		margin-bottom: 10.667vw;
		padding-bottom: 0;
		border-bottom: none;
	}

	.plan__detail--title {
		margin-bottom: 4.267vw;
		font-size: 7.467vw;
		text-align: center;
	}

	.plan__detail--text {
		font-size: 4.267vw;
	}

	.plan__detail--text .benefits {
		font-size: 3.2vw;
		text-align: center;
	}
}

/*
	price
------------------------------ */
.plan__price--content:not(:last-of-type) {
	margin-bottom: min(4rem, 3.125vw);
}

.plan__price--date {
	color: rgb(var(--red));
	font-size: min(1.6rem, 1.25vw);
}

.plan .price {
	font-size: min(1.6rem, 1.25vw);
}

.plan .price__detail {
	line-height: normal;
}

.plan .price__detail b {
	font-size: min(3.4rem, 2.656vw);
	font-weight: 500;
}

.plan .price__memo {
	margin-top: 0.5em;
	font-size: min(1.3rem, 1.016vw);
	font-weight: 400;
}

.plan__price--content .link-button {
	margin-top: min(3rem, 2.344vw);
	width: min(27rem, 21.094vw);
	color: rgb(var(--red));
	border-color: rgb(var(--red));
}

.plan__price--content .link-button::after {
	background-color: rgb(var(--red));
}

.plan__price--content .link-button:hover {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
	opacity: 1;
}

.plan__price--content .link-button:hover::after {
	background-color: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.plan__price--content:not(:last-of-type) {
		margin-bottom: 10.667vw;
	}

	.plan__price--date {
		margin-bottom: 1.6vw;
		font-size: 3.733vw;
		text-align: center;
	}

	.plan .price {
		font-size: 4.267vw;
		display: flex;
		justify-content: center;
		align-items: baseline;
	}

	.plan .price__title {
		margin-right: 0.5em;
	}

	.plan .price__detail b {
		font-size: 9.067vw;
	}

	.plan .price__memo {
		margin-top: 0.5em;
		font-size: 3.467vw;
		text-align: center;
	}

	.plan__price--content .link-button {
		margin-top: 8vw;
		width: 100%;
	}
}

/*
	accordion
------------------------------ */
.plan .accordion {
	font-size: min(1.6rem, 1.25vw);
}

.plan .accordion__title {
	background-color: rgb(var(--beg));
	padding: 0 min(1.6rem, 1.25vw);
	height: min(4rem, 3.125vw);
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.plan .accordion__title::before,
.plan .accordion__title::after {
	background-color: rgb(var(--blk));
	width: min(1.6rem, 1.25vw);
	height: 1px;
	position: absolute;
	top: 50%;
	right: min(1.6rem, 1.25vw);
	transform: translateY(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.plan .accordion__title::after {
	transform: translateY(-50%) rotate(270deg);
}

.plan .is-active .accordion__title::after {
	transform: translateY(-50%) rotate(0);
}

.plan .accordion__detail {
	padding: min(3rem, 2.344vw) min(2rem, 1.563vw);
}

.plan .menu__title {
	margin-bottom: min(4rem, 3.125vw);
}

.plan .menu__detail--title {
	margin-left: 1.25em;
	text-indent: -1.25em;
}

.plan .menu__detail--title::before {
	color: rgb(var(--red));
	content: "●";
}

.plan .menu__detail--title:not(:first-of-type) {
	margin-top: min(4rem, 3.125vw);
}

.plan .menu__detail--content {
	padding: 0 1.25em;
}

.plan .menu-list {}

.plan .menu-list__item {}

.plan .menu-list__item:not(:last-of-type) {
	margin-bottom: min(4rem, 3.125vw);
	padding-bottom: min(4rem, 3.125vw);
	border-bottom: solid 1px rgb(var(--blk));
}

.plan .menu-list__item--image {
	margin-bottom: min(2rem, 1.563vw);
}

.menu-list__item--title {
	font-size: min(2.5rem, 1.953vw);
}

.menu-list__item--date {
	margin-bottom: min(1rem, 0.781vw);
	color: rgb(var(--red));
	font-size: min(1.6rem, 1.25vw);
}

@media screen and (max-width: 768px) {
	.plan .accordion {
		margin-bottom: 10.667vw;
		font-size: 4.267vw;
	}

	.plan .accordion__title {
		padding: 1.6vw 4.267vw;
		height: auto;
		line-height: normal;
	}

	.plan .accordion__title::before,
	.plan .accordion__title::after {
		width: 4.267vw;
		right: 4.267vw;
	}

	.plan .accordion__detail {
		padding: 6.4vw 0;
	}

	.plan .menu__title {
		margin-bottom: 8vw;
	}

	.plan .menu__detail--title {
		margin-left: 1em;
		text-indent: -1em;
	}

	.plan .menu__detail--title:not(:first-of-type) {
		margin-top: 8vw;
	}

	.plan .menu-list__item:not(:last-of-type) {
		margin-bottom: 10.667vw;
		padding-bottom: 10.667vw;
	}

	.plan .menu-list__item--image {
		margin-bottom: 5.867vw;
	}

	.menu-list__item--title {
		font-size: 5.6vw;
		text-align: center;
	}

	.menu-list__item--date {
		margin-bottom: 8vw;
		font-size: 3.733vw;
		text-align: center;
	}
}

/* ----------------------------------------------------
	others
---------------------------------------------------- */
.others {
	margin-top: min(8rem, 6.25vw);
	padding: min(5rem, 3.906vw);
	border-radius: min(0.4rem, 0.313vw);
}

.others__title {
	margin-bottom: min(4rem, 3.125vw);
	font-size: min(3.6rem, 2.813vw);
	text-align: center;
}

.others__list--item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.others__list--item:not(:last-of-type) {
	margin-bottom: min(4rem, 3.125vw);
	padding-bottom: min(4rem, 3.125vw);
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

.others__image {
	width: min(47rem, 36.719vw);
}

.others__content {
	width: calc(100% - min(47rem, 36.719vw) - min(5rem, 3.906vw));
}

.others__content--title {
	margin-bottom: min(2rem, 1.563vw);
	line-height: normal;
	font-weight: 500;
}

.others__content--date {
	margin-bottom: min(2rem, 1.563vw);
	padding: 0 min(2rem, 1.563vw);
	width: auto;
	height: min(3rem, 2.344vw);
	color: rgb(var(--red));
	font-size: min(2.2rem, 1.719vw);
	justify-content: center;
	align-items: center;
}

.others__content--date.pc {
	display: inline-flex;
}

.others__content--date.sp {
	display: none;
}

.others__content--text {
	margin-bottom: 1em;
	font-size: min(1.6rem, 1.25vw);
}

.others__content--table {
	font-size: min(1.6rem, 1.25vw);
	font-weight: 500;
}

.others__content--th {
	font-weight: 500;
	vertical-align: top;
	white-space: nowrap;
}

.others__content--th::before {
	content: "●";
}

.others__content--td {
	padding-left: 1em;
	font-weight: 500;
}

.others__content--table.price {
	width: 100%;
}

.others__content--table.price th,
.others__content--table.price td {
	vertical-align: baseline;
}

.others__content--table.price td {
	font-size: min(2.5rem, 1.953vw);
	text-align: right;
}

.others__content--place,
.others__content .note {
	margin-top: 1em;
	font-size: min(1.3rem, 1.016vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.others {
		margin: 16vw auto 0;
		padding: 10.667vw 5.333vw;
		width: 85.333vw;
		border-radius: 1.067vw;
	}

	.others__title {
		margin-bottom: 4.267vw;
		font-size: 9.6vw;
	}

	.others__list--item {
		display: block;
		position: relative;
	}

	.others__list--item:not(:last-of-type) {
		margin-bottom: 10.667vw;
		padding-bottom: 10.667vw;
	}

	.others__image {
		margin-bottom: 4.267vw;
		width: 100%;
	}

	.others__content {
		width: 100%;
	}

	.others__content--title {
		margin-bottom: 4.267vw;
		text-align: center;
	}

	.others__content--date {
		margin: 0 auto 4.267vw;
		padding: 1.067vw 0;
		width: 69.333vw;
		height: auto;
		line-height: normal;
		font-size: 5.867vw;
		text-align: center;
	}

	.others__content--date.pc {
		display: none;
	}

	.others__content--date.sp {
		display: flex;
	}

	.others__content--text,
	.others__content--table {
		font-size: 4.267vw;
	}

	.others__content--table,
	.others__content--table tbody,
	.others__content--row,
	.others__content--th,
	.others__content--td {
		display: block;
	}

	.others__content--th {
		font-weight: 500;
		vertical-align: top;
	}

	.others__content--table.price th,
	.others__content--table.price td {
		vertical-align: middle;
	}

	.others__content--table.price td {
		font-size: 6.667vw;
		text-align: left;
	}

	.others__content--place,
	.others__content .note {
		font-size: 3.467vw;
	}
}

/* ----------------------------------------------------
	cocktail
---------------------------------------------------- */
.cocktail {
	border: solid 1px rgb(var(--red));
}

.cocktail .others__title {
	color: rgb(var(--red));
}

.cocktail .others__content--title {
	font-size: min(3.8rem, 2.969vw);
}

.cocktail .others__content--date {
	border: solid 1px rgb(var(--red));
}

.cocktail .others__content--th::before {
	color: rgb(var(--red));
}

@media screen and (max-width: 768px) {
	.cocktail .others__content--title {
		font-size: 7.467vw;
	}
}

/* ----------------------------------------------------
	event
---------------------------------------------------- */
.event {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
}

.event .others__content--title {
	font-size: min(2.5rem, 1.953vw);
}

.event .others__list--item:nth-child(odd) {
	flex-direction: row-reverse;
}

.ecent .others__list--item:not(:last-of-type) {
	border-bottom-color: rgb(var(--wht));
}

.event .others__content--date {
	background-color: rgb(var(--beg));
}

.event .others__content--th::before {
	color: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.event .others__content--title {
		font-size: 6.667vw;
	}
}

/* ----------------------------------------------------
	xmas
---------------------------------------------------- */
.xmas {
	background-color: rgb(var(--bg));
}

.xmas .plan.type-top .price {
	padding-top: min(9.7rem, 7.578vw);
}

@media screen and (max-width: 768px) {
	.xmas .plan.type-top .price {
		padding-top: 0;
	}
}

/* ----------------------------------------------------
	year
---------------------------------------------------- */
.year {}

.year .accordion {
	padding-top: min(13.5rem, 10.547vw);
}


.year ul.type1 li.star {
	margin-bottom: min(4rem, 3.125vw);
}

@media screen and (max-width: 768px) {
	.year .accordion {
		padding-top: 0;
	}
}

/* ----------------------------------------------------
	tea
---------------------------------------------------- */
.tea {
	background-color: rgb(var(--bg));
}

.tea .menu {
	padding-bottom: min(4rem, 3.125vw);
	font-size: min(1.6rem, 1.25vw);
	border-bottom: solid 1px rgb(var(--blk));
}

@media screen and (max-width: 768px) {
	.plan .menu {
		padding-bottom: 10.667vw;
		font-size: 4.267vw;
		border-bottom: none;
	}
}

/* ----------------------------------------------------
	hotel
---------------------------------------------------- */
.hotel {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
	padding: calc(min(19.3rem, 15.078vw) + 60px) 0;
	text-align: center;
	position: relative;
}

.hotel .section__title {
	margin-bottom: min(8rem, 6.25vw);
	color: rgb(var(--beg));
}

.hotel .section__title .jp {
	margin-top: min(4.8rem, 3.75vw);
	font-size: min(2.5rem, 1.953vw);
	font-weight: 500;
	display: block;
}

.hotel__lead {
	margin-bottom: min(10rem, 7.813vw);
	line-height: 1.9;
	font-size: min(2.1rem, 1.641vw);
	font-weight: 400;
}

.hotel__kv {
	margin-bottom: min(7rem, 5.469vw);
}

.hotel .section__content {
	display: flex;
	justify-content: space-between;
}

.hotel__image {
	width: calc((100% - min(10rem, 7.813vw)) / 3);
}

.hotel__image:not(:last-of-type) {
	margin-right: min(5rem, 3.906vw);
}

.hotel__image .caption {
	margin-top: min(2.5rem, 1.953vw);
	font-size: min(1.6rem, 1.25vw);
}

@media screen and (max-width: 768px) {
	.hotel {
		padding: calc(23vw + 60px) 0;
	}

	.hotel .section__title {
		margin-bottom: 16vw;
	}

	.hotel .section__title .jp {
		margin-top: 6.4vw;
		font-size: 6.667vw;
	}

	.hotel__lead {
		margin-bottom: 16vw;
		font-size: 4.267vw;
	}

	.hotel__kv {
		margin-bottom: 16vw;
	}

	.hotel .section__content {
		width: 85.333vw;
		display: block;
	}

	.hotel__image {
		width: 100%;
	}

	.hotel__image:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 10.667vw;
	}

	.hotel__image .caption {
		margin-top: 5.333vw;
		font-size: 4.267vw;
	}
}

/*
	logo-slide
------------------------------ */
.hotel .logo-slide {
	background-color: rgb(var(--wht));
	width: 100%;
	position: absolute;
	left: 0;
}

.hotel .logo-slide.top {
	top: 0;
}

.hotel .logo-slide.bottom {
	bottom: 0;
}

.hotel .logo-slide__wrap {
	height: 60px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hotel .logo-slide__list {
	display: flex;
	align-items: center;
	animation: scrollLogo 35s linear infinite;
}

.hotel .logo-slide__list--item {
	margin-right: 15px;
	width: 1280px;
}

.hotel .logo-slide__list--item img {
	width: 100%;
}

@keyframes scrollLogo {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 768px) {

	/* .hotel .logo-slide.top {
		display: none;
	}
 */
	.hotel .logo-slide__list {
		animation: scrollLogo 15s linear infinite;
	}

	.hotel .logo-slide__list--item {
		width: 100vw;
	}
}

/* ----------------------------------------------------
	information
---------------------------------------------------- */
.information {
	background-color: rgb(var(--gra));
	color: rgb(var(--wht));
	text-align: center;
}

.information .section__title {
	margin-bottom: min(4.5rem, 3.516vw);
	color: rgb(var(--beg));
}

.information__content {
	font-size: min(2.1rem, 1.641vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.information__content {
		font-size: 4.267vw;
	}

	.information .section__title {
		margin-bottom: 6.4vw;
	}
}

/*
	inquiries
------------------------------ */
.inquiries__content--tel {
	font-size: min(3.4rem, 2.656vw);
}

@media screen and (max-width: 768px) {
	.inquiries__content--tel {
		font-size: 6.667vw;
	}
}

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

.access .link-button {
	margin: min(5rem, 3.906vw) auto;
	width: min(30rem, 23.438vw);
	border-color: rgb(var(--wht));
}

.access .link-button::after {
	background-color: rgb(var(--wht));
}

.access__map {
	margin: 0 auto;
	width: min(80rem, 62.5vw);
}

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

	.access .link-button {
		margin: 8vw auto;
		width: 85.333vw;
	}

	.access__map {
		width: 85.333vw;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: min(8rem, 6.25vw) 0 min(5rem, 3.906vw);
}

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

/* 
	note
------------------------------ */
.footer__note {
	margin: 0 auto min(13rem, 10.156vw);
	width: min(84.3rem, 65.859vw);
}

.footer__note--title {
	margin-top: 1em;
	font-size: min(1.3rem, 1.016vw);
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.footer__note {
		margin-bottom: 32vw;
		padding: 0 6.4vw;
		width: 100%;
	}

	.footer__note--title {
		font-size: 3.2vw;
	}
}

/* 
	footer__hotel 
------------------------------ */
.footer__hotel {
	margin-bottom: min(8.5rem, 6.641vw);
}

.footer__hotel--logo {
	margin: 0 auto min(8.5rem, 6.641vw);
	width: min(20rem, 15.625vw);
}

.footer__hotel--sns {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__hotel--sns-item {
	margin: 0 min(2.5rem, 1.953vw);
	width: min(5rem, 3.906vw);
}

@media screen and (max-width: 768px) {
	.footer__hotel {
		margin-bottom: 20vw;
	}

	.footer__hotel--logo {
		margin-bottom: 20vw;
		width: 53.333vw;
	}

	.footer__hotel--sns-item {
		margin: 0 6.667vw;
		width: 13.333vw;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	margin-bottom: min(3rem, 2.344vw);
	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 {}

.footer .hotel-nav__item a {
	padding: 0 1em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		padding: 6.4vw 0;
		font-size: 4.267vw;
		text-align: center;
		display: block;
	}

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

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

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

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

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