@keyframes zoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
@keyframes pop {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.mainBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: -10;
}
.mainBg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.mv {
	position: relative;
}
.mv_title {
	margin-top: 320px;
}
.mv_bg {
	position: absolute;
	left: 0;
	top: -120px;
	width: 100%;
	height: calc(100% + 120px);
	z-index: -1;
}
.mv_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mv_bg::before {
	content: "";
	width: 100%;
	height: 300px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
}
.mv_bg::after {
	content: "";
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	left: 0;
	top: 0;
}
@media (max-width: 767px) {
	.mv_title {
		margin-top: 160px;
	}
	.mv_bg {
		top: -80px;
		height: calc(100% + 80px);
	}
}

.valueTop_text {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: var(--line-height-l);
}
.valueTop_text + .valueTop_text {
	margin-top: 30px;
}
.valueTop_lead {
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
	color: #FFF;
}
.valueTop_lead u {
	background: linear-gradient(transparent 7%, #003E7E 7%);
	display: inline;
	text-decoration: none;
	padding: 0 15px;
}
.valueTop_slider {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	display: flex;
	margin-top: 120px;
}
.valueTop_slider_item {
	min-width: 3300px;
	width: 100%;
	animation: scrollToLeft 30s infinite linear 0.5s both;
}
@keyframes scrollToLeft {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-100%, 0, 0);
	}
}
@media (max-width: 767px) {
	.valueTop_text {
		font-size: 1.6rem;
	}
	.valueTop_text + .valueTop_text {
		margin-top: 20px;
	}
	.valueTop_lead {
		font-size: 1.8rem;
	}
	.valueTop_lead u {
		padding: 0 10px;
	}
	.valueTop_slider {
		margin-top: 60px;
	}
	.valueTop_slider_item {
		min-width: 1440px;
		animation-duration: 24s;
	}
}

.valueMain_item {
	display: flex;
	flex-direction: row-reverse;
}
.valueMain_item + .valueMain_item {
	margin-top: 120px;
}
.valueMain_item--r {
	flex-direction: row;
}
.valueMain_image {
	min-width: 50%;
}
.valueMain_main {
	background-color: #EDF7FF;
	position: relative;
	padding: 120px 120px 0 0;
}
.valueMain_main::before {
	content: "";
	width: 360px;
	height: 100%;
	background-color: inherit;
	position: absolute;
	left: -360px;
	top: 0;
}
.valueMain_item--r .valueMain_main {
	padding: 120px 0 0 120px;
	background-color: var(--color-prim);
}
.valueMain_item--r .valueMain_main::before {
	left: auto;
	right: -360px;
}
.valueMain_title {
	display: flex;
	align-items: center;
	border-bottom: var(--color-prim) solid 4px;
	padding-bottom: 40px;
	gap: 40px;
}
.valueMain_title_number {
	min-width: 100px;
	aspect-ratio: 1;
	background-color: var(--color-prim);
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	font-size: 5.4rem;
	font-weight: 600;
	border-radius: 100%;
}
.valueMain_title_title {
	font-size: 4.2rem;
	line-height: 1.4;
	font-weight: 700;
	color: var(--color-prim);
}
.valueMain_item--r .valueMain_title {
	border-color: #FFF;
}
.valueMain_item--r .valueMain_title_number {
	background-color: #FFF;
	color: var(--color-prim);
}
.valueMain_item--r .valueMain_title_title {
	color: #FFF;
}
.valueMain_text {
	margin-top: 60px;
}
.valueMain_text_title {
	font-size: 3.2rem;
	color: var(--color-prim);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 30px;
}
.valueMain_text_text {
	font-size: 1.6rem;
	line-height: var(--line-height-l);
	color: var(--color-prim);
}
.valueMain_item--r .valueMain_text_title {
	color: #FFF;
}
.valueMain_item--r .valueMain_text_text {
	color: #FFF;
}
.valueMain_btn {
	margin-top: 50px;
	max-width: 368px;
}
@media (max-width: 767px) {
	.valueMain_item {
		display: block;
		margin-left: calc(50% - 50vw);
	}
	.valueMain_item + .valueMain_item {
		margin-top: 40px;
	}
	.valueMain_item--r {
		flex-direction: row;
		margin-left: auto;
		margin-right: calc(50% - 50vw);
	}
	.valueMain_image {
		min-width: 100%;
	}
	.valueMain_main {
		padding: 50px 30px 60px;
	}
	.valueMain_main::before {
		display: none;
	}
	.valueMain_item--r .valueMain_main {
		padding: 50px 30px 60px;
	}
	.valueMain_title {
		padding-bottom: 20px;
		gap: 14px;
	}
	.valueMain_title_number {
		min-width: 50px;
		font-size: 2.7rem;
	}
	.valueMain_title_title {
		font-size: 2.6rem;
	}
	.valueMain_text {
		margin-top: 30px;
	}
	.valueMain_text_title {
		font-size: 2rem;
	}
	.valueMain_text_text {
		font-size: 1.4rem;
	}
	.valueMain_btn {
		margin-top: 40px;
		max-width: 100%;
	}
}
/*# sourceMappingURL=value.css.map */
