/* ---------------------------------------------------
  表示切り替え（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.2rem, 0.938vw);
}

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

ul.circle li::before {
	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 {
	background-color: rgb(var(--red));
	background-image: url(../img/arrow-link.svg);
	background-position: center right min(2rem, 1.563vw);
	background-repeat: no-repeat;
	background-size: min(3.2rem, 2.5vw) auto;
	height: min(6.4rem, 5vw);
	color: rgb(var(--wht));
	font-size: min(2.4rem, 1.875vw);
	text-decoration: none;
	border-radius: min(6.4rem, 5vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button.no-link {
	pointer-events: none;
}

.link-circle {
	width: min(16rem, 12.5vw);
	height: min(16rem, 12.5vw);
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
	font-weight: 300;
	text-align: center;
	text-decoration: none;
	border-radius: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.link-circle svg {
	margin-top: min(1.2rem, 0.938vw);
	width: min(2rem, 1.563vw);
	height: auto;
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 2.667vw;
		background-size: 4.267vw auto;
		height: 10.667vw;
		font-size: 3.733vw;
		border-radius: 10.667vw;
	}

	.link-circle {
		width: 40vw;
		height: 40vw;
		font-size: 4.267vw;
	}

	.link-circle svg {
		margin-top: 3.2vw;
		width: 5.333vw;
	}
}

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

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

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

.slick-dots {
	height: min(1.6rem, 1.25vw);
	display: flex;
	bottom: 0;
}

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

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

.slick-dots li button {
	background-color: rgb(var(--wht));
	padding: 0;
	width: min(1.6rem, 1.25vw);
	height: min(1.6rem, 1.25vw);
	border: solid 1px rgb(var(--red-dark));
	border-radius: min(1.6rem, 1.25vw);
	cursor: pointer;
}

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

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

.slick-arrow {
	width: min(2.4rem, 1.757vw);
	height: min(3.6rem, 2.635vw);
	z-index: 1;
}

.slick-arrow,
.slick-arrow:hover,
.slick-arrow:focus {
	background-image: url(../img/arrow-link-button.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.slick-prev {
	left: min(1.8rem, 1.318vw);
	transform: translateY(-50%) rotate(180deg);
}

.slick-next {
	right: min(1.8rem, 1.318vw);
}

@media screen and (max-width: 768px) {
	.slick-dots li:not(:last-of-type) {
		margin-right: 1.333vw;
	}

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

	.slick-arrow {
		width: 4.267vw;
		height: 6.400vw;
	}
}