:root {
	--ld-bg0: #ECF7F3;
	--ld-bg1: #DCEFE9;
	--ld-ink: #17322A;
	--ld-accent: #2AA98C;
	--ld-accent-soft: color-mix(in oklab, var(--ld-accent) 25%, #fff);
}

.l-loader {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	width: 100vw;
	height: 100vh;
	background: radial-gradient(1200px 1200px at 50% 45%, var(--ld-bg0) 0%, var(--ld-bg1) 70%, var(--ld-bg1) 100%);
	z-index: 99999;
	animation: l_out 0.4s 1.6s forwards;
}

@keyframes l_out {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

.l-loader::before,
.l-loader::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: clamp(24px, 5vh, 48px);
	width: min(56vw, 520px);
	height: 6px;
	border-radius: 999px;
	pointer-events: none;
	transform: translateX(-50%);
}

.l-loader::before {
	background: color-mix(in oklab, var(--ld-accent) 14%, #fff);
}

.l-loader::after {
	background: linear-gradient(90deg, var(--ld-accent) 0 0) no-repeat, linear-gradient(90deg, transparent 0, var(--ld-accent-soft) 40%, #fff 50%, var(--ld-accent-soft) 60%, transparent 100%) no-repeat;
	background-size: 100% 100%, 220% 100%;
	mix-blend-mode: normal;
	transform-origin: left center;
	transform: translateX(-50%) scaleX(0);
	animation: ld_barGrow 1.2s 0.35s ease forwards, ld_barShine 0.9s 0.6s ease-in-out 2;
}

@keyframes ld_barGrow {
	to {
		transform: translateX(-50%) scaleX(1);
	}
}

@keyframes ld_barShine {
	0% {
		background-position: 0 0, -60% 0;
	}

	100% {
		background-position: 0 0, 160% 0;
	}
}

.l-loader__logo {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateY(8px) scale(.98);
	filter: blur(8px);
	opacity: 0;
	animation: l_in 0.7s 0.25s ease-out forwards;
}

@keyframes l_in {
	to {
		transform: translateY(0) scale(1);
		filter: blur(0);
		opacity: 1;
	}
}

.l-loader__icon {
	width: 84px;
}

.l-loader__icon img {
	display: block;
	width: 100%;
	height: auto;
}

.l-loader__text {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--ld-ink);
}

@media screen and (max-width: 768px) {

	.l-loader::before,
	.l-loader::after {
		width: min(76vw, 460px);
	}

	.l-loader__icon {
		width: 64px;
	}

	.l-loader__text {
		font-size: 20px;
	}
}

@media (prefers-reduced-motion:reduce) {

	.l-loader,
	.l-loader::before,
	.l-loader::after,
	.l-loader__logo {
		animation: none !important;
	}

	.l-loader {
		opacity: 0;
		visibility: hidden;
	}
}

.p-front-hero {
	overflow: clip;
	position: relative;
	display: block;
	min-height: calc(100vh - 138px);
}

.p-front-hero__overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	z-index: 2;
}

.p-front-hero__text {
	position: absolute;
	inset: 10% auto auto 50%;
	width: min(100%, 1100px);
	max-width: calc(100% - 40px);
	color: #33393F;
	text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 2px 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff;
	text-align: center;
	transform: translateX(-50%);
}

.p-front-hero__catch {
	display: inline;
	white-space: nowrap;
	word-break: keep-all;
	font-size: 64px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.p-front-hero__company {
	display: block;
	margin-top: 8px;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: .02em;
	text-align: right;
	opacity: 0;
	filter: blur(10px);
	transform: translateY(6px);
	transition: all 0.9s;
}

.p-front-hero__catch .ch {
	display: inline-block;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.p-front-hero__catch .ch.show {
	opacity: 1;
	transform: translateY(0);
}

.p-front-hero__company.is-show {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

.p-front-hero__canvas {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.p-front-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	display: none;
}

.p-front-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

.p-front-hero__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
}

.p-front-hero__scroll {
	position: absolute;
	inset: auto auto 24px 50%;
	padding: 12px 20px;
	background-color: #3C5F82;
	box-shadow: 0 10px 30px rgb(60 95 130 / 35%);
	border-radius: 999px;
	line-height: 1;
	color: #fff;
	font-weight: 700;
	opacity: 0.9;
	cursor: pointer;
	pointer-events: auto;
	transform: translateX(-50%);
}

@media (any-hover: hover) {
	.p-front-hero__scroll:hover {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.p-front-hero__video {
		display: none;
	}

	.p-front-hero__catch .ch {
		transition: none !important;
	}
}

@media screen and (max-width: 768px) {
	.p-front-hero {
		min-height: calc(100vh - 60px);
	}

	.p-front-hero__text {
		top: 10%;
		text-align: left;
	}

	.p-front-hero__catch {
		font-size: 48px;
	}

	.p-front-hero__company {
		font-size: 28px;
	}
}

.p-front-property {
	overflow: hidden;
	padding: 80px 50px;
}

.p-front-property__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1600px;
	margin: 0 auto;
}

.p-front-property__slider-wrap {
	position: relative;
	display: flex;
	gap: 10px;
	transition: transform 0.3s ease;
	will-change: transform;
}

.p-front-property__arrow {
	position: absolute;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	background-color: #fff;
	border: 1px solid #3C5F82;
	border-radius: 50%;
	font-weight: 700;
	color: #3C5F82;
	aspect-ratio: 1/1;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 1;
}

.p-front-property__arrow--left {
	left: -40px;
	display: none;
}

.p-front-property__arrow--right {
	right: -40px;
}

@media (any-hover: hover) {
	.p-front-property__arrow:hover {
		background-color: #3C5F82;
		color: #fff;
	}
}

.p-front-property__slider {
	overflow: visible;
	scrollbar-width: none;
	display: flex;
	gap: 16px;
	padding: 4px 0 20px;
}

.p-front-property__slider::-webkit-scrollbar {
	display: none;
}

.p-front-property-card {
	flex: 0 0 320px;
}

.p-front-property__more {
	margin-top: -20px;
	text-align: center;
}

.p-front-property__more>.c-button {
	width: 440px;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.p-front-property {
		padding-left: 40px;
		padding-right: 40px;
	}

	.p-front-property__arrow {
		width: 60px;
		font-size: 20px;
	}

	.p-front-property-card {
		flex: 0 0 calc(100vw - 80px);
	}
}

.p-front-staff {
	overflow: hidden;
	padding: 80px 50px;
	background-color: #E2E6EA;
}

.p-front-staff__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1600px;
	margin: 0 auto;
}

.p-front-staff__list {
	overflow: visible;
	display: flex;
	gap: 40px;
}

.p-front-staff__list::-webkit-scrollbar {
	display: none;
}

.p-front-staff__list .c-staff-card {
	flex: 0 0 320px;
}

.p-front-staff__more {
	text-align: center;
}

.p-front-staff__more>.c-button {
	width: 440px;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.p-front-staff {
		padding: 80px 20px;
	}

	.p-front-staff__list {
		overflow: scroll visible;
	}

	.p-front-staff__list .c-staff-card {
		flex: 0 0 calc(100vw - 144px);
	}
}

.p-front-business {
	position: relative;
	overflow: hidden;
	padding: 120px 20px;
}

.p-front-business--reverse {
	background-color: #E2E6EA;
}

.p-front-business__bg {
	position: absolute;
	inset: 0 auto auto 50%;
	overflow: hidden;
	width: 100%;
	max-width: 2000px;
	height: 100%;
	transform: translateX(-50%);
	pointer-events: none;
}

.p-front-business__bg-text {
	position: absolute;
	top: 0;
	right: 0;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 120px;
	font-weight: 800;
	color: #D6DADF;
	white-space: nowrap;
}

.p-front-business--reverse .p-front-business__bg-text {
	left: 0;
	right: auto;
}

.p-front-business__bg-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.3;
	pointer-events: none;
}

.p-front-business__bg-circle--1 {
	left: 8%;
	top: 15%;
	width: 80px;
	height: 80px;
	background-color: #3C5F82;
	animation: float 12s infinite ease-in-out alternate;
}

.p-front-business__bg-circle--2 {
	right: 15%;
	bottom: 20%;
	width: 50px;
	height: 50px;
	background-color: #F5C847;
	animation: float 15s infinite ease-in-out alternate-reverse;
}

@keyframes float {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(40px, -40px);
	}
}

.p-front-business__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s;
	z-index: 2;
}

.p-front-business__inner.visible {
	opacity: 1;
	transform: translateY(0);
}

.p-front-business__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

.p-front-business--reverse .p-front-business__row {
	flex-direction: row-reverse;
}

.p-front-business__image {
	overflow: hidden;
	flex-basis: 40%;
	border-radius: 8px;
	aspect-ratio: 3/2;
}

.p-front-business__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-front-business__content {
	flex: 1;
}

.p-front-business__title {
	font-size: 54px;
	font-weight: 700;
	color: #3C5F82;
}

.p-front-business__title>br {
	display: none;
}

.p-front-business__text {
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.8;
}

.p-front-business__sns {
	display: flex;
	gap: 24px;
	margin-top: 40px;
}

.p-front-business__sns-item {
	width: 48px;
}

.p-front-business__sns-link {
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 8px;
	background-color: #33393F;
	border: 1px solid #33393F;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}

.p-front-business__sns-item--line .p-front-business__sns-link {
	padding: 0;
}

.p-front-business__sns-link svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	fill: #fff;
}

.p-front-business__sns-item--line .line-cls-2 {
	fill: #33393F;
}

@media (any-hover: hover) {
	.p-front-business__sns-link:hover {
		background-color: #fff;
		opacity: 1;
	}

	.p-front-business__sns-link:hover svg {
		fill: #33393F;
	}

	.p-front-business__sns-item--line .p-front-business__sns-link:hover .line-cls-1 {
		fill: #33393F;
	}

	.p-front-business__sns-item--line .p-front-business__sns-link:hover .line-cls-2 {
		fill: #fff;
	}

	.p-front-business__sns-item--instagram .p-front-business__sns-link:hover .instagram-cls-1 {
		fill: #33393F;
	}
}

.p-front-business__more {
	display: flex;
	gap: 20px;
	margin-top: 40px;
}

.p-front-business__more>.c-button {
	padding: 16px 40px;
	font-size: 18px;
}

.p-front-business__movie {
	overflow: hidden;
	width: 60%;
	margin: 80px auto 0;
	padding: 4px;
	background-color: #3C5F82;
	border-radius: 8px;
	aspect-ratio: 16 / 9;
}

.p-front-business__movie iframe {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.p-front-business__bg-text {
		top: 20px;
		font-size: 80px;
		writing-mode: vertical-rl;
	}

	.p-front-business__bg-circle {
		opacity: 0.2;
	}

	.p-front-business__bg-circle--1 {
		left: 0%;
	}

	.p-front-business__bg-circle--2 {
		right: 10%;
	}

	.p-front-business__row {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		gap: 60px;
	}

	.p-front-business--reverse .p-front-business__row {
		flex-direction: column-reverse;
	}

	.p-front-business__title {
		padding-left: 1em;
		font-size: 40px;
		text-indent: -1em;
	}

	.p-front-business__title>br {
		display: unset;
	}

	.p-front-business__movie {
		width: 100%;
		margin-top: 60px;
		padding: 2px;
	}
}

.p-front-notice {
	padding: 80px 50px;
}

.p-front-notice__inner {
	display: grid;
	gap: 40px;
	max-width: 1600px;
	margin: 0 auto;
}

.p-front-notice__row {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: flex-start;
	gap: 60px;
}

.p-front-notice__more {
	text-align: right;
}

.p-front-notice__more>.c-button {
	width: 100%;
	max-width: 400px;
}

@media screen and (max-width: 768px) {
	.p-front-notice {
		padding: 80px 20px;
	}

	.p-front-notice__row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.p-front-notice__more>.c-button {
		width: 100%;
		max-width: 400px;
	}
}