/* ---------------------------------------------------
  表示切り替え（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.note li {
	font-size: min(1.4rem, 1.025vw);
	font-weight: 400;
}

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

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

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

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.link-button {
		font-size: 4.267vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--nav), 0.6);
	width: 65px;
	height: 65px;
	border-radius: 65px;
	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;
}

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

.slick-dots {
	display: flex;
	bottom: -12px;
}

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

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

.slick-dots li button {
	width: 8px;
	height: 8px;
	border: solid 1px rgb(var(--wht));
	border-radius: 8px;
}

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

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

.slick-arrow,
.slick-arrow:focus,
.slick-arrow:hover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: min(0.8rem, 0.586vw);
	height: min(1.7rem, 1.245vw);
	z-index: 1;
}

.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
	background-image: url(../img/arrow-prev.webp) !important;
	left: min(1.2rem, 0.878vw);
}

.slick-next,
.slick-next:focus,
.slick-next:hover {
	background-image: url(../img/arrow-next.webp);
	right: min(1.2rem, 0.878vw);
}

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

	.slick-arrow,
	.slick-arrow:focus,
	.slick-arrow:hover {
		width: 2.133vw;
		height: 4.533vw;
	}

	.slick-prev,
	.slick-prev:focus,
	.slick-prev:hover {
		left: 3.2vw;
	}

	.slick-next,
	.slick-next:focus,
	.slick-next:hover {
		right: 3.2vw;
	}
}