/* ---------------------------------------------------
  表示切り替え（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.type1 li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

/* 注記リスト（改良版） */
ul.note li {
	font-size: min(1.3rem, 1.016vw);
	font-weight: 400;
}

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

ul.type1 li::before {
	content: "・";
}

ul.type1 li.star::before {
	color: rgb(var(--red));
	content: "★";
}

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

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	height: min(5rem, 3.906vw);
	font-size: min(1.6rem, 1.25vw);
	text-decoration: none;
	border-style: solid;
	border-width: 1px;
	border-radius: min(5rem, 3.906vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button::after {
	width: min(0.9rem, 0.703vw);
	height: min(1.6rem, 1.25vw);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: min(1.6rem, 1.25vw);
	transform: translateY(-50%);
	content: "";
}

.link-button:hover {
	opacity: 0.5;
}

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

	.link-button::after {
		width: 2.4vw;
		height: 4.267vw;
		right: 4.267vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 64px;
	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: max(-2.4rem, -1.875vw);
}

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

.slick-dots li:not(:last-of-type) {
	margin-right: min(0.8rem, 0.625vw);
}

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

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

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

@media screen and (max-width: 768px) {
	.slick-dots {
		justify-content: center;
		bottom: -8vw;
	}

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

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

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