@charset "utf-8";

.sgg-tit{
	width: 100%;
	text-align: center;
	color: #111;
	margin: 100px 0 110px;
}
.sgg-tit > h3{
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 24px;
}
.sgg-tit > p{
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6;
}
.sgg-wrap{
	width: 100%;
	max-width: 1024px;
	margin: 0 auto 110px;
	display: flex;
	flex-wrap: wrap;
}
.sgg-box{
	flex: 0 0 auto;
	width: 33.3333333%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.sgg-box::after{
	content: "";
	width: 1px;
	height: 80%;
	background-color: #ddd;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.sgg-box:last-child::after{
	display: none;
}
.sgg-icon{
	display: flex;
	margin-bottom: 25px;
	width: 70px;
}
.sgg-icon img{
	width: 100%;
}
.sgg-box > h5{
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111;
}
.sgg-box > p{
	font-size: 17px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.sgg-btn > a{
	display: inline-block;
	font-size: 15px;
	color: #111;
	padding: 10px 34px;
	border-radius: 30px;
	transition: .3s;
	background-color: #fed900;
	font-weight: 500;
}
.sgg-btn > a:hover{
	border-radius: 0;
}
.sgg-etc{
	width: 100%;
	text-align: center;
}
.sgg-etc > p{
	font-size: 17px;
	font-weight: 500;
	color: #666;
}

@media(max-width:1199px){
	.sgg-tit{
		margin: 30px 0 60px;
	}
	.sgg-tit > h3{
		font-size: 32px;
	}
	.sgg-tit > p{
		font-size: 14px;
	}
	.sgg-wrap{
		margin: 0 auto 60px;
	}
	.sgg-box{
		width: 100%;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.sgg-box::after{
		width: 80%;
		height: 1px;
		top: auto;
		transform: translateX(-50%);
		right: auto;
		left: 50%;
		bottom: 0;
	}
	.sgg-box:last-child{
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.sgg-icon{
		margin-bottom: 1rem;
	}
	.sgg-box > h5{
		font-size: 20px;
	}
	.sgg-box > p{
		font-size: 15px;
		margin-bottom: 1rem;
	}
	.sgg-etc > p{
		font-size: 13px;
		line-height: 1.4;
	}
}

