/* 
 service
----------------------------------------------------------- */
.l-padding{
	padding-bottom: clamp(60px, 12.5vw, 240px);
}
.service-list{
	display: grid;
	gap: 23px;
	grid-template-columns: repeat(3, 1fr);
}
.service-list__item{
	display: flex;
	flex-direction: column;
}
.service-list__img{
	position: relative;
	z-index: 0;
}
.service-list__img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 465 / 397;
	object-fit: cover;
}
.service-list__num{
	position: absolute;
	right: 20px;
	top: 12px;
	z-index: 1;
	font-family: var(--font-en);
	color: rgba(255,255,255,0.6);
	font-size: clamp(30px, 2.6vw, 50px);
	line-height: 1.3;
}
.service-list__content{
	flex: 1;
	background-color: #1A1A1A;
	padding: clamp(20px, 2vw, 40px) 30px clamp(25px, 2.6vw, 50px) 30px;
	color: var(--white-color);
	border-top: 2px solid #6C6C6C;
	position: relative;
	z-index: 0;
}
.service-list__content::before{
	content: "";
	position: absolute;
	left: 50%;
	top: -2px;
	transform: translateX(-50%);
	width: 35px;
	height: 2px;
	background-color: var(--sub-color);
}
.service-list__title{
	text-align: center;
	font-size: var(--fontsize-25);
	font-weight: 600;
	margin-bottom: 20px;
}
.service-list__title > span{
	font-family: var(--font-en);
	display: block;
	font-size: var(--fontsize-14);
	color: rgba(255,255,255,0.5);
	font-weight: 400;
}
.service-list__text{
	line-height: 1.8;
}
.service-list__sub{
	width: fit-content;
	margin: clamp(20px, 2vw, 40px) auto 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
}
.service-list__sub::before,
.service-list__sub::after{
	content: "";
	width: 10px;
	height: 1px;
	background-color: rgba(255,255,255,0.5);
}
.service-list__sub::before{
	margin-right: 11px;
}
.service-list__sub::after{
	margin-left: 11px;
}
@media screen and (max-width: 1024px){
	.service-list{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px){
	.service-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.service-list__img{
		width: 100%;
	}
}
@media screen and (max-width: 480px){
	.service-list__content{
		padding: 20px;
	}
}