/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header__title {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	transform: translateY(-50%);
}

.header .news {
	background-color: rgb(var(--wht));
	padding: 1.2rem 3rem;
	width: 40.3rem;
	/* height: 8.5rem; */
	border-radius: 3rem 0 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.news__title {
	margin-bottom: 0.5rem;
	line-height: 1;
	color: rgba(73, 179, 195, 1);
	font-family: var(--jost);
	font-size: 2rem;
	font-weight: 400;
}

.news__slider {
	min-width: 0;
	overflow: hidden;
}

.news__slide {
	line-height: normal;
	font-size: 1.4rem;
	overflow: hidden;
	display: flex;
}

.news__date {
	font-family: var(--jost);
	white-space: nowrap;
}

.news__text {
	margin-left: 1rem;
}

.news__arrows {
	width: 4.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 1.4rem;
	left: 10.5rem;
}

.news__arrow {
	width: 1.6rem;
	height: 1.6rem;
	position: relative;
}

.news__arrow::before {
	background-image: url(../img/top/arrow-news.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 1.6rem;
	height: 1.6rem;
	position: absolute;
	top: 0;
	content: "";
}

.news__arrow--prev::before {
	left: 0;
}

.news__arrow--next::before {
	right: 0;
	transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
	.header__title {
		top: 0.2rem;
		transform: translate(0);
	}

	.header .news {
		padding: 2.4rem 2rem;
		width: 100%;
		height: auto;
		border-bottom: solid 1px rgba(177, 177, 177, 1);
		border-radius: 0;
		position: relative;
		right: auto;
		bottom: auto;
	}

	.news__slide {
		font-size: 1.6rem;
	}

	.news__arrows {
		top: 2.6rem;
	}
}

/* ----------------------------------------------------
	collaboration
---------------------------------------------------- */
.collaboration__inner {
	background-image: url(../img/top/collaboration-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto;
	padding: 8rem 7rem;
	width: 105.6rem;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.collaboration__inner::after {
	width: calc(100% - 1.6rem);
	height: calc(100% - 1.6rem);
	border: solid 1px rgba(71, 153, 189, 1);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	content: "";
}

.collaboration__image {
	width: 49.7rem;
	position: relative;
	z-index: 2;
}

.collaboration__image figcaption {
	line-height: 2.25;
	font-size: 1.1rem;
}

.collaboration__content {
	width: 37rem;
	position: relative;
	z-index: 2;
}

.collaboration__content--title {
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 500;
}

.collaboration__content .category {
	margin: 2rem 0;
}

.collaboration__content--text {
	margin-bottom: 4rem;
	font-size: 1.5rem;
}

.collaboration__content .link-button {
	margin: 0;
	width: 20rem;
}

@media screen and (max-width: 768px) {
	.collaboration__inner {
		background-image: url(../img/top/collaboration-bg_sp.webp);
		padding: 2.4rem;
		width: 33rem;
		display: block;
	}

	.collaboration__image {
		margin-bottom: 1rem;
		width: 100%;
	}

	.collaboration__content {
		width: 100%;
	}

	.collaboration__content--title {
		font-size: 2rem;
		letter-spacing: -0.005rem;
	}

	.collaboration__content--text {
		margin-bottom: 2rem;
		font-size: 1.4rem;
	}

	.collaboration__content .link-button {
		margin: 0 auto;
	}
}

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

.event::after {
	background-color: rgb(var(--blk));
	width: 100rem;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.event__slider {
	padding: 0 21.962vw;
	width: 100%;
	overflow: visible;
}

.event__slide {
	padding: 0 2.928vw;
	width: 28.038vw !important;
}

.event__image {
	margin-bottom: 3rem;
}

.event__content {
	margin: 0 auto;
	/* width: 30.3rem; */
}

.event__content--date {
	font-family: var(--jost);
	font-size: 1.4rem;
	font-weight: 600;
}

.event__content--title {
	line-height: 1.5;
	font-size: 2.4rem;
	font-weight: 500;
}

.event__content .category {
	margin: 1rem 0;
}

.event__content--text {
	margin-bottom: 3rem;
	font-size: 1.5rem;
}

.event__content .link-button {
	width: 20rem;
}

@media screen and (max-width: 768px) {
	.event::after {
		width: 100%;
		bottom: 0;
		left: 0;
		transform: translateX(0);
	}

	.event__slider {
		padding: 0;
		overflow: hidden;
	}

	.event__slide {
		padding: 0 4rem;
		width: 100% !important;
	}
}

/* ----------------------------------------------------
	price
---------------------------------------------------- */
.price__nav {
	margin-bottom: 8rem;
	display: flex;
	justify-content: center;
}

.price__nav--item {
	margin: 0 4.5rem;
	width: 32rem;
	border: solid 1px rgb(var(--blk));
}

.price__nav--item .link-button {
	background-image: url(../img/arrow-bottom.svg);
	background-position: center right 3rem;
	background-repeat: no-repeat;
	background-size: 1rem auto;
	height: 8rem;
	line-height: 1;
	color: rgb(var(--blk));
	font-family: var(--jost);
	font-size: 2.4rem;
	flex-direction: column;
}

.price__nav--item .link-button .small {
	font-family: var(--gothic);
	font-size: 1.6rem;
}

.price__title {
	margin-bottom: 8rem;
	height: 13rem;
	line-height: 1.2;
	font-family: var(--jost);
	font-size: 4rem;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.price__title .jp {
	font-family: var(--gothic);
	font-size: 2rem;
}

.price .note {
	margin: 0 auto;
	width: 100rem;
}

.price .note a {
	color: #10F;
}

.price__content {
	margin: 0 auto 10rem;
	width: 100rem;
}

.price__content--title {
	margin-bottom: 5rem;
	height: 5.5rem;
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	border-top: solid 1px rgb(var(--blk));
	border-bottom: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.detail-content:not(:last-of-type) {
	margin-bottom: 6.5rem;
}

.detail-content .link-button {
	width: 28rem;
	height: 5.5rem;
}

.detail-content+.note {
	color: rgb(var(--red));
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.price .detail-title {
	margin-bottom: 1.6rem;
	color: rgba(71, 153, 189, 1);
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}

.price .detail-lead {
	margin-bottom: 2.4rem;
	font-size: 1.6rem;
	text-align: center;
}

.price .detail-note {
	margin-bottom: 2.4rem;
	color: rgb(var(--red));
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}

.price .detail-note .marker {
	background: linear-gradient(transparent 50%, #FFF67B 50%);
	line-height: 2;
}

.price .detail-link {
	display: flex;
	justify-content: center;
}

.price .detail-link__item {
	margin: 0 1.5rem;
	width: 28rem;
	line-height: normal;
	text-align: center;
}

.price .detail-link__item .link-button {
	height: 6.4rem;
}

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

	.price__nav--item {
		margin: 0 auto;
	}

	.price__nav--item:not(:last-of-type) {
		margin-bottom: 2rem;
	}

	.price__title {
		margin-bottom: 3.6rem;
		font-size: 3.5rem;
	}

	.price .note {
		width: 33rem;
	}

	.price__content {
		margin-bottom: 8rem;
		width: 33rem;
	}

	.price__content--title {
		margin-bottom: 3.5rem;
		font-size: 2rem;
	}

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

	.price .detail-title {
		margin-bottom: 1.3rem;
		font-size: 2rem;
	}

	.price .detail-lead {
		font-size: 1.5rem;
	}

	.price .detail-note .marker {
		line-height: normal;
	}

	.price .detail-link {
		display: block;
	}

	.price .detail-link__item {
		margin: 0 auto;
	}

	.price .detail-link__item:not(:last-of-type) {
		margin-bottom: 1.5rem;
	}
}

/*
	price-table
------------------------------ */
.price-table {
	width: 100%;
	font-size: 1.5rem;
	font-weight: 500;
}

.price-table__th,
.price-table__td {
	text-align: center;
	vertical-align: middle;
	border: solid 1px rgb(var(--blk));
}

.price-table__thead th {
	background-color: rgba(132, 132, 132, 1);
	height: 5.5rem;
	color: rgb(var(--wht));
}

.price-table__tbody th,
.price-table__tbody td {
	line-height: normal;
}

.price-table__tbody th {
	width: 48rem;
}

.price-table__tbody th.member {
	background-color: rgba(179, 163, 105, 1);
}

.price-table__tbody th.member img {
	width: 19rem;
}

.price-table__tbody th.general {
	background-color: rgba(244, 237, 214, 1);
}

.price-table__tbody td {
	width: 17.5rem;
	height: 5rem;
}

.price-table__tbody td.double {
	width: 35rem;
}

.price-table__tbody td.free {
	height: auto;
	color: rgb(var(--red));
}

.price__scroll-x+.note {
	margin-top: 1rem;
	display: flex;
}

.price__scroll-x+.note li:not(:last-of-type) {
	margin-right: 1em;
}

.price .sales {
	margin: 2rem 0 4.5rem;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.price .sales__title {
	margin-right: 3rem;
	width: 16rem;
	height: 4rem;
	border: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: center;
	align-items: center;
}

.price .sales__content {
	line-height: 1.5;
}

.price .sales__table td {
	padding-left: 0.5rem;
}

.price .sales__table td::before {
	content: "：";
}

@media screen and (max-width: 768px) {
	.price__scroll-x {
		margin: 0 auto;
		width: 33rem;
		overflow-x: auto;
	}

	.price-table {
		width: 55rem;
	}

	.price-table__thead th,
	.price-table__tbody th,
	.price-table__tbody td {
		line-height: 1.2;
	}

	.price-table__tbody th {
		width: 19rem;
	}

	.price-table__tbody th.member img {
		width: 15rem;
	}

	.price-table__tbody td {
		width: 12rem;
		height: 4rem;
	}

	.price-table__tbody td.double {
		width: 24rem;
	}

	.price__scroll-x+.note {
		display: block;
	}

	.price__scroll-x+.note li:not(:last-of-type) {
		margin-right: 0;
	}

	.price .sales {
		margin-bottom: 3rem;
		display: block;
	}

	.price .sales__title {
		margin: 0 0 1rem;
		width: 8.5rem;
		font-size: 1.4rem;
	}

	.price .sales__content {
		line-height: 1.5;
		font-size: 1.3rem;
	}

	.price .sales__table th {
		white-space: nowrap;
	}

	.price .sales__table td {
		padding-left: 0.5rem;
	}
}

/*
	spgr
------------------------------ */
.spgr {
	margin: 0 auto 10rem;
	padding: 6rem 0;
	width: 60rem;
	text-align: center;
	border: solid 5px rgba(183, 173, 140, 1);
}

.spgr__title {
	margin-bottom: 3rem;
	font-size: 1.4rem;
	font-weight: 500;
}

.spgr__logo {
	margin: 0 auto 2rem;
	width: 20.8rem;
}

.spgr__text {
	margin-bottom: 3rem;
	font-size: 1.4rem;
}

.spgr .link-button {
	width: 28rem;
}

@media screen and (max-width: 768px) {
	.spgr {
		margin-bottom: 2.5rem;
		padding: 4.5rem 0;
		width: 33rem;
	}

	.spgr__title {
		margin-bottom: 1.8rem;
	}

	.spgr__logo {
		margin-bottom: 3rem;
	}

	.spgr__text {
		margin: 0 auto 3rem;
		width: 28rem;
		text-align: left;
	}

	.spgr .link-button {
		width: 23rem;
	}
}

/* ----------------------------------------------------
	faq
---------------------------------------------------- */
.faq {
	padding-bottom: 0;
}

.faq__list {
	margin: 0 auto 8rem;
	width: 100rem;
}

.faq__list--item {
	display: flex;
	position: relative;
}

.faq__list--item:not(:last-of-type) {
	margin-bottom: 3rem;
}

.faq__number {
	background-color: rgb(var(--wht));
	margin: 0.8rem 3rem 0 0;
	width: 6.5rem;
	height: 6.5rem;
	color: rgb(var(--blk));
	font-family: var(--jost);
	font-size: 3.2rem;
	border-radius: 0.5rem;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
}

.faq__number--item {
	display: flex;
	align-items: baseline;
}

.faq__number i {
	font-size: 4.2rem;
}

.faq__content--title {
	font-size: 1.8rem;
	font-weight: 500;
}

.faq__content--detail {
	font-size: 1.5rem;
}

.faq__content--detail .table th::before {
	content: "●";
}

.faq__content--detail .table td::before {
	content: "：";
}

.faq__content--detail .text.note {
	font-size: 1.3rem;
}

.faq .link-button {
	width: 28rem;
}

@media screen and (max-width: 768px) {
	.faq__list {
		margin-bottom: 5rem;
		width: 33rem;
	}

	.faq__list--item {
		display: block;
	}

	.faq__number {
		margin: 0;
		width: 3.5rem;
		height: 3.5rem;
		font-size: 1.6rem;
		position: absolute;
		top: 0;
		left: 0;
	}

	.faq__number i {
		font-size: 2.2rem;
	}

	.faq__content--title {
		margin-bottom: 1rem;
		padding-left: 5rem;
		min-height: 3.5rem;
		line-height: normal;
		display: flex;
		align-items: center;
	}

	.faq__content--detail .table th,
	.faq__content--detail .table td {
		vertical-align: top;
	}

	.faq__content--detail .table td {
		padding-left: 0.5rem;
		text-indent: -0.5rem;
	}
}

/* ----------------------------------------------------
	restaurant
---------------------------------------------------- */
.restaurant__content {
	margin: 0 auto 6rem;
	height: 54.905vw;
	position: relative;
}

.restaurant__image {
	opacity: 0;
	position: absolute;
	transition: opacity 0.8s ease;
}

.restaurant.is-visible .restaurant__image {
	opacity: 1;
}

.restaurant__image.res01 {
	width: 45.022vw;
	top: 3.514vw;
	left: 0;
	z-index: 1;
}

.restaurant__image.res02 {
	width: 33.016vw;
	top: 0;
	right: 0;
	z-index: 2;
	transition-delay: 0.2s;
}

.restaurant__image.res03 {
	width: 32.211vw;
	top: 10.469vw;
	right: 16.252vw;
	z-index: 3;
	transition-delay: 0.4s;
}

.restaurant__image.res04 {
	width: 49.488vw;
	bottom: 0.586vw;
	left: 14.056vw;
	z-index: 4;
	transition-delay: 0.6s;
}

.restaurant__image.res05 {
	width: 28.038vw;
	right: 0;
	bottom: 0;
	z-index: 5;
	transition-delay: 0.8s;
}

.restaurant .link-button {
	width: 28rem;
}

@media (prefers-reduced-motion: reduce) {
	.restaurant__image {
		transition: none;
	}
}

@media screen and (max-width: 768px) {
	.restaurant__content {
		margin-bottom: 4rem;
		height: 67rem;
	}

	.restaurant__image.res01 {
		width: 26.7rem;
		top: 0;
		left: 0;
	}

	.restaurant__image.res02 {
		width: 27.8rem;
		top: 9.5rem;
		right: 0;
	}

	.restaurant__image.res03 {
		width: 25.6rem;
		top: 31rem;
		right: 2rem;
	}

	.restaurant__image.res04 {
		width: 19rem;
		bottom: 15rem;
		left: 1.6rem;
	}

	.restaurant__image.res05 {
		width: 19.9rem;
		right: 5.7rem;
		bottom: 0;
	}
}

/* ----------------------------------------------------
	access
---------------------------------------------------- */
.access__content {
	margin: 0 auto;
	width: 100rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.access__detail {
	margin: 0 auto;
	width: 100rem;
}

.access__detail .sec__title {
	text-align: left;
}

.access__detail--name {
	font-size: 2rem;
	font-weight: 500;
}

.access__detail--address {
	margin-bottom: 3rem;
	font-size: 1.6rem;
}

.access__detail--text {
	margin-bottom: 2rem;
	font-size: 1.4rem;
}

.access__detail .link-button {
	margin: 3rem 0 0;
	width: 28rem;
}

.access__map {
	width: 62rem;
	flex-shrink: 0;
}

.access__map iframe {
	width: 100%;
	height: 39rem;
}

@media screen and (max-width: 768px) {
	.access {
		padding-bottom: 2rem;
	}

	.access__content {
		width: 100%;
		display: block;
	}

	.access__detail {
		margin-bottom: 4.5rem;
		width: 33rem;
		text-align: center;
	}

	.access__detail .sec__title {
		text-align: center;
	}

	.access__detail .link-button {
		margin: 3rem auto 0;
	}

	.access__map {
		width: 100%;
	}
}