/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background-image: url(../img/header-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 60vw;
	position: relative;
}

.header__title {
	width: 53.75vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.header {
		background-image: url(../img/header-bg_sp.webp);
		height: 106.667vw;
	}

	.header__title {
		width: 100%;
	}
}

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background-color: rgb(var(--red));
	padding: min(1.5rem, 1.172vw) 0;
	color: rgb(var(--wht));
	position: sticky;
	top: 0;
	z-index: 10;
}

.gnav__list {
	margin: 0 auto;
	width: min(104rem, 81.25vw);
	display: flex;
}

.gnav__list--item {
	width: 20%;
	height: min(10.4rem, 8.125vw);
}

.gnav__list--item a {
	height: 100%;
	line-height: 1.25;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

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

.gnav__list--item a .eng {
	line-height: 1;
	font-size: min(1.6rem, 1.25vw);
}

.gnav__list--item a svg {
	width: min(2.4rem, 1.875vw);
	fill: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.gnav {
		padding: 0;
		position: relative;
	}

	.gnav::before {
		background-color: rgb(var(--wht));
		width: 100%;
		height: 1px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "";
	}

	.gnav__list {
		width: 87.2vw;
		flex-wrap: wrap;
		justify-content: center;
	}

	.gnav__list--item {
		width: 29.067vw;
		height: 24.533vw;
		border: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.gnav__list--item a {
		width: 100%;
		height: 17.067vw;
		font-size: 3.733vw;
	}

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

	.gnav__list--item:nth-child(3) a {
		border-right: none;
	}

	.gnav__list--item a .eng {
		font-size: 3.2vw;
	}

	.gnav__list--item a svg {
		width: 5.333vw;
	}
}

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

.section__title {
	margin: 0 auto min(3.2rem, 2.5vw);
	width: min(108rem, 84.375vw);
	line-height: normal;
	font-family: var(--mincho);
	font-size: min(4rem, 3.125vw);
	font-weight: 400;
}

.section__title .eng {
	margin-bottom: min(1.6rem, 1.25vw);
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

.section__title .small {
	margin-top: min(1.6rem, 1.25vw);
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

.section .container {
	margin: 0 auto;
	width: min(86.4rem, 67.5vw);
}

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

	.section__title {
		margin-bottom: 5.333vw;
		/* padding: 0 5.333vw; */
		width: 100%;
		font-size: 6.4vw;
	}

	.section__title .eng {
		margin-bottom: 2.667vw;
		font-size: 3.2vw;
	}

	.section__title .small {
		margin-top: 2.667vw;
		font-size: 3.733vw;
	}

	.section .container {
		width: 100%;
	}
}

/* ----------------------------------------------------
	accordion
---------------------------------------------------- */
.accordion:not(:last-of-type) {
	margin-bottom: min(3.2rem, 2.5vw);
}

.accordion__switch {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.accordion__switch--symbol {
	padding-right: min(3.2rem, 2.5vw);
	line-height: 1;
	font-weight: 400;
	position: absolute;
	top: 50%;
	right: min(2.4rem, 1.875vw);
	transform: translateY(-50%);
}

.accordion__switch--symbol::before,
.accordion__switch--symbol::after {
	background-color: rgb(var(--red-dark));
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}

.accordion__switch--symbol::before {
	width: min(1.6rem, 1.25vw);
	height: min(0.2rem, 0.156vw);
	right: 0;
	transform: translateY(-50%);
}

.accordion__switch--symbol::after {
	width: min(0.2rem, 0.156vw);
	height: min(1.6rem, 1.25vw);
	top: 50%;
	right: min(0.7rem, 0.547vw);
	transition: all 0.5s ease 0s;
}

.accordion__content {
	display: none;
}

.accordion.is-accordion-open .accordion__switch--symbol::after {
	opacity: 0;
}

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

	.accordion__switch--symbol {
		padding-right: 5.867vw;
		font-size: 2.933vw;
		right: 3.733vw;
	}

	.accordion__switch--symbol::before {
		width: 4.267vw;
		height: 2px;
	}

	.accordion__switch--symbol::after {
		width: 2px;
		height: 4.267vw;
		right: 1.867vw;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background-image: url(../img/about-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about .container {
	margin: 0 auto;
	width: min(104rem, 81.25vw);
	font-family: var(--mincho);
	position: relative;
}

.about__title {
	margin-bottom: min(3.2rem, 2.5vw);
	font-size: min(4rem, 3.125vw);
	font-weight: 400;
}

.about__text {
	line-height: 2.5;
	font-size: min(1.8rem, 1.406vw);
}

.about .link-circle {
	border: solid 1px rgb(var(--red-dark));
	position: absolute;
	right: min(14rem, 10.938vw);
	bottom: max(-1rem, -0.781vw);
}

.about .link-circle svg {
	stroke: rgb(var(--red-dark));
}

@media screen and (max-width: 768px) {
	.about {
		background-image: url(../img/about-bg_sp.webp);
		padding-bottom: 10.667vw;
	}

	.about .container {
		width: 100%;
	}

	.about__title {
		margin-bottom: 5.333vw;
		font-size: 6.4vw;
	}

	.about__text {
		margin-bottom: 9.6vw;
		line-height: 2;
		font-size: 3.733vw;
	}

	.about .link-circle {
		margin: 0 auto;
		position: static;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	background-color: rgb(var(--red-dark));
	background-image: url(../img/plan-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: min(8rem, 6.25vw);
	padding-bottom: min(8rem, 6.25vw);
	color: rgb(var(--wht));
}

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

.plan__nav {
	margin: 0 auto min(8rem, 6.25vw);
	width: min(76rem, 59.375vw);
	display: flex;
	justify-content: space-between;
}

.plan__nav .link-circle {
	background-color: rgba(64, 32, 25, 0.4);
	border: solid 1px rgb(var(--wht));
}

.plan__nav .link-circle svg {
	stroke: rgb(var(--wht));
}

.plan .container {
	margin-bottom: min(8rem, 6.25vw);
}

.plan__content {
	margin-bottom: min(11.2rem, 8.75vw);
	font-family: var(--mincho);
}

.plan__content--title {
	margin-bottom: 1em;
	line-height: normal;
	font-size: min(3.2rem, 2.5vw);
	text-align: center;
}

.plan__content--detail {
	background-color: rgba(64, 32, 25, 0.4);
	padding: min(3.2rem, 2.5vw) 0;
	font-size: min(2.4rem, 1.875vw);
	border: solid 1px rgb(var(--wht));
	display: flex;
	justify-content: center;
	align-items: center;
}

.plan__title {
	margin: 0 auto min(3.2rem, 2.5vw);
	width: min(86.4rem, 67.5vw);
	line-height: normal;
	font-family: var(--mincho);
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
}

.plan__title .small {
	margin-top: min(0.8rem, 0.625vw);
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

@media screen and (max-width: 768px) {
	.plan {
		background-image: url(../img/plan-bg_sp.webp);
		padding-top: 10.667vw;
		padding-bottom: 10.667vw;
	}

	.plan .section__title {
		margin-bottom: 10.667vw;
	}

	.plan__nav {
		margin-bottom: 0;
		width: 100%;
		flex-wrap: wrap;
	}

	.plan__nav .link-circle {
		margin-bottom: 10.667vw;
		width: 42.667vw;
		height: 42.667vw;
	}

	.plan .container,
	.plan__content {
		margin-bottom: 10.667vw;
	}

	.plan__content--title {
		font-size: 5.333vw;
	}

	.plan__content--detail {
		padding: 6.4vw 0;
		font-size: 3.733vw;
	}

	.plan__title {
		margin: 0 0 1em;
		width: 100%;
		font-size: 5.333vw;
	}

	.plan__title .small {
		margin-top: 2.667vw;
		font-size: 3.733vw;
	}
}

/*
	point
------------------------------ */
.point {
	margin-bottom: min(8rem, 6.25vw);
}

.point__title {
	margin-bottom: 1em;
	line-height: normal;
	font-family: var(--mincho);
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
	text-align: center;
}

.point__content {
	background-color: rgb(var(--wht));
	padding: min(4rem, 3.125vw) min(8.8rem, 6.875vw);
	color: rgb(var(--key));
	border-radius: min(3.2rem, 2.5vw);
}

.point__content--image {
	margin-bottom: min(6.8rem, 5.313vw);
}

.point__content--detail {
	line-height: normal;
	font-family: var(--mincho);
	text-align: center;
}

.point__content--detail .title {
	margin-bottom: min(2rem, 1.563vw);
	color: rgb(var(--red-dark));
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
}

.point__content--detail .title__inner {
	margin-right: min(3.2rem, 2.5vw);
	font-size: min(2.4rem, 1.875vw);
}

.point__content--detail .text {
	margin-bottom: min(2.4rem, 1.875vw);
	line-height: 1.8;
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
}

.point__content--detail .link-button {
	margin-top: min(2.4rem, 1.875vw);
	font-family: var(--gothic);
}

/* slick */
.point .slick-dots {
	justify-content: center;
	top: min(44rem, 34.375vw);
}

.point .slick-dots li:not(:last-of-type) {
	margin-right: min(3.2rem, 2.5vw);
}

.point .slick-arrow {
	background-color: rgb(var(--red-dark));
	width: min(3.2rem, 2.5vw);
	height: min(4rem, 3.125vw);
	top: min(18.8rem, 14.688vw);
	transform: translateY(0);
}

.point .slick-prev {
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	left: max(-5.6rem, -4.375vw);
}

.point .slick-next {
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	right: max(-5.6rem, -4.375vw);
}

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

	.point__title {
		font-size: 5.333vw;
	}

	.point__content {
		padding: 5.333vw 0;
		border-radius: 8.533vw;
	}

	.point__content--image {
		margin: 0 auto 10.667vw;
		width: calc(100% - 10.133vw * 2);
	}

	.point__content--detail .title {
		margin-bottom: 5.333vw;
		font-size: 6.4vw;
		flex-direction: column;
	}

	.point__content--detail .title__inner {
		margin: 0 0 5.333vw;
		font-size: 4.267vw;
	}

	.point__content--detail .text {
		margin-bottom: min(2.4rem, 1.875vw);
		padding: 0 10.133vw;
		padding: 0 9.6vw;
		font-size: 3.733vw;
	}

	.point__content--detail .note {
		padding: 0 10.133vw;
		text-align: left;
	}

	.point__content--detail .link-button {
		margin: 5.333vw auto 0;
		width: 69.333vw;
	}

	/* slick */
	.point .slick-dots {
		top: 45.333vw;
	}

	.point .slick-dots li:not(:last-of-type) {
		margin-right: 5.333vw;
	}

	.point .slick-arrow {
		width: 4.267vw;
		height: 5.333vw;
		top: 18.667vw;
	}

	.point .slick-prev {
		left: 2.667vw;
	}

	.point .slick-next {
		right: 2.667vw;
	}
}

/*
	costume
------------------------------ */
.costume {
	font-family: var(--mincho);
}

.costume__lead {
	margin-bottom: min(0.8rem, 0.625vw);
	line-height: 2.5;
	font-size: min(1.8rem, 1.406vw);
}

.costume__content {
	margin: min(3.2rem, 2.5vw) 0;
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
}

.costume__content .text {
	padding: min(1.3rem, 1.016vw);
}

/* accordion__switch */
.costume .accordion__switch {
	background-color: rgba(var(--wht), 0.8);
	height: min(4.6rem, 3.594vw);
	color: rgb(var(--red-dark));
	font-size: min(1.6rem, 1.25vw);
	font-weight: 700;
}

.costume .accordion__switch--symbol {
	color: rgb(var(--blk));
}

.costume__table,
.costume__thead,
.costume__tbody {
	display: block;
}

.costume__thead--row,
.costume__tbody--row {
	margin-top: min(0.8rem, 0.625vw);
	display: flex;
}

.costume__thead--row {
	justify-content: center;
}

.costume__thead--th {
	width: 100%;
	font-weight: 700;
	text-align: center;
}

.costume__tbody--th,
.costume__tbody--td {
	background-color: rgba(var(--wht), 0.3);
	padding: min(1.3rem, 1.016vw);
	width: 50%;
}

@media screen and (max-width: 768px) {
	.costume__lead {
		margin-bottom: 2.667vw;
		line-height: 2;
		font-size: 3.733vw;
	}

	.costume__content {
		margin: 5.333vw 0;
		font-size: 3.733vw;
	}

	.costume__content .text {
		padding: 2.667vw;
	}

	/* accordion__switch */
	.costume .accordion__switch {
		height: 12.267vw;
		font-size: 4.267vw;
	}

	.costume__thead--row,
	.costume__tbody--row {
		margin-top: 2.133vw;
	}

	.costume__tbody--th,
	.costume__tbody--td {
		padding: 2.667vw;
	}

	.costume__tbody--th {
		display: flex;
		align-items: center;
	}
}

/*
	price
------------------------------ */
.price__list--item {
	display: flex;
	align-items: center;
}

.price__list--item:nth-child(even) {
	flex-direction: row-reverse;
}

.price__list--item:not(:last-of-type) {
	margin-bottom: min(6.4rem, 5vw);
}

.price__image {
	width: 45.547vw;
}

.price__content {
	/* padding: 0 min(3.2rem, 2.5vw); */
	padding: 0 2.5vw;
	font-family: var(--mincho);
}

.price__content--title {
	line-height: 1.5;
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
}

.price__content--area {
	margin: min(1.4rem, 1.094vw) 0;
	font-size: min(1.6rem, 1.25vw);
}

.price__content--detail {
	display: flex;
	align-items: center;
}

.price__content--detail:not(:last-of-type) {
	margin-bottom: min(2.4rem, 1.875vw);
}

.price__content--detail .title {
	background-color: rgb(var(--beg));
	margin-right: min(1.6rem, 1.25vw);
	width: min(19rem, 14.844vw);
	height: min(7.2rem, 5.625vw);
	line-height: 1.6;
	color: rgb(var(--blk));
	font-family: var(--gothic);
	font-size: min(1.2rem, 0.938vw);
	text-align: center;
	border-radius: min(0.8rem, 0.625vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.price__content--detail .detail {
	line-height: normal;
	font-size: min(1.6rem, 1.25vw);
}

.price__content--detail .detail b {
	font-size: 2em;
}

.price .note {
	margin: min(4rem, 3.125vw) auto 0;
	font-family: var(--mincho);
	width: min(86.4rem, 67.5vw);
}

@media screen and (max-width: 768px) {
	.price__list--item {
		display: block;
	}

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

	.price__image {
		margin-bottom: 2.667vw;
		width: 100%;
	}

	.price__content {
		padding: 0;
	}

	.price__content--title {
		font-size: 5.333vw;
	}

	.price__content--area {
		margin: 2.667vw 0;
		font-size: 3.733vw;
	}

	.price__content--detail:not(:last-of-type) {
		margin-bottom: 5.333vw;
	}

	.price__content--detail .title {
		margin-right: 2.933vw;
		width: 28.8vw;
		height: 19.2vw;
		font-size: 2.667vw;
		letter-spacing: -0.005em;
		border-radius: 2.133vw;
	}

	.price__content--detail .detail {
		font-size: 3.733vw;
	}

	.price__content--detail .detail b {
		font-size: 6.4vw;
	}

	.price .note {
		margin-top: 5.333vw;
		width: 100%;
	}

	.price .note li {
		font-size: 2.667vw
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation {
	background-image: url(../img/bg-beg.webp);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	font-family: var(--mincho);
}

.reservation__list {
	margin-bottom: min(3.2rem, 2.5vw);
	font-size: min(2.4rem, 1.875vw);
}

.reservation__list--item {
	margin: 0 0 min(1.6rem, 1.25vw) 1.8em;
	line-height: normal;
	text-indent: -1.8em;
	counter-increment: number;
}

.reservation__list--item::before {
	content: counter(number) ".";
}

.reservation__content {
	background-color: rgb(var(--wht));
	padding: min(3.2rem, 2.5vw) min(8.8rem, 6.875vw);
	text-align: center;
	border-radius: min(3.2rem, 2.5vw);
}

.reservation__content--title {
	margin-bottom: min(3.2rem, 2.5vw);
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
}

.reservation__content--title .small {
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

.reservation__content .link-button {
	margin-bottom: min(3.2rem, 2.5vw);
	height: min(9.6rem, 7.5vw);
	line-height: normal;
	font-family: var(--gothic);
	flex-direction: column;
	border-radius: min(9.6rem, 7.5vw);
}

.reservation__content .link-button .small {
	font-size: min(1.6rem, 1.25vw);
}

.reservation__text {
	margin: min(4rem, 3.125vw) 0 min(3.2rem, 2.5vw);
	line-height: normal;
	font-size: min(2.4rem, 1.875vw);
}

.reservation .inquiry {
	line-height: normal;
	font-size: min(2.4rem, 1.875vw);
}

.reservation .inquiry__title {
	margin-bottom: min(1.6rem, 1.25vw);
}

.reservation .inquiry__content .tel {
	color: rgb(var(--red));
	font-size: min(4rem, 3.125vw);
}

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

	.reservation__list {
		margin-bottom: 5.333vw;
		font-size: 3.733vw;
	}

	.reservation__list--item {
		margin-bottom: 2.667vw;
	}

	.reservation__content {
		padding: 8vw 5.867vw;
		border-radius: 8.533vw;
	}

	.reservation__content--title {
		margin-bottom: 5.333vw;
		font-size: 5.333vw;
	}

	.reservation__content--title .small {
		font-size: 4.267vw;
	}

	.reservation__content .link-button {
		margin: 0 auto 5.333vw;
		width: 69.333vw;
		height: 21.333vw;
		border-radius: 21.333vw;
	}

	.reservation__content .link-button .small {
		font-size: 2.667vw;
	}

	.reservation__text {
		margin: 8vw 0 5.333vw;
		font-size: 4.267vw;
	}

	.reservation .inquiry {
		font-size: 3.733vw;
	}

	.reservation .inquiry__title {
		margin-bottom: 2.667vw;
	}

	.reservation .inquiry__content .tel {
		font-size: 8.533vw;
	}
}

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

.course__title,
.course__lead {
	margin-bottom: min(3.2rem, 2.5vw);
	font-family: var(--mincho);
}

.course__title {
	line-height: normal;
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
}

.course__lead {
	line-height: 2;
	font-size: min(2.4rem, 1.875vw);
}

.course__content {
	color: rgb(var(--blk));
	font-size: min(1.6rem, 1.25vw);
}

.course__content.dinner {
	margin-bottom: min(8rem, 6.25vw);
}

.course__content.breakfast {
	background-color: rgb(var(--wht));
	padding: min(4rem, 3.125vw) min(8.8rem, 6.875vw);
	border-radius: min(3.2rem, 2.5vw);
}

.course__head {
	margin-bottom: min(3.2rem, 2.5vw);
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.course__head--image {
	width: min(42.4rem, 33.125vw);
}

.course__head--content {
	width: min(24.8rem, 19.375vw);
}

.course__head--content .logo {
	margin: 0 auto min(3.2rem, 2.5vw);
}

.shimizu .logo {
	width: min(21.4rem, 16.719vw);
}

.maronie .logo {
	width: 100%;
}

.porto .logo {
	width: min(16.4rem, 12.813vw);
}

.course__head--content .time {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.course__menu {}

.course__menu--title {
	margin-bottom: min(1.6rem, 1.25vw);
	line-height: normal;
}

.course__menu--zen {
	background-color: rgb(var(--beg));
	margin-bottom: min(1.6rem, 1.25vw);
	width: min(7.2rem, 5.625vw);
	height: min(4rem, 3.125vw);
	font-weight: 400;
	border-radius: min(0.8rem, 0.625vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-table:not(:last-of-type) {
	margin-bottom: min(3.2rem, 2.5vw);
}

.menu-table--th {
	padding-right: 0.5em;
}

.course__menu--content .text {
	margin-bottom: min(3.2rem, 2.5vw);
}

.course__menu--list {
	display: flex;
	flex-wrap: wrap;
}

.course__menu--list li {
	white-space: nowrap;
}

.course__menu--list li:not(:last-of-type)::after {
	content: "／";
}

.course__limited {
	display: flex;
}

.course__limited--image {
	margin-right: min(3.2rem, 2.5vw);
	width: min(33.6rem, 26.25vw);
}

.course__limited--detail {}

.course__limited--detail .title {
	margin-bottom: 1em;
	line-height: 1.5;
	color: rgb(var(--red));
	font-family: var(--mincho);
	font-size: min(2.4rem, 1.875vw);
	text-align: center;
}

.course__limited--detail .text {}

.course__content .note li {
	font-size: min(1.6rem, 1.25vw);
}

.course__content .link-button {
	margin-top: min(3.2rem, 2.5vw);
}

/* tab */
.tab {
	display: flex;
	justify-content: space-between;
}

.tab__switch {
	background-color: rgba(209, 209, 209, 1);
	width: min(28rem, 21.875vw);
	height: min(6.4rem, 5vw);
	line-height: 1.5;
	text-align: center;
	border-radius: min(1.6rem, 1.25vw) min(1.6rem, 1.25vw) 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.tab__switch:hover,
.tab__switch.tab-active {
	background-color: rgb(var(--wht));
}

.course .tab-content {
	background-color: rgb(var(--wht));
	padding: min(4rem, 3.125vw) min(8.8rem, 6.875vw);
	border-radius: 0 0 min(3.2rem, 2.5vw) min(3.2rem, 2.5vw);
	display: none;
}

.course .tab-content.tab-active {
	display: block;
}

@media screen and (max-width: 768px) {
	.course__title {
		margin-bottom: 5.333vw;
		font-size: 5.333vw;
	}

	.course__lead {
		margin-bottom: 2.667vw;
		font-size: 3.733vw;
	}

	.course__content {
		font-size: 3.733vw;
	}

	.course__content.dinner {
		margin-bottom: 10.667vw;
	}

	.course__content.breakfast {
		padding: 5.333vw 4.8vw 8vw;
		border-radius: 8.533vw;
	}

	.course__head {
		margin-bottom: 5.333vw;
		display: block;
	}

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

	.course__head--content {
		width: 100%;
	}

	.course__head--content .logo {
		margin-bottom: 5.333vw;
	}

	.shimizu .logo {
		width: 57.067vw;
	}

	.maronie .logo {
		width: 66.133vw;
	}

	.porto .logo {
		width: 42.667vw;
	}

	.course__menu--title {
		margin: 0 auto 2.667vw;
		width: 69.333vw;
	}

	.course__menu--zen {
		margin: 0 0 2.667vw 5.333vw;
		width: 18.667vw;
		height: 10.667vw;
		border-radius: 2.133vw;
	}

	.menu-table {
		margin: 0 auto;
		width: 69.333vw;
	}

	.menu-table:not(:last-of-type) {
		margin-bottom: 2.667vw;
	}

	.menu-table--th {
		vertical-align: top;
		white-space: nowrap;
	}

	.course__menu--content .text {
		margin: 0 auto 5.333vw;
		width: 69.333vw;
	}

	.course__menu--list {
		margin: 0 auto;
		width: 69.333vw;
	}

	.course__limited {
		margin-top: 5.333vw;
		display: block;
	}

	.course__limited--image {
		margin: 0 0 5.333vw;
		width: 100%;
	}

	.course__limited--detail .title {
		line-height: 1.8;
		font-size: 4.267vw;
	}

	.course__content .text,
	.course__content .note {
		margin: 0 auto;
		width: 69.333vw;
	}

	.course__content .note li {
		font-size: 2.667vw;
	}

	.course__content .link-button {
		margin: 5.333vw auto 0;
		width: 69.333vw;
	}

	/* tab */
	.tab__switch {
		width: 29.067vw;
		height: 13.333vw;
		font-size: 2.667vw;
		border-radius: 4.267vw 4.267vw 0 0;
	}

	.course .tab-content {
		padding: 5.333vw 4.8vw 8vw;
		border-radius: 0 0 8.533vw 8.533vw;
	}
}

/* ----------------------------------------------------
	schedule
---------------------------------------------------- */
.schedule {
	background-image: url(../img/bg-beg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.schedule .accordion+.note {
	margin-top: min(3.2rem, 2.5vw);
	font-family: var(--mincho);
}

/* accordion__switch */
.schedule .accordion__switch {
	height: min(4.8rem, 3.75vw);
	font-family: var(--mincho);
	font-size: min(2.4rem, 1.875vw);
	border: solid 1px rgb(var(--blk));
}

.schedule .accordion__switch--symbol {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
}

.schedule .accordion__content {
	padding: min(3.2rem, 2.5vw) 0 0 min(1.6rem, 1.25vw);
}

.schedule__list {
	font-family: var(--mincho);
}

.schedule__list--item {
	display: flex;
	align-items: center;
	position: relative;
}

.schedule__list--item:not(:last-of-type)::before {
	background-color: rgb(var(--red));
	width: min(0.8rem, 0.625vw);
	height: 100%;
	position: absolute;
	top: 0;
	left: min(5.2rem, 4.063vw);
	z-index: 1;
	content: "";
}

.schedule__list--item:not(:last-of-type) {
	padding-bottom: min(3.2rem, 2.5vw);
}

.schedule__time {
	background-color: rgb(var(--red));
	margin-right: min(1.6rem, 1.25vw);
	width: min(11.2rem, 8.75vw);
	height: min(11.2rem, 8.75vw);
	line-height: 1;
	color: rgb(var(--wht));
	font-size: min(3.2rem, 2.5vw);
	text-align: center;
	border-radius: 100%;
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.schedule__time span {
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

.schedule__content {
	flex: 1;
}

.schedule__content--title {
	margin-bottom: min(0.8rem, 0.625vw);
	font-size: min(2.4rem, 1.875vw);
	font-weight: 600;
}

.schedule__content--detail {
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
}

.schedule__content--detail .note {
	font-family: var(--mincho);
}

/* another */
.schedule__content.another {
	display: flex;
}

.another__content {}

.another__content:first-child {
	margin-right: min(4rem, 3.125vw);
	padding-right: min(4rem, 3.125vw);
	width: min(32rem, 25vw);
	border-right: solid min(0.8rem, 0.625vw) rgb(var(--red));
}

.another__content:last-child {
	width: min(28rem, 21.875vw);
}

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

	.schedule .accordion+.note {
		margin-top: 5.333vw;
	}

	/* accordion__switch */
	.schedule .accordion__switch {
		height: 12.267vw;
		font-size: 4.267vw;
	}

	.schedule .accordion__switch--symbol {
		font-size: 2.933vw;
	}

	.schedule .accordion__content {
		padding: 5.333vw 0 0;
	}

	.schedule__list--item {
		align-items: flex-start;
	}

	.schedule__list--item:not(:last-of-type)::before {
		width: 2.133vw;
		left: 8.533vw;
	}

	.schedule__list--item:not(:last-of-type) {
		/* padding-bottom: 5.333vw; */
		padding-bottom: 8vw;
	}

	.schedule__time {
		margin-right: 1.067vw;
		width: 19.2vw;
		height: 19.2vw;
		font-size: 4.267vw;
	}

	.schedule__time span {
		font-size: 3.733vw;
	}

	.schedule__content.end {
		height: 19.2vw;
		display: flex;
		align-items: center;
	}

	.schedule__content--title {
		margin-bottom: 2.133vw;
		line-height: normal;
		font-size: 4.267vw;
	}

	.schedule__content--detail {
		font-size: 3.733vw;
	}

	.schedule .note li {
		font-size: 2.667vw;
	}

	/* another */
	.schedule__content.another {
		display: block;
	}

	.another__content:first-child {
		margin: 0 0 5.333vw;
		padding: 0 0 5.333vw;
		width: 100%;
		border-right: none;
		border-bottom: solid 1.067vw rgb(var(--red));
	}

	.another__content:last-child {
		width: 100%;
	}
}

/* ----------------------------------------------------
	pamphlet
---------------------------------------------------- */
.pamphlet {
	padding: min(4rem, 3.125vw) 0;
}

.pamphlet__title {
	margin-bottom: min(4rem, 3.125vw);
	font-family: var(--mincho);
	font-size: min(3.2rem, 2.5vw);
	font-weight: 400;
	text-align: center;
}

.pamphlet__title .hotel {
	font-size: min(2.4rem, 1.875vw);
	display: block;
}

.pamphlet .link-button {
	margin: 0 auto;
	width: min(68.8rem, 53.75vw);
}

.pamphlet .note {
	margin: min(8rem, 6.25vw) auto 0;
	width: min(86.4rem, 67.5vw);
	font-family: var(--mincho);
}

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

	.pamphlet__title {
		margin-bottom: 5.333vw;
		font-size: 6.4vw;
	}

	.pamphlet__title .hotel {
		font-size: 4.267vw;
	}

	.pamphlet .link-button {
		width: 69.333vw;
	}

	.pamphlet .note {
		margin-top: 10.667vw;
		padding: 0 5.333vw;
		width: 100%;
	}
}

/* ----------------------------------------------------
	access
---------------------------------------------------- */
.access {
	background-color: rgb(var(--key));
	padding-bottom: 0;
	color: rgb(var(--wht));
}

.access .container {
	margin: 0 auto;
	padding-bottom: min(8rem, 6.25vw);
	width: min(86.4rem, 67.5vw);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.access__map iframe {
	width: 100%;
	height: min(40rem, 31.25vw);
	vertical-align: bottom;
}

@media screen and (max-width: 768px) {
	.access {
		padding-right: 0;
		padding-left: 0;
	}

	.access .section__title {
		padding: 0 5.333vw;
	}

	.access .container {
		padding-bottom: 10.667vw;
		width: 100%;
		display: block;
	}

	.access__map iframe {
		height: 80vw;
	}
}

/* 
	hotels
------------------------------ */
.hotels__logo {
	margin: 0 auto min(3.2rem, 2.5vw);
	width: min(20.8rem, 16.25vw);
}

.hotels__content {
	font-family: var(--mincho);
	text-align: center;
}

.hotels__content--name {
	margin-bottom: min(2.4rem, 1.875vw);
	font-size: min(2.4rem, 1.875vw);
}

.hotels__content--detail .address {
	margin-bottom: min(2.4rem, 1.875vw);
	font-size: min(1.6rem, 1.25vw);
	display: block;
}

.hotels__content--detail .sns {
	display: flex;
	justify-content: center;
}

.hotels__content--detail .sns__item {
	margin: 0 min(2.8rem, 2.188vw);
	width: min(4.2rem, 3.281vw);
}

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

	.hotels__logo {
		margin-bottom: 8.533vw;
		width: 55.467vw;
	}

	.hotels__content--name {
		margin-bottom: 6.4vw;
		font-size: 6.4vw;
	}

	.hotels__content--detail .address {
		margin-bottom: 6.4vw;
		font-size: 4.267vw;
	}

	.hotels__content--detail .sns__item {
		margin: 0 7.467vw;
		width: 11.2vw;
	}
}

/* 
	route
------------------------------ */
.route__list--item {
	margin-bottom: min(4rem, 3.125vw);
	display: flex;
}

.route__icon {
	margin: min(0.8rem, 0.625vw) min(3.6rem, 2.813vw) 0 0;
	width: min(3.2rem, 2.5vw);
}

.route__text,
.route__content {
	width: min(41.5rem, 32.422vw);
	font-size: min(1.6rem, 1.25vw);
}

.route__content {
	margin-left: auto;
}

.route__content .text {
	margin-bottom: min(2.4rem, 1.875vw);
}

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

	.route__list--item {
		margin-bottom: 5.333vw;
		display: flex;
	}

	.route__icon {
		margin: 2.133vw 9.6vw 0 0;
		width: 8.533vw;
	}

	.route__text,
	.route__content {
		width: 72vw;
		font-size: 3.733vw;
	}

	.route__content {
		margin: 0 auto;
	}

	.route__content .text {
		margin-bottom: 5.333vw;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: min(4rem, 3.125vw) 0;
}

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

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: min(1.6rem, 1.171vw);
	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 {
		font-size: 4.267vw;
		text-align: center;
		display: block;
	}

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

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

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

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

/* 
	copy
------------------------------ */
.footer .copy {
	margin-top: 2em;
	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;
	}
}