/* sub_top */
.sub_visual { position: relative; height: 388px; overflow: hidden; }
.sub_visual .bg { z-index: 1; position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform-origin: center; }
.sub_visual .bg { animation: suv_bg forwards linear 5s; }
@keyframes suv_bg {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.sub_visual.sub1 .bg { background: url(/image/sub/subcommon/subtop_bg1.jpg) no-repeat center/cover; }
.sub_visual.sub2 .bg { background: url(/image/sub/subcommon/subtop_bg2.jpg) no-repeat center/cover; }
.sub_visual.sub3 .bg { background: url(/image/sub/subcommon/subtop_bg3.jpg) no-repeat center/cover; }

.sub_visual .frame { display: none; z-index: 2; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); }
.sub_visual .txtbox { z-index: 3; position: relative; top: 100px; height: calc(100% - 100px); padding: 0 20px; }
.sub_visual .txtbox .texts { position: relative; top: 55%; transform: translateY(-50%); text-align: center; }
.sub_visual .txtbox .text1 { font-weight: 600; font-size: 50px; color: #026432; }
.sub_visual.sub2 .txtbox .text1 { color: #fff; }
@media (max-width: 1535px) {
    .sub_visual { height: 340px; }

    .sub_visual .txtbox { top: 90px; height: calc(100% - 90px); }
}
@media (max-width: 1279px) {
    .sub_visual { height: 300px; }

    .sub_visual .txtbox { top: 80px; height: calc(100% - 80px); }
}
@media (max-width: 1023px) {
    .sub_visual { height: 280px; }

    .sub_visual .txtbox { top: 70px; height: calc(100% - 70px); }
    .sub_visual.noSub .txtbox { height: calc(100% - 105px); }
}
@media (max-width: 767px) {
    .sub_visual { height: 260px; }

    .sub_visual .txtbox { top: 60px; height: calc(100% - 60px); }
}

/* subTabs */
.subTabs { display: none; }
.subTabs.active { display: block; }
.subTabs ul { display: flex; flex-wrap: nowrap; font-size: 20px; color: #595959; }
.subTabs ul * { font-size: inherit; color: inherit; }
.subTabs ul li { width: 50%; }
.subTabs ul li a { position: relative; display: block; text-align: center; padding: 17px 0; border-bottom: 2px solid #eaeaea; }
.subTabs ul li.active a { font-weight: 500; color: #c7de34; border-bottom: 2px solid #c7de34; }
@media (max-width: 1535px) {
    .subTabs ul li a { padding: 15px 0; }
}
@media (max-width: 1279px) {
    .subTabs ul li a { padding: 13px 0; }
}
@media (max-width: 1023px) {
    .subTabs ul li a { padding: 11px 0; }
}
@media (max-width: 767px) {
    .subTabs ul li a { padding: 9px 0; }
}

/* sub_common */
.sub_sect { position: relative; padding: 80px 0; overflow: hidden; }

/* sub1 */
.sub1_1 .contents1 { position: relative; }
.sub1_1 .contents1 .bg1 { width: 100%; }
.sub1_1 .contents1 .cont { z-index: 1; position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 90px 70px; }
.sub1_1 .contents1 .cont .textwrap { position: relative; height: 100%; }
.sub1_1 .contents1 .cont .textbox { position: absolute; right: 0; bottom: 0; padding: 50px; width: 100%; max-width: 780px; background-color: rgba(0, 0, 0, 0.6); border-radius: 30px; }
.sub1_1 .contents1 .cont .textbox .text1 { font-weight: 600; font-size: 30px; color: #c1d735; line-height: 1.45; }
.sub1_1 .contents1 .cont .textbox .text2 { margin-top: 30px; font-size: 20px; color: #b3b3b3; line-height: 1.7; }
.sub1_1 .contents2 { position: relative; margin-top: 70px; }
.sub1_1 .contents2 .bg1 { width: 100%; }
.sub1_1 .contents2 .cont { z-index: 1; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: calc(100% - 40px); max-width: 780px; }
.sub1_1 .contents2 .cont .text1 { padding-bottom: 30px; text-align: center; font-weight: 600; font-size: 35px; color: #026432; line-height: 1.35; }
.sub1_1 .contents2 .cont .text2 { font-weight: 600; font-size: 24px; color: #026432; line-height: 1.45; }
.sub1_1 .contents2 .cont .text2 * { font-weight: inherit; font-size: inherit;  color: inherit; line-height: inherit; }
.sub1_1 .contents2 .cont .text2 dl { display: flex; flex-wrap: nowrap; align-items: center; padding: 10px 13px; background: linear-gradient(to bottom, #fefeff, #ededed); border-radius: 100px; border: 1px solid #aaa; }
.sub1_1 .contents2 .cont .text2 dl:nth-of-type(n + 2) { margin-top: 10px; }
.sub1_1 .contents2 .cont .text2 dl dt { min-width: max-content; margin-right: 13px; }
.sub1_1 .contents2 .cont .text2 dl dt b { display: inline-flex; align-items: center; justify-content: center; color: #fff; width: 44px; aspect-ratio: 1/1; border-radius: 50%; background-color: #c1d734; }
@media (max-width: 1535px) {
    .sub1_1 .contents1 .cont .textbox { border-radius: 25px; }
    .sub1_1 .contents2 .cont .text2 dl { padding: 9px 12px; }
    .sub1_1 .contents2 .cont .text2 dl dt { margin-right: 12px; }
    .sub1_1 .contents2 .cont .text2 dl dt b { width: 40px; height: 40px; }
}
@media (max-width: 1279px) {
    .sub1_1 .contents1 .cont .textbox { border-radius: 20px; }
    .sub1_1 .contents2 .cont .text2 dl { padding: 8px 10px; }
    .sub1_1 .contents2 .cont .text2 dl dt { margin-right: 11px; }
    .sub1_1 .contents2 .cont .text2 dl dt b { width: 37px; height: 37px; }
}
@media (max-width: 1023px) {
    .sub1_1 .contents1 .cont .textbox { border-radius: 18px; }
    .sub1_1 .contents2 .cont .text2 dl { padding: 7px 9px; }
    .sub1_1 .contents2 .cont .text2 dl dt { margin-right: 10px; }
    .sub1_1 .contents2 .cont .text2 dl dt b { width: 35px; height: 35px; }
}
@media (max-width: 767px) {
    .sub1_1 .contents1 .bg1 { display: none; }
    .sub1_1 .contents1 .cont { position: relative; height: initial; background: url(/image/sub/sub1/sub1_1_img1.jpg) no-repeat center/cover; }
    .sub1_1 .contents1 .cont .textbox { position: relative; right: initial; bottom: initial; }
    .sub1_1 .contents2 { padding: 30px; background: url(/image/sub/sub1/sub1_1_img2.jpg) no-repeat center/cover; }
    .sub1_1 .contents2 .bg1 { display: none; }
    .sub1_1 .contents2 .cont { position: relative; top: initial; left: initial; transform: translate(0,0); width: 100%; }
}

/* sub1_2 */
.sub1_2 .contents1 { position: relative; }
.sub1_2 .mapcont { position: relative; height: 500px; }
.sub1_2 .mapcont .root_daum_roughmap { width: 100%; height: 100%; }
.sub1_2 .mapcont .root_daum_roughmap .wrap_map { width: 100%; height: calc(100% - 32px); }
.sub1_2 .mapdesc { padding: 17px 20px; border: 1px solid rgba(0,0,0,.1); }
.sub1_2 .mapdesc dl { display: flex; flex-wrap: nowrap; align-items: center; font-size: 18px; color: #565656; line-height: 1.45; }
.sub1_2 .mapdesc dl * { font-size: inherit; color: inherit; line-height: inherit; }
.sub1_2 .mapdesc dl dt { min-width: max-content; margin-right: 13px; }
.sub1_2 .mapdesc dl dt img { width: 54px; }
.sub1_2 .mapdesc dl dd b { font-weight: 700; color: #000; }
@media (max-width: 1535px) {
    .sub1_2 .mapcont { height: calc(300px + 13vw); }
    .sub1_2 .mapdesc dl dt { margin-right: 10px; }
    .sub1_2 .mapdesc dl dt img { width: calc(30px + 1.5vw); }
}
@media (max-width: 1279px) {
    .sub1_2 .mapcont { height: calc(250px + 10vw); }
}
@media (max-width: 767px) {
    .sub1_2 .mapcont { height: calc(200px + 8vw); }
}
@media (max-width: 524px) {
    .sub1_2 .mapdesc dl { display: block; text-align: center; }
    .sub1_2 .mapdesc dl dt { min-width: initial; margin-right: initial; }
    .sub1_2 .mapdesc dl dt img { width: 100%; max-width: 37px; }
    .sub1_2 .mapdesc dl dd { margin-top: 10px; }
}

/* sub2_1 */
.sub2_1 .contents1 ul { display: flex; flex-wrap: nowrap; justify-content: space-between; } 
.sub2_1 .contents1 ul li { position: relative; padding: 45px 35px; width: 31.9%; border: 1px solid #d5d5d5; border-radius: 30px; }
.sub2_1 .contents1 ul li .iconbox { text-align: center; }
.sub2_1 .contents1 ul li .iconbox img { width: 165px; }
.sub2_1 .contents1 ul li .txtbox { margin-top: 35px; }
.sub2_1 .contents1 ul li .txtbox .txt1 { font-weight: 700; font-size: 30px; color: #003c21; }
.sub2_1 .contents1 ul li .txtbox .txt2 { margin-top: 20px; font-size: 18px; color: #797979; line-height: 1.65; }
.sub2_1 .contents1 ul li .txtbox .txt2 * { font-size: inherit; color: inherit; line-height: inherit; }
.sub2_1 .contents1 ul li .txtbox .txt2 dl { display: flex; flex-wrap: nowrap; }
.sub2_1 .contents1 ul li .txtbox .txt2 dl dt { min-width: max-content; }
.sub2_1 .contents1 ul li .txtbox .txt2 b { font-weight: 600; color: #000; }
.sub2_1 .contents1 ul li .txtbox .txt3 { text-align: center; font-weight: 700; font-size: 30px; color: #003c21; }
.sub2_1 .contents1 ul li .txtbox .txt4 { display: block; margin-top: 50px; padding: 10px; text-align: center; font-size: 18px; color: #003c21; background-color: #fafafa; border-radius: 100px; border: 1px solid #d6d6d6; transition: background-color 0.3s; }
.sub2_1 .contents1 ul li .txtbox .txt4:hover { background-color: #d6d6d6; }

.sub2_1 .contents1 ul li::after { z-index: 1; display: block; content: ''; position: absolute; top: 50%; transform: translateY(-50%); right: -47px; aspect-ratio: 1/1; width: 65px; border: 1px solid #ddd; border-radius: 50%; background-image: url(/image/sub/sub2/sub2_1_arrow.png); background-position: center; background-size: 35px; background-repeat: no-repeat; background-color: #fff; }
.sub2_1 .contents1 ul li:last-of-type:after { display: none; }

.sub2_1 .contents1.ver2 ul li::after { display: none !important; }

.sub2_1 .contents1 .desc1 { padding-bottom: 30px; text-align: center; font-weight: 600; font-size: 35px; color: #013e23; line-height: 1.45; }
.sub2_1 .contents1 .desc1 span { color: #727272; } 
.sub2_1 .contents1 .desc1 br { display: none; }

@media (max-width: 1535px) {
    .sub2_1 .contents1 ul li { padding: 40px 30px; border-radius: 26px; }
    .sub2_1 .contents1 ul li .iconbox img { width: calc(85px + 5.2vw); }
    .sub2_1 .contents1 ul li .txtbox { margin-top: calc(20px + 0.9vw); }
    .sub2_1 .contents1 ul li::after { right: -42px; width: 55px; background-size: 28px; }
    .sub2_1 .contents1 ul li .txtbox .txt4 { padding: 9px; }
}
@media (max-width: 1279px) {
    .sub2_1 .contents1 ul li { padding: 35px 25px; border-radius: 23px; }
    .sub2_1 .contents1 ul li .iconbox img { width: calc(75px + 4.5vw); }
    .sub2_1 .contents1 ul li::after { right: -34px; width: 40px; background-size: 20px; }
    .sub2_1 .contents1 ul li .txtbox .txt4 { padding: 8px; }
}
@media (max-width: 1023px) {
    .sub2_1 .contents1 ul { display: block; text-align: center; }
    .sub2_1 .contents1 ul li { width: 100%; padding: 30px 20px; border-radius: 20px; }
    .sub2_1 .contents1 ul li:nth-of-type(n + 2) { margin-top: 20px; }
    .sub2_1 .contents1 ul li .txtbox .txt2 { display: inline-block; text-align: left; }
    .sub2_1 .contents1 ul li::after { right: initial; transform: translateX(-50%) rotateZ(90deg); left: 50%; top: initial; bottom: -31px; }
    .sub2_1 .contents1 ul li .txtbox .txt4 { padding: 7px; }
}
@media (max-width: 767px) {
    .sub2_1 .contents1 ul li { padding: 25px 15px; }

    .sub2_1 .contents1 .desc1 br { display: inline-block; }
}