/* ---------------------------------------------------
  表示切り替え（PC / SP）
--------------------------------------------------- */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {}

/* 注記リスト（改良版） */
ul.note li {
	margin-left: 1em;
	font-family: var(--gothic);
	font-size: min(1.2rem, 0.878vw);
	text-indent: -1em;
}

ul.note.eng li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

ul.note li::before {
	content: "※";
}

ul.note.eng li::before {
	content: "*";
}

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

/* ● マーカー付きリスト */
ul.type1 li::before {
	content: "●";
}

/* カウンター付き番号リスト */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

/* ---------------------------------------------------
  iframe動画ラッパー
--------------------------------------------------- */
.video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video iframe {
	width: 100%;
	height: 100%;
}

/* ---------------------------------------------------
  電話リンク
--------------------------------------------------- */
.telephone {
	text-decoration: none;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.telephone {
		pointer-events: all;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--ppl), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: var(--pageTop-right);
	bottom: var(--pageTop-bottom);
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
  フェードイン
--------------------------------------------------- */
.fadeBlock {
	opacity: 0;
	transition: all 1.5s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

.fadeBottom {
	transform: translateY(50px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-image: linear-gradient(to right, var(--border-color) 50%, var(--border-color-alt) 50%);
	background-size: 200% 2px;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	padding-bottom: min(1.7rem, 1.245vw);
	width: min(19rem, 13.909vw);
	line-height: 1.5;
	color: var(--border-color);
	font-family: var(--ivypresto);
	font-size: min(2.5rem, 1.83vw);
	text-decoration: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	transition: background-position 0.5s ease;
}

.link-button:hover {
	background-position: 0% 100%;
	opacity: 1;
}

.link-button svg {
	width: min(1.3rem, 0.952vw);
	height: min(1rem, 0.732vw);
	fill: var(--border-color);
	position: absolute;
	top: min(1.6rem, 1.171vw);
	right: min(0.9rem, 0.659vw);
}

/* dinner */
.dinner .link-button {
	--border-color: rgba(209, 197, 86, 1);
	--border-color-alt: rgba(209, 197, 86, 0.3);
}

/* lunch */
.lunch .link-button {
	--border-color: rgba(135, 74, 145, 1);
	--border-color-alt: rgba(135, 74, 145, 0.3);
}

/* special */
.special .link-button {
	--border-color: rgba(255, 255, 255, 1);
	--border-color-alt: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
	.link-button {
		padding-bottom: 4.533vw;
		width: 50.667vw;
		font-size: 6.667vw;
		text-align: left;
	}

	.link-button svg {
		width: 3.2vw;
		height: 2.667vw;
		top: 4.267vw;
		right: 2.4vw;
	}
}

/* ---------------------------------------------------
  Visually Hidden
--------------------------------------------------- */
.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	border: 0;
	position: absolute;
}