@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 */	
    
    --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: 50px;
    }
}

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

.wrapper { overflow-x: hidden; }

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

/* 링크 연결 잠시 막을 때 */
.link-none { pointer-events: none; }

/* 해드세팅 */
@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;
    }
    
    /* 로고 */
    .logo { height: calc(var(--header-height) - 47px); }
    .logo a { display: block; height: inherit; }
    .logo a img { height: 100%; }
    
    
    /* 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 { box-shadow:0 0 10px rgba(0,0,0,0.2); }    
}

@media (min-width:991px) and (max-width:1200px) {
    .header_wrap { --head-font-size-pc: 16; }
    .logo { height: calc(var(--header-height) - 60px); }
}

@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(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; }
    /*---------------------------------------- // 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 (max-width:991px) {/* 모바일 */
    #header { height: var(--header-height); }

    .logo { height: calc(var(--header-height) - 15px); }

    /* 모바일 열기 버튼 */
    .header_wrap .open_btn { cursor:pointer; color:var(--theme-item-color); font-size: 18px; }

    .menu_box { 
    --size-close-font:22px;
    --transition:0.4s;
    position: fixed; right: 0; top: 0; width: 15em; 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-top: 20px; }
    .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; padding-top: 1.5em; }
    .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;
    }
    .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; }
}





#index {
    --index-font-size-pc: 10;
    --index-font-size-mob: 10;
    font-size: min( calc( var(--index-font-size-mob) / 450 * 100vw ), calc(var(--index-font-size-pc) * 1px) );
}

/* index - section1 */
@media all {
    #index .section1 {
        /* 스와이프 도트네비 */
        --swiper-pagination-color : #fff;
        --swiper-pagination-bullet-inactive-color : #444;
        --swiper-pagination-bullet-inactive-opacity : 1;
        --swiper-pagination-bullet-width : max(30px,calc(135 / 1920 * 100vw));
        --swiper-pagination-bullet-height : 3px;
        --swiper-pagination-bullet-horizontal-gap : 1em;
        height: 100vh; overflow: hidden;
    }
    #index .section1 .swiper-slide {
        background: #000;
        color: #fff; position: relative;
    }
    #index .section1 .swiper-slide.section1-2 .bg {
        content: ''; position: absolute; left: 0; top: 0; width: 100%; 
        height: 100%; background: rgba(0,0,0,0.6); z-index: 1;
    }
    #index .section1 .swiper-slide video {
        position: absolute; left: 0; top: 0; width: 100%; height: 100%;
        object-fit:cover;
    }
    @keyframes section1_ani1 {
        80% { transform: scale(1.05); }
        100% { transform: scale(1); opacity: 1; }
    }
    #index .section1 .swiper-slide .titleBox {
        position: relative; z-index: 1;
        display: grid; height: 100%; justify-content: center; align-content: center;
        justify-items: center;
        text-align: center;
        transform: scale(0.5); opacity: 0;
        animation: section1_ani1 1.5s ease-in-out forwards;
    }
    #index .section1 .swiper-slide .titleBox .title {
        font-size: 5em; line-height: 1.4; margin-bottom: 0.7em;
    }
    #index .section1 .swiper-slide .titleBox .text1 {
        font-size: 1.8em; line-height: 1.6; padding-bottom: 2.22em;
    }
    #index .section1 .swiper-slide .titleBox .more {
        margin-top: 2em;
        font-size: 1.6em; font-weight: bold;
        border: 1px solid #fff; padding: 1em 2.1875em; color: inherit;
        text-transform: uppercase;
    }
    /* 스와이프 - 도트네비 */
    #index .section1 .swiper-pagination { 
        bottom: 1em;
    }
    #index .section1 .swiper-pagination-bullet {
        border-radius: 0; position: relative; padding: 3em 0;
        height: auto; background: transparent; opacity: 1;
    }
    #index .section1 .swiper-pagination-bullet-active:before {
        background: transparent; opacity: 1;
    }
    #index .section1 .swiper-pagination-bullet:before {
        content: ''; position: absolute; left: 50%; top: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        height: var(--swiper-pagination-bullet-height);
        background: var(--swiper-pagination-bullet-inactive-color, #000);
        opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
    }
    #index .section1 .swiper-pagination-bullet-active:before {
        opacity: var(--swiper-pagination-bullet-opacity, 1);
        background: var(--swiper-pagination-color, var(--swiper-theme-color));
    }
    
    /* 모달 */
    #index .modal { 
        color: #fff; 
        /* overflow-x: hidden;
        overflow-y: auto; */
    }
    #index .modal-dialog { 
        width: 100%; height: 100%; margin: 0; 
        transform: translate3d(0,0,0) !important;
    }
    #index .modal-content {  
        background-color: transparent; border-radius: 0; border: none;
    }
    #index .modal .closeV1 { 
        position: absolute; right: 1em; top: 1em; 
        font-size: 2.5em; z-index: 1; width: 3em; height: 3em;
        text-align: center; line-height: 2em;
    }
    /* 모달 - section1-1 */
    /* #index .modal#section1-1 { background: #000; } */
    #index .modal#section1-1 .itemBox {
        padding:10em calc(100 / 1920 * 100vw);
    }
    #index .modal#section1-1 .itemBox .titleBox {
        padding-bottom: 9em;
    }
    #index .modal#section1-1 .itemBox .titleBox .title {
        font-size: 7em; line-height: 1.4;
    }
    #index .modal#section1-1 .itemBox .text1 {
        font-size: 1.8em; line-height: 1.8;
    }
    #index .modal#section1-1 .itemBox .listV1 {
        display: grid; grid-template-columns: repeat(2,1fr);
        gap:12em 0; align-items: center;
    }
    #index .modal#section1-1 .itemBox .listV1 li .title {
        font-size: 5em; line-height: 1.4; text-transform: uppercase;
        margin-bottom: 0.3em; 
    }
    #index .modal#section1-1 .itemBox .listV1 li.row1.textBox {
        padding-left: 4em;
    }
    #index .modal#section1-1 .itemBox .listV1 li.row2.textBox {
        padding-right: 4em;
    }

    /* 모달 - section1-2 */
    #index .modal#section1-2 .modal-content, 
    #index .modal#section1-2 .modal-body {
        height: 100%;
    }
    #index .modal#section1-2 .modal-body {
        display: flex; justify-content: center; align-items: center;
    }
    #index .modal#section1-2 p {
        font-size: 5em; text-align: center; line-height: 1.4;
    }
}
@media (max-width:991px) {
    #index .modal#section1-1 .itemBox .listV1 {
        grid-template-columns: 1fr; gap:2em;
    }
    #index .modal#section1-1 .itemBox .listV1 li:nth-child(1) {
        order:1;
    }
    #index .modal#section1-1 .itemBox .listV1 li:nth-child(2) {
        order:2;
    }
    #index .modal#section1-1 .itemBox .listV1 li:nth-child(3) {
        order:4;
    }
    #index .modal#section1-1 .itemBox .listV1 li:nth-child(4) {
        order:3;
    }
    #index .modal#section1-1 .itemBox .listV1 li.row1 {
        text-align: right;
    }
    #index .modal#section1-1 .itemBox .listV1 li.row1.textBox {
        padding-left: 0; margin-bottom: 10em;
    }
    #index .modal#section1-1 .itemBox .listV1 li.row2.textBox {
        padding-right: 0;
    }
}
@media (max-width:768px) {
    #index .section1 {
        --swiper-pagination-bullet-horizontal-gap : 0.5em;
    }
    #index .section1 .swiper-slide .titleBox .title {
        font-size: 3.5em;
    }
}
@media (max-width:580px) {
    #index .modal#section1-1 .itemBox .titleBox .title {
        font-size: 4em;
    }
    #index .modal#section1-1 .itemBox .listV1 li .title {
        font-size: 3.5em;
    }
}




footer .copy { color: var(--theme-item-color); text-transform: uppercase; font-family: 'Poppins', sans-serif; font-size: 13px; line-height: 1.6; text-align: center; padding: 1em 0; }
@media (max-width:580px) {
    footer .copy { font-size: 10px; }
}








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


/* 게시판 및 게시판헤드 등 기타 버튼들 기본컬러 변경 */
.btn.btn-color {border: 1px solid var(--main-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(--main-color);}

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

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





