/*******************************************************
*/
/* common
 *******************************************************/
input[disabled],select[disabled]{cursor: not-allowed;}

/* 기본 스타일 */
.form-field { height: 65px; display: flex; background: #f8f9fa; border-radius: 6px; border: 1px solid #e2e8f0; transition: 0.3s; overflow: hidden; }
.form-field .form-label { max-width:180px; padding: 0 2rem; font-size: 1.125rem; color: #333; font-weight: 600; width:25%; display: inline-flex; align-items: center; margin-bottom: 0; border-right: 1px solid rgba(0, 0, 0, 0.05); }
.form-field .form-input { padding: 0 2rem 0 1rem; height: 100%; border: none; background: #f8f9fa; color: #333; font-size: 1rem;width: calc(100% - 180px);}
.form-field .form-input::placeholder { color: #9CA3AF; opacity: 0.7; }
.form-field select.form-input{cursor:pointer !important;}
.form-field.active { border-color: var(--primary); }
.form-field.form-textarea{height:180px;}
.form-field.form-textarea .form-label{align-items: flex-start;padding: 1.2rem 2rem;border-right: 1px solid rgba(0, 0, 0, 0.05);}
.form-field.form-textarea .form-input{padding:1.2rem 2rem 1.2rem 1rem;}
.form-field.form-date input{cursor: pointer !important;}


.check-field { width: 100%; padding: 10px 10px 10px 15px; height: 60px; display: inline-flex; justify-content: space-between; align-items: center; background: #f8f9fa; border-radius: 6px; border: 1px solid #e2e8f0; }
.custom-checkbox { position: relative; user-select: none; line-height: 1; }
.custom-checkbox label { font-size: 1.05rem; color: #666; display: inline-flex; align-items: center; cursor: pointer; text-align: left; line-height: 1.2; word-break: keep-all;}
.custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { margin-right:10px; position: relative; display: inline-block; height: 24px; width: 24px; background-color: white; border-radius: 50%; border: 1px solid #ccc;  transition: all 0.25s ease; }
.checkmark .material-icons { position: absolute; color: #000; font-size: 18px; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; }
.custom-checkbox input:checked ~ .checkmark { background-color: var(--primary); border-color: transparent; }
.custom-checkbox input:checked ~ .checkmark .material-icons { display: block; color: white; }


@media (max-width:1024px) {
    .form-field { flex-direction: column; height: auto; }
    .form-field .form-label { max-width: 100%; width: 100%; min-width: auto; padding:1rem 1rem; border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .form-field .form-input { width: 100%; padding: 1rem; }
    .form-field.form-textarea .form-input { padding: 1rem; }
    .form-field.form-textarea .form-label { padding:1rem; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .check-field { max-width: 100%; }
}
@media (max-width:768px) {
    .form_box.d-grid { grid-template-columns: 1fr !important; }
    .submit_btn{max-width:100% !important;}
}
@media (max-width: 480px) {

    .form-field .form-label { font-size: 0.9rem; }
    .form-field .form-input { font-size: 0.8rem; }
    .check-field { padding: 0.7rem 1rem; }
    .custom-checkbox label { font-size: 0.9rem; }
    .checkmark { width: 22px; height: 22px; margin-right: 8px; }
}

/* 버튼 */
.btn { display: inline-block; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-size: 14px; font-weight: 600; text-decoration: none;transition:0.6s !important; }

.button{justify-content: space-between;cursor: pointer; color: black; text-transform: lowercase;display: inline-block; overflow: hidden; transition: all 0.4s cubic-bezier(.86, .01, .15, .99); }
.button::before { content: ""; position: absolute; z-index: -1; top: 0; left: 0; right: 0; bottom: 0; }
.button.outline-button {background: transparent;color: #fff;transition: 0.4s;transform: perspective(1px) translateZ(0);border: 2px solid #ccc;border-radius: 8px;overflow: hidden;display: flex;align-items: center;justify-content: space-between;position: relative;}
.button.outline-button p{margin-bottom:0;padding-top:2px;}
.outline-button:hover { color:#333;border-color: #fff; transform: translateY(-5px); }
.outline-button::before { clip-path: circle(0.5% at 50% 50%); background:#fff; transition: 0.4s; opacity:0; }
.outline-button:hover::before { clip-path: circle(100% at 50% 50%);opacity: 1;  }

.btn-full{width:100% !important;max-width: 100% !important;}
.two-button{width: 100%;display: grid;grid-template-columns: repeat(2, 1fr);gap:10px;}

.btn.btn-primary{background:var(--primary);font-size:1rem;color: #fff;border:none;display: flex;align-items: center;justify-content: space-between;padding: 0.8rem 1rem;height:50px;width: 100%;max-width: 160px;transition:0.6s !important;}
.btn.btn-primary span{font-size:0.813rem;font-weight:500;}
.btn.btn-primary:hover{background:#000;color:#fff;}
.btn.btn-secondary{font-size:0.875rem;font-weight:300;color:rgba(255,255,255,0.8);background:var(--secondary);width:120px;height:40px;display:inline-flex;align-items:center;justify-content:center;border:none;}
.btn.btn-secondary.type02{display:flex;}
.btn-secondary { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-secondary:hover { background-color:#000 !important;color:#fff; }
.btn-black{background:#0D0E0F !important;}
.btn-black:hover{background:var(--primary) !important;}

.primary-color{color:var(--primary) !important;}
.hover-primary-color:hover{color:var(--primary) !important;}

@media (max-width: 768px) {
    .btn.btn-primary{height:60px;}
}



/* 날짜선택 */
.date-input-wrapper {position: relative;display: block;width: 100%;cursor: pointer;}
.date-input-wrapper input[type="date"] {width: 100%;cursor: pointer;}
.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {position: absolute;top: 0;left: 0;width: 100%;height: 100%;margin: 0;padding: 0;cursor: pointer;opacity: 0;z-index: 1;}


/* 제출 버튼 */
.btn_wrap { text-align: center; margin-top:2.5rem; }
.btn.submit_btn{display: block;width: 100%;height: 60px;font-size: 18px;font-weight: 500;color: #fff;letter-spacing: -0.8px;text-align: center;background-color:var(--primary);border: none;max-width: 100%;border-radius:6px;}
.btn.cancel_btn{display: block;width: 100%;height: 60px;font-size: 18px;font-weight: 500;color: #fff;letter-spacing: -0.8px;text-align: center;background-color:var(--gray-700);border: none;max-width: 100%;border-radius:6px;}
.btn.submit_btn:hover,.btn.cancel_btn:hover { background-color:#000; }
@media (max-width: 768px) {
    .btn.submit_btn{height:52px;font-size:16px;}
    .btn.cancel_btn{height:52px;font-size:16px;}
}

/* CD 팝업 스타일 */
.cd-popup { position: fixed; left: 0; top: 0; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.7); opacity: 0; visibility: hidden; transition: opacity 0.3s 0s, visibility 0s 0.3s; z-index: 1001; }
.cd-popup.is-visible { opacity: 1; visibility: visible; transition: opacity 0.3s 0s, visibility 0s 0s; }
.cd-popup-container { position: relative; padding: 2rem; width: 90%; max-width: 600px; margin: 4em auto; background: #ffffff; border-radius: 8px; text-align: center; box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); transform: translateY(-40px); backface-visibility: hidden; transition-property: transform; transition-duration: 0.3s; }
.cd-popup-container .modal-content{ background: #f5f7fa; padding: 1.2rem 2rem; word-break: keep-all; border-radius: 6px; border: 1px solid #e5e9f0; }
.cd-popup-container h2 { color: var(--primary); font-size: 1.5rem; font-weight: bold; margin-top: 0; margin-bottom: 1rem; letter-spacing: -0.02em; }
.cd-popup-container p { font-size: 1.05rem; color: #4a5568; line-height: 1.6; word-break: keep-all; margin-bottom: 0 !important; }
.cd-popup-container .check-field { background: transparent; max-width: 100%; padding: 0.5rem 0; }

.cd-popup-container .cd-popup-close {}
.is-visible .cd-popup-container {-webkit-transform: translateY(0);-moz-transform: translateY(0);-ms-transform: translateY(0);-o-transform: translateY(0);transform: translateY(0);}

@media only screen and (min-width: 1170px) {
    .cd-popup-container {margin:0 auto;}
}

@media (max-width: 768px) {
    .cd-popup-container{padding:1.2rem 1rem;}
    .cd-popup-container h2{font-size:1.3rem;}
    .cd-popup-container p{font-size:1rem;}
}
@media (max-width: 480px) {
    .cd-popup-container h2{font-size:1.2rem;}
    .cd-popup-container p{font-size: 0.9rem;}
}


.info-notice {display: flex; gap: 0.5rem; padding: 0.8rem 1rem; background-color: rgba(0,0,0,0.03); border-radius: 8px; margin-top: auto;}
.info-notice span {color: var(--gray-600); font-size: 1.1rem;}
.info-notice p {margin: 0; font-size: 0.85rem; color: var(--gray-600);}


/*******************************************************
*/
/* header
 *******************************************************/

#hd{position:fixed;z-index:1000;top:0;left:0;width:100%;transition-duration:.3s;background:transparent;}
.header_wrap{z-index:200;height:100%;margin:0 auto;zoom:1;text-align:center;display:flex;justify-content:space-between;overflow: inherit !important;}

.header_logo_wrap{float:left;padding:26.5px 0 26.5px 0;max-height:var(--header-height);display: flex;align-items: center;}
.header_logo_wrap:after,.header_logo_wrap:before{content:'';display:table;clear:both;}
.header_logo_wrap .logo_on{display:none;}

header#hd.fixed{background:#fff;box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);}
header#hd.fixed.hd_zindex{box-shadow:none;}

header#hd.fixed .logo_on{display:block;transition-duration:.3s;}
header#hd.fixed .logo_off{display:none;transition-duration:.3s;}

header#hd.hd_zindex .logo_on{display:block;transition-duration:.3s;}
header#hd.hd_zindex .logo_off{display:none;transition-duration:.3s;}
header#hd.hd_zindex.gnb_1dul li.gnb_1dli a{color:#333;}
header#hd.hd_zindex .gnb_1dul li.gnb_1dli:after{background:#333;}


.nav-menu {align-items: center;display: flex;position: relative;height: 100%;min-height:var(--header-height);max-height:var(--header-height);}

/* subpage header */

header#hd.sub-hd{background:#fff;}
header#hd.sub-hd .logo_on{display:block;transition-duration:.3s;}
header#hd.sub-hd .logo_off{display:none;transition-duration:.3s;}
header#hd.sub-hd .gnb_1dul li.gnb_1dli a{color:#333;}
header#hd.sub-hd .gnb_1dul li.gnb_1dli:after{background:#333;}
header#hd.sub-hd .gnb_1da{color:#333;}
header#hd.sub-hd #gnb .gnb_1dli:after{background:#333;}

header#hd.fixed.sub-hd{box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);}



/* openmenu-type2 */

#gnb{position:relative; text-align:center;}

#gnb_1dul{z-index:101;height:100%;position: relative;margin:0 -36px;}
#gnb .gnb_1dli{position:relative;display:inline-block;zoom:1;height:100%;font-size:18px;letter-spacing:.05em;}
#gnb_1dul .gnb_1dli:before {content: "";position: absolute;left: 50%;bottom:50%;width:6px;height:6px;border-radius: 100px;opacity: 0;background-color: var(--primary);transform: translate(-50%,-50%);-webkit-transition: all .3s;-moz-transition: all .3s;-ms-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
#gnb_1dul .gnb_1dli.nav-menu:before {display: none;}
#gnb_1dul .gnb_1dli:hover:before {opacity: 1;bottom:13px;}
#gnb_1dul .gnb_1dli1{padding:0;}
#gnb_1dul .gnb_1da{padding:0 36px;display:inline-block;line-height:var(--header-height);font-size:20px;font-family:'Paperlogy';color:#fff;letter-spacing:-.02em;text-align:center; font-weight:400;transition: all ease .5s;}
#hd.fixed .gnb_1da{color:#333;}


#hd.fixed #gnb .gnb_1dli:after{background:#333;}
#gnb .gnb_1dli:last-child:after{display:none;}
#hd.hd_zindex #gnb .gnb_1dli:after{background:#333;}
.gnb_wrap {height: 100%;}
#gnb_1dul {z-index: 101;height: 100%;}
#gnb_1dul #gnb_empty{text-align:center;color:#fff;}


/* 중메뉴 */
.gnb_2da{display:block;text-align:center;text-transform:uppercase;text-decoration:none;position:relative;}
.gnb_2dli a.gnb_2da{font-size:1rem;min-height:1.875rem;color:#777;line-height:1.5;padding:7px 0;letter-spacing:-0.02em;}
.gnb_2dli a.gnb_2da:hover{color:var(--primary);transition:.3s all;}
#hd.hd_zindex #gnb-dep1{padding:15px 8px;}
.gnb_2da{-webkit-transition:.2s ease-in-out;-moz-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out;}


/* 오버시 */
.submenu-bg{display: none !important;}
.gnb_2dul{position: absolute;top: 100%;left: 50%;transform: translateX(-50%);width: auto;min-width: 200px;height: auto !important;background-color: #fff;padding: 1rem 0;opacity: 0;visibility: hidden;transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;z-index: 99;border-radius: 0 0 10px 10px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);border: 1px solid #e2e8f0;border-top: none;}
.gnb_2dul.empty-submenu{display: none !important;}
.gnb_1dli:hover .gnb_2dul:not(.empty-submenu){opacity: 1;visibility: visible;transform: translateX(-50%) translateY(0);}
.gnb_2dli{opacity: 1 !important;transform: none !important;transition: none !important;}
.gnb_2dli a.gnb_2da{display: block;padding: 12px 20px;color: #666;text-decoration: none;transition: all 0.3s ease;white-space: nowrap;border-bottom: 1px solid #f1f1f1;}
.gnb_2dli:last-child a.gnb_2da{border-bottom: none;}
.gnb_2dli a.gnb_2da:hover{background-color: #f8f9fa;color: var(--primary);padding-left: 25px;}
.gnb_1dli:hover > .gnb_1da{color: var(--primary) !important;}
.gnb_1dli:hover{position: relative;}

#hd.fixed .gnb_2dli a.gnb_2da{color: #666;}
#hd.fixed .gnb_2dli a.gnb_2da:hover{color: var(--primary);}
#hd.sub-hd .gnb_2dli a.gnb_2da{color: #666;}
#hd.sub-hd .gnb_2dli a.gnb_2da:hover{color: var(--primary);}
.gnb_2dli.dummy-item{display: none !important;}

#gnb .gnb_1dli:not(.gnb_mnal) { display:block; float:left; text-align:left;}
#gnb .gnb_1dli:hover {cursor: pointer;}
#gnb .gnb_1dli:hover .gnb_1da{color:var(--primary);}
#gnb .gnb_1dli:last-child { margin:0; }

#hd.hd_zindex { background-color:#fff; }
#hd.hd_zindex,
#hd.hd_zindex .gnb_1da { display:block; }
#hd.hd_zindex .gnb_1da{color:#333; }

/* nav-menu */
.nav-menu ul{display:flex;gap:6px;}
.nav-item {}
.nav-item a{width:100%;min-width:70px;height:40px;padding:0 1rem;background:#fff;color:var(--variant);border:1px solid transparent;font-weight:500;border-radius:100px;display:flex;align-items:center;justify-content:center;transition:.4s ease-in-out;}
.nav-item.nav-item__login a{color:var(--primary);padding:0 1.2rem;min-width:90px;justify-content: space-between;}
.nav-item a i{margin-right:5px;}
.nav-item a:hover{background:#000 !important;color:#fff !important;}

header.hd_zindex .nav-item a{background:var(--secondary);border: 1px solid var(--variant-dark);}
header.fixed .nav-item a{background:var(--secondary);border: 1px solid var(--variant-dark);}
header.sub-hd .nav-item a{background:var(--secondary);border: 1px solid var(--variant-dark);}


/*******************************************************
*/
/* mobile header
 *******************************************************/

/* 바디 슬라이드 효과 */
body { right: 0; transition: right 0.4s; width: 100%; position: relative; background:#000;}
body.active { position: relative; right: 300px; transition: right 0.4s; }
body.active:before { content: ''; position: absolute; z-index: 888; top: 0; bottom: 0; left: 0; right: 0; background-color: rgba(0,0,0,0.5); }
#hd.active .header_logo_wrap { display: none; }

/* 헤더 활성 상태 */
header#hd.active { min-height: var(--mobile-header-height); }
body.active header#hd { background: transparent; border-bottom: none; box-shadow: none; }
header#hd.fixed .mobile-sidebar .sidebar-ico .menu_bar { background: #333; }
header#hd.sub-hd .mobile-sidebar .sidebar-ico .menu_bar { background: #333; }


.mobile-sidebar { display: none; min-height: var(--mobile-header-height); }
ul.mo_gnb { display: none; }

#m_gnb { position: fixed; overflow-y: auto; z-index:999; top: 0; bottom: 0; right: -320px; width: 100%; max-width: 320px; padding-top: var(--mobile-header-height); background-color: #fff; line-height: 1.5; transition: right 0.4s; box-shadow: 0 0 3px 5px rgb(0 0 0 / 5%); }
#m_gnb.open { right: 0; height:100%; overflow: hidden; }
#m_gnb.open main#container:before { content: ''; background: rgba(0,0,0,.4); width: 100%; height: 100%; z-index: 888; position: absolute; top: 0; left: 0; }

/* sidebar-nav */
#m_gnb .sidebar-nav{ border-top:1px solid #E0E1E5;}
#m_gnb .sidebar-nav #gnb_1dul { height: auto; }

/* 1단계 메뉴 링크 */
#m_gnb .sidebar-nav #gnb_1dul .gnb_1da { color: #333; line-height: 40px; width: 100%; text-align: left; position: relative; padding: 12px 20px; }
#m_gnb .sidebar-nav #gnb_1dul .gnb_1da:after { content: ''; width: 10px; height: 10px; position: absolute; right: 20px; top: calc(50% - 4px); border-top: 1px solid #333; border-right: 1px solid #333; transform: rotate(45deg); transition-duration: 0.3s; }
#m_gnb .sidebar-nav  a.gnb_1da.open:after { transform: rotate(135deg) !important; }
#m_gnb .sidebar-nav  #gnb_1dul .gnb_1dli { width: 100%; height: auto; text-align: left; }

/* 2단계 메뉴 */
#m_gnb .sidebar-nav .gnb_2dul { display: none;min-width:auto;border-radius:0;border:none;box-shadow:none;height:auto;opacity: 1; background:#F1F2F4; padding: 10px 20px; position: relative; margin: 0 auto; z-index:8888; top: 0; right: 0; left: 0; bottom: 0; transform: none; transition: auto; visibility: visible; }
#m_gnb .sidebar-nav .gnb_2dli a.gnb_2da { color:#818392; text-align: left; display:block;}
#m_gnb .sidebar-nav .gnb_2dli a.gnb_2da:hover { color: #333; }
#m_gnb .sidebar-nav #gnb_1dul .gnb_1dli:before { display: none; }
#m_gnb .sidebar-nav .gnb_2dli { opacity: 1; transform: none !important; transition:auto !important; }

/* 모바일 메뉴 아이콘 */
.mobile-sidebar .sidebar-ico { width: 25px; height: 18px; display: block; position: relative; opacity: 1; cursor: pointer; }
.mobile-sidebar .sidebar-ico .menu_bar { position: absolute; width: 22px; height: 2px; background: #fff; z-index:888; transition: .25s ease-in-out; }
.mobile-sidebar .sidebar-ico .menu_bar:nth-child(2) { width: 18px; top: 8px; z-index:888; }
.mobile-sidebar .sidebar-ico .menu_bar:nth-child(3) { bottom: 0; z-index:888; }

.mobile-sidebar:hover .sidebar-ico .menu_bar { background: var(--primary); }
.mobile-sidebar:hover .sidebar-ico .menu_bar:nth-child(1) { width: 18px; right: 0; }
.mobile-sidebar:hover .sidebar-ico .menu_bar:nth-child(2) { width: 22px; }
.mobile-sidebar:hover .sidebar-ico .menu_bar:nth-child(3) { width: 18px; right: 0; }

.sidebar-ico.close { width: 28px; z-index:888; }
.sidebar-ico.close .menu_bar:nth-child(1) { transform: rotate(45deg); top: 6px; width: 28px !important; background: #333 !important; right: 0; }
.sidebar-ico.close .menu_bar:nth-child(2) { width: 0%; opacity: 0; }
.sidebar-ico.close .menu_bar:nth-child(3) { transform: rotate(-45deg); top: 6px; width: 28px !important; background: #333 !important; right: 0; }

.sidebar-ico.close:hover .menu_bar:nth-child(1) { transform: rotate(45deg); top: 6px; width: 28px; background: #333; }
.sidebar-ico.close:hover .menu_bar:nth-child(2) { width: 0%; opacity: 0; }
.sidebar-ico.close:hover .menu_bar:nth-child(3) { transform: rotate(-45deg); top: 6px; width: 28px; background: #333; }


/* 로고 영역 */
.sidebar-header .logo-area { position: absolute; top: 10px; left: 20px; width: 100%; max-width: 170px; height: 100%; max-height: 40px; display: inline-flex; align-items: center; }



/* sidebar-footer */
.sidebar-footer {position: absolute;bottom: 0;left: 0;right: 0;padding:1.2rem 20px;border-top:1px solid #E0E1E5;background: #fff; z-index:888;}
.sidebar-footer .nav-menu {display: flex;gap: 6px;width: 100%;min-height: auto;max-height: none;}
.sidebar-footer .add_menu{width:100%;height:auto;}
.sidebar-footer .add_menu a{width: 100%;padding:0.75rem 20px;background: var(--secondary);border-radius: 10px;display: inline-block;}
.sidebar-footer .add_menu a.primary{background: var(--primary);color:#fff;}

@media(max-width:1400px) {
    #gnb_1dul{margin:0 auto;}
    .header_wrap { max-width: 100% !important; }
    #gnb_1dul .gnb_1da { padding: 0 30px; }
    #gnb_1dul .gnb_1da{font-size:18px;}
    .gnb_2dli a.gnb_2da { font-size: 15px; }
}


@media(max-width:1200px) {
    .header_wrap { align-items: center; }
    .submenu-bg { display: none; }
    #gnb { display: none; }
    .mobile-sidebar { height: 100%; width: 100%; display: flex; align-items: center; justify-content: flex-end; }
    li.nav-menu { margin: 0; }
    ul.gnb_1dul { display: none; }
    #gnb_btn { display: none; }

    #m_gnb .dummy-item{display:none !important;pointer-events: none;}
    .desktop { display: none; }
    .mobile { display: block; }
}


/*******************************************************
*/
/* footer
 *******************************************************/
#footer{padding:3rem 0 4rem;background-color:#000;position: relative;}

footer .label{ font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-contact{display:flex;align-items:center;}

.footer-item{display:flex;justify-content:space-between;align-items:center;}

.footer-info-label { color:#585A5D; font-weight:bold;font-size: 0.813rem;margin-right:4px;}
.footer-info-value { color:#7E8082;font-size: 0.813rem;}


@media (max-width: 1024px) {
    #footer{ padding: 2.5rem 0; }
    .footer-area { grid-template-columns: 1fr; gap: 0; margin: 0; }
    .footer-divider { display: none; }

    .footer-item.footer-left { padding-bottom: 1.5rem; }
    .footer-item.footer-left .footer-tel{font-size:1.5rem;}

    .footer-item.footer-center { padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid #333; border-bottom: 1px solid #333; }
    .footer-item.footer-right { padding-top: 1.5rem; }
    .footer-left .footer-tel { margin-top: 4px; }
    .footer-right .footer-social { margin-bottom: 1.25rem; }
}

@media (max-width:768px) {
    .footer-item{justify-content: flex-start;flex-flow: column;}
    .copy-label{margin-right:0;order: 1;margin-top:10px;opacity: 0.7;}
}

@media (max-width:410px) {
    .footer-info-label{min-width:90px;}
}



/***************** sub layout *****************/
.sub-title{position: relative;z-index:2;color:#fff;}
.sub-title .display-md{font-family:'Paperlogy';}

.sub_wrap {max-width: 1240px;width: 100%;margin: 0 auto;display: flex;padding:50px 20px 90px;position:relative;}
#lnb_layout {display: flex;flex-flow: column;width:25%;padding-right: 40px;}
.left_menu {display: flex;flex-flow: column;transition-duration: 0.4s;}
.sub_content {width: 75%;transition-duration: 0.4s}
.sub_content.left_blank{width: 100%;transition-duration: 0.4s}
.title_wrap.lnb__title {width: calc(25% - 48px);background:var(--primary);color: #fff;padding:23px 0;text-align: left;position: absolute;top: -35px;left: 20px;height: 65px;}
.title_wrap h4 {z-index: 2;position: absolute;}
.title_wrap.lnb__title:after {content: '';background: var(--primary);width: 500%;position: absolute;top: 0;right: 0;height: 100%;}

.left_menu li {border-bottom: 1px solid #ddd;display: flex;align-items: center;justify-content: space-between;position:relative;transition-duration: 0.4s}
.left_menu li:hover:before{content: ''; width:100%; height:2px; background:#1c8cc2;position: absolute; bottom:0; left:0;transition: 0.8s;}
.left_menu li.active a{color:var(--primary);}
.left_menu li.active:before{content: ''; width:100%; height:2px; background:var(--primary);position: absolute; bottom:0; left:0;transition: 0.8s;}
.left_menu li:last-child{border-bottom:none;}
.left_menu a {font-size: 17px;color: #333;transition: 0.4s;width: 100%;height: 100%;padding: 15px;}
.left_menu li > i{font-size:19px;color:#777;}

.left_menu li:hover a{color:var(--primary);}
.left_menu li:hover i{color:var(--primary);}


.sub_tit{margin-bottom:30px;padding-left: 15px;position: relative;font-size: 20px;font-weight: 500;color: #333;word-break: keep-all;transition-duration:0.4s;}
.sub_tit:before {content: '';width: 4px;height:22px;position: absolute;top:4px;left: 0;background: var(--primary);background: -moz-linear-gradient(top, var(--primary) 0%, #005472 100%);background: -webkit-linear-gradient(top, var(--primary) 0%,#005472 100%);background: linear-gradient(to bottom, var(--primary) 0%,#005472 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--primary)', endColorstr='#005472',GradientType=0 );}

@media(max-width:1200px){

}


/*******************************************************
*/
/* sub top
 *******************************************************/
#sub_top{position:relative;transition:.6s ease-in-out;display: flex;align-items: center;justify-content: center;background: rgb(0, 15, 24);}

.subtop-background{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 100%;height: 100%;z-index: 1;}
.subtop_img { background-size: cover !important;background-position: center center;position: absolute;width: 100%;height: 100%;top: 0;left: 0;right: 0;transition: transform 5s linear;transform: scale(1.1);}
.subtop_img.active {transform: scale(1.0) rotate(0.002deg);}

.subtop_wrap .subtop_img_01{background-image:url("../img/gen/subtop_01.jpg");}
.subtop_wrap .subtop_img_02{background-image:url("../img/gen/subtop_02.jpg");}
.subtop_wrap .subtop_img_03{background-image:url("../img/gen/subtop_03.jpg");}
.subtop_wrap .subtop_img_04{background-image:url("../img/gen/subtop_04.jpg");}
.subtop_wrap .subtop_img_05{background-image:url("../img/gen/subtop_05.jpg");}


.mo_subtopmenu{display:none;width:100%;position:absolute;bottom:0;left:0;z-index:5;height:60px;}


@media(max-width:1200px){
    #sub_top{flex-flow:column;display:flex;align-items:center;justify-content:center;padding:var(--container-padding);position:relative;min-height:180px;}
    #subtop_location{display:none !important;}
    #sub_top .container{max-width:100%;width:100%;padding:0;display:flex;align-items:center;justify-content:center;}

    .subtop-background{}
    .subtop_img {background-position:80% center !important;}

}



/*******************************************************
*/
/* 좌우드래그
 *******************************************************/

.stockTbl-scrollbar-cover{display: none;}
.stockTbl-scrollbar-cover.off{display: none;}

@media(max-width:750px){
    .stockTbl-scrollbar-cover {display: block;position: absolute;  top: 0px;  left: 0px; right: 0px; bottom: 0px; background-color: rgba(0,0,0,0.5); z-index:100;}
    .stockTbl-scrollbar-cover .scroll-cover-txt {position: absolute; top: 50%; left: 0; transform:translateY(-50%);width: 100%;text-align: center; color: #fff; font-size: 15px;}
    .stockTbl-scrollbar-cover .scroll-cover-txt i {font-size: 30px; display: block; margin-bottom: 20px; }
}

/*******************************************************
*/
/* font-face
 *******************************************************/

/* Paperlogy Thin - Weight 100 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Paperlogy/Paperlogy-1Thin.eot'); /* IE6-IE8 */
    src: url('../fonts/Paperlogy/Paperlogy-1Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.woff2') format('woff2');
}

/* Paperlogy ExtraLight - Weight 200 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Paperlogy/Paperlogy-2ExtraLight.eot');
    src: url('../fonts/Paperlogy/Paperlogy-2ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.woff2') format('woff2');
}

/* Paperlogy Light - Weight 300 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Paperlogy/Paperlogy-3Light.eot');
    src: url('../fonts/Paperlogy/Paperlogy-3Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-3Light.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-3Light.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-3Light.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-3Light.woff2') format('woff2');
}

/* Paperlogy Regular - Weight 400 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Paperlogy/Paperlogy-4Regular.eot');
    src: url('../fonts/Paperlogy/Paperlogy-4Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.woff2') format('woff2');
}

/* Paperlogy Medium - Weight 500 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Paperlogy/Paperlogy-5Medium.eot');
    src: url('../fonts/Paperlogy/Paperlogy-5Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.woff2') format('woff2');
}

/* Paperlogy SemiBold - Weight 600 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Paperlogy/Paperlogy-6SemiBold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-6SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.woff2') format('woff2');
}

/* Paperlogy Bold - Weight 700 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Paperlogy/Paperlogy-7Bold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-7Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.woff2') format('woff2');
}

/* Paperlogy ExtraBold - Weight 800 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Paperlogy/Paperlogy-8ExtraBold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-8ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.woff2') format('woff2');
}

/* Paperlogy Black - Weight 900 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Paperlogy/Paperlogy-9Black.eot');
    src: url('../fonts/Paperlogy/Paperlogy-9Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-9Black.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-9Black.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-9Black.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-9Black.woff2') format('woff2');
}


/* Freesentation Thin - Weight 100 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Freesentation/Freesentation-1Thin.eot'); /* IE6-IE8 */
    src: url('../fonts/Freesentation/Freesentation-1Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-1Thin.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-1Thin.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-1Thin.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-1Thin.woff2') format('woff2');
}

/* Freesentation ExtraLight - Weight 200 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Freesentation/Freesentation-2ExtraLight.eot');
    src: url('../fonts/Freesentation/Freesentation-2ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-2ExtraLight.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-2ExtraLight.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-2ExtraLight.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-2ExtraLight.woff2') format('woff2');
}

/* Freesentation Light - Weight 300 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Freesentation/Freesentation-3Light.eot');
    src: url('../fonts/Freesentation/Freesentation-3Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-3Light.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-3Light.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-3Light.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-3Light.woff2') format('woff2');
}

/* Freesentation Regular - Weight 400 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Freesentation/Freesentation-4Regular.eot');
    src: url('../fonts/Freesentation/Freesentation-4Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-4Regular.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-4Regular.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-4Regular.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-4Regular.woff2') format('woff2');
}

/* Freesentation Medium - Weight 500 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Freesentation/Freesentation-5Medium.eot');
    src: url('../fonts/Freesentation/Freesentation-5Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-5Medium.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-5Medium.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-5Medium.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-5Medium.woff2') format('woff2');
}

/* Freesentation SemiBold - Weight 600 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Freesentation/Freesentation-6SemiBold.eot');
    src: url('../fonts/Freesentation/Freesentation-6SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-6SemiBold.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-6SemiBold.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-6SemiBold.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-6SemiBold.woff2') format('woff2');
}

/* Freesentation Bold - Weight 700 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Freesentation/Freesentation-7Bold.eot');
    src: url('../fonts/Freesentation/Freesentation-7Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-7Bold.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-7Bold.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-7Bold.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-7Bold.woff2') format('woff2');
}

/* Freesentation ExtraBold - Weight 800 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Freesentation/Freesentation-8ExtraBold.eot');
    src: url('../fonts/Freesentation/Freesentation-8ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-8ExtraBold.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-8ExtraBold.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-8ExtraBold.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-8ExtraBold.woff2') format('woff2');
}

/* Freesentation Black - Weight 900 */
@font-face {
    font-family: 'Freesentation';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Freesentation/Freesentation-9Black.eot');
    src: url('../fonts/Freesentation/Freesentation-9Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Freesentation/Freesentation-9Black.svg#Freesentation') format('svg'),
    url('../fonts/Freesentation/Freesentation-9Black.ttf') format('truetype'),
    url('../fonts/Freesentation/Freesentation-9Black.woff') format('woff'),
    url('../fonts/Freesentation/Freesentation-9Black.woff2') format('woff2');
}

