@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 : 1400;

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

/* container */
.containerV1 { width: 100%; margin: 0 auto; max-width: calc(var(--containerV1-width) * 1px); }
@media (max-width:1430px) {
	.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; }


.color-tag {color: var(--main-color);}
.color-tag2 {color: var(--main-color2);}


/*--------------------------------------------------- 해드세팅 ----------------------------------------------------------------------------*/

@media all {
    #header { 
    --menu-font-color : #434343;
    --h-height: 105;
    position: sticky; left: 0; top: 0; width: 100%; height: calc(var(--h-height) * 1px); z-index: 1000; transition:0.4s;
    background: #fff; 
    }
    
    #header > .containerV1 {height: 100%;}
    
    /*모바일 검은 배경*/
    #header .menuBox_bg {position: fixed; right: 0; top: 0; z-index: 8000; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); display: none;}
    
    
    #header .itemBox {
    width: 100%; height: 100%; display:flex; justify-content:space-between; align-items:center; 
    position: relative; z-index: 2; margin: 0 auto;}
    
    #logo {width: 20.6rem;}
    #logo a {display: flex; align-items: center;}
    
    
    
    /*main_menu---------------------------------------------------------------------------*/
    #nav .nav_logo {display: none;}
    #nav .nav_inner { display:flex; align-items:center; width: 100%; gap: 0 50px;}
    #nav .outer {display: flex; position: relative;}
    #nav .outer > li {position: relative; margin-left: 8rem; height: calc(var(--h-height) * 1px); display: flex; align-items: center;}
    #nav .outer > li:first-child {margin-left: 0;}
    #nav .outer > li > a {
    display: flex; color: var(--menu-font-color);  font-size: 16px; height: auto; line-height: 1.3; align-items: center;
    position: relative; transition: all 0.3s;
    }
    #nav .outer > li > a > span {position: relative;}
    #nav .outer > li > a > i {color: var(--main-color); display: none;}
    #nav .outer > li > a > span:after {
    content: ''; position: absolute;  bottom: -10px; width: 0; height: 3px; background: var(--main-color2); transition:0.4s; right: 0;
    }
    
    
    
    /*sub_menu---------------------------------------------------------------------------*/
    #nav .inner {
    display: block; position: absolute; left: 50%; transform: translateX(-50%);  top: 60%; width: 190px; height: 0; overflow: hidden; border-radius: 30px;
    opacity: 0; transition: all 0.7s; visibility: hidden; z-index: 1;  background: #fff; text-align: center; box-shadow: 3px 2px 10px rgba(0,0,0,0.2);
    }
    #nav .inner > li {position: relative; color: #000; line-height: 1.3; transition: all 0.3s;}
    #nav .inner > li:first-child {margin-top: 10px;}
    #nav .inner > li:last-child {margin-bottom: 10px;}
    
    #nav .inner > li > a { display: block; font-size: 15px; color: inherit; transition: all 0.3s; position: relative; left: 0; padding: 13px;}
    #nav .outer > li:nth-child(1) .inner { z-index: 10;}
    
    
    
    /* hover */
    @media (min-width: 991px) {
        #nav .outer > li:hover > .inner {opacity: 1; visibility: visible; z-index: 2; top: 86%; height: auto;}
        #nav .outer > li:hover > a > span:after {width: 100%; right: auto; left: 0;}
        #nav .outer > li > .inner > li:hover > a {color: var(--main-color2);}

        /* 해당페이지 일때 */
        #nav .outer > li > a.on > span::after {width: 100%;}
    }
    
    /* 해드 스크롤 했을때 */
    #header.scroll {
        box-shadow: 0px 3px 10px rgba(0,0,0,0.1); background: #fff;
    }
    #header.scroll #logo a .logo_1 {filter: brightness(0)}
    #header.scroll #nav .outer > li > a {color: #000;}

    /* 헤드 메뉴에 on 했을때 */
    #header.header_full {background: #fff;}
    #header.header_full #nav .outer > li > a {color: #000;}
    #header.header_full #logo a .logo_1 {filter: brightness(0)}
    
    
    
    /*모바일에서 피씨 로고 클래스 지움.*/
    #logo.logo_hide {opacity: 1; visibility: visible;}
    
}    
    
/*반응형-------------------------------------------------------------*/

@media (991px <= width <= 1630px) {
    #nav .outer {padding-right: 6rem;}
}

@media (max-width: 1330px) {
    #nav .outer > li {margin-left: 4rem;}
}

@media (max-width: 1230px) {
    #nav .outer > li > a {font-size: 15px;}
}

@media (max-width: 600px) {
    #logo{width: 17rem;}
}



/*모바일*/
@media all and (max-width: 1050px) {
    
    #header {--menu-font-color: #222; --h-height: 70;}

    /* 모바일 열기 버튼 */
    .open_btn { font-size: 40px; color: #000; cursor:pointer;}

    #nav {
    --mob-bg : #f7f7f7;
    background-color: var(--mob-bg); width: 100%; height: 100%;  display: block;
    position: fixed; right:0; top: 0; z-index:9999; margin-right:-100%;  transition:margin-right 0.3s;
    }

    #nav .nav_inner .nav_topBox {
        display: flex; justify-content: center; align-items: center; width: 100%; 
        background: var(--mob-bg); padding: 40px 20px; border-bottom: 1px solid #eee;
    }
    #nav .nav_inner .nav_logo {display: flex; align-items: center; width: 160px; filter: brightness(0);}
    #nav .nav_inner { 
    width: 100%; height: 100%; overflow-x: hidden; overflow-y:auto; position: absolute;  top:0; 
    flex-direction:column; justify-content:flex-start; align-items:stretch;
    }

    /* 모바일닫기버튼 */
    .close_btn { width:50px; height:50px; margin-right:0; margin-left:auto; cursor:pointer; position: absolute; right: 0; top: 0;}
    .close_btn > i { display:block; color:var(--menu-font-color); text-align:center; line-height:50px; font-size:40px; z-index: 3;}


    #header .menuBox_bg {display: block;}/*	menubox_bg가 메뉴를 연 상태로 바로 pc화면으로 바꿀 경우 그대로 남아서 pc에서 none 처리해둔 걸 모바일에서 푸는 용도*/

    #nav .outer { display: block; margin-top: 10px; padding: 0 20px; order: 3;}
    #nav .outer > li { margin-left: 0; width: 100%; overflow: hidden; cursor: pointer; margin-bottom: 10px; height: auto; display: block;}
    #nav .outer > li > a { 
        font-weight: 500; padding:15px 20px 20px 10px; color: var(--menu-font-color); position: relative; 
        pointer-events:none; height: auto; line-height: 1; font-size: 18px; border-bottom: 1px solid #ddd;
    }
    #nav .outer > li > a > span {transition: 0.5s;}
    /* #nav .outer > li > a > span:after {
        background: url('img/nav_icon_logo.png') no-repeat center center / cover;
        width: 20px; height: 20px; left: -25px; top: 50%; transform: translateY(-50%);
        opacity: 0; transition: 0.5s;
    } */
    

    #nav .outer > li > a > i {color: var(--menu-font-color); display: inline-block; position: absolute; right: 15px; top: 15px; transform: rotate(0deg); transition: all 0.3s;}

    #nav .inner {
        position: relative; padding: 0; display: block; border:0; opacity: 0; padding-left: 10px;
        visibility: hidden; width: 100%; height: 0;  background: var(--mob-bg); box-shadow: none;
    }
    #nav .inner::before {display: none;} 
    #nav .inner > li { margin-bottom:0; position: relative; padding: 0;}


    #nav .inner > li > a {
    color: var(--menu-font-color); padding: 12px 25px 12px 10px; position: relative; transition: all 0.3s;
    text-align: left; left: 0;
    }
    #nav .inner > li > a {border-bottom: 1px solid #e5e5e5;}

    /*	pc 메뉴 효과 지움*/
    
    #header:hover #nav .inner {opacity: 1; top: 100%;}



    /* 해드 스크롤 했을때 */
    #header.scroll #nav .outer > li > a {color: var(--menu-font-color); line-height: 1;}
    #header.scroll .open_btn {color: #000;}

    /* 헤드 메뉴에 on 했을때 */
    /* #header.header_full {background: ;} */
    #header.header_full #nav .outer > li > a {color: #000;}
	#header #nav .outer > li > a {color: #000;}

    /* hover */
    #nav .outer > li > .inner > li:hover > a {background: transparent; color: var(--menu-font-color);}
    #nav .outer > li:hover > .inner { display:block; opacity: 1; top: 100%;}
    #nav .outer > li > .inner > li:hover {background: #333;}
    #nav .outer > li > .inner > li:hover > a {color: var(--menu-font-color);}
    #nav .inner > li:hover > a span {left: 0;}


    /* 해당페이지 일때 */
    #nav .outer > li > a.on > span {margin-left: 20px;}
    /* #nav .outer > li > a.on > span::after {opacity: 1;} */

    #nav .outer > li.on_sub > a > span {margin-left: 20px;}
    /* #nav .outer > li.on_sub > a > span::after {opacity: 1;} */

    /* outer 클릭시 inner보이는 효과 */
    #nav .outer > li.on_sub > .inner { display: block;}
    #nav .outer > li.on_sub > .inner {
        opacity: 1;
        visibility: visible;
        height: auto;
    }
    #logo.logo_hide {opacity: 0; visibility: hidden;}
    #nav .outer > li.on_sub > .inner > li {background: #f7f7f7;}
    #nav .outer > li.on_sub > a > i {transform: rotate(90deg); }
    

    /* 모바일메뉴박스 보이게 하는 클래스 */
    #nav.inactive { margin-right: -1px; }
}

/*--------------------------------------------------- 해드세팅 끝 ----------------------------------------------------------------------------*/



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

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



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

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

#index > .section .titleBox {text-align: center;}

/* button-style ------------------*/
@media all {
    #index .btn_box {margin: 0 auto; width: fit-content;}
    #index .btn_box .link_btn {display: flex; align-items: center; gap: 10px;}
    #index .btn_box .link_btn > span {
        font-size: 1.6em; color: #818181;
        line-height: 1.2; font-weight: 300;
        position: relative; transition: 0.3s;
    }
    #index .btn_box .link_btn > span::before {
        content:''; position: absolute; bottom: -3px;
        right: 0; width: 0%; height: 1px; background: #000;
        transition: 0.3s;
    }
    #index .btn_box .link_btn .circle_box {
        position: relative; padding-left: 1.8em;
    }
    #index .btn_box .link_btn .circle_box .line {
        position: absolute; top: 70%; left: 0;
        height: 1px; width: 74%; transition: 0.3s;
        background: #818181; z-index: 2;
    }
    #index .btn_box .link_btn .circle_box .line::after {
        content:''; position: absolute; right: 1px; bottom: -1px;
        width: 1px; height: 7px; background: #818181;
        transform: rotate(-45deg);
    }
    #index .btn_box .link_btn .circle_box .circle {
        border-radius: 50%; width: 2em; height: 2em;
        background: var(--main-color); display: block; position: relative;
        z-index: 1; transform: translateY(3px); 
    }
    #index .btn_box .link_btn .circle_box .circle::before {
        content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        background: inherit; width: 100%; height: 100%; z-index: 1; transition: 0.5s; border-radius: inherit;
    }
}
/* 버튼 hover 효과 */
@media (min-width: 991px) {
    #index .btn_box .link_btn:hover > span {color: #000;}
    #index .btn_box .link_btn:hover > span::before {left: 0; right: unset; width: 100%;}
    #index .btn_box .link_btn:hover .line {left: 0.5em;}
    #index .btn_box .link_btn:hover .circle_box .circle::before {width: 4em; height: 4em; transition-delay: 0.1s;}
}

/* button-style end------------------*/


/* section1 */
#index .section1 {padding: 14.5em 0 17em;}
#index .section1 > .containerV1 {max-width: 100%;}

@media (max-width: 1430px) {
    #index .section1 > .containerV1 {padding: 0;}
}

#index .section1 .itemBox {display: flex; align-items: center; gap: 11.7em;}

@media (min-width: 992px) {
    #index .section1 .itemBox .img {
        width: min(calc(960 / 1430 * 100vw), 960px); height: 64.3em;
        background: url('img/sec1_img01.jpg') no-repeat center center / cover;
    }
    #index .section1 .itemBox .img img {display: none;} 
    #index .section1 .itemBox .textBox h2 br {display: none;}
}

#index .section1 .itemBox .textBox {position: relative; text-align: center; padding: 13.3em 15px 0 0;}

#index .section1 .itemBox .textBox h2 {
    font-size: 6em; color: #000; font-weight: bold;
    position: absolute; top: 0; left: 4.5%;
    transform: translateX(-50%); width: 820px;
}
#index .section1 .itemBox .textBox p.text1 {margin-bottom: 4.777em; color: #818181;}
#index .section1 .itemBox .textBox p.text2 {font-size: 2.5em; font-weight: bold; margin-bottom: 1em;}

/* data-scroll */
#index .section1 .itemBox {overflow: hidden;}
#index .section1 .itemBox .img.d-scroll {transition: opacity 2s 0.4s, transform 2s 0.4s;}
#index .section1 .itemBox .img.d-scroll[data-scroll="out"] {opacity: 0; transform: translateX(-10%);}

#index .section1 .itemBox .textBox h2.d-scroll {transition: 1.5s;}
#index .section1 .itemBox .textBox h2.d-scroll[data-scroll="out"] {opacity: 0; transform: translateX(-40%);}

@media (max-width: 1630px) {
    #index .section1 .itemBox .textBox {width: 100%; max-width: 500px;}
    #index .section1 .itemBox .textBox p.text1 br {display: none;}
}

@media (max-width: 1330px) {
    #index .section1 .itemBox {gap: 5em;}
    #index .section1 .itemBox .textBox h2 {left: unset; right: 15px; transform: translateX(0%)}

    /* data-scroll */
    #index .section1 .itemBox .textBox h2.d-scroll[data-scroll="out"] {transform: translateX(10%);}
}

@media (max-width: 991px) {
    #index .section1 {padding: 14.5em 0 10em;}
    #index .section1 > .containerV1 {padding: 0 15px;}

    #index .section1 .itemBox {flex-direction: column;}
    #index .section1 .itemBox .textBox {width: 100%; padding: 5.3em 0 3em; max-width: 100%;}
    #index .section1 .itemBox .textBox h2 {top: -2.1em; left: unset; right: unset; transform: translateX(0%); width: 100%; line-height: 1.2;}
    #index .section1 .itemBox .textBox p.text1 {margin-bottom: 2.777em;}
    #index .section1 .itemBox .textBox p.text1 br {display: block;}

    /* data-scroll */
    #index .section1 .itemBox .textBox h2.d-scroll[data-scroll="out"] {transform: translateY(15%);}
}

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


/* section2 */
#index .section2 {
    background: url('img/sec2_bg2.jpg') no-repeat center center / cover;
    padding: 17em 0 14.5em;
}
#index .section2 .titleBox {color: #fff; margin-bottom: 4.5em;}
#index .section2 .titleBox > .title-V1 {color: inherit; margin-bottom: 0.6em;}
#index .section2 .titleBox > .text1 {color: inherit;}
#index .section2 .btn_box .link_btn > span {color: #fff;}
#index .section2 .btn_box .link_btn > span::before {background: #fff;}
#index .section2 .btn_box .link_btn .circle_box .line {background: #fff;}
#index .section2 .btn_box .link_btn .circle_box .line::after {background: #fff;}

@media (min-width: 992px) {
    #index .section2 {background-attachment: fixed;}
}

@media (max-width: 900px) {
    #index .section2 .titleBox > .text1 br {display: none;}
}

/* section3 */
#index .section3 {padding: 14.5em 0 15em; position: relative; overflow: hidden;}
#index .section3 .bg_item {position: absolute; z-index: 1; opacity: 0.2; font-size: min(calc(10 / 1430 * 100vw), 10px);}
#index .section3 .bg_item1 {
    background: var(--main-color2); width: 110em;
    height: 47em;
    top: 4em;
    right: -56em;
    border-radius: 40em;
    transform: rotate(-22deg);
}
#index .section3 .bg_item2 {
    border-radius: 40em;
    background: var(--main-color);
    width: 90em;
    height: 34em;
    bottom: 21%;
    left: -13%;
}

#index .section3 > .containerV1 {position: relative; z-index: 2;}
#index .section3 .titleBox {position: relative; margin-bottom: 20em;}
#index .section3 .titleBox > .title-V1 {color: #000; margin-bottom: 0.6em;}
@media (min-width: 681px) {
    #index .section3 .titleBox h2 br {display: none;}
}

#index .section3 .titleBox > .text1 {color: #434343;}
#index .section3 .titleBox::before {
    content:''; position: absolute; top: 165%; left: 50%;
    transform: translate(-50%, -50%); height: 11.1em; width: 1px; background: var(--main-color);
}

#index .section3 .itemBox {display: grid; grid-template-columns: repeat(3, 1fr); gap: 4em 8.3em;}
#index .section3 .itemBox .item .img {margin-bottom: 4em; overflow: hidden; filter: drop-shadow(0px 0px 13px #ddd);}
#index .section3 .itemBox .item .img img {clip-path: polygon(0 7%, 7% 0, 93% 0, 100% 7%, 100% 100%, 0 100%);}
#index .section3 .itemBox .item .textBox {text-align: center; cursor: default;}
#index .section3 .itemBox .item .textBox h2 {font-size: 2.5em; color: #000; font-weight: bold; line-height: 1.2; margin-bottom: 0.8em;}
#index .section3 .itemBox .item .textBox .text1 {margin-bottom: 2.444em; min-height: 6em;}


/* data-scroll */
#index .section3 .bg_item.fadeIn {transition: 2s 0.2s;}
#index .section3 .bg_item1.fadeIn[data-scroll="out"] {opacity: 0; right: -50%;}
#index .section3 .bg_item2.fadeIn[data-scroll="out"] {opacity: 0; left: -25%;}

#index .section3 .itemBox .item {transition: 2s;}
#index .section3 .itemBox .item.fade-Up[data-scroll="out"] {opacity: 1; transform: translateY(15%);}  
#index .section3 .itemBox .item:first-child {transition-delay: 0.2s;}
#index .section3 .itemBox .item:not(:first-child) {
    transition-delay: calc((var(--index) + 1) * 0.3s);
}



@media (max-width: 1430px) {
    #index .section3 .itemBox .item .textBox .text1 br {display: none;}
    #index .section3 .itemBox .item .textBox .text1 {min-height: 6.6666em;}
}

@media (max-width: 1200px) {
    #index .section3 .itemBox .item .textBox .text1 {min-height: 9.5em;}
}

@media (max-width: 991px) {
    #index .section3 .bg_item {font-size: min(calc(10 / 1100 * 100vw), 10px);}
    #index .section3 .itemBox {gap: 7em 5.5em;}
    #index .section3 .itemBox .item .textBox h2 {min-height: 2em;}
}

@media (max-width: 850px) {
    #index .section3 .itemBox {grid-template-columns: repeat(1, 1fr);}
    #index .section3 .itemBox .item {display: flex; flex-direction: column; align-items: center;}
    #index .section3 .itemBox .item .textBox h2 {min-height: auto;}
    #index .section3 .itemBox .item .textBox .text1 {min-height: auto;}
    #index .section3 .itemBox .item .textBox .text1 br {display: block;}
}

@media (max-width: 680px) {
    #index .section3 .titleBox::before {top: 143%;}
}


/* section4 */
#index .section4 {
    background: url('img/sec4_bg.jpg') no-repeat center center / cover;
    padding: 17.6em 0 15.5em;
}
#index .section4 .titleBox {color: #fff; margin-bottom: 4.5em;}
#index .section4 .titleBox > .title-V1 {color: inherit;}
#index .section4 .titleBox > .text1 {color: inherit; margin-top: 0.8em;}
#index .section4 .btn_box .link_btn > span {color: #fff;}
#index .section4 .btn_box .link_btn > span::before {background: #fff;}
#index .section4 .btn_box .link_btn .circle_box .line {background: #fff;}
#index .section4 .btn_box .link_btn .circle_box .line::after {background: #fff;}

@media (max-width: 991px) {
    #index .section4 {padding: 10.6em 0 9.5em;}
}

@media (min-width: 701px) {
    #index .section4 .titleBox > .title-V1 br {display: none;}
}

@media (max-width: 600px) {
    #index .section4 .titleBox > .text1 br {display: none;}
}


/* section5 */
#index .section5 {padding: 15.5em 0 17em;}
#index .section5 > .containerV1 {max-width: 1550px;}
#index .section5 .titleBox {margin-bottom: 5em;}
#index .section5 .titleBox > .title-V1 {color: #000; margin-bottom: 0.6em;}
#index .section5 .titleBox > .text1 {color: #434343;}
#index .section5 .widget_box {width: 100%; max-width: var(--containerV1-width); margin: 0 auto;}


@media (min-width: 650px) {
    #index .section5 .titleBox > .title-V1 br {display: none;}
}

@media (max-width: 991px) {
    #index .section5 {padding: 15em 0 10em;}
}



/* section6 */
#index .section6 {width: 100%; background: #fff;}
#index .section6 .itemBox {display: grid; grid-template-columns: repeat(3, 1fr);}
#index .section6 .itemBox .item {
    position: relative; display: flex; cursor: default;
    flex-direction: column; gap: 1.8em; align-items: center;
    text-align: center; padding: 14px 20px 5.3em; overflow: hidden;
}
#index .section6 .itemBox .item > * {position: relative; z-index: 2;}
#index .section6 .itemBox .item:not(:last-child):before {
    content:''; position: absolute; top: 50%; right: 0; transform: translateY(-50%);
    width: 1px; height: 90%; background: #000; z-index: 2;
}
#index .section6 .itemBox .item::after {
    content:''; position: absolute; top: 100%; left: 0;
    z-index: 1; width: 100%; height: 100%; opacity: 0; transition: 0.5s;
    background: linear-gradient(180deg, #fff, #fef2e0 60%);
}

#index .section6 .itemBox .item > h2 {
    font-size: 2.5em; font-weight: bold; line-height: 1.2;
    color: #000;
}

@media (min-width: 992px) {
    #index .section6 .itemBox > .item:hover:after {opacity: 1; top: 0;}
}

@media (992px <= width <= 1230px) {
    #index .section6 .itemBox .item > .text1 {min-height: 4em;}
}

@media (max-width: 991px) {
    #index .section6 .itemBox {display: grid; grid-template-columns: repeat(1, 1fr); position: relative;}
    #index .section6 .itemBox .item {padding: 4em 20px 4em;}
    #index .section6 .itemBox .item:not(:last-child):before {
        width: 90%; height: 1px; top: unset; bottom: 0; left: 50%; transform: translateX(-50%);
        background: var(--main-color2);
    }
    #index .section6 .itemBox::before {
        content:''; position: absolute; top: 0; left: 0;
        z-index: 1; width: 100%; height: 100%;
        background: linear-gradient(180deg, #fff, #fef2e0 60%);
    }

    /* #index .section6 {
        font-size: min(calc(10 / 768 * 100vw), 10px);
        position: fixed; height: 12.8em; bottom: 0; left: 0; z-index: 1000; border-top: 1px solid #eee;
    }
    #index .section6 .itemBox {height: 100%;}
    #index .section6 .itemBox > .item {height: 100%; padding: 0 20px; justify-content: center;}
    #index .section6 .itemBox > .item::after {opacity: 1; top: 0;}
    #index .section6 .itemBox .item:not(:last-child):before {background: #ddd;}
    #index .section6 .itemBox .item > .text1 {display: none;}
    #index .section6 .btn_box .link_btn .circle_box {display: none;} */
}

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



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

    #footer {
        background: #181818; color: #fff;
        /* font-size: min(calc(10 / 768 * 100vw), 10px); */
        overflow: hidden;
    }
    #footer a { color: inherit; }

    #footer .contents {font-size: min(calc(10 / 550 * 100vw), 10px); padding: 110px 0 100px; display: flex; gap: 25px 30px; justify-content: space-between;}
    #footer .contents .item1 a img {width: 22.7em;}
    #footer .contents .item2 span{font-size: 1.6em;}

    #footer .contents .item2 .text span {margin-right: 18px; line-height: 1.5; position: relative; font-weight: 300; letter-spacing: 1px;}
    #footer .contents .item2 .text span > b {font-weight: 500 !important;}
    #footer .contents .item2 .text span::before{
    content:''; position:absolute; right:-11px; top:55%; transform:translateY(-50%);
    width:2px; height: 12px; background:#858585;}

    #footer .contents .item2 .text span:last-child{margin-right: 0;}
    #footer .contents .item2 .text span:last-child::before{display: none;}
    #footer .contents .item2 .copy {font-size: 1.6em; color: #fff; line-height: 1.5; font-weight: 300; letter-spacing: 1px;}
    #footer .contents .item2 .copy a {color: inherit;}

    #footer .contents .item3 .text {display: flex; align-items: center; height: 100%; gap: 15px;}

/*  미디어쿼리 */
@media (max-width: 1200px){
    #footer .contents{flex-direction: column; align-items: center; padding: 50px 0 60px; }
    #footer .contents .item2 {text-align: center; order: 3;}
    #footer .contents .item3 {order: 2;}
}

/* @media (max-width: 991px) {
    #footer {margin-bottom: 12.8em;}
} */

@media (max-width: 768px){
    #footer .contents .item2 .text span{display: block;}
    #footer .contents .item2 .text span::before{display: none;}

    #footer .copy{text-align: center;}
}

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








/* 서브페이지 패딩 */
.tmt_sub_frame { padding:70px 0 50px; 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; }
