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

.pc-only {
	font-size: 0.5em;
	display: inline-block;
}

.sp {
	display: none;
}

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

	.pc,
	.pc-only {
		display: none;
	}

	.sp {
		display: block;
	}
}

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

ul.note li {
	font-family: var(--gothic);
	font-size: min(1.2rem, 0.878vw);
}

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

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

/* ---------------------------------------------------
  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 {
	background-color: rgb(var(--gold));
	background-position: center right min(1.6rem, 1.171vw);
	background-repeat: no-repeat;
	background-image: url(../img/arrow-link-wht.svg);
	background-size: min(2.6rem, 1.903vw) auto;
	margin: 0 auto;
	width: min(30rem, 23.077vw);
	height: min(5.5rem, 4.026vw);
	color: rgb(var(--wht));
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	text-decoration: none;
	border-radius: min(0.2rem, 0.146vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.link-button {
		letter-spacing: -0.005em;
		border-radius: 0.533vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--gold), 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.171vw);
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	z-index: 1;
}

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

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

.slick-dots li button {
	background-color: rgba(189, 189, 189, 1);
	width: min(1.6rem, 1.171vw);
	height: min(1.6rem, 1.171vw);
	border-radius: min(1.6rem, 1.171vw);
}

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

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

@media screen and (max-width: 768px) {
	.slick-dots {
		height: 2.667vw;
	}

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

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