@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* reset */
@media all {
    .clear:after { 
        content:""; 
        display:block; 
        clear:both;
    }
    * { margin:0; padding:0; outline:none; box-sizing:border-box; }
    body {
    line-height:1; font-size:14px; font-weight:400; color:#000; font-family: 'Noto Sans KR', sans-serif !important; word-wrap: break-word; word-break: keep-all;
    }
    h1, h2, h3, h4, h5, h6 { margin:0; font-family: 'Noto Sans KR', sans-serif !important; line-height:1; font-size: 1em; }
    ul, ol { list-style:none; margin:0; padding: 0; }
    a { outline:0; text-decoration:none; color: #000; font-family: 'Noto Sans KR', sans-serif !important; }
    a:focus { outline:none; }
    figure,dl,dd,input[type=radio], input[type=checkbox]  { margin: 0; padding: 0; }
    img { border:none; outline:none; max-width: 100%; }
    p { margin:0; padding:0; word-wrap: break-word; word-break: keep-all;  }
    button, input, submit { border: none; background: none; }
    dt { font-weight: normal; }
    ::placeholder { font-family: 'Noto Sans KR', sans-serif !important; }
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        transition: background-color 5000s ease-in-out 0s;
        -webkit-transition: background-color 9999s ease-out;
        box-shadow: none !important;
        -webkit-text-fill-color: none !important;
    }
}   

/* 탭 초기화 */
.tabBox1 .nav { border: none; }
.tabBox1 .nav > li { margin: 0; float: none; }
.tabBox1 .nav > li > a { padding: 0; margin: 0; border-radius:0; border: 0; }
.tabBox1 .nav > li:hover > a { background: none; }
.tabBox1 .nav > li.active > a { border: none; background: none; }

:root {
	/* 컨텐츠 너비 */
	--containerV1-width : 1400;

	--main-color : #045499; /* mainColor */	
    --basic-border-color: #045499;	/* 게시판 및 게시판헤드 등 기타 버튼들 border 컬러 */

    --theme-bg-color : transparent;
    --theme-item-color: #fff;
    --theme-item-color-rgb1 : 255;
    --theme-item-color-rgb2 : 255;
    --theme-item-color-rgb3 : 255;

    /* 해드 전체적인 사이즈 조절하고 싶을 때 여기서 수정 */
    --header-height: 100px;
}
@media (max-width:991px) {
    :root { 
        --header-height: 60px;
    }
}

/* container */
.containerV1 { width: 100%; margin: 0 auto; max-width: calc(var(--containerV1-width) * 1px); }
@media (max-width:1330px) {
	.containerV1 { padding: 0 15px; }
}

/* 스크롤 막기 (모바일 메뉴 열었을 때 적용) */
.scrollDisable { height:100%; min-height:100%; overflow:hidden !important; touch-action:none; }

/* 확대 축소 애니메이션 */
@keyframes ani_scale1 {
	50% { transform:scale(1.005); }
}
@keyframes ani_scale2 {
	50% { transform:scale(1.04); }
}
@keyframes ani_scale3 {
	50% { transform:scale(1.00); }
}

.ikwrap { overflow: hidden; }

/* 게시판 글 없을 때 */
.post-none { font-size: 16px; }


/* 해드세팅 */
@media all {
    .header_wrap { 
        --transtion:0.4s;
        --head-font-size-pc: 18;
        --head-font-size-mob: 15;
        font-size: min(calc(var(--head-font-size-mob) / 350 * 100vw), calc(var(--head-font-size-pc) * 1px));
        position:fixed; right:0; top:0; width:100%; z-index:2000; transition:var(--transtion);
        background: var(--theme-bg-color);
    }
    
    #header {display:flex; justify-content:space-between; align-items:center;}
	
	.header_wrap #header .logo  img {width: 250px;}
	.header_wrap #header .logo .logo_1 {display: block;}
	.header_wrap #header .logo .logo_2 {display: none;}   
    
    /* menu */
    /*---------------------------------------- outer ---------------------------------------------*/
    #h_menu .outer > li { position: relative; }
    #h_menu .outer > li > a { display:block; font-size:inherit; }
    /*---------------------------------------- //outer ---------------------------------------------*/
    
    
    /*---------------------------------------- inner ---------------------------------------------*/
    
    #h_menu .outer > li > .inner > li > a  {display:block; font-size:0.83em;}
    /*---------------------------------------- //inner ---------------------------------------------*/
    
    
    /* 스크롤 했을 때 해드 효과 */
    .header_wrap.scroll { 
        --theme-bg-color : #fff;
        --theme-item-color: #000;
        --theme-item-color-rgb1 : 0;
        --theme-item-color-rgb2 : 0;
        --theme-item-color-rgb3 : 0;
        box-shadow:0 0 5px rgba(0,0,0,0.1);
    }    
    .header_wrap.scroll #header .logo .logo_1 {display: none;}
    .header_wrap.scroll #header .logo .logo_2 {display: block;}
}



@media (min-width:991px) {/* pc */
    /* 소메뉴 효과 */
    @keyframes head-inner-ani1 {
        0%{ transform:translateX(-10%); }
        70%{ transform:translateX(10%); }
        100%{ transform:translateX(0); }
    }

    /* pc - menu */
    /*---------------------------------------- pc - outer ---------------------------------------------*/
    #h_menu { display:flex; align-items:center; }
    #h_menu .outer { -ms-display:flex; display:flex; gap:max(1.5em,calc(80 / 1920 * 100vw)) }
    
    #h_menu .outer > li > a {
    transition:var(--transtion); color: var(--theme-item-color); 
    height: var(--header-height); 
    line-height: var(--header-height);
    }
    #h_menu .outer > li > a .icon { display: none; }
    #h_menu .outer > li > a::before{
        content: ""; position: absolute; width: 0%; height: 2px;
        background: var(--theme-item-color); top: 70%;
        transform: translateY(70%); transition: all 0.3s;
    }
    /*---------------------------------------- // pc -outer ---------------------------------------------*/


    /*---------------------------------------- pc - inner ---------------------------------------------*/
    #h_menu .outer > li > .inner {
        --inner-border-color:#dfdfdf;
        position:absolute; left:50%; top:100%; transform:translateX(-50%); z-index:1;
        width:11.111em; visibility:hidden; opacity: 0; 
    }
    #h_menu .outer > li > .inner > li {
        position: relative;
        box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
        background-color: #fff;
        border: 1px solid var(--inner-border-color);
        visibility:hidden; opacity: 0;
    }
    #h_menu .outer > li > .inner > li > a  { transition:var(--transtion); padding:0.83em 1.1em; text-align:center; color: #888; }
    #h_menu .outer > li > .inner > li > .inner_item {
        --init_size: 150; z-index: -1;
        position: absolute; top: 0; right: 0;
    }
    #h_menu .outer .inner > li > .inner_item > li {
        position: relative;
        box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
        background-color: #fff;
        border: 1px solid var(--inner-border-color);
        visibility:hidden; opacity: 0;
    }
    #h_menu .outer .inner > li > .inner_item > li > a {
        font-size: 15px; display: block; width: calc(var(--init_size) * 1px);
        transition:var(--transtion); padding:0.83em 1.1em; text-align:center; color: #888;
    }

    /*---------------------------------------- // pc - inner ---------------------------------------------*/

    /* pc - hover */
    #h_menu .outer > li:hover > a::before { width: 100%; }
    #h_menu .outer > li.hover > a { color: rgba(var(--theme-item-color-rgb1),var(--theme-item-color-rgb2),var(--theme-item-color-rgb3),0.6); }
    #h_menu .outer > li:hover > .inner { visibility:visible; opacity: 1; z-index: 2; } 
    #h_menu .outer > li:hover > .inner > li,
    #h_menu .outer .inner > li:hover > .inner_item > li { 
    visibility:visible; opacity: 1; animation:head-inner-ani1 0.3s; animation-fill-mode:forwards; animation-delay:calc( var(--i) * 0.1s );
    transition:var(--transtion); transition-delay:calc( var(--i) * 0.1s );
    }
    #h_menu .outer .inner > li:hover > .inner_item > li {z-index: 1; right: calc(var(--init_size) * -1px)}
    #h_menu .outer > li > .inner > li > a:hover,
    #h_menu .outer .inner > li > .inner_item > li > a:hover { color:#fff; background:var(--main-color); } 
    

    /* pc - 페이지 및 게시판 이동하면 해당 메뉴 스타일 */
    #h_menu .outer > li > a.on::before{width: 100%;} 

    /* pc - 스크롤 */
}

@media (max-width: 1450px) {
	.header_wrap .containerV1 {padding: 0 15px;}
}

@media (min-width: 1430px) {
    #header {padding-left: 40px;}
}

@media (991px <= width <= 1500px) {
    #h_menu .outer > li:last-child > .inner {
        transform: translateX(-85%);
    }
}

@media (max-width:991px) {/* 모바일 */
    #header {height: var(--header-height);}

    .header_wrap #header .logo img {width: 170px;}
	
    /* 모바일 열기 버튼 */
    .header_wrap .open_btn { cursor:pointer; color:var(--theme-item-color); font-size: 22px; }

    .menu_box { 
    --size-close-font:22px;
    --transition:0.4s;
    position: fixed; right: 0; top: 0; width: 280px; 
    height: 100%; z-index:9999; background: #fff; 
    transform:translateX(120%); transition:var(--transition); 
    }

    /* 모바일닫기버튼 */
    .close_btn { 
        font-size: var(--size-close-font);
        position: absolute; left: -0.2em; top: 0.2em; transform: translateX(-100%);
        width:1.6em; height:1.6em; cursor:pointer; background: #fff; border-radius:0.2em; z-index: 9999;
    }
    .close_btn > i { display:block; color:#000; text-align:center; line-height:1.65em; font-size:1em;}


    #h_menu { 
    width: 100%; height: 100%; overflow-x: hidden; overflow-y:auto; position: absolute;  top:0;
    display:grid; align-items:start; align-content:start; padding: 0 15px;
    }
    .menu_box_bg { position: absolute; right: 0; top: 0; z-index:8000; width: 100%; height: 100vh; background: rgba(0,0,0,0.9); }

    .menu_box #h_menu .mob_logo_icon {
        display: grid !important; justify-content: center; padding: 20px 0;
    }

	.menu_box #h_menu .mob_logo_icon a {width: 180px;}



    .menu_box #h_menu .outer { display:grid; padding-top: 0.5em; border-top: 1px solid #dddd;}
    .menu_box #h_menu .outer > li {border-bottom: 1px solid #eee;}
    .menu_box #h_menu .outer > li > a { 
        font-weight: 500; pointer-events: none; position: relative;
        padding: 0.8em 1em; font-size: 1.1em;
    }
    .menu_box #h_menu .outer > li > a:after {
        content: '\f107'; font-family: fontAwesome; position: absolute; right: 1em; top: 50%;
        transform: translateY(-50%); font-size: 0.8em; font-weight: normal; color: #313131;
    }
    
    .menu_box #h_menu .inner {
    padding: 0.5em 1.2em 1em;
    display:grid; grid-template-columns:1fr; gap:0; position: relative; justify-content: center;
    display: none; background: #f4f4f4;
    }
    .inner_table .inner > li > a { border-bottom: 1px solid #ddd; }
    .menu_box #h_menu .inner > li > a { position: relative;  padding: 0.8em 0.5em;}

    #h_menu .outer .inner > li > .inner_item {padding-left: 15px;}
    #h_menu .outer .inner > li > .inner_item > li {font-size: 15px; padding: 10px;}


    /* 모바일메뉴박스 보이게 하는 클래스 */
    .menu_box.inactive { transform:translateX(0); } 

    /* on */
    .menu_box #h_menu .outer > li > a.on { color: var(--main-color); }

    .menu_box #h_menu .outer > li.on .inner { display: grid; }
}


/*--------------------------------------------------- 인덱스세팅 ----------------------------------------------------------------------------*/

/* data-scroll 애니메이션 */
.fade-Up {transition: 1s 0.3s;}
.fade-Up[data-scroll="out"] {opacity: 0; transform: translateY(15%);}


#index {
    font-size: min(calc(10 / 450 * 100vw),10px);
    position: relative;
}

.more-v1 {
    display: inline-block; font-size: 1.6em;
    width: 100%; max-width: 12.5em; height: 3.4375em;
}
.more-v1 > a {
    --bg-color: #045499;
    --item-color:#fff;
    display: flex; justify-content: center;
    align-items: center;
    background: var(--bg-color);
    width: 100%; height: 100%;
    border-radius: 1.2em; gap: 5px;
    line-height: 1;

    transition: 0.3s;
}
.more-v1 > a > span {
    position: relative; z-index: 1; display: block;
    color: var(--item-color); transition: 0.4s;
}

@media (min-width: 992px) {
    .more-v1 > a:hover {background: #000;}    
}


/* section1 */
#index .section1 {padding: 0;}
#index .section1 .containerV1 { 
    display: flex; gap:10px; padding-bottom: 11em;
    position: relative;
}

#index .section1 .containerV1 > * {padding-top: 6.5em;}


/* 왼쪽 네비 */
#index .section1 .tabBox1 {
    display: flex; font-size: 1.8em;
    transition:2s; position: relative; z-index: 2;
}

#index .section1 .tabBox1[data-scroll="out"] {opacity: 0;}

#index .section1 .tabBox1 .nav {
    display: grid; align-content: start; gap:1em;
    background: #f7f7f7; padding: 75px 25px;
    overflow: hidden; border-radius: 0 60px 0 60px;
    max-height: 440px;
}
@media (min-width:768px) {
	#index .section1 .tabBox1 .nav { height: 440px; }
}
#index .section1 .tabBox1 .nav:before,
#index .section1 .tabBox1 .nav:after { display: none; }
#index .section1 .tabBox1 .nav > li > a {
    color: #aaa; display: block; width: 100%; position: relative;
    padding: 0.5em; transition:0.4s; text-align: center;
}
#index .section1 .tabBox1 .nav > li > a span {position: relative;}
#index .section1 .tabBox1 .nav > li > a span::before {
    content:''; position: absolute; bottom: -5px; left: 50%;
    transform: translateX(-50%); width: 0; height: 2px;
    background: var(--main-color); transition: 0.5s;
}

/* active */
#index .section1 .tabBox1 .nav > li.active > a {
    color: var(--main-color); font-weight: bold;
}
#index .section1 .tabBox1 .nav > li.active > a span::before {width: 110%;}

/* 내용상자 */
#index .section1 .tabBox1 .tab-content {
    margin-left: 5em; flex:1; padding-top: 1.7em;
}

#index .section1 .tabBox1 .tab-content .title {
    font-size: 2.5em; font-weight: bold; color: #1b1b1b;
    line-height: 1.4; margin-bottom: 0.8em; text-transform: uppercase;
}
#index .section1 .tabBox1 .tab-content .text1 {
    font-size: 1.38888em; font-weight: bold; 
    color: var(--main-color);
    line-height: 1.5; padding-bottom: 0.8em;
}
#index .section1 .tabBox1 .tab-content .text2 {
    font-size: 1em; color: #7d7d7d;
    line-height: 1.6; padding-bottom: 3em;
}

#index .section1 .tabBox1 .tab-content .more-v1 {font-size: inherit; max-width: 11.2em; height: 3.0555em;}
#index .section1 .tabBox1 .tab-content .more-v1 > a > span {font-size: 0.9em;}

/* 오른쪽 이미지 */
#index .section1 .right {
    position: absolute;
    right: 0;
    padding-top: 0;
    transform: translateX(7.7em);
}
#index .section1 .right .img {
	position: relative; z-index: 2; overflow: hidden; border-radius: 0 0 0 50px; height: 53em;
	display: flex; align-items: center; justify-content: center;
}

#index .section1 .right p.text1 {
    font-size: 1.6em; color: #959595; line-height: 1.8; position: relative; z-index: 2;
    margin-left: 2.5em;
}
#index .section1 .right p.text1 span {text-transform: uppercase;}

#index .section1 .right[data-scroll="out"] .box1 .text_in {
    transform: translateY(50%);
}


/* data-scroll */
#index .section1 {overflow: hidden;}
#index .section1 .tabBox1 .nav {transition: 1s 0.3s;}
#index .section1 .tabBox1 .nav[data-scroll="out"] {transform: translateX(-10%); opacity: 0;}

#index .section1 .tabBox1 .tab-content .title {transition-delay: 0.3s;}
#index .section1 .tabBox1 .tab-content .text1 {transition-delay: 0.6s;}
#index .section1 .tabBox1 .tab-content .text2 {transition-delay: 0.9s;}
#index .section1 .tabBox1 .tab-content .more-v1 {transition-delay: 1.2s;}

#index .section1 .right .img {transition: 1s 0.5s;}
#index .section1 .right .img[data-scroll="out"] {transform: translateX(10%); opacity: 0;}
#index .section1 .right .text1 {transition: 1s 0.7s;}
#index .section1 .right .text1[data-scroll="out"] {opacity: 0;}



@media (max-width:1550px) {
    #index .section1 .right {transform: translateX(-5.3em);}
}

@media (769px <= width <= 1330px) {
	#index .section1 .right .img {opacity: 0.5;}
	#index .section1 .tabBox1 .tab-content .text2 {color: #222;}
}

@media (max-width:991px) {
    #index .section1 .containerV1 {gap:5em; padding-bottom: 23em;}
    #index .section1 .containerV1 > * {padding-top: 3.8em;}
    #index .section1 .tabBox1 {height: auto;}
    #index .section1 .right {max-width: 100%; padding-top: 0; transform: translateX(-2em);}
	#index .section1 .right .img {height: auto;}
}

@media (max-width: 950px) {
    #index .section1 .tabBox1 .tab-content .text2 br {display: none;}
}


@media (max-width:768px) {
	#index .section1 .containerV1 {padding-bottom: 5em;}
    #index .section1 .tabBox1 {flex-direction: column;}
    #index .section1 .tabBox1 .nav {
        width: 100%; order: 2; display: flex; max-height: unset;
        padding: 1.7em 0; background: transparent;
    }
    #index .section1 .tabBox1 .tab-content {margin-left: 2em;}
	#index .section1 .right {display: none;}
}

@media (max-width: 680px) {
	#index .section1 .containerV1 {padding-bottom: 0;}
	#index .section1 .right {display: none;}
    #index .section1 .tabBox1 .tab-content {padding-top: 0;}

    #index .section1 .tabBox1 .nav {gap: 5px;}
    #index .section1 .tabBox1 .nav > li > a {font-size: 0.9em;}
}

@media (max-width:580px) {
    #index .section1 .tabBox1 .tab-content .title {
        font-size: 1.8em;
    }
    #index .section1 .tabBox1 .tab-content {
        margin-left: 1em;
    }
    #index .section1 .tabBox1 .tab-content .text2 {
        padding-bottom: 2em;
    }
}



/* section3 */
#index .section3 {
    padding-bottom: 13em;
}
#index .section3 .titleBox {margin-bottom: 4em;}
#index .section3 .titleBox .sub {font-size: 1.8em; color: var(--main-color); margin-bottom: 1em; font-weight: bold;}
#index .section3 .titleBox .title {font-size: 3.5em; color: #000; font-weight: bold; line-height: 1.4;}

#index .section3 .itemBox {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 3em;
}

#index .section3 .itemBox .item {
    padding: 4.7em 5em 4em 4em; display: flex; justify-content: space-between; gap: 2em;
    box-shadow: 3px 3px 15px -3px #ccc; border-radius: 25px;
}
#index .section3 .itemBox .item .item_text h3 {
    font-weight: bold; color: #000; font-size: 2.5em; line-height: 1.2; margin-bottom: 0.8em;
}
#index .section3 .itemBox .item .item_text p.text1 {
    font-weight: bold; color: #434343; font-size: 1.8em; line-height: 1.3;
}

#index .section3 .itemBox .item .icon {
    display: flex; justify-content: center; align-items: center;
    min-width: 6.5em; height: 6.5em; border-radius: 20px; background: #007ae4;
    color: #fff; transition: 0.3s;
}
#index .section3 .itemBox .item .icon i {font-size: 3em;}

@media (min-width: 992px) {
    #index .section3 .itemBox .item .icon:hover {background: var(--main-color);}    
}

@media (max-width: 991px) {
    #index .section3 {padding: 7em 0 10em;}
    #index .section3 .titleBox .title br {display: none;}
    #index .section3 .itemBox {grid-template-columns: repeat(1, 1fr);}
    #index .section3 .itemBox .item {align-items: center;}
}





/* section4 */
#index .section4 {padding: 9em 0 14.5em; background: #f6f6f6;}
#index .section4 .titleBox {margin-bottom: 3em;}
#index .section4 .title-V1 {font-size: 4.5em; font-weight: bold; line-height: 1.2; margin-bottom: 0.3em; color: #1b1b1b;}
#index .section4 .title-V2 {font-size: 1.8em; line-height: 1.3; color: #434343;}
#index .section4 .text1 {font-size: 1.8em; line-height: 1.5;}


/* data-scroll */
#index .section4 .widget_box[data-scroll="out"] {transform: translateY(10%);}


@media (min-width: 801px) {
    #index .section4 > .containerV1 {position: relative; padding-top: 25px;}
    #index .section4 .titleBox {position: absolute; top: 0; left: 0; margin-bottom: 0;}
}

@media (801px <= width <= 1430px) {
    #index .section4 .titleBox {left: 15px;}
}

@media (max-width: 991px) {
    #index .section4 {padding: 9em 0;}
    #index .section4 .titleBox {margin-bottom: 5em;}
}

/*--------------------------------------------------- 인덱스세팅 끝 ----------------------------------------------------------------------------*/



/*--------------------------------------------------- 푸터세팅 ----------------------------------------------------------------------------*/
#footer {
    font-size: min(calc(10 / 450 * 100vw),10px);
    --padding-side:calc( (100vw - (var(--containerV1-width) * 1px)) / 2 );
    background: #313131; display: grid;
    grid-template-columns: repeat(2,1fr);
}
#footer .inquiry_box {
    --over-height:6em;
    padding: 9.8em 1em 6.2em;
    padding-left: var(--padding-side);
    background-repeat: no-repeat; background-position: center;
    background-size: cover; background-image: url(./img/footer_inquiry_bg.jpg);
    /* height: calc(100% + var(--over-height)); */
    transform: translateY(calc(var(--over-height) * -1 - 0em));
    color: #fff; display: grid; border-radius: 0 6em 0;
}
#footer .inquiry_box .title {
    font-size: 5em; font-weight: bold; line-height: 1.4;
    padding-bottom: 1.2em;
}
#footer .inquiry_box .text2 {
    font-size: 2.5em; font-weight: bold; line-height: 1.5;
    padding-bottom: 0.7em;
}
#footer .inquiry_box .text3 {
    font-size: 1.8em; line-height: 1.5;
}
#footer .inquiry_box .more-v1 {
    margin-top: 2em;
    justify-self: start;
}
#footer .inquiry_box .more-v1 > a {
    --bg-color:#fff;
    --item-color:#fff;
    color: #000; font-weight: bold;
}

#footer .inquiry_box .more-v1 > a > span {
    color: inherit;
}
#footer .inquiry_box .more-v1 > a:hover span {
    color: var(--item-color);
}
#footer .itemBox {
    font-size: 1.5em; padding: 8em 0 7em;
    padding-left: 10em; padding-right: var(--padding-side);
}
#footer .itemBox .box1 {
    display: flex; justify-content: space-between; gap:1em;
    align-items:center; margin-bottom: 2em;
}

#footer .itemBox .box1 .f_logo {width: 250px;}

#footer .info_box {
    --item-color:#fff;
    display: flex; padding: 1em 0;
}
#footer .info_box > li {position:relative;}
#footer .info_box > li:after {
    content:''; position:absolute; right: 1em; top:53%; 
    transform:translateY(-50%); width:2px; height: 0.8em; 
    background: var(--item-color);
}
#footer .info_box > li:last-child:after { display:none;}
#footer .info_box > li > a {
    font-weight: normal;
    display:block; color: var(--item-color);
    line-height:1.8; margin-right:2.4em;
}
#footer .info_box > li > a:hover {text-decoration: underline !important;}


#footer .box2 span{font-size: 1em; color: #b5b5b5;}
#footer .box2 a {color: inherit !important;}
#footer .box2 .copy {font-size: 1em; color: #959595; line-height: 1.8;}
#footer .box2 .text span{
    margin-right: 18px; line-height: 1.8; position: relative;
}
#footer .box2 .text span::before{
content:''; position:absolute; right:-11px; top:55%; transform:translateY(-50%);
width:2px; height: 12px; background:#b5b5b5;
}

#footer .box2 .text span:last-child{margin-right: 0;}
#footer .box2 .text span:last-child::before{display: none;}

@media (max-width:1430px) {
    #footer {
        --padding-side : 50px;
    }
    #footer .itemBox {padding-left: 5em;}
    #footer .itemBox .box2 .text {display: flex; flex-direction: column;}
    #footer .box2 .text span::before {display: none;}
}
@media (max-width:991px) {
    #footer {
        grid-template-columns:1fr;
        background: #fff;
    }
    #footer .inquiry_box {
        --over-height:0; 
        width: calc(100% - 15px);
        padding: 4em 1em 5em;
        padding-left: var(--padding-side);
        transform:translateY(6em);
    }
    #footer .inquiry_box .more-v1 {
        margin-top: 3em;
    }
    #footer .itemBox {
        background: #313131;
        width: calc(100% - 15px); margin-left: auto;
        padding-left: 35px;
    }
}
@media (max-width:768px) {
    #footer .inquiry_box .title {
        font-size: 4em; padding-bottom: 0.7em;
    }
    #footer .inquiry_box .text2 { font-size: 2em; }
    #footer .itemBox { padding-bottom: 4em; }
    #footer .box2 .text span { display: block; }
    #footer .box2 .text span::before { display: none; }
}

@media (max-width: 420px) {
	#footer {overflow: hidden;}
}

/*--------------------------------------------------- 푸터세팅 끝 ----------------------------------------------------------------------------*/





/* 서브타이틀 */
#sub_title { 
    background: url(./img/sub_title.jpg) no-repeat center / cover;
    height: 300px;  
}

/* 서브페이지 패딩 */
.tmt_sub_frame { padding:40px 0 140px; min-height: 70vh; overflow-x:hidden; }
@media (max-width:991px) {
    .tmt_sub_frame { padding-bottom: 50px; }
}


/* 게시판 및 게시판헤드 등 기타 버튼들 기본컬러 변경 */
.btn.btn-color {border: 1px solid var(--basic-border-color); background-color: var(--main-color);}
.btn.active.btn-color, .btn.btn-color:hover, .btn.btn-color:focus, .btn.btn-color:active {background-color: var(--main-color);}
.border-color, i.border-color, img.border-color {border-color: var(--basic-border-color);}

/* 모달 z-index높이기 (해드에 가려지는 경우 발견해서) */
.modal {z-index: 9999; }
.modal-backdrop {z-index: 9998;}

#style-switcher .widget-setup { top: 155px !important; }

/* 게시판 스타일 조정 */
.board-list {font-size: 16px;}
.btn-sm, .btn-group-sm>.btn {font-size: 14px;}
/* .write-wrap .form-group  {font-size: 16px;} */
.div-head {padding:  20px 0; border-top: 3px solid #333 !important; border-bottom: 1px solid #333 !important;}
.div-head span {font-weight: 500;}
.list-board .list-body li > div {padding: 20px 0; color: #000;}
.list-board .list-body .wr-subject .item-subject {font-weight: 300;}
.list-board .list-body .wr-name {font-weight: 500;}

.faq_subject {font-size: 16px;}
.div-panel.panel-group .panel-heading a {padding: 20px 15px; padding-left: 0;}
