@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 : #000; /* mainColor */	
    --sub-color : #ffa421;
    --basic-border-color: #ffa421;	/* 게시판 및 게시판헤드 등 기타 버튼들 border 컬러 */
}

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

/* page_frame */
.page_frame{padding-top: 11.5em; margin-bottom: 11.5em;}

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

.wrap { overflow-x: hidden; }

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



/* login_bar ---------------------------------------------------------------------------------------------------------------------------*/

#login_bar {width: 100%; position: fixed; left: 0; top: 0; z-index: 1000; background: #232323; padding: 10px 0;}
#login_bar .containerV1 {display: flex; justify-content: end;}
#login_bar .login_list {display: flex; align-items: center; gap: 10px; padding: 0 2.3rem; text-align: center;}
#login_bar .login_list li a {color: #fff; font-size: clamp(12px, min(calc(14 / 768 * 100vw), 15px), 15px);}
#login_bar .login_list li a:hover {text-decoration: underline;}

@media (max-width: 991px) {
	#login_bar .login_list {padding: 0;}
}


/*--------------------------------------------------- 헤드세팅 ----------------------------------------------------------------------------*/
    #header { 
    --h-height : 8.5rem; border-bottom: 1px solid #323232;
    position: fixed; left: 0; top: 35px; width: 100%; height: var(--h-height); z-index: 1000; transition:0.4s; background: #000;}
    #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; 
    z-index: 2; margin: 0 auto;}
    
    /* #logo {width: 14.1rem;} */
    #logo a {display: flex; align-items: center;}
    

    @media (min-width: 991px) {
        #header.scroll {top: 0;}
    }
    
    
    /*main_menu---------------------------------------------------------------------------*/
    #nav .nav_logo {display: none;}
    
    #nav .nav_inner { display:flex; align-items:center; width: 100%; gap: 0 50px;}
    
    #nav .outer {display: flex;}
    #nav .outer > li {padding: 0 2.3rem; /*90px*/ height: var(--h-height);}
    /* #nav .outer > li:last-child {padding-right: 0;} */
    #nav .outer > li > a {
    display: flex; color: #fff;  font-size: 18px; height: 100%; line-height: 1.3; align-items: center;
    position: relative; transition: all 0.3s;
    }
    #nav .outer > li > a:hover{color: var(--sub-color);}
    #nav .outer > li > a.on{color: var(--sub-color);}

    #nav .outer > li > a > span {position: relative;}
    #nav .outer > li > a > i {color: var(--main-color); display: none;}
    
    #nav .outer > li > a > span:before {
        content: ''; position: absolute;  top: -1px; left: -4px; width: 10px; height: 10px; 
        background: var(--main-color3); transition:0.2s; opacity: 0; border-radius: 50%; z-index: -1;
    }
    
    /* hover */
    #nav .outer > li:hover > a > span:before {opacity: 1;}
    #nav .inner > li:hover > a {bottom: 5px;}
    
    /* 해드 스크롤 했을때 */
    #header.scroll {box-shadow: 0px 3px 10px rgba(0,0,0,0.1);}
    
    /* 해당페이지 일때 */
    #nav .outer > li > a.on > span:before {opacity: 1;}
    
    /*모바일에서 피씨 로고 클래스 지움.*/
    #logo.logo_hide {opacity: 1; visibility: visible;}
    
    
    
    /*반응형-------------------------------------------------------------*/
    
    @media (max-width: 1400px) {
        #nav .outer > li{padding: clamp(12px, min(calc(17 / 1400 * 100vw), 18px), 18px);}
        #nav .outer > li > a{font-size: clamp(14px, min(calc(17 / 1400 * 100vw), 18px), 18px);}
        #nav .nav_inner{gap: 0;}
    }
    
    /*모바일*/
    @media all and (max-width: 991px) {

        #login_bar {position: relative;}
        #header {position: sticky; top: 0;}
        
        #logo {width: 20rem;}
    
        /* 모바일 열기 버튼 */
        .open_btn { font-size: 25px; color: #fff; cursor:pointer;}
    
        #header .itemBox {position: relative;}
    
        #nav {
        background-color: #232323; width: 300px; height: 100%;  display: block;
        position: fixed; right:0; top: 0; z-index:9999; margin-right:-300px;  transition:margin-right 0.3s;
        }
    
        #nav .nav_inner .nav_topBox {display: flex; align-items: center; width: 100%; height: 80px; background: var(--main-color); padding: 20px;}
        #nav .nav_inner .nav_logo {font-size: 3rem; display: flex; align-items: center; color: #fff; font-weight: bold; width: 170px;}
        #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: 10px;}
        .close_btn > i { display:block; color:#fff; text-align:center; line-height:50px; font-size:30px; 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 {
            position: relative;
            margin-left: 0; width: 100%; overflow: hidden; cursor: pointer; margin-bottom: 10px; height: auto; padding: 0;
        }
        #nav .outer > li > a {
            padding:15px 20px 20px 10px; color: #fff; 
            position: relative; height: auto; line-height: 1; font-size: 18px;
            border-bottom: 1px solid rgba(0,0,0,0.5);
        }
    
        #nav .outer > li > a > span:after {opacity: 0; top: 55%; transform: translateY(-50%); right: -23px;}
        
    
        #nav .outer > li > a > i {color: #fff; display: inline-block; position: absolute; right: 15px; top: 15px; transform: rotate(0deg); transition: all 0.3s;}
        
        #nav .inner_box {position: relative; height: 0 !important; background: transparent;}
        #nav .inner_box .inner_box_wrap {padding: 0;}
        #nav .inner_box .inner_title {display: none;}
        #nav .inner {
            display: block; margin-right: 0;
            position: relative; display: block; border:0; width: 100%;
        }
        #nav .inner::before {display: none;} 
        #nav .inner > li { margin-bottom:0; position: relative; padding: 0;}
    
    
        #nav .inner > li > a {
        color: #333; padding: 12px 25px; position: relative; transition: all 0.3s;
        text-align: left; left: 0; font-size: 15px;
        }
    
        /*	pc 메뉴 효과 지움*/
        #header:hover #nav .inner {opacity: 1; top: 100%;}
    
        /* hover */
        #header #nav .outer > li:hover > .inner_box {display:block; opacity: 1; top: 100%;}
        #nav .outer > li > .inner > li:hover > a {background: transparent; color: #333;}
        #nav .inner > li:hover > a {bottom: 0;}
        #nav .outer > li:hover > a > span:before {opacity: 1;}
        
        /*	서브메뉴 inactive */
        #nav .outer > li.on_sub .inner_box {
            opacity: 1;
            visibility: visible;
            height: auto !important;
        }
        #nav .outer > li.on_sub .inner_box .inner {background: #f6f6f6;}
        #logo.logo_hide {opacity: 0; visibility: hidden;}
        #nav .outer > li.on_sub > a > i {transform: rotate(90deg); }

        /* 해당페이지 일때 */
        #nav .outer > li > a.on > span:after {opacity: 1;}
    
    
        /* 모바일메뉴박스 보이게 하는 클래스 */
        #nav.inactive { margin-right: -1px; } 
    }
/*--------------------------------------------------- 해드세팅 끝 ----------------------------------------------------------------------------*/



/*--------------------------------------------------- 인덱스세팅 ----------------------------------------------------------------------------*/
.index_wrap{font-size: 10px; background-color: #000;}
.index_wrap{font-size: clamp(6px, min(calc(9 / 500 * 100vw), 10px), 10px);}

.index_wrap .section .itemBox{color: #fff;}
.index_wrap .section .itemBox .title{margin-bottom: 3.5em;}
.index_wrap .section .itemBox .title h2{font-size: 5.5em; font-weight: bold; line-height: 1.18;}

.index_wrap .section .itemBox .text1{margin-bottom: 5em;}
.index_wrap .section .itemBox .text1 p{font-size: 2em; font-weight: normal; line-height: 1.5;}

.index_wrap .section .itemBox .itemBtn{
    width: 100%; max-width: 150px; background-color: var(--sub-color); 
    text-align: center; position: relative; z-index: 0; transition: 0.3s;}
.index_wrap .section .itemBox .itemBtn:after{
    content:''; width: 0%; height: 100%; 
    background-color: transparent; border-bottom: 2px solid var(--sub-color);
    position: absolute; top:0; left: 0; z-index: -1;
    transition: 0.5s;
}
.index_wrap .section .itemBox .itemBtn a{width: 100%; display: block; border: 1px solid transparent; }

.index_wrap .section .itemBox .itemBtn a p{font-size: 1.6em; color: #fff; padding: 1.2em 0; font-weight: normal; z-index: 1;}

.index_wrap .section .itemBox .itemBtn:hover:after{background: transparent; width: 100%; border-bottom: 2px solid var(--sub-color);}
.index_wrap .section .itemBox .itemBtn:hover{background: transparent;}

.index_wrap .section1{background: url(img/index_section1_img.jpg) no-repeat center center / cover;}
.index_wrap .section2{background: url(img/index_section2_img.jpg) no-repeat center center / cover;}
.index_wrap .section3{background: url(img/index_section3_img.jpg) no-repeat center center / cover;}
.index_wrap .section4{background: url(img/index_section4_img.jpg) no-repeat center center / cover;}
.index_wrap .section5{background: url(img/index_section5_img.jpg) no-repeat center center / cover;}
.index_wrap .section6{background-color: #000;}

/* section02 */
.index_wrap .section2 .itemBox .title h2 br{display: none;}

/* section06 */

.index_wrap .section6 .sec6_title{margin: 4em 0;}
.index_wrap .section6 .sec6_title h2{font-size: 5.5em; font-weight: bold; margin-bottom: 0.5em;}
.index_wrap .section6 .sec6_title p{font-size: 1.8em; line-height: 1.66;}

.index_wrap .section6 .con_box{display: flex; gap: 6em;}
.index_wrap .section6 .con_box .left{width: 100%; max-width: 890px;}

.index_wrap .section6 .con_box .right{width: 100%; max-width: 585px; margin: 15px 15px 0 0;}

/* 스크롤 애니메이션 */

/* 991px 이상에서는 키프레임 애니메이션 적용 */
@media (min-width: 991px) {
    .index_wrap .section {
        --animation : move 2.5s forwards;
    }
    .index_wrap .section.active .itemBox .title{animation: var(--animation);}
    .index_wrap .section.active .sec6_title{animation: var(--animation);}
    .index_wrap .section.active .itemBox .text1{animation: var(--animation);}
    @keyframes move{
        0% {transform: translateY(-30%); opacity: 0;}
        100% {transform: translateY(0%); opacity: 1;}
    }

    .index_wrap .sec_bg.active{animation: sec_bg 2s forwards;}
    @keyframes sec_bg{
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    

    .index_wrap .section6 .con_box .left {transform:translateX(-20%); opacity: 0; transition: 1s;}
    .index_wrap .section6.scroll .con_box .left {transform:translateX(0%); opacity: 1;}

    .index_wrap .section6 .con_box .right {transform:translateX(20%); opacity: 0; transition: 1s;}
    .index_wrap .section6.scroll .con_box .right {transform:translateX(0%); opacity: 1;}
}


/* 홈페이지 불러올 때, 풀페이지 적용 지연으로 풀페이지 적용안된 인덱스 나타나는 현상 수정 */

@media (min-width: 991px) {
	.index_wrap .section {height: 100vh;}
	.index_wrap .section .containerV1 {display: flex; flex-direction: column; color: #fff; height: 100%; justify-content: center;}
	.index_wrap .section6 .containerV1 {height: auto; justify-content: unset;}
}


/* 991px 미만에서는 data-scroll 사용 */
@media (max-width: 991px) {
    .index_wrap .section .scroll-ani{transition: 1s;}
    .index_wrap .section .scroll-ani[data-scroll="out"]{transform: translateY(-20%); opacity: 0;}
	.index_wrap .section6 {height: unset;}
}



/* 미디어쿼리 */
@media (max-width: 1400px) {
    .index_wrap .section6 .con_box{gap: 3em;}
    .index_wrap .section6 .con_box .right{margin-top: 0;}
}

@media (max-width: 991px) {
    .index_wrap .section{padding: 20em 0; height: initial;}

    .index_wrap .section6 .con_box{flex-direction: column; align-items: center; padding: 0 15px;}
    .index_wrap .section6 .con_box .right{max-width: initial}
    .index_wrap .section7{padding: 0; }
}

@media (max-width: 768px) {
    .index_wrap .section2 .itemBox .title h2 br{display: block;}
}


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



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


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








/* 서브페이지 패딩 및 폰트 컬러*/
.tmt_sub_frame { padding:40px 0 50px; min-height: 70vh; color: #fff; background-color: #000;}


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

/* 게시판 list 폰트컬러 변경 */
.list-board .list-body li > div{color: #fff !important;}
.list-board .list-body .wr-subject .item-subject{color: #fff;}

.list-board .wr-date a{color: #fff;}
.list-board .wr-date a:hover{color: red;}
.div-head > span:last-child a{color: #fff;}
.div-head > span:last-child a:hover{color: red;}

/* 게시판 list hover 컬러 변경*/
.list-board .list-body li:hover{background-color: gray;}

/* 기본 헤드 폰트 컬러 변경 */
.div-title-underbar span{color: #fff;}
.amina-header .header-breadcrumb{color: #fff;}

/* view - 타이틀 폰트컬러 */
.view-wrap h1{color: #fff;}

/* 스마트에디터 input area  */
/* plugin - editor - smarteditor2 - css - ko_KR - smart_editor2_in.css 파일에 .se2_inputarea에 백그라운드 컬러 #fff 추가하였음  */

/* 로그인창 폰트컬러 */
.form-box{color: #000;}

/* list padding */
.div-head{padding: 17px 0;}
.list-board .list-body .wr-subject{padding: 15px 0 15px 10px;}

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

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