/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.header::before {
	background: rgba(var(--blk), 1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	content: "";
	animation: headerOverlayFade 4s ease forwards;
	pointer-events: none;
}

.header__title {
	width: 55.198vw;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	transform: translate(-50%, -90%);
	animation: headerTitleFade 10s ease forwards;
}

.header__bg,
.header__bg picture,
.header__bg img {
	width: 100%;
	height: 100%;
	display: block;
}

.header__bg {
	position: relative;
	z-index: 2;
	animation: headerBgFade 10s ease forwards;
}

.header__bg img {
	object-fit: cover;
	object-position: center center;
}

.header__logo {
	width: 17.2rem;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

@keyframes headerOverlayFade {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes headerTitleFade {

	0%,
	20% {
		opacity: 0;
	}

	40%,
	60% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes headerBgFade {

	0%,
	60% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 30rem;
	}

	.header__logo {
		width: 18rem;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgba(var(--red), 0.9);
	width: 100%;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__list {
	height: 6.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__item {
	margin: 0 1.5rem;
}

.gnav__item a {
	color: rgb(var(--wht));
	font-family: var(--kalnia);
	font-size: 1.6rem;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.gnav {
		background: rgba(var(--red), 0.85);
		padding-top: 8rem;
		width: 100%;
		height: 100%;
		overflow: auto;
		display: block;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding: 0;
		height: auto;
		display: block;
	}

	.gnav__item {
		margin: 0 0 3rem;
	}

	.gnav__item a {
		font-size: 2.2rem;
	}

	.overlay.is-gnav-overlay {
		background: rgba(var(--blk), 0.75);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}

	body.is-open {
		overflow: hidden;
	}

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

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

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgba(var(--red), 1);
		width: 7rem;
		height: 7rem;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
	}

	.toggle__line {
		background: rgb(var(--wht));
		width: 3.6rem;
		height: 2px;
		border-radius: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
		transform: translateX(-50%);
		transform-origin: center;
	}

	.toggle__line:nth-child(1) {
		top: 2.6rem;
	}

	.toggle__line:nth-child(2) {
		bottom: 2.6rem;
	}

	.is-open .toggle__line {
		transform-origin: 0 0;
	}

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

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

/* ---------------------------------------------------
	sns
---------------------------------------------------- */
.gnav__sns {
	margin-left: 10rem;
	display: flex;
}

.gnav__sns--item {
	width: 3rem;
}

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

@media screen and (max-width: 768px) {
	.gnav__sns {
		margin: 5rem 0 0;
		justify-content: center;
	}
}

/* ----------------------------------------------------
	main
---------------------------------------------------- */
/* .main {
	padding-top: 100dvh;
} */

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background-color: rgba(var(--gra), 0.85);
	padding: 14rem 0;
	color: rgb(var(--wht));
}

.about__title {
	line-height: 1;
	font-family: var(--kalnia);
	font-size: 8.6rem;
	text-align: center;
	position: relative;
	bottom: -1.1rem;
	z-index: 1;
}

.about__image {
	margin: 0 auto 12rem;
	width: 106rem;
}

.about__list {
	margin: 0 auto 6rem;
	width: 92.8rem;
}

.about__list--item {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.about__list--item:nth-child(even) {
	flex-direction: row;
	align-items: flex-end;
}

.about__list--image {
	width: 42rem;
}

.about__list--content {
	width: 44rem;
}

.about__list--content .text {
	line-height: 2.5;
	font-size: 1.4rem;
}

.about__list--content .text.en {
	margin-top: 3rem;
	line-height: 2.3;
	font-size: 1.3rem;
	letter-spacing: -0.005em;
}

.about__list+.circle {
	margin: 0 auto;
	width: 92.8rem;
	font-size: 1.4rem
}

@media screen and (max-width: 768px) {
	.about {
		padding: 8rem 0;
	}

	.about__title {
		font-size: 3.9rem;
		bottom: -1.1rem;
	}

	.about__image {
		margin-bottom: 4rem;
		width: 30rem;
	}

	.about__list {
		margin-bottom: 5rem;
		width: 30rem;
	}

	.about__list--item,
	.about__list--item:nth-child(even) {
		flex-direction: column-reverse;
	}

	.about__list--item:nth-child(even) {
		margin-top: 5rem;
	}

	.about__list--image,
	.about__list--content {
		width: 100%;
		text-align: center;
	}

	.about__list--image {
		margin-top: 3rem;
	}

	.about__list--content .text {
		line-height: 2;
		font-size: 1.3rem;
	}

	.about__list--content .text.en {
		margin-top: 1.6rem;
		line-height: 2.1;
		font-size: 1.2rem;
	}

	.about__list+.circle {
		margin: 0 auto;
		width: 30rem;
		font-size: 1.4rem
	}
}

/* ----------------------------------------------------
	news
---------------------------------------------------- */
.news {
	background-color: rgb(var(--wht));
	padding: 14rem 0;
}

.news__content {
	margin: 0 auto;
	padding: 6rem 0 6rem 3rem;
	width: 92.8rem;
	border-top: solid 1px rgb(var(--blk));
	border-bottom: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: space-between;
}

.news__content--title {
	line-height: 1;
	font-family: var(--kalnia);
	font-size: 3rem;
}

.news__content--detail {
	width: 70rem;
	max-height: 21rem;
	overflow-y: auto;
}

.news__table {
	font-size: 1.4rem;
}

.news__table--th,
.news__table--td {
	padding-top: 2rem;
	vertical-align: top;
}

.news__table--row:nth-child(1) .news__table--th,
.news__table--row:nth-child(1) .news__table--td {
	padding-top: 0;
}

.news__table--th {
	padding-right: 4rem;
}

@media screen and (max-width: 768px) {
	.news {
		padding: 6rem 0;
	}

	.news__content {
		margin: 0 auto;
		padding: 0;
		width: 30rem;
		border: none;
		display: block;
	}

	.news__content--title {
		margin-bottom: 3rem;
	}

	.news__content--detail {
		padding: 3rem 0;
		width: 100%;
		max-height: 33rem;
		border-top: solid 1px rgb(var(--blk));
		border-bottom: solid 1px rgb(var(--blk));
	}

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

	.news__table {
		font-size: 1.4rem;
	}

	.news__table--th {
		padding-top: 2rem;
	}

	.news__table--td {
		padding-right: 1rem;
	}

	.news__table--row:nth-child(1) .news__table--th,
	.news__table--row:nth-child(1) .news__table--td,
	.news__table--td {
		padding-top: 0;
	}

	.news__table--row:nth-child(1) .news__table--th,
	.news__table--th {
		padding-right: 0;
	}
}

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

.sec__title {
	width: 5.1rem;
	position: absolute;
	top: 10rem;
	left: 0;
	z-index: 10;
}

.sec.is-title-fixed .sec__title {
	position: fixed;
	top: 10rem;
	left: 0;
}

.sec.is-title-bottom .sec__title {
	position: absolute;
	top: auto;
	bottom: 0;
}

.sec__title img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.sec__title {
		width: 100%;
		line-height: 1;
		font-size: 3rem;
		text-align: center;
		position: relative;
		top: auto;
		left: 0;
	}
}

/* ----------------------------------------------------
	recommend
---------------------------------------------------- */
.recommend {
	background-color: rgb(var(--wht));
	color: rgb(var(--wht));
	overflow: hidden;
	position: relative;
}

.recommend__title {
	width: 100%;
	line-height: 1;
	font-size: 3.2rem;
	text-align: center;
	position: absolute;
	top: 14rem;
	left: 0;
	z-index: 5;
}

.recommend__slider {
	margin: 0 auto;
	overflow: visible;
	position: relative;
}

.recommend__item {
	height: auto;
}

.recommend__button {
	background-color: rgb(var(--wht));
	margin-top: 0 !important;
	width: 3rem;
	height: 4rem;
	top: 50% !important;
	z-index: 5;
	transform: translateY(-50%) !important;
}

.recommend__button--prev {
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	right: calc(100% + 2rem) !important;
	left: auto !important;
}

.recommend__button--next {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	right: auto !important;
	left: calc(100% + 2rem) !important;
}

.recommend__button svg {
	display: none;
}

.recommend__card {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 21.6rem 0 14rem;
	height: 100%;
	display: flex;
	justify-content: center;
}

.recommend__card.card01 {
	background-image: url(../img/recommend01-bg.webp);
}

.recommend__card.card02 {
	background-image: url(../img/recommend02-bg.webp);
}

.recommend__card.card03 {
	background-image: url(../img/recommend03-bg.webp);
}

.recommend__content {
	margin: 0 auto;
	width: 92.8rem;
	text-align: center;
}

.recommend__content--image {
	margin-bottom: 5rem;
	position: relative;
}

.recommend__content--title {
	margin-bottom: 2rem;
	font-size: 3rem;
}

.recommend__content--title .en {
	font-size: 2.2rem;
	display: block;
}

.recommend__content--date {
	margin-bottom: 4rem;
	font-family: var(--kalnia);
	font-size: 1.8rem;
}

.recommend__content--text {
	margin-bottom: 4rem;
	font-size: 1.4rem;
}

.recommend__content--text .en {
	margin-top: 1rem;
	font-size: 1.4rem;
}

.recommend__content .link-button {
	margin: 0 auto;
	width: 46.6rem;
	height: 6rem;
	font-family: var(--kalnia);
	font-size: 2.6rem;
	border: solid 1px rgb(var(--wht));
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.recommend .sec__title {
		position: absolute;
		top: 9rem;
	}

	.recommend__title {
		width: 100%;
		font-size: 2rem;
		text-align: center;
		top: 15rem;
	}

	.recommend__button {
		width: 1.5rem;
		height: 2rem;
	}

	.recommend__button--prev {
		right: calc(100% + 1rem) !important;
	}

	.recommend__button--next {
		left: calc(100% + 1rem) !important;
	}

	.recommend__card {
		padding: 20.6rem 0 8rem;
	}

	.recommend__card.card01 {
		background-image: url(../img/recommend01-bg_sp.webp);
	}

	.recommend__card.card02 {
		background-image: url(../img/recommend02-bg_sp.webp);
	}

	.recommend__card.card03 {
		background-image: url(../img/recommend03-bg_sp.webp);
	}

	.recommend__content {
		width: 30rem;
	}

	.recommend__content--image {
		margin-bottom: 3rem;
	}

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

	.recommend__content--title .en {
		font-size: 1.4rem;
	}

	.recommend__content--date {
		margin-bottom: 2rem;
		font-size: 1.3rem;
	}

	.recommend__content--text {
		margin-bottom: 2rem;
		font-size: 1.2rem;
		text-align: left;
	}

	.recommend__content--text .en {
		margin-top: 1rem;
		font-size: 1rem;
	}

	.recommend__content .link-button {
		width: 100%;
		height: 4rem;
		font-size: 2rem;
	}
}

/* ----------------------------------------------------
	menu
---------------------------------------------------- */
.menu {
	color: rgb(var(--wht));
}

.menu__sec {
	background-color: rgb(var(--red));
	padding: 14rem 0;
}

.menu__sec:nth-child(even) {
	background-color: rgb(var(--gra));
}

.menu__container {
	margin: 0 auto;
	width: 92.8rem;
}

.menu__title {
	margin-bottom: 2.5rem;
	font-family: var(--kalnia);
	font-size: 3rem;
	text-align: center;
}

.menu__title .number {
	display: block;
}

.menu__title .number i {
	border-bottom: solid 1px rgb(var(--wht));
}

.menu__lead {
	margin-bottom: 4rem;
	font-size: 1.6rem;
	text-align: center;
}

.menu__lead .en {
	font-size: 1.4rem;
}

.menu__content--image {
	margin-bottom: 4rem;
	position: relative;
}

.menu__content--category {
	margin-bottom: 1.5rem;
	text-align: center;
}

.menu__content--category-inner {
	background-color: rgb(var(--wht));
	margin: 0 auto;
	padding: 0 1rem;
	height: 2rem;
	font-size: 1.3rem;
	border-radius: 3px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.menu__sec .menu__content--category {
	color: rgb(var(--red));
}

.menu__sec:nth-child(even) .menu__content--category {
	color: rgb(var(--gra));
}

.menu__content--name {
	margin-bottom: 2rem;
	font-size: 2.6rem;
	text-align: center;
}

.menu__content--name .en {
	font-size: 2rem;
	display: block;
}

.menu__content--price {
	font-size: 2.2rem;
	text-align: center;
}

.menu__content--price .en {
	font-family: var(--kalnia);
}

.menu__content--price .en b {
	font-size: 3.2rem;
	font-weight: 500;
}

.menu__content--price+.note {
	margin-top: 4rem;
}

.menu__content .note li {
	font-size: 1.4rem;
	text-align: center;
}

.menu__content--link-text {
	margin: 15rem 0 2rem;
	font-size: 1.4rem;
	text-align: center;
}

.menu__content .link-button {
	margin: 0 auto;
	width: 46.6rem;
	height: 6rem;
	font-family: var(--kalnia);
	font-size: 2.6rem;
	border: solid 1px rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.menu .sec__title {
		position: absolute;
		top: 8rem;
	}

	.menu__sec {
		padding: 8rem 0;
	}

	.menu__sec:first-of-type {
		padding-top: 15rem;
	}

	.menu__container {
		width: 30rem;
	}

	.menu__title {
		font-size: 2.5rem;
	}

	.menu__lead {
		margin-bottom: 2rem;
		font-size: 1.5rem;
		letter-spacing: -0.005em;
	}

	.menu__lead .en {
		font-size: 1.3rem;
	}

	.menu__content--image {
		margin-bottom: 2rem;
	}

	.menu__content--name {
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.menu__content--name .en {
		font-size: 1.3rem;
	}

	.menu__content--price {
		line-height: normal;
		font-size: 1.5rem;
	}

	.menu__content--price .en b {
		font-size: 2rem;
	}

	.menu__content--price+.note {
		margin-top: 2rem;
	}

	.menu__content .note li {
		font-size: 1.2rem;
	}

	.menu__content--link-text {
		margin: 10rem 0 1.2rem;
	}

	.menu__content .link-button {
		width: 100%;
		height: 4rem;
		font-size: 2rem;
	}
}

/*
	drinks__slider
------------------------------ */
.drinks__slider {
	position: relative;
	overflow: visible;
}

.drinks__button {
	background-color: rgb(var(--wht));
	margin-top: 0 !important;
	width: 3rem;
	height: 4rem;
	top: 50% !important;
	z-index: 5;
	transform: translateY(-50%) !important;
}

.drinks__button--prev {
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	right: calc(100% + 2rem) !important;
	left: auto !important;
}

.drinks__button--next {
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	right: auto !important;
	left: calc(100% + 2rem) !important;
}

.drinks__button::after,
.drinks__button svg {
	display: none;
}

@media screen and (max-width: 768px) {
	.drinks__button {
		width: 1.5rem;
		height: 2rem;
	}

	.drinks__button--prev {
		right: calc(100% + 1rem) !important;
	}

	.drinks__button--next {
		left: calc(100% + 1rem) !important;
	}
}

/*
	signature
------------------------------ */
.signature__title {
	margin: 8rem 0 3rem;
	font-size: 2.4rem;
	text-align: center;
}

.signature__title--small {
	font-size: 1.6rem;
	display: block;
}

@media screen and (max-width: 768px) {
	.signature__title {
		margin: 7rem 0 2rem;
		font-size: 2rem;
	}

	.signature__title--small {
		font-size: 1.3rem;
	}
}

/*
	accordion
------------------------------ */
.accordion {
	margin-top: 5rem;
	border-top: solid 1px rgb(var(--wht));
}

.accordion__trigger {
	-webkit-appearance: none;
	appearance: none;
	padding-top: 2rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--kalnia);
	font-size: 2.6rem;
	text-align: center;
	border: none;
	position: relative;
	cursor: pointer;
}

.accordion__trigger--inner {
	padding-left: 3rem;
	display: inline-block;
	position: relative;
}

.accordion__trigger--inner svg {
	width: 2rem;
	position: absolute;
	top: 0.4rem;
	left: 0;
	transition: all 0.5s ease 0s;
}

.is-open .accordion__trigger--inner svg {
	top: 0.2rem;
	transform: rotate(180deg);
}

.accordion__panel {
	padding: 5rem 0 3rem;
	border-bottom: solid 1px rgb(var(--wht));
	display: none;
}

.accordion__panel p {
	margin-top: 2rem;
}

.accordion__panel-inner {
	min-height: inherit;
	display: flex;
	flex-direction: column;
}

.accordion__close {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 5rem auto 0;
	width: 5rem;
	height: 5rem;
}

.menu__sec .accordion__close {
	background-image: url(../img/icon-close-red.svg);
}

.menu__sec:nth-child(even) .accordion__close {
	background-image: url(../img/icon-close-gra.svg);
}

@media screen and (max-width: 768px) {
	.accordion__trigger {
		font-size: 2rem;
	}

	.accordion__trigger--inner {
		padding-left: 2.5rem;
	}

	.accordion__trigger--inner svg {
		width: 1.5rem;
		top: 0.1rem;
	}

	.is-open .accordion__trigger--inner svg {
		top: -0.1rem;
	}

	.accordion__panel {
		padding: 4rem 0 3rem;
		border-bottom: solid 1px rgb(var(--wht));
		display: none;
	}

	.accordion__panel p {
		margin-top: 1rem;
	}

	.accordion__close {
		margin-top: 4rem;
		width: 4rem;
		height: 4rem;
	}
}

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

.menu__intro--item {
	display: flex;
	flex-direction: column;
}

.three-column .menu__intro--item {
	width: 28rem;
}

.two-column .menu__intro--item {
	width: 42rem;
}

.menu__intro--image {
	margin-bottom: 3rem;
}

.menu__intro--category {
	margin-bottom: 1.5rem;
	text-align: center;
}

.menu__intro--category-inner {
	background-color: rgb(var(--wht));
	margin-bottom: 1.5rem;
	padding: 0 1rem;
	font-family: var(--kalnia);
	font-size: 1.3rem;
	border-radius: 3px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.menu__sec .menu__intro--category-inner {
	color: rgb(var(--red));
}

.menu__sec:nth-child(even) .menu__intro--category-inner {
	color: rgb(var(--gra));
}

.menu__intro--title {
	margin-bottom: 3rem;
	font-size: 2.2rem;
	text-align: center;
}

.menu__intro--title .en {
	font-size: 1.6rem;
	display: block;
}

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

.menu__intro--text .en {
	margin-top: 1rem;
	font-size: 1.3rem;
}

.menu__intro--price {
	margin-top: auto;
	padding-top: 1.2rem;
	font-family: var(--kalnia);
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	border-top: solid 1px rgb(var(--wht));
}

.menu__intro--price small {
	font-size: 1.3rem;
}

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

	.three-column .menu__intro--item,
	.two-column .menu__intro--item {
		width: 100%;
	}

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

	.menu__intro--image {
		margin-bottom: 2rem;
	}

	.menu__intro--title {
		margin-bottom: 3rem;
		font-size: 2rem;
	}

	.menu__intro--title .en {
		font-size: 1.3rem;
	}

	.menu__intro--text {
		margin-bottom: 2rem;
		font-size: 1.2rem;
	}

	.menu__intro--text .en {
		margin-top: 1rem;
		font-size: 1rem;
	}

	.menu__intro--price {
		font-size: 2rem;
	}

	.menu__intro--price small {
		font-size: 1rem;
	}
}

/* ----------------------------------------------------
	bg-fixed
---------------------------------------------------- */
.bg-fixed {
	padding-top: 100dvh;
	position: relative;
}

.bg-fixed__media {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.bg-fixed__clip {
	height: 100%;
	overflow: hidden;
	position: relative;
	clip-path: inset(0 0 0 0);
}

.bg-fixed__clip picture {
	display: block;
}

.bg-fixed__clip img {
	width: 100vw;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	object-fit: cover;
	pointer-events: none;
}

/* ----------------------------------------------------
	projection
---------------------------------------------------- */
.projection {
	background-color: rgba(var(--gra), 0.85);
	padding: 14.5rem 0;
}

.projection .sec__content {
	margin: 0 auto;
	width: 92.8rem;
}

.projection .sec__content .video {
	margin-bottom: 5rem;
}

.projection__title {
	color: rgb(var(--wht));
	font-size: 3rem;
	text-align: center;
}

.projection__title .en {
	font-size: 2.2rem;
	display: block;
}

@media screen and (max-width: 768px) {
	.projection {
		padding: 8rem 0;
	}

	.projection .sec__title {
		margin-bottom: 3rem;
		line-height: normal;
		color: rgb(var(--wht));
	}

	.projection .sec__content {
		width: 30rem;
	}

	.projection .sec__content .video {
		margin-bottom: 2rem;
	}

	.projection__title {
		font-size: 2rem;
	}

	.projection__title .en {
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	event
---------------------------------------------------- */
.event {
	background-color: rgba(var(--red), 0.85);
	padding: 14rem 0;
	color: rgb(var(--wht));
	overflow: hidden;
}

.event .sec__content {
	margin: 0 auto 5rem;
	padding-bottom: 14rem;
	width: 92.8rem;
	border-bottom: solid 1px rgb(var(--wht));
}

.event__title {
	margin-bottom: 5rem;
	line-height: 1;
	font-size: 3.2rem;
	text-align: center;
}

.event__content {
	margin-bottom: 5rem;
}

.event__content--detail,
.event__content--data {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.event__content--detail {
	margin-bottom: 5rem;
	flex-direction: row-reverse;
}

.event__content--detail .image {
	width: 50.6rem;
}

.event__content--detail .content {
	padding-right: 2rem;
	width: calc(100% - 50.6rem);
}

.event__content--detail .content__title {
	margin-bottom: 1rem;
	line-height: normal;
	font-family: var(--kalnia);
	font-size: 4.2rem;
}

.event__content--detail .content__lead,
.event__content--detail .content__text {
	font-size: 1.6rem;
}

.event__content--detail .content__lead {
	margin-bottom: 3rem;
}

.event__content--detail .content__text.en {
	margin-top: 2rem;
	font-size: 1.4rem;
}

.event__content--data .data {
	font-size: 1.4rem;
}

.event__content--data .data__th,
.event__content--data .data__td {
	vertical-align: top;
}

.event__content--data .data__th {
	padding-right: 4rem;
}

.event__content--data .data__td .time {
	width: 17rem;
	display: inline-block;
}

.event__content--data .data__td.note {
	padding-top: 2rem;
}

.event__content--data .link-button {
	width: 30rem;
	height: 6rem;
	color: rgb(var(--wht));
	font-family: var(--kalnia);
	font-size: 2.6rem;
	border: solid 1px rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.event {
		padding: 8rem 0;
	}

	.event .sec__title {
		margin-bottom: 3rem;
	}

	.event .sec__content {
		margin-bottom: 4rem;
		padding-bottom: 6rem;
		width: 30rem;
	}

	.event__title {
		margin-bottom: 3rem;
		line-height: 1;
		font-size: 2rem;
		text-align: center;
	}

	.event__content {
		margin-bottom: 6rem;
	}

	.event__content--detail,
	.event__content--data {
		display: block;
	}

	.event__content--detail {
		margin-bottom: 3rem;
	}

	.event__content--detail .image {
		margin-bottom: 2rem;
		width: 100%;
	}

	.event__content--detail .content {
		padding-right: 0;
		width: 100%;
		text-align: center;
	}

	.event__content--detail .content__title {
		margin-bottom: 1rem;
		font-size: 2.4rem;
		letter-spacing: -0.005rem;
	}

	.event__content--detail .content__lead {
		margin-bottom: 2.4rem;
		font-size: 1.3rem;
	}

	.event__content--detail .content__text {
		font-size: 1.5rem;
	}

	.event__content--detail .content__text.en {
		margin-top: 2rem;
		font-size: 1.3rem;
	}

	.event__content--data .data {
		font-size: 1.3rem;
	}

	.event__content--data .data__th {
		padding-right: 1.5rem;
	}

	.event__content--data .data__td .time,
	.event__content--data .data__td .supplement {
		width: 100%;
		display: block;
	}

	.event__content--data .data__td .supplement {
		letter-spacing: -0.005em;
	}

	.event__content--data .data__td.note {
		padding-top: 1rem;
	}

	.event__content--data .link-button {
		margin-top: 3rem;
		width: 100%;
		height: 4rem;
		font-size: 2rem;
	}
}

/*
	event__past
------------------------------ */
.event__past {
	padding-bottom: 5rem;
	position: relative;
}

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

.event__past--title {
	font-family: var(--kalnia);
	font-size: 3rem;
	text-align: center;
}

.event__past--title .jp {
	font-size: 1.6rem;
	display: block;
}

.event__past-slider {
	margin-top: 4rem;
	overflow: visible;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 92%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 92%, transparent 100%);
}

.event__past-item {
	margin: 0 1.0981vw;
	width: 20.4978vw;
	height: auto;
}

.event__past--image img {
	width: 100%;
	height: auto;
	display: block;
}

.event__past--year {
	margin: 1.5rem 0;
	font-family: var(--kalnia);
	font-size: 1.3rem;
}

.event__past--content .title {
	line-height: normal;
	font-size: 1.6rem;
}

.event__past--content .text {
	font-size: 1.3rem;
}

.event__pickup--title {
	margin-bottom: 2rem;
	line-height: normal;
	font-size: 2.2rem;
	position: relative;
}

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

.event__pickup--list {
	display: flex;
	justify-content: space-between;
}

.event__pickup--item {
	width: 28rem;
	text-align: center;
}

.event__pickup--item .image {
	margin-bottom: 3rem;
}

.event__pickup--item .title {
	font-size: 2rem;
}

.event__pickup--item .text {
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.event__past {
		padding-bottom: 5rem;
		position: relative;
	}

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

	.event__past--title {
		font-family: var(--kalnia);
		font-size: 3rem;
		text-align: center;
	}

	.event__past--title .jp {
		font-size: 1.6rem;
		display: block;
	}

	.event__past-slider {
		-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
		mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
	}

	.event__past-item {
		margin: 0 0.9rem;
		width: 30rem;
	}

	.event__past--year {
		margin: 1.5rem 0;
		font-family: var(--kalnia);
		font-size: 1.3rem;
	}

	.event__past--content .title {
		line-height: normal;
		font-size: 1.6rem;
	}

	.event__past--content .text {
		font-size: 1.3rem;
	}

	.event__pickup--title {
		padding-bottom: 2rem;
		font-size: 1.8rem;
		text-align: center;
	}

	.event__pickup--title::before {
		width: 30rem;
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
		transform: translateY(0);
	}

	.event__pickup--list {
		display: block;
	}

	.event__pickup--item {
		width: 100%;
	}

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

	.event__pickup--item .image {
		margin-bottom: 2rem;
	}

	.event__pickup--item .title {
		font-size: 2rem;
	}

	.event__pickup--item .text {
		font-size: 1.3rem;
	}
}

/* ----------------------------------------------------
	bg-tokyotower
---------------------------------------------------- */
.bg-tokyotower {
	background-attachment: fixed;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: 44.363vw auto;
	position: relative;
}

.bg-tokyotower.bg-type01 {
	background-image: url(../img/bg-tokyotower01.webp);
}

.bg-tokyotower.bg-type02 {
	background-image: url(../img/bg-tokyotower02.webp);
}

.bg-tokyotower.bg-type03 {
	background-image: url(../img/bg-tokyotower03.webp);
}

.bg-tokyotower .sec {
	padding: 14rem 0;
}

.bg-tokyotower .sec::before {
	width: 55.637vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.bg-tokyotower .sec__content {
	margin: 0 auto;
	width: 92.8rem;
	height: 100%;
}

.bg-tokyotower .sec__inner {
	width: 46.6rem;
	height: 100%;
	position: relative;
	z-index: 2;
}

/* .bg-tokyotower内だけに見せる固定背景レイヤー */
.bg-tokyotower__media {
	background-color: rgb(var(--wht));
	width: 44.290vw;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	pointer-events: none;
}

.bg-tokyotower__clip {
	height: 100%;
	overflow: hidden;
	position: relative;
	clip-path: inset(0 0 0 0);
}

/* 画像はfixed、親のclipで表示範囲を限定する */
.bg-tokyotower__image {
	width: 44.290vw;
	height: 100vh;
	display: block;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	object-fit: cover;
	object-position: top right;
	transition: opacity 1s ease;
	pointer-events: none;
}

.bg-tokyotower__image.is-active {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.bg-tokyotower {
		background-image: none;
		/* padding-top: 34.5rem; */
		padding-top: 0;
	}

	.bg-tokyotower .sec {
		padding: 8rem 0;
	}

	.bg-tokyotower .sec::before {
		width: 100vw;
	}

	.bg-tokyotower .sec__content {
		margin: 0 auto;
		width: 30rem;
		height: 100%;
	}

	.bg-tokyotower .sec__inner {
		width: 100%;
		height: auto;
	}

	.bg-tokyotower__media {
		width: 100%;
		height: 100%;
		display: block;
		right: auto;
		left: 0;
	}

	.bg-tokyotower__image {
		width: 100vw;
		height: 100vh;
		right: auto;
		left: 0;
		object-position: center top;
	}

	.bg-tokyotower__image--02,
	.bg-tokyotower__image--03 {
		display: none;
	}
}

/* ----------------------------------------------------
	information
---------------------------------------------------- */
.information::before {
	background-color: rgb(var(--wht));
}

.information__title {
	margin-bottom: 5rem;
	line-height: normal;
	font-size: 2.4rem;
}

.information__title .en {
	margin-top: 0.5rem;
	font-size: 1.8rem;
	display: block;
}

.information__name {
	margin-bottom: 5rem;
	display: flex;
	align-items: flex-end;
}

.information__name--logo {
	margin-right: 3.2rem;
	width: 11.3rem;
}

.information__name--text {
	line-height: normal;
	color: rgb(var(--red));
	font-family: var(--kalnia);
	font-size: 2.4rem;
}

.information .sec__content--detail:not(:last-of-type) {
	margin-bottom: 5rem;
}

.information .sec__content--title {
	color: rgb(var(--red));
	font-size: 1.6rem;
	display: flex;
}

.information .sec__content--title .jp {
	margin-right: 1em;
}

.information .hours {
	font-size: 1.4rem;
}

.information .hours__th {
	padding-right: 2rem;
}

.information .note {
	margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
	.information .sec__title {
		margin-bottom: 3rem;
		color: rgb(var(--red));
	}

	.information::before {
		background-color: rgb(var(--wht));
	}

	.information__title {
		margin-bottom: 3rem;
		font-size: 2rem;
		text-align: center;
	}

	.information__title .en {
		margin-top: 1.5rem;
		font-size: 1.5rem;
	}

	.information__name {
		display: block;
	}

	.information__name--logo {
		margin: 0 auto 2rem;
		width: 9rem;
	}

	.information__name--text {
		font-size: 1.6rem;
		text-align: center;
	}

	.information .sec__content--title {
		margin-bottom: 1rem;
		font-size: 1.6rem;
		flex-direction: column;
		align-items: center;
	}

	.information .sec__content--title .jp {
		margin-right: 0;
	}

	.information .hours,
	.information .hours tbody,
	.information .hours__row,
	.information .hours__th,
	.information .hours__td {
		text-align: center;
		display: block;
	}

	.information .hours__th {
		padding-right: 0;
	}

	.information .note {
		margin-top: 1.5rem;
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation {
	color: rgb(var(--wht));
}

.reservation::before {
	background-color: rgb(var(--gra));
}

.reservation__online {
	margin-bottom: 8rem;
	padding-bottom: 8rem;
	border-bottom: solid 1px rgb(var(--wht));
}

.reservation__title {
	margin-bottom: 1rem;
	font-size: 1.6rem;
	display: flex;
}

.reservation__title .en {
	margin-left: 1em;
}

.reservation .link-button {
	width: 35rem;
	height: 6rem;
	font-family: var(--kalnia);
	font-size: 2.6rem;
	border: solid 1px rgb(var(--wht));
}

.reservation__tel {
	line-height: normal;
	font-family: var(--kalnia);
	font-size: 3rem;
}

.reservation__tel--note {
	font-family: var(--gothic);
	font-size: 1.4rem;
	display: block;
}

@media screen and (max-width: 768px) {
	.reservation .sec__title {
		margin-bottom: 3rem;
		font-size: 3rem;
	}

	.reservation__online {
		margin-bottom: 5rem;
		padding-bottom: 5rem;
	}

	.reservation__title {
		margin-bottom: 2rem;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.reservation__title .en {
		margin-left: 0;
	}

	.reservation .link-button {
		width: 100%;
		height: 4rem;
		font-size: 2rem;
	}

	.reservation__tel {
		font-size: 2.8rem;
		text-align: center;
	}
}

/* ----------------------------------------------------
	spgr
---------------------------------------------------- */
.spgr {
	padding: 14rem 0;
}

.spgr::before {
	background-color: rgb(var(--wht));
}

.spgr__logo {
	margin-bottom: 5rem;
	width: 20rem;
}

.spgr__title {
	margin-bottom: 1rem;
	color: rgb(var(--red));
	font-size: 1.6rem;
}

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

.spgr__text .en {
	margin-top: 1em;
}

.spgr .link-button {
	width: 35rem;
	height: 6rem;
	font-family: var(--kalnia);
	font-size: 2.2rem;
	border: solid 1px rgb(var(--blk));
}

.spgr .link-button .en {
	margin-left: 1em;
	font-family: var(--gothic);
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.spgr {
		padding: 8rem 0;
	}

	.spgr__logo {
		margin: 0 auto 3rem;
	}

	.spgr__title {
		width: 100vw;
		text-align: center;
		white-space: nowrap;
		position: relative;
		left: -3.75rem;
	}

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

	.spgr .link-button {
		width: 100%;
		height: 4rem;
		font-size: 2rem;
	}

	.spgr .link-button .en {
		font-size: 1.4rem;
	}
}

/* ----------------------------------------------------
	access
---------------------------------------------------- */
.access {
	color: rgb(var(--wht));
}

.access::before {
	background-color: rgb(var(--red));
}

.access__logo {
	margin-bottom: 4rem;
	width: 16rem;
}

.access__hotel-name {
	font-size: 2.4rem;
	display: flex;
	align-items: baseline;
}

.access__hotel-name .en {
	margin-left: 1em;
	font-size: 1.8rem;
}

.access__address {
	margin-bottom: 4rem;
	font-size: 1.4rem;
}

.access .sns {
	margin-bottom: 5rem;
	display: flex;
}

.access .sns__item {
	width: 3rem;
}

.access .sns__item:not(:last-of-type) {
	margin-right: 2.4rem;
}

.access__content {
	margin-bottom: 5rem;
}

.access__content--title {
	margin-bottom: 1em;
	font-size: 1.6rem;
	display: flex;
}

.access__content--title .en {
	margin-left: 1em;
}

.access__content--detail {
	font-size: 1.4rem;
}

.access__content--detail .en {
	margin-top: 2rem;
}

.access__content--detail .note {
	margin-top: 1.5rem;
	font-size: 1.1rem;
}

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

.access__link--item .link-button {
	width: 100%;
	height: 8.5rem;
	line-height: 1;
	font-family: var(--kalnia);
	font-size: 2.6rem;
	border: solid 1px rgb(var(--wht));
	flex-direction: column;
}

.access__link--item .link-button .jp {
	font-family: var(--gothic);
	font-size: 1.4rem;
}

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

	.access__logo {
		margin: 0 auto 4rem;
		width: 16rem;
	}

	.access__hotel-name {
		margin-bottom: 2rem;
		flex-direction: column;
		align-items: center;
	}

	.access__hotel-name .en {
		margin-left: 0;
	}

	.access__address {
		margin-bottom: 5rem;
		text-align: center;
	}

	.access .sns {
		justify-content: center;
	}

	.access__content--title {
		justify-content: center;
	}

	.access__content--detail {
		font-size: 1.3rem;
	}

	.access__content--detail .note {
		margin-top: 1rem;
	}

	.access__link--item .link-button {
		height: 7rem;
		font-size: 2rem;
		letter-spacing: -0.005em;
	}
}

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

.map iframe {
	width: 100%;
	height: 41.1rem;
}

@media screen and (max-width: 768px) {
	.map iframe {
		height: 29rem;
	}
}

/* ----------------------------------------------------
	site-note
---------------------------------------------------- */
.site-note {
	background-color: rgb(var(--wht));
	padding: 14rem 0;
}

.site-note .note {
	margin: 0 auto;
	width: 92.8rem;
}

.site-note .note.en {
	margin-top: 1rem;
}

@media screen and (max-width: 768px) {
	.site-note {
		padding: 8rem 0;
	}

	.site-note .note {
		width: 30rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--gra));
	padding: 4rem 0;
	color: rgb(var(--wht));
}

.footer__logo {
	margin: 0 auto 4rem;
	width: 16rem;
}

@media screen and (max-width: 768px) {
	.footer__logo {
		width: 12rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.6rem;
	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: 1.3rem;
		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 1em;
		text-decoration: none;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	margin-top: 2em;
	line-height: normal;
	font-size: 1.3rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 0.9rem;
		letter-spacing: -0.005rem;
	}
}

/* ----------------------------------------------------
	bg
---------------------------------------------------- */
.header,
.main,
.footer,
.pageTop {
	position: relative;
	z-index: 1;
}

.bg {
	--bg-video-scale: 1.35;
	background-color: rgb(var(--blk));
	overflow: hidden;
	opacity: 0;
	position: fixed;
	z-index: 0;
	inset: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

.bg.is-playing {
	opacity: 1;
}

.bg iframe {
	border: 0;
	width: 100vw;
	min-width: 177.7778vh;
	max-width: none;
	height: 56.25vw;
	min-height: 100vh;
	max-height: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(var(--bg-video-scale));
}

.bg video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.bg[data-bg-movie="mp4"] iframe {
	display: none;
}

.bg[data-bg-movie="youtube"] video {
	display: none;
}
