@charset 'UTF-8';
/* Splide スライダー（必要な基本スタイルを手動で定義） */

.splide {
	visibility: hidden;
	position: relative;
	width: calc(100vw - var(--scrollbar-width)) !important;
	max-width: calc(100vw - var(--scrollbar-width)) !important;
}

.splide.is-initialized {
	visibility: visible;
}

.splide__track {
	position: relative;
	z-index: 0;
	overflow: visible !important;
}

.splide__list {
	display: flex;
	list-style: none;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide__slide {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}

/* カスタマイズ */

.js-photo-slider {
	overflow: hidden;
	width: 100%;
}

.js-photo-slider .splide__track {
	overflow: hidden;
}

.js-photo-slider .splide__list {
	align-items: center;
	height: auto;
}

.js-photo-slider .splide__slide {
	width: auto;
	height: auto;
}

.js-photo-slider .splide__slide figure {
	display: block;
	flex-shrink: 0;
	margin: 0;
}

.js-photo-slider .splide__slide img {
	display: block;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

/* -----------------------------------------------------
 * page: solution
 * -------------------------------------------------- */

.p-solution .c-heading .title span.is-after-br {
	margin-left: 1em;
}

.p-solution-about {
	overflow: hidden;
}

.p-solution-about-spiral .heading {
	display: flex;
	position: relative;
	z-index: 1;
	align-items: center;
	font-family: 'Georgia', serif;
	font-size: 5.6rem;
	font-weight: 400;
}

.p-solution-about-spiral .heading::before {
	content: '';
	display: block;
	width: 4rem;
	height: 1px;
	margin-right: 1rem;
	background-color: #181c1f;
	transition: -webkit-clip-path 0.5s ease;
	transition: clip-path 0.5s ease;
	transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
}

.p-solution-about-spiral .heading.is-anim-start::before {
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}

.p-solution-about-spiral-slider {
	position: relative;
	left: -1.2rem;
	margin: 4.8rem 0 0;
}

.p-solution-business .heading {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.p-solution-about .p-col {
		gap: 7rem;
	}

	.p-solution-about-spiral .heading {
		font-size: 8rem;
	}

	.p-solution-about-spiral .heading::before {
		width: 11rem;
		margin-right: 3rem;
	}

	.p-solution-about-spiral-slider {
		left: auto;
		margin: 12rem 0 0;
	}

	.p-solution-business .heading {
		font-size: 4rem;
	}
}