@charset "UTF-8";

/* common top */

.center-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.common_title_top {
	display: table;
	padding: 3rem 2.4rem;
	box-sizing: border-box;
	border-top: 1.6rem solid #fcba06;
	border-bottom: 1.6rem solid #fcba06;
	margin-bottom: 6rem;
	@media screen and (max-width: 767px) {
		padding: 1.6rem 2rem;
		margin-bottom: 4rem;
		border-top: 1rem solid #fcba06;
		border-bottom: 1rem solid #fcba06;
	}
	.jp {
		font-family: var(--mplus);
		font-style: normal;
		font-weight: 800;
		font-size: 6.4rem;
		line-height: 125%;
		letter-spacing: 0.08em;
		color: #0d2d74;
		text-align: center;
		@media screen and (max-width: 767px) {
			font-size: 2.8rem;
		}
	}
	.en {
		font-family: var(--monts);
		font-style: normal;
		font-weight: 500;
		font-size: 4rem;
		line-height: 1;
		text-align: center;
		letter-spacing: 0.04em;
		text-transform: capitalize;
		color: #000000;
		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
		}
	}
}

.common_title_top.white {
	border-top: 1.6rem solid #fcba06;
	border-bottom: 1.6rem solid #fcba06;
	@media screen and (max-width: 767px) {
		border-top: 1rem solid #fcba06;
		border-bottom: 1rem solid #fcba06;
	}
	.jp {
		color: #fff;
	}
	.en {
		color: #fff;
	}
}

#banner {
	width: 100%;
	background-color: #e2f3ff;
	position: relative;
	height: 91.6rem;
	@media screen and (max-width: 767px) {
		height: 55rem;
	}
	&:after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: 100%;
		height: 10.9rem;
		background: url("../img/top/banner-bg-arc.png") no-repeat center top / 100% auto;
		z-index: 1;
		@media screen and (max-width: 1080px) {
			background: url("../img/top/banner-bg-arc.png") no-repeat center top / 100% 100%;
		}
		@media screen and (max-width: 767px) {
			height: 6rem;
			background: url("../img/top/banner-bg-arc.png") no-repeat center bottom / contain;
		}
	}
	.banner-text-container {
		position: absolute;
		left: 15.2rem;
		top: 8.6rem;
		z-index: 5;
		width: 70rem;
		height: 20rem;
		@media screen and (max-width: 767px) {
			left: 2rem;
			top: 4rem;
			width: calc(100% - 4rem);
			padding: 0 2rem;
			box-sizing: border-box;
			z-index: 100;
			overflow: hidden;
		}
		.banner-text {
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			opacity: 0;
			transform: translateX(-100%);
			animation: slideInOut 10s infinite;
		}
		.banner-text.banner-text2 {
			animation-delay: 5s;
			@media screen and (max-width: 767px) {
				animation-delay: 0s;
			}
			.banner-text1-img {
				width: 65.3rem;
				margin-bottom: 3.4rem;
				@media screen and (max-width: 767px) {
					width: 33.1rem;
					margin: 0 auto;
				}
				& img {
					width: 100%;
					vertical-align: top;
				}
			}
			& p {
				font-style: normal;
				font-weight: bold;
				font-size: 2.8rem;
				line-height: 150%;
				letter-spacing: 0.12em;
				color: #000000;
				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
					text-align: center;
					position: relative;
					top: -2rem;
				}
			}
		}
		.banner-text.banner-text1 {
			animation-delay: 0s;
			@media screen and (max-width: 767px) {
				animation-delay: 5s;
				margin-top: 4rem;
			}
			.banner-text2-img {
				width: 68.1rem;
				@media screen and (max-width: 767px) {
					width: 31rem;
					margin: 0 auto;
				}
				& img {
					width: 100%;
					vertical-align: top;
				}
			}
		}
	}

	.banner-slide-up {
		padding-top: 4.4rem;
		position: relative;
		overflow: hidden;
		z-index: 99;
		height: 88rem;
		@media screen and (min-width: 1950px) {
			width: 70%;
			margin-left: 45rem;
		}
		@media screen and (max-width: 767px) {
			width: 100%;
			z-index: 1;
		}
		& img {
			position: absolute;
			top: 4.4rem;
			left: 0;
			vertical-align: top;
			width: 100%;
			opacity: 0;
			transform: translateY(5rem);
			animation: slideUpAnimation 10s infinite;
		}
		& img:first-child {
			animation-delay: 0s;
		}
		& img:nth-child(2) {
			animation-delay: 5s;
		}
		@media screen and (max-width: 1080px) {
			padding-top: 18rem;
			& img {
				top: 18rem;
			}
		}
		@media screen and (max-width: 767px) {
			padding-top: 25rem;
			& img {
				top: 25rem;
			}
		}
	}
	.is-active {
		display: block !important;
	}
	.daiken-text {
		width: 29.2rem;
		margin-top: 1.9rem;
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
}

@keyframes slideInOut {
	0% {
		opacity: 0;
		transform: translateX(-5rem);
	}
	5% {
		opacity: 1;
		transform: translateX(0);
	}
	45% {
		opacity: 1;
		transform: translateX(0);
	}
	50% {
		opacity: 0;
		transform: translateX(5rem);
	}
	100% {
		opacity: 0;
		transform: translateX(5rem);
	}
}

@keyframes slideUpAnimation {
	0% {
		opacity: 0;
		transform: translateY(5rem);
	}
	5% {
		opacity: 1;
		transform: translateY(0);
	}
	45% {
		opacity: 1;
		transform: translateY(0);
	}
	50% {
		opacity: 0;
		transform: translateY(-5rem);
	}
	100% {
		opacity: 0;
		transform: translateY(-5rem);
	}
}

#about {
	width: 100%;
	position: relative;
	margin-top: -3rem;
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		margin-top: 2rem;
		padding-bottom: 6rem;
	}
	&:before {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 23.2rem;
		height: 21.8rem;
		background: url("../img/top/about1.png") no-repeat center / 100% auto;
		left: 24rem;
		@media screen and (max-width: 767px) {
			display: none;
		}
	}
	&:after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 31.1rem;
		height: 26.2rem;
		background: url("../img/top/about2.png") no-repeat center / 100% auto;
		right: 13.5rem;
		@media screen and (max-width: 767px) {
			display: none;
		}
	}
	.line1-text {
		font-style: normal;
		font-weight: 700;
		font-size: 4rem;
		line-height: 1.32;
		text-align: center;
		letter-spacing: 0.06em;
		color: #0d2d74;
		margin-bottom: 4.6rem;
		@media screen and (max-width: 767px) {
			font-size: 1.8rem;
			margin-bottom: 2rem;
		}
		& span {
			font-size: 5rem;
			@media screen and (max-width: 767px) {
				font-size: 2.8rem;
			}
		}
	}
	& p {
		font-style: normal;
		font-weight: 500;
		font-size: 2.2rem;
		line-height: 1;
		letter-spacing: 0.06em;
		color: #000000;
		margin-bottom: 7rem;
		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			line-height: 1.6;
			margin-bottom: 2rem;
			text-align: center;
		}
	}
	.sp-img {
		@media screen and (max-width: 767px) {
			width: 21.3rem;
			margin: 0 auto 3.6rem;
			& img {
				width: 100%;
				vertical-align: top;
			}
		}
	}
}

#business {
	padding-top: 11rem;
	padding-bottom: 11rem;
	background-color: #0d2d74;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.cards-flexwrap {
		display: flex;
		flex-wrap: wrap;
		max-width: 92.5rem;
		gap: 4rem;
		@media screen and (max-width: 767px) {
			gap: 1rem;
			max-width: 100%;
		}
		& li {
			@media screen and (max-width: 767px) {
				width: calc(50% - 0.5rem);
			}
		}
		.card {
			width: 28rem;
			background-color: #fff;
			border-radius: 1.7rem;
			height: 34.6rem;
			display: flex;
			flex-direction: column;
			align-items: center;
			@media screen and (max-width: 767px) {
				width: 100%;
				height: auto;
				padding-bottom: 2rem;
			}
			.card-img {
				padding-top: 2rem;
				padding-bottom: 2rem;
				box-sizing: border-box;
				height: 27.6rem;
				display: flex;
				align-items: center;
				.img1 {
					width: 10.1rem;
					margin-left: 3rem;
					box-sizing: border-box;
				}
				.img2 {
					width: 12.4rem;
				}
				.img3 {
					width: 14.4rem;
					@media screen and (max-width: 767px) {
						/* margin-bottom: 4.2rem; */
					}
				}
				.img4 {
					width: 16.5rem;
				}
				.img5 {
					width: 14.7rem;
				}
				.img6 {
					width: 10.4rem;
				}
				@media screen and (max-width: 767px) {
					transform: scale(0.7);
					height: 16rem;
					padding-top: 0;
					padding-bottom: 0;
				}
			}
			.card-ttl {
				font-style: normal;
				font-weight: 700;
				font-size: 3rem;
				line-height: 1;
				text-align: center;
				letter-spacing: 0.08em;
				color: #0d2d74;
				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
				}
			}
		}
	}
}

#ahievements {
	padding-left: 36rem;
	width: 100%;
	box-sizing: border-box;
	padding-top: 11rem;
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-left: 0;
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.common_title_top {
		@media screen and (max-width: 767px) {
			margin: 0 auto 4rem;
		}
		.en,
		.jp {
			text-align: left;
			white-space: nowrap;
			@media screen and (max-width: 767px) {
				text-align: center;
			}
		}
	}
	.content-flex {
		display: flex;
		gap: 8.2rem;
		@media screen and (max-width: 767px) {
			flex-direction: column;
			align-items: center;
			gap: 2rem;
		}
		.text-cont {
			width: 35.7rem;
			@media screen and (max-width: 767px) {
				width: 100%;
			}
			& p {
				margin-bottom: 8.9rem;
				font-style: normal;
				font-weight: 500;
				font-size: 1.8rem;
				line-height: 178%;
				letter-spacing: 0.06em;
				color: #000000;
				@media screen and (max-width: 767px) {
					margin-bottom: 2rem;
					font-size: 1.4rem;
					text-align: center;
				}
			}
		}
		.slider-container {
			width: 100%;
			flex: 1;
			overflow: hidden;
			@media screen and (max-width: 767px) {
				padding-left: 2rem;
				box-sizing: border-box;
			}
			.achievements-slide {
				width: 100%;
				margin-bottom: 8.4rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 3rem;
				}
				.card {
					width: 100%;
					padding-right: 4rem;
					@media screen and (max-width: 767px) {
						padding-right: 2rem;
					}
					& a {
						width: 100%;
					}
					.thumbnail {
						width: 100%;
						height: 32.1rem;
						margin-bottom: 1.4rem;
						border-radius: 1.4rem;
						overflow: hidden;
						& img {
							width: 100%;
							height: 100%;
							object-fit: cover;
							vertical-align: top;
						}
					}
					.list-category {
						display: flex;
						flex-wrap: wrap;
						gap: 1rem;
						margin-bottom: 1.4rem;
						@media screen and (max-width: 767px) {
							margin-bottom: 1rem;
						}
						& span {
							font-style: normal;
							font-weight: 700;
							font-size: 1.8rem;
							line-height: 1;
							letter-spacing: 0.1em;
							color: #ffffff;
							padding: 0.6rem 1.4rem;
							box-sizing: border-box;
							border-radius: 10rem;
							background-color: #0d2d74;
							@media screen and (max-width: 767px) {
								font-size: 1.3rem;
								padding: 0.5rem 1.2rem;
							}
						}
						& span.green {
							background-color: #00784e;
						}
						& span.blue {
							background-color: #63a9db;
						}
						& span.yellow {
							background-color: #d3ac11;
						}
					}
					.title {
						margin-bottom: 1.2rem;
						font-style: normal;
						font-weight: 700;
						font-size: 2rem;
						line-height: 1.2;
						letter-spacing: 0.1em;
						color: #000000;
						@media screen and (max-width: 767px) {
							font-size: 1.6rem;
						}
					}
					.duration {
						font-style: normal;
						font-weight: 500;
						font-size: 1.6rem;
						line-height: 1;
						letter-spacing: 0.1em;
						color: #0d2d74;
						@media screen and (max-width: 767px) {
							font-size: 1.4rem;
						}
					}
				}
			}
			.slider-btns {
				display: flex;
				gap: 1.7rem;
				position: relative;
				z-index: 10;
				pointer-events: auto;
				@media screen and (max-width: 767px) {
					gap: 1rem;
				}
				.prev,
				.next {
					width: 7.1rem;
					cursor: pointer;
					pointer-events: auto;
					@media screen and (max-width: 767px) {
						width: 5rem;
					}
					& img {
						width: 100%;
						vertical-align: middle;
						pointer-events: none;
					}
				}
				.next {
					transform: rotate(180deg);
				}
			}
		}
	}
	.achievements-slide .slick-list {
		padding-right: 25%;
		overflow: visible;
		@media screen and (max-width: 767px) {
			padding-right: 10%;
		}
	}
	.common-blue-btn {
		@media screen and (max-width: 767px) {
			margin: 4rem auto 0;
		}
	}
}

#project {
	background-color: #e2f3ff;
	padding-top: 11rem;
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.inner {
		position: relative;
		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			width: 24.8rem;
			height: 51.6rem;
			background: url("../img/top/project1.png") no-repeat center / 100% auto;
			@media screen and (max-width: 767px) {
				display: none;
			}
		}
		&:after {
			content: "";
			position: absolute;
			right: 1rem;
			top: 0;
			width: 25.5rem;
			height: 50.6rem;
			background: url("../img/top/project2.png") no-repeat center / 100% auto;
			@media screen and (max-width: 767px) {
				display: none;
			}
		}
		& p {
			font-style: normal;
			font-weight: 500;
			font-size: 1.8rem;
			line-height: 167%;
			text-align: center;
			letter-spacing: 0.08em;
			color: #000000;
			margin-bottom: 6rem;
			max-width: 52rem;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				margin-bottom: 2rem;
			}
		}
	}
	.project-sp {
		margin-top: 1rem;
		margin-bottom: 3rem;
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
}

#recruit {
	padding-top: 11rem;
	padding-bottom: 11rem;
	@media screen and (max-width: 767px) {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	.flex-contents {
		display: flex;
		justify-content: center;
		gap: 16rem;
		margin-bottom: 9rem;
		@media screen and (max-width: 767px) {
			flex-direction: column;
			gap: 3rem;
			margin-bottom: 4rem;
		}
		.text-content {
			width: 53.7rem;
			@media screen and (max-width: 767px) {
				width: 100%;
			}
			.common_title_top {
				width: 100%;
				margin-bottom: 4rem !important;
				@media screen and (max-width: 767px) {
					width: unset;
					margin: 0 auto 4rem !important;
				}
				.en,
				.jp {
					text-align: left;
					@media screen and (max-width: 767px) {
						text-align: center;
					}
				}
			}
			.blue-text {
				font-style: normal;
				font-weight: 700;
				font-size: 3rem;
				line-height: 1;
				text-align: left;
				letter-spacing: 0.06em;
				color: #0d2d74;
				margin-bottom: 1.8rem;
				@media screen and (max-width: 767px) {
					font-size: 1.8rem;
					margin-bottom: 2rem;
					text-align: center;
				}
			}
			& p {
				font-style: normal;
				font-weight: 500;
				font-size: 1.8rem;
				line-height: 178%;
				letter-spacing: 0.06em;
				color: #000000;
				margin-bottom: 4rem;
				@media screen and (max-width: 767px) {
					margin-bottom: 2rem;
					font-size: 1.4rem;
					line-height: 1.6;
					text-align: center;
				}
			}
		}
		.img-content {
			width: 37.9rem;
			flex: 1;
			@media screen and (max-width: 767px) {
				width: 60%;
				margin: 0 auto;
			}
			& img {
				width: 100%;
				vertical-align: middle;
			}
		}
	}
	.center-link {
		width: 70.9rem;
		border: 0.3rem solid #418bf3;
		padding: 2.4rem 3.7rem 2.4rem 4.6rem;
		box-sizing: border-box;
		border-radius: 2rem;
		background-color: #e2f3ff;
		margin: 0 auto;
		@media screen and (max-width: 767px) {
			width: 100%;
			padding: 2rem 1.5rem;
		}
		.content-flex {
			display: flex;
			justify-content: space-between;
			@media screen and (max-width: 767px) {
				gap: 1rem;
			}
			.text-cont {
				width: 41.1rem;
				@media screen and (max-width: 767px) {
					width: 100%;
					flex: 1;
				}
				.line1 {
					margin-bottom: 1.2rem;
					font-family: var(--mplus);
					font-style: normal;
					font-weight: 800;
					font-size: 3rem;
					line-height: 1;
					text-align: left;
					letter-spacing: 0.08em;
					color: #418bf3;
					@media screen and (max-width: 767px) {
						font-size: 1.8rem;
						margin-bottom: 1rem;
					}
				}
				.line2 {
					font-style: normal;
					font-weight: 500;
					font-size: 1.6rem;
					line-height: 1.5;
					letter-spacing: 0.08em;
					color: #000000;
					margin-bottom: 1rem;
					@media screen and (max-width: 767px) {
						font-size: 1.4rem;
					}
				}
				.common-blue-btn-small {
					width: 21.4rem;
					background-color: #418bf3;
					height: 4.3rem;
					display: flex;
					align-items: center;
					justify-content: center;
					gap: 0.8rem;
					border-radius: 2.85rem;
					@media screen and (max-width: 767px) {
						width: 18rem;
						height: 4rem;
					}
					& span {
						font-style: normal;
						font-weight: 700;
						font-size: 1.6rem;
						line-height: 1;
						letter-spacing: 0.1em;
						color: #ffffff;
						@media screen and (max-width: 767px) {
							font-size: 1.2rem;
						}
					}
					& img {
						width: 0.7rem;
						vertical-align: middle;
						@media screen and (max-width: 767px) {
							width: 0.6rem;
						}
					}
				}
			}
			.img-container {
				width: 16.5rem;
				@media screen and (max-width: 767px) {
					width: 15rem;
				}
				& img {
					vertical-align: top;
					width: 100%;
				}
			}
		}
	}
	@media screen and (max-width: 767px) {
		.common-blue-btn {
			margin: 0 auto;
		}
	}
}
