/* ---------------------------------------------------
  表示切り替え（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: 1.3rem;
}

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

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

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

/* circle */
ul.circle li::before {
	content: "●";
}

/* dots */
ul.dots li {
	position: relative;
	padding-left: 1em;
}

ul.dots li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

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

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

/* ---------------------------------------------------
  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-image: url(../img/arrow-link-button.svg);
	background-position: center right 2.6rem;
	background-repeat: no-repeat;
	background-size: 1.7rem auto;
	height: 6.8rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	position: relative;
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 1.8rem;
		background-size: 1.2rem auto;
		height: 4.6rem;
		line-height: normal;
		text-align: center;
		font-size: 1.3rem;
		letter-spacing: -0.005em;
		border-radius: 4.6rem;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--color-daypool-blue), 0.8);
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 0.8rem;
	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: 1.6rem;
	height: auto;
}

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

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

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

.slick-slide {
	line-height: 1.8;
}

.slick-dots {
	display: flex;
	bottom: 0;
}

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

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

.slick-dots li button {
	background-color: rgb(var(--wht));
	padding: 0;
	width: 1rem;
	height: 1rem;
	border: solid 1px rgb(var(--wht));
	border-radius: 1rem;
}

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

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

.slick-arrow {
	width: auto;
	height: auto;
	font-size: 0;
	line-height: 0;
	z-index: 1;
}

.slick-arrow::before {
	display: none;
}

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

/* ---------------------------------------------------
  slick
--------------------------------------------------- */
.bg-fixed {
	margin-bottom: 0;
	color: rgb(var(--wht));
	font-size: 2rem;
	position: relative;
}

.bg-fixed__media {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.bg-fixed__clip {
	height: 100%;
	overflow: hidden;
	position: relative;
	clip-path: inset(0 0 0 0);
}

.bg-fixed__clip picture {
	display: block;
}

/* background-attachment: fixed の代替として画像を固定表示する */
.bg-fixed__clip img {
	width: 100vw;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
}

/* ---------------------------------------------------
  img-marquee
--------------------------------------------------- */
.img-marquee {
	overflow: hidden;
}

.img-marquee__track {
	list-style: none;
	margin: 0;
	padding: 0;
	width: max-content;
	display: flex;
	gap: var(--kv_scroll-gap);
	animation: kvScroll var(--kv_scroll-speed) linear infinite;
}

.img-marquee__item {
	width: var(--kv_scroll-item-width);
	flex: 0 0 auto;
}

.img-marquee__item picture,
.img-marquee__item img {
	display: block;
	width: 100%;
}

@keyframes kvScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(var(--kv_scroll-distance));
	}
}

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