@charset "utf-8";

.service-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    margin-top: 40px;
}
.service-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid #ccc;
	padding: 10px 5px;
	width: 23%;
	margin-bottom: 5%;
}
.service-list li .num {
	font-size: 26px;
	font-weight: bold;
	color: #c99a5e;
	border: 1px solid #c99a5e;
	width: 47px;
	height: 47px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.service-list li .text {
	font-size: 15px;
	color: #666;
	line-height: 1.3;
	margin-top: 12px;
}
.service-list li:hover {
	background-color: #c99a5e;
	border-color: #c99a5e;
}
.service-list li:hover .text {
	color: #fff;
}
.service-list li:hover .num {
	border-color: #fff;
	background-color: #fff;
}