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

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

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

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-image: url(../img/arrow-link.svg);
	background-position: center right min(3rem, 2.344vw);
	background-repeat: no-repeat;
	background-size: min(2.6rem, 2.031vw) auto;
	margin: min(5rem, 3.906vw) auto 0;
	width: min(39rem, 30.469vw);
	height: min(7.2rem, 5.625vw);
	font-size: min(2rem, 1.563vw);
	font-weight: 500;
	text-decoration: none;
	border: solid 1px rgb(var(--wht));
	border-radius: min(7.2rem, 5.625vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 4.267vw;
		background-size: 6.933vw auto;
		margin-top: 11.733vw;
		width: 100%;
		height: 18.133vw;
		font-size: 4.267vw;
		border-radius: 18.133vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.8);
	background-color: rgba(24, 83, 104, 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 {
	display: flex;
	bottom: auto;
}

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

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

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

.slick-dots li button {
	padding: 0;
}

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