/* ---------------------------------------------------
  表示切り替え（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.5rem, 1.172vw);
	font-weight: 400;
}

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

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

/* ---------------------------------------------------
  ボタンリンク
--------------------------------------------------- */
.link-button {
	background-image: url(../img/bg-link.webp);
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 100% auto;
	color: rgb(var(--wht));
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button:hover {
	background-image: url(../img/bg-link_sp.webp);
}

.link-button::after {
	background-image: url(../img/icon-arrow01.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}

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

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

.fadeBlock.fadeIn {
	opacity: 1;
}

.fadeTop {
	transform: translateY(-100px);
}

.fadeTop.fadeIn {
	transform: translateY(0);
}

.section__content.fadeBlock {
	opacity: 0;
	transition: all 2s;
}

.section__content.fadeBlock.fadeIn {
	opacity: 1;
}

.section__content.fadeTop {
	transform: translateY(-100px);
}

.section__content.fadeTop.fadeIn {
	transform: translateY(0);
}

.section__content--title.fadeBlock,
.section__content--title.fadeBlock.fadeIn {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.fadeTop {
		transform: translateY(-8vw);
	}

	.section__content.fadeBlock,
	.section__content.fadeBlock.fadeIn {
		opacity: 1;
	}

	.section__content.fadeTop,
	.section__content.fadeTop.fadeIn {
		transform: translateY(0);
	}

	.section__content--title.fadeBlock {
		opacity: 0;
		transition: all 2s;
	}

	.section__content--title.fadeBlock.fadeIn {
		opacity: 1;
	}
}

/* ---------------------------------------------------
  object
--------------------------------------------------- */
.object {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	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));
}