.page-title {
	background-image: url("../images/service/mv.webp");
}
@media screen and (max-width: 768px) {}


/*------------------------------------
#intro
------------------------------------*/
#intro {
	padding: 80px 0;
}
#intro .container {
	max-width: 700px;
}
#intro h2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	#intro {
		padding: 50px 0;
	}
	#intro h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}
}


/*------------------------------------
#business
------------------------------------*/
#business {
	position: relative;
	background-attachment: fixed;
	background-image: url("../images/service/business-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 120px 0;
	overflow: hidden;
}
#business::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3); /* #000 30% */
	z-index: 0;
}
#business > * {
	position: relative;
	z-index: 1;
}
#business .container {
	max-width: 1080px;
}
#business .ttl {
	align-items: center;
	color: #fff;
}
#business .ttl::after {
	background-color: #fff;
}
.business-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.business-list li {
	background-color: #fff;
	border-radius: 20px;
	width: calc((100% - 40px) / 2);
	padding: 60px;
}
.business-list h3 {
	font-size: 30px;
	text-align: center;
	color: #005bac;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	#business {
		background-attachment: scroll;
		padding: 60px 0;
	}
	.business-list {
		gap: 20px;
	}
	.business-list li {
		width: 100%;
		padding: 35px;
	}
	.business-list h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}
}


/*------------------------------------
#technology
------------------------------------*/
#technology {
	padding: 120px 0;
}
#technology > .container,
.technology-list .container {
	max-width: 1200px;
}
.technology-list .container > * {
	width: 50%;
}
.technology-list li {
	position: relative;
	min-height: 600px;
}
.technology-list li:not(:last-child) {
	margin-bottom: 60px;
}
.technology-list .img {
	position: absolute;
	top: 0;
	height: 600px
}
.technology-list li:nth-child(odd) .img {
	left: 0;
}
.technology-list li:nth-child(odd) img {
	border-radius: 0 50vh 50vh 0;
}
.technology-list li:nth-child(even) .img {
	right: 0;
}
.technology-list li:nth-child(even) img {
	border-radius: 50vh 0 0 50vh;
}
.technology-list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.technology-list .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 600px;
}
.technology-list li:nth-child(odd) .txt {
	margin-left: auto;
	padding-left: 5%;
}
.technology-list li:nth-child(even) .txt {
	margin-right: auto;
	padding-right: 5%;
}
.technology-list h3 {
	font-size: 30px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	#technology {
		padding: 70px 0;
	}
	.technology-list .container {
		display: block;
		width: 100%;
		height: auto;
	}
	.technology-list .container > * {
		width: 100%;
	}
	.technology-list li {
		min-height: auto;
	}
	.technology-list .img {
		position: static;
		height: auto;
	}
	.technology-list li:nth-child(odd) .img {
		padding-right: 7.29vw;
	}
	.technology-list li:nth-child(even) .img {
		padding-left: 7.29vw;
	}
	.technology-list .txt {
		width: calc(100% - 7.29vw);
		height: auto;
		margin: auto;
	}
	.technology-list li:nth-child(odd) .txt,
	.technology-list li:nth-child(even) .txt {
		padding: 30px 0 0;
	}
	.technology-list h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}
}


/*------------------------------------
#process
------------------------------------*/
#process {
	background-color: #ebeff2;
	padding: 100px 0;
}
#process .container {
	max-width: 1260px;
}
#process .ttl {
	align-items: center;
	margin-bottom: 70px;
}
.process-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
}
.process-list::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 5px;
	z-index: 0;
}
.process-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	width: calc((100% - 90px) / 4);
	padding: 0 40px 40px;
	z-index: 1;
}
.process-list .img {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #005bac;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin-top: -30px;
}
.process-list img {
	width: 55px;
}
.process-list .txt {
	margin-top: 20px;
}
.process-list h3 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 10px;
}
.process-list h3 span {
	display: block;
	font-size: 18px;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	#process {
		padding: 50px 0;
	}
	#process .ttl {
		margin-bottom: 30px;
	}
	.process-list {
		gap: 20px;
	}
	.process-list::after {
		top: 0;
		left: 50%;
		width: 5px;
		height: 100%;
	}
	.process-list li {
		display: flex;
		flex-direction: row;
		width: 100%;
		padding: 30px;
	}
	.process-list .img {
		flex: 0 0 100px;
		margin: 0 20px 0 0;
	}
	.process-list .txt {
		margin: 0;
	}
	.process-list h3 {
		font-size: 22px;
		margin: 0;
	}
	.process-list h3 span {
		font-size: 14px;
	}
}


/*------------------------------------
#equipment
------------------------------------*/
#equipment {
	padding: 120px 0;
}
#equipment .ttl {
	align-items: center;
}
#equipment .container {
	width: 100%;
}
.equipment-list .slick-slide {
	margin: 0 20px;
}
.equipment-list .txt {
	padding: 30px 40px 0;
}
.equipment-list h3 {
	font-size: 25px;
	margin-bottom: 10px;
}
.table dl {
	font-size: 16px;
	line-height: 1.5;
	padding: 10px 0;
}
.table dt {
	flex: 0 0 90px;
}
@media screen and (max-width: 768px) {
	#equipment {
		padding: 70px 0;
	}
	.equipment-list .slick-slide {
		margin: 0 10px;
	}
	.equipment-list .txt {
		padding: 30px 20px 0;
	}
	.equipment-list h3 {
		font-size: 18px;
		margin: 0;
	}
	.table dl {
		flex-direction: column;
		font-size: 14px;
	}
	.table dt,
	.table dd {
		flex: auto;
	}
}


/*------------------------------------
#clients
------------------------------------*/
#clients {
	background-color: #ebeff2;
	padding: 120px 0;
}
#clients .ttl {
	align-items: center;
}
#clients p {
	text-align: center;
	margin-bottom: 40px;
}
#clients .container {
	max-width: 1400px;
}
.clients-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.clients-list li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 160px) / 5);
}
@media screen and (max-width: 768px) {
	#clients p {
		text-align: left;
		margin-bottom: 20px;
	}
	.clients-list {
		gap: 20px;
	}
	.clients-list li {
		width: calc((100% - 40px) / 3);
	}
}
