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

ul.note 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: "・";
}

/* ---------------------------------------------------
  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: red;
	margin: 0 auto;
	width: 41rem;
	height: 7rem;
	line-height: normal;
	color: rgb(var(--wht));
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 7rem;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	position: relative;
}

.link-button svg {
	width: 1.8rem;
	position: absolute;
	top: 50%;
	right: 3rem;
	z-index: 1;
	transform: translateY(-50%);
}

.link-button.comingsoon {
	pointer-events: none;
}

.link-button.comingsoon::before {
	background-color: rgba(163, 174, 184, 1);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	content: "Coming Soon";
}

@media screen and (max-width: 768px) {
	.link-button {
		background-position: center right 1.2rem;
		background-size: 1.6rem auto;
		width: 27rem;
		height: 4.5rem;
		font-size: 1.2rem;
		border-radius: 4.5rem;
	}

	.link-button svg {
		width: 1.2rem;
		right: 1.6rem;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background-color: rgba(53, 98, 170, 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;
}

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

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

/* slick */
.bg-fixed-slider {
	width: 100vw;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
}

.bg-fixed-slider,
.bg-fixed-slider .slick-list,
.bg-fixed-slider .slick-track,
.bg-fixed-slider .slick-slide,
.bg-fixed-slider .slick-slide>div,
.bg-fixed-slider__item,
.bg-fixed-slider picture {
	height: 100%;
}

.bg-fixed-slider .slick-slide {
	position: relative;
}

.bg-fixed-slider__item img {
	width: 100%;
	height: 100%;
	position: static;
	object-fit: cover;
	transform-origin: center;
	transition: opacity 2s ease-in-out;
	pointer-events: none;
}

.add-animation .bg-fixed-slider__item img {
	animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}

.bg-fixed-slider.slick-dotted {
	margin-bottom: 0;
}

.bg-fixed-slider .slick-dots {
	width: auto;
	font-family: var(--aboreto);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	top: 3.148vw;
	bottom: auto;
	left: 2.22vw;
}

.bg-fixed-slider .slick-dots li,
.bg-fixed-slider .slick-dots li button {
	width: auto;
	height: auto;
}

.bg-fixed-slider .slick-dots li {
	margin: 0 0 2.562vw;
}

.bg-fixed-slider .slick-dots li button {
	color: rgba(157, 157, 157, 1);
	font-size: 1.977vw;
	line-height: 1;
	padding: 0;
	display: flex;
	align-items: center;
	transition: all 0.3s ease 0s;
}

.bg-fixed-slider .slick-dots li button::before {
	margin-right: 0.15em;
	color: inherit;
	font-size: 2em;
	font-weight: bold;
	position: static;
	content: "-";
}

.bg-fixed-slider .slick-dots li button:hover,
.bg-fixed-slider .slick-dots li.slick-active button {
	color: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.bg-fixed-slider .slick-dots {
		top: 2.2rem;
		left: 1.2rem;
	}

	.bg-fixed-slider .slick-dots li {
		margin-bottom: 2rem;
	}

	.bg-fixed-slider .slick-dots li button {
		font-size: 1.6rem;
	}

	.bg-fixed-slider .slick-dots li button::before {
		margin-right: 0;
	}
}