@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 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 : 1200;
	--containerV2-width : 1510;
	
	--main-color : #25255b;
    --basic-border-color: #25255b;	/* 게시판 및 게시판헤드 등 기타 버튼들 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;
}

/* container */
.containerV1 { width: 100%; margin: 0 auto; max-width: calc(var(--containerV1-width) * 1px); }
.containerV2 { width: 100%; margin: 0 auto; max-width: calc(var(--containerV2-width) * 1px); }

@media (max-width:1530px) {
	.containerV2 { padding: 0 15px; }
}

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

/* 확대 축소 애니메이션 */
@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-x: hidden; } */

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

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


/*--------------------------------------------------- 해드세팅 ----------------------------------------------------------------------------*/
/* 해드세팅 */
@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 .logo {
        --logo-width:270;
        --logo-height:42;
        width:calc(var(--logo-width) * 1px);
    }
    #header .logo a {
        display: block; padding-bottom: calc(var(--logo-height) / var(--logo-width) * 100%);
        background-repeat: no-repeat; background-size: cover;
        background-position: center;
        background-image: url('img/logo.png');
    }
    
    
    /* menu */
    /*---------------------------------------- outer ---------------------------------------------*/
    #h_menu .outer > li { position: relative; }
    #h_menu .outer > li > a { display:block; font-size:inherit; text-transform: uppercase;}
    /*---------------------------------------- //outer ---------------------------------------------*/
    
    
    /*---------------------------------------- inner ---------------------------------------------*/
    
    #h_menu .outer > li > .inner > li > a  { display:block; font-size:0.83em; text-transform: uppercase;}
    /*---------------------------------------- //inner ---------------------------------------------*/
    

    .header_wrap .langBox {
        margin-left: max(30px, 7.6vw); display: flex;
        align-items: center; gap: 8px;
    }
    .header_wrap .langBox .list {position: relative; color: #fff; padding-right: 20px;}
    .header_wrap .langBox .list > ul {height: 20px; color: inherit; position: relative;}
    .header_wrap .langBox .list > ul > li {color: inherit; text-align: center;}
    .header_wrap .langBox .list > ul > li > a {color: inherit;}
    .header_wrap .langBox .list > i {
        position: absolute; top: 50%; transform: translateY(-50%); right: 0; font-size: 15px;
        color: inherit
    }

    @media (min-width: 1171px) {
        .header_wrap .langBox .list > ul > li:last-child {
            padding: 3px 15px; border-radius: 30px; border: 1px solid #fff;
            opacity: 0; position: absolute; top: 50%; left: 50%; transform: translateX(-50%);
            transition: 0.3s;
        }
        .header_wrap .langBox .list > ul:hover > li:last-child {opacity: 1; top: 130%;}
        .header_wrap .langBox .list > ul > li:last-child:hover {
            background: var(--main-color); border-color: var(--main-color);
        }
    }

    .header_wrap .open_btn,
    .header_wrap .close_btn,
    .header_wrap .mob_logo_icon {display: none;}

    
    /* 스크롤 했을 때 해드 효과 */
    .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 a { background-image: url('img/logo_sub.png');}

    .header_wrap.scroll .langBox img {filter: brightness(0);}
    .header_wrap.scroll .langBox .list {color: #000;}
    .header_wrap.scroll .langBox .list > ul > li:last-child {
        background: var(--main-color); border-color: var(--main-color);
        color: #fff;
    }

    
}



@media (min-width:1170px) {/* 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(60 / 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;
		line-height: 1.2;
	}
    /*---------------------------------------- // 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 { 
    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 > li > .inner > li > a:hover { color:#fff; background:var(--main-color); } 
    

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

    /* pc - 스크롤 */
}

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

@media (max-width: 1430px) {
	.header_wrap {--head-font-size-pc: 17;}
	#header .logo {
		--logo-width: 230;
		--logo-height: 35;
	}
	.header_wrap .langBox {margin-left: 30px;}
}

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

    #header .logo { 
        width:155px;
    }
    /* 모바일 열기 버튼 */
    .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: 300px; 
    height: 100%; z-index:9999; background: #fff; 
    transform:translateX(120%); transition:var(--transition); 
    }

    .header_wrap .open_btn,
    .header_wrap .close_btn,
    .header_wrap .mob_logo_icon {display: block;}

    /* 모바일닫기버튼 */
    .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: flex !important; padding-top: 20px; justify-content: center;}
    .menu_box #h_menu .mob_logo_icon a {width: 180px;}
    /* .menu_box #h_menu .mob_logo_icon .logo_icon1 { transform: scale(1.5); transition: 1.4s; }
    .menu_box #h_menu .mob_logo_icon .logo_icon1 .logo_img > * { fill: #000; } */



    .menu_box #h_menu .outer { display:grid; grid-row: 3; padding-top: 1.5em; position: relative;}
    .menu_box #h_menu .outer > li > a { 
        font-weight: 500; pointer-events: none; position: relative;
        padding: 0.8em 1em; font-size: 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;
    }
    .menu_box #h_menu .inner > li:not(:last-child) > a { border-bottom: 1px solid #eee; }
    .menu_box #h_menu .inner > li > a { position: relative;  padding: 0.8em 0.5em; }

    /* 모바일메뉴박스 보이게 하는 클래스 */
    .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; }

    .header_wrap .langBox {
        margin-left: 0; padding-top: 1.5em; 
        grid-row: 2; justify-content: center; width: 100%;
    }
    .header_wrap .langBox img {filter: brightness(0); display: none;}
    .header_wrap .langBox .list {color: #000; padding-right: 0; width: 100%;}
    .header_wrap .langBox .list > ul {display: flex; gap: 10px; height: fit-content; justify-content: center;}
    .header_wrap .langBox .list > i {display: none;}
    .header_wrap .langBox .list > ul > li {
        background: var(--main-color); color: #fff;
        width: 40%; height: 28px; border-radius: 30px;
        display: flex; align-items: center; justify-content: center;
    }
}
/*--------------------------------------------------- 해드세팅 끝 ----------------------------------------------------------------------------*/



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


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


/* 라인 bg */
#index > .bg {
    --line-color: #eee;
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
    width: 100%; height: 100%;
    display: flex; z-index: -1;
}
#index .bg .line {
    content: ''; flex: 1;
    transition: 1s; position: relative; height: 100%; 
}

#index .bg > .line::before, #index .bg > .line::after {
    transition: 5s; transition-delay: 1s;
}

#index .bg > .line:first-child:before {
    content:''; position: absolute; top: 0; left: 0;
    width: 1px; height: 100%; background: var(--line-color);
}
#index .bg > .line::after {
    content:''; position: absolute; top: 0; right: 0;
    width: 1px; height: 100%; background: var(--line-color);
}

/* #index .bg .line:first-child:before {transition-delay: 0.5s;} */
#index .bg .line::after {
    transition-delay: calc((var(--index) + 1) * 0.5s);
}
#index > .bg[data-scroll="out"] .line::before,
#index > .bg[data-scroll="out"] .line::after {height: 0%;}

/* 라인 bg 끝 */


#index .title-V1 {font-size: 5em; font-weight: bold; line-height: 1.2;}
#index .title-V2 {font-size: 2.5em; font-weight: bold; line-height: 1.2;}
#index .text1 {font-size: 1.8em; line-height: 1.5;}

/* button */
.more-v1 {
    font-size: min(calc(10 / 500 * 100vw), 10px);
}

.more-v1 > a {
    width: 16.5em; height: 5.3em; border-radius: 0 2.5em 0 2.5em;
    display: flex; align-items: center; justify-content: center;
    text-align: center; line-height: 1.2; background: var(--main-color);
    transition: left 0.5s 0.1s, border-radius 0.5s 0.2s; position: relative; left: 0;
}
.more-v1 > a span {font-size: 1.6em; color: #fff;}

@media (min-width: 992px) {
    .more-v1 > a:hover {
        border-radius: 2.5em 0 2.5em 0; left: 20px;
    }   
}


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

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


/* 왼쪽 네비 */
#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.7777em; 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.38em; 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 .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: 1em;
}
#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 <= 1230px) {
	#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;}
}

@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;
    }
}



/* section2 */
#index .section2 {padding: 10em 0 0;}
#index .section2 .containerV1 {
    max-width: 100%; position: relative;
}

@media (max-width: 1230px) {
    #index .section2 .containerV1 {padding: 0;}
}


#index .section2 .itemBox {
    position: relative; padding-bottom: 8.8em;
}

#index .section2 .itemBox .img {
    position: relative; z-index: 1;
    width: 79.13%; height: 54.5em; border-radius: 0 4em 0 4em;
    background: url('img/sec2_img01.png') no-repeat center center / cover;
}

#index .section2 .itemBox .textBox {
    position: absolute; bottom: 0; right: 0; z-index: 2;
    width: min(calc(1160 / 1430 * 100vw), 1160px);
}
#index .section2 .itemBox .textBox > h2.title-V1 {
    color: var(--main-color); padding-left: 1.88em;
    margin-bottom: 15px;
}
#index .section2 .itemBox .textBox > h2.title-V1 br {display: none;}

#index .section2 .itemBox .textBox .item_text {
    border-radius: 5em 0 0 5em; background: var(--main-color);
    padding: 7em 20px 8em 9em; color: #fff;
}

#index .section2 .itemBox .textBox .item_text h3.title-V2 {margin-bottom: 1em;}
#index .section2 .itemBox .textBox .item_text p.text1 {margin-bottom: 3.0555em;}

#index .section2 .more-v1 > a {background: #fff;}
#index .section2 .more-v1 > a span {color: var(--main-color); font-weight: bold;}



/* data-scroll */
#index .section2 .containerV1 {overflow: hidden;}
#index .section2 .itemBox .img {transition: 3s 0.2s;}
#index .section2 .itemBox .img[data-scroll="out"] { transform: translateX(-7%);}
#index .section2 .itemBox .textBox {transition: 3s 0.2s;}
#index .section2 .itemBox .textBox[data-scroll="out"] { transform: translateX(7%);}

#index .section2 .itemBox .textBox .title-V1 {transition: 1.3s 0.3s;}
#index .section2 .itemBox .textBox .title-V1[data-scroll="out"] {opacity: 0; transform: translateX(-5%);}
#index .section2 .itemBox .textBox .title-V2.fade-Up {transition-delay: 0.7s;}
#index .section2 .itemBox .textBox .text1.fade-Up {transition-delay: 1s;}
#index .section2 .itemBox .textBox .more-v1.fade-Up {transition-delay: 1.2s;}


@media (max-width: 1050px) {
    #index .section2 .itemBox .textBox .item_text p.text1 br {display: none;}
}

@media (max-width: 991px) {
    #index .section2 .containerV1 {padding-bottom: 14em;}
}

@media (max-width: 768px) {
    #index .section2 .itemBox {padding-bottom: 25.8em;}
    #index .section2 .itemBox .textBox > h2.title-V1 {padding-left: 0;}
    #index .section2 .itemBox .textBox .item_text {padding: 7em 20px 8em 4em;}
}


@media (max-width: 620px) {
	#index .section2 .itemBox .textBox > h2.title-V1 {padding-right: 15px; text-align: right;}
	#index .section2 .itemBox .textBox > h2.title-V1 br {display: block;} 
}


/* section3 */
#index .section3 {padding: 15em 0 22em;}
#index .section3 .titleBox {margin-bottom: 6em;}
#index .section3 .titleBox > h2.title-V1 {margin-bottom: 0.3em;}
#index .section3 .titleBox > p.title-V2 {color: var(--main-color);}


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

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

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

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



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


/* data-scroll */
#footer .inquiry_box {transition: 2s 0.3s;}
#footer .inquiry_box[data-scroll="out"] {left: -20%;}


#footer .itemBox {
    font-size: 1.5em; padding: 6em 0 8em;
    /* padding-left: 4em; padding-right: var(--padding-side); */
    padding-left: max(4em, calc( (100vw - (var(--containerV1-width) * 1px)) / 4.5));
    padding-right: max(3em, calc( (100vw - (var(--containerV1-width) * 1px)) / 3.8));
}
#footer .itemBox .box1 {
    display: flex; justify-content: space-between; gap:1em;
    align-items:center; margin-bottom: 2em; flex-wrap: wrap;
}
#footer .ft_sitemap {
    --item-color:#b5b5b5;
    position: relative;height: 100%;
}
#footer .ft_sitemap > select {
    font-size: 1.06em; background: transparent;
    width: 180px; height: 40px; border-color: var(--item-color);
    padding: 10px 15px; color: var(--item-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#footer .ft_sitemap::after {
    content:''; position: absolute;
    top: 50%; right: 15px;
    transform: translateY(-3px);
    width: 8px;
    height: 5px;
    background: url("./img/footer_box.png") no-repeat;
}

#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;}

#footer .sns_list { 
	margin-top: 2em; display:flex; gap:1em;
}
#footer .sns_list > li > a {
	display: block; width: 50px; position: relative;
}
/*#footer .sns_list > .youtube > a:after {*/
/*	content: ''; position: absolute; left: 50%; top: 50%;*/
/*	transform:translate(-50%,-50%); width: 30%; height: 30%;*/
/*	background: #fff;*/
/*}*/
#footer .sns_list > li > a img {
	position: relative; z-index: 1;
}
#footer .sns_list > li > a:hover {
	opacity: 0.8;
}

@media (max-width:1330px) {
    #footer {
        --padding-side : 50px;
    }
}
@media (max-width:991px) {
    #footer {
        grid-template-columns:1fr;
        background: #fff;
    }

    #footer .f_logo {width: 180px;}

    #footer .inquiry_box {
        --over-height:0; 
        width: calc(100% - 15px);
        transform:translateY(4em);
        font-size: min(calc(10 / 550 * 100vw), 10px);
    }
    #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;
    }
    #footer .inquiry_box .text2 { font-size: 2em; }
    #footer .itemBox { padding-bottom: 4em; }
    #footer .ft_sitemap { display: none; }
    #footer .box2 .text span { display: block; }
    #footer .box2 .text span::before { display: none; }
}
/*--------------------------------------------------- 푸터세팅 끝 ----------------------------------------------------------------------------*/








/* 서브페이지 패딩 */
.tmt_sub_frame {padding:40px 0 100px; min-height: 70vh;}


/* 게시판 및 게시판헤드 등 기타 버튼들 기본컬러 변경 */
.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;}
