@charset "utf-8";

/*===================================================================

	001. service

===================================================================*/
.title{
	background: url(../images/service_title_bg.jpg) no-repeat center center / cover;
}


.service-cont{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 10px;
}

.service-cont::after {
	content: '';
	width: 31.5%;
	height: 0;
	display: block;
}

.service-list{
	width: 31.5%;
	border: 3px solid #707070;
	position: relative;
	height: 315px;
	margin-bottom: 50px;
	transition: .5s;
}

.service-list::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 32px 32px;
	border-color: transparent transparent #707070 transparent;
	position: absolute;
	right: -3px;
	bottom: -3px;
	z-index: 3;
}

.service-list:hover{
	opacity: .5;
}

.service-list > a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 32px 15px;
}

.service__img{
	display: block;
	width: auto;
    max-height: 90.625px;
    height: auto;
	margin-bottom: 25px;
}

.service-list .sect-subtitle{
	font-size: 18px;
	text-align: center;
	line-height: 1.375;
}

.service__inner{
	width: 100%;
	font-size: 14px;
}


/*===================================================================

	002. product

===================================================================*/

.product{
	padding: 55px 0 365px;
}

.product .service-list{
	background: #fff;
}

.product .sect-subtitle{
	font-size: 20px;
}

.product .solution__desc img {
	width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 234px;
}

/*===================================================================

	003. responsive

===================================================================*/

@media screen and (max-width: 768px){

	.page-menu{
		justify-content: center;
	}
	/*==============================================

		001. service

	==============================================*/


	.service-cont{
		display: block;
		padding: 0 10px;
	}

	.service-cont::after {
		display: none;
	}

	.service-list{
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}

	.service-list::before{
		border-width: 0 0 16px 16px;
	}

	.service-list > a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		padding: 15px 10px;
	}

	.service__img{
		max-width: 56px;
		max-height: 56px;
		height: auto;
		margin-right: 10px;
		margin-bottom: 0;
	}

	.service-list .sect-subtitle{
		font-size: 16px;
		text-align: left;
	}

	.service-list .sect-subtitle .sp{
		display: inline-block;
	}

	.service__inner{
		font-size: 12px;
	}


	/*==============================================

		002. product

	==============================================*/

	.product{
		padding: 30px 0 180px;
	}

	.product .service-cont{
		display: flex;
		align-items: initial;
	}

	.product .service-list{
		width: calc(50% - 5px);
	}

	.product .service-list a{
		display: flex;
	    justify-content: center;
	    align-items: center;
	    flex-direction: column;
	}

}
