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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

ul.list.en li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

/* 注記リスト（改良版） */
ul.note li {
	font-size: 1.4em;
}

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

ul.note.en 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;
	}
}

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button.cover {
	pointer-events: none;
	z-index: 1;
}

.link-button.cover::before {
	content: "";
	background: rgba(var(--blk), 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.link-button.comingsoon::before {
	content: "Coming Soon";
}

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

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--grn), 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 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

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

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

/* ---------------------------------------------------
  slick
--------------------------------------------------- */
.slick-list {
	line-height: 0;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots {
	display: flex;
	position: absolute;
	bottom: max(-2.5rem, -1.83vw);
	left: 0;
}

.slick-dots li {
	margin: 0;
	width: auto;
	height: auto;
}

.slick-dots li:not(:last-of-type) {
	margin-right: 8px;
}

.slick-dots li button {
	width: min(1.5rem, 1.098vw);
	height: min(1.5rem, 1.098vw);
	border: solid 1px rgb(var(--grn));
	border-radius: min(1.5rem, 1.098vw);
}

.slick-dots li button::before {
	display: none;
}

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

@media screen and (max-width: 768px) {
	.slick-dots {
		bottom: -5.333vw;
		left: 5.333vw;
	}

	.slick-dots li button {
		width: 2.667vw;
		height: 2.667vw;
		border-radius: 2.667vw;
	}
}