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

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

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

ul.note.en li::before {
	content: "*";
}

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

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

/* カウンター付き番号リスト */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-color: rgb(var(--blk));
	background-image: url(../img/arrow-button.svg);
	background-position: center right min(2.5rem, 1.83vw);
	background-repeat: no-repeat;
	background-size: min(3.9rem, 2.855vw) auto;
	height: min(7.3rem, 5.344vw);
	line-height: 1.2;
	color: rgb(var(--wht));
	font-size: min(1.9rem, 1.391vw);
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	border-radius: min(7.3rem, 5.344vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

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

.link-button.aqa {
	background-color: rgb(var(--aqa));
}

.link-button.aqa:hover {
	background-color: rgb(var(--aqh));
}

.link-button.blu {
	background-color: rgb(var(--blu));
}

.link-button.blu:hover {
	background-color: rgb(var(--blh));
}

.link-button.mob {
	background-color: rgb(var(--mob));
}

.link-button.cor {
	background-color: rgb(var(--cor));
}

.link-button.mob:hover,
.link-button.cor:hover {
	background-color: rgb(var(--brh));
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 6.667vw;
		background-size: 10.4vw auto;
		height: 14.667vw;
		font-size: 5.067vw;
		border-radius: 14.667vw;
	}
}

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

/* ---------------------------------------------------
  フェードイン
--------------------------------------------------- */
.fadeBlock {
	opacity: 0;
	transition: all 2.5s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/* ---------------------------------------------------
  object
--------------------------------------------------- */
.object {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
}

/* ---------------------------------------------------
  Visually Hidden
--------------------------------------------------- */
.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	border: 0;
	position: absolute;
}

/* ---------------------------------------------------
  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));
}