@charset "utf-8";

/* 내용관리 */
#ctt {width:1000px; margin:0 auto; padding:20px;background:#fff}
.ctt_admin {text-align:right;display: none;}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}


/* section1 */
.section1 article{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.section1 article > div{
	background: #f6f8fa;
	box-sizing: border-box;
	padding: 0 35px 50px;
	width: calc(100%/2 - 50px/2);
	position: relative;
}

.section1 article .imgBox{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	border-bottom: 1px solid #dfdfdf;
	margin-bottom: 30px;
}

.section1 article .txtBox{
	
}

.section1 article .txtBox h3{
	font-weight: 600;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.section1 article .txtBox p{
	color: #616161;
	font-size: 16px;
	line-height: 1.5;
}

.section1 article .more{
	display: inline-block;
	position: absolute;
	right: 35px;
	bottom: 30px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: var(--mainCol);
}



/* ---------------------------------------------------------- 1000 */
@media screen and (max-width: 1000px){
	
}


/* ---------------------------------------------------------- 720 */
@media screen and (max-width: 720px){

/* section1 */
.section1 article > div{
	padding: 0 5vw 10vw;
	width: calc(100%);
}

.section1 article > div + div{
	margin-top: 5vw;
}

.section1 article .imgBox{
	height: 30vw;
	margin-bottom: 5vw;
}

.section1 article > div:nth-child(1) .imgBox img{
	height: 15vw;
	width: auto;
}

.section1 article > div:nth-child(2) .imgBox img{
	height: 8vw;
	width: auto;
}

.section1 article .txtBox h3{
	font-size: 4.5vw;
	margin-bottom: 2vw;
}

.section1 article .txtBox p{
	font-size: 3vw;
}

.section1 article .more{
	right: 5vw;
	bottom: 5vw;
	font-size: 4vw;
}


}