@charset "utf-8";

/* 내용관리 */
#ctt .tit {
	font-size:3.6rem;
	line-height:1.5;
	margin-bottom:2rem;
}
#ctt .txt {
	font-size:1.9rem;
	line-height:1.6;
}
#ctt .chart {
	width:100%;
	padding-bottom:7rem;
	border-bottom:1px solid #ddd;
	margin:7rem 0;
}
#ctt .chart img{
	width:100%;
}
#ctt .advantage {
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:3rem;
	text-align:center;
	margin-top:5rem;
}
#ctt .advantage .image {
	border-radius:3rem;
	margin-bottom:2.5rem;
	overflow:auto;
}
#ctt .advantage .image img {
	width:100%;
}
#ctt .advantage p {
	font-size:2rem;
	margin-bottom:0.8rem;
}
#ctt .advantage h4 {
	font-size:1.8rem;
}

@media all and (max-width:1023px) {
	#ctt .advantage {
		gap:2rem;
	}
	#ctt .tit {
		font-size:3rem;
	}
}

@media all and (max-width:767px) {
	#ctt .advantage {
		grid-template-columns:repeat(2, 1fr);
		row-gap: 4rem;
	}
}
@media all and (max-width:479px) {
	#ctt .advantage {
		grid-template-columns:1fr;
	}
}