@charset "utf-8";

/* common */
body.fixed { overflow: hidden; }
.inner { width: calc(100% - 100px); max-width: 1720px; margin: 0 auto; }
.mo-br { display: none; }

/* button */
.button__wrap { display: flex; justify-content: center; }
.btn { display: flex; justify-content: center; align-items: center; }
.btn-radius { width: 300px; height: 75px; border: none; border-radius: 10px; font-size: 19px; font-weight: 600; color: #fff; background-color: var(--main-color2); }

/* tab */
.tab { display: flex; align-items: center; }
.tab__item { display: flex; justify-content: center; align-items: center; }
.tab-type-01 { flex-wrap: wrap; gap: 10px; }
.tab-type-01 .tab__item { padding: 0 30px; height: 45px; border: none; border-radius: 50px; font-size: 19px; font-weight: 500; color: #CCCCCC; background-color: #EEEEEE; }
.tab-type-01 .tab__item.on { border-color: var(--main-color2); background-color: var(--main-color2); color: #fff; }
.tab-type-02 { gap: 5px; }
.tab-type-02 .tab__item { width: 200px; height: 60px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 60px; font-size: 17px; font-weight: 600; color: rgba(255, 255, 255, 0.3); background-color: transparent; }
.tab-type-02 .tab__item.on { border-color: var(--main-color2); background-color: var(--main-color2); color: #fff; }
.tab-type-03 { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);  }
.tab-type-03 .tab__item { flex: 1; height: 50px; border: none; padding: 0 5px; font-size: 19px; font-weight: 500; color: rgba(255, 255, 255, 0.4); background-color: transparent; }
.tab-type-03 .tab__item.on { background-color: var(--main-color2); color: #fff; }
.tab-type-line { overflow: hidden; flex-wrap: wrap; justify-content: center; gap: 0 20px; margin-bottom: 80px; }
.tab-type-line .tab__item { position: relative; }
.tab-type-line .tab__item::before { content: ""; position: absolute; left: -10px; top: 50%; display: block; width: 1px; height: 15px; background-color: #E5E5E5; transform: translateY(-50%); }
.tab-type-line .tab__item:first-child::before { display: none; }
.tab-type-line .tab__item > a { padding: 0 10px; font-family: var(--font-set-2); font-size: 19px; font-weight: 600; color: #CCCCCC;  }
.tab-type-line .tab__item.on > a { color: var(--main-color2); }

/* header */
.header{ overflow: hidden; position: fixed; left: 0; top: 0; width: 100%; height: var(--header-H); background-color: #fff; transition: 0.3s ease-in, transform 0.3s ease-out; z-index: 900; }
.header * { font-family: var(--font-set-2); }
.header.scroll { transform: translateY(-100%); }
.header__inner { position: relative; display: flex; justify-content: center; height: var(--header-H); padding: 0 50px; }
.header__inner::after { content: ""; position: absolute; left: 0; bottom: 0; display: block; width: 100%; height: 1px; background-color: rgba(255, 255, 255, 0.2); visibility: hidden; opacity: 0; transition: 0.3s ease-in; }
.header .logo { position: absolute; left: 50px; top: 50%; width: 229px; height: 40px; background: url("/img/common/logo_main.png") no-repeat center center/contain; transform: translateY(-50%); transition: 0.3s ease-in; }
.logo > a { display: block; width: 100%; height: 100%; }
.gnb .gnb__list {display: flex; }
.gnb .gnb__list > li { width: 140px; color: #111; transition: 0.3s ease-in; }
.gnb .gnb__list > li > a { display: flex; justify-content: center; align-items: center; height: var(--header-H); font-size: 18px; font-weight: 600; }
.gnb .lnb__list { position: relative; padding-bottom: 50px; transform: translateY(-20px); visibility: hidden; opacity: 0; transition: 0.3s 0.3s ease-out; }
.gnb .lnb__list::before { content: ""; position: absolute; left: 50%; top: 0; display: block; width: 14px; height: 10px; background: url("/img/common/point_marker.svg") no-repeat center center/contain; -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); transform: translate(-50%, -50%); visibility: hidden; opacity: 0; transition: 0.3s ease-out; }
.gnb .lnb__list > li { padding: 0 20px; }
.gnb .lnb__list > li > a { display: flex; justify-content: center; align-items: center; width: 100%; height: 60px; border-bottom: 1px dashed rgba(255, 255, 255, 0.2); font-size: 17px; color: rgba(255, 255, 255, 0.5); text-align: center; transition: 0.3s ease-in; }
.header .header-btn { position: absolute; right: 50px; top: 50%; transform: translateY(-50%); }
#btn-all-menu { display: flex; flex-direction: column; justify-content: center; align-items: center; row-gap: 6px; width: 50px; height: 50px; background-color: transparent; border: none; }
#btn-all-menu > span { width: 100%; height: 3px; background-color: #000; transition: 0.6s; }
#btn-all-menu > span:first-child { background-color: var(--main-color); }
#btn-all-menu:hover > span { width: 26px; }

.header.on { height: var(--gnb-H); background-color: rgba(0, 48, 136, 0.6); }
.header.on .header__inner::after { visibility: visible; opacity: 1; }
.header.on .gnb .gnb__list > li { width: 200px; color: #fff; }
.header.on .gnb .lnb__list { visibility: visible; opacity: 1; transform: translateY(0); }
.header.on .logo { background-image: url("/img/common/logo_main_w.png"); }
.header.on #btn-all-menu > span { background-color: #fff; }
.gnb .gnb__list > li:hover { background-color: var(--main-color2); }
.gnb .gnb__list > li:hover .lnb__list > li > a { color: #fff; }
.gnb .gnb__list > li:hover .lnb__list::before { visibility: visible; opacity: 1; }

#allMenu * { font-family: var(--font-set-2); }
#allMenu { position: fixed; left: 0; top: 0; width: 100%; height: 100%; display: none; background-color: rgba(0, 0, 0, 0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); z-index: 900; }
#allMenu .header__inner { justify-content: space-between; align-items: center; }
#allMenu .logo { width: 229px; height: 40px; background: url("/img/common/logo_main_w.png") no-repeat center center/contain; }
#allMenu::before { content:""; position: absolute; right: 0; bottom: -100px; display: block; width: 1070px; aspect-ratio: 2.378/1; background: url("/img/common/all_menu_bg.svg") no-repeat center center/contain; }
#allMenu .menu__inner { overflow-y: auto; padding: 0 100px; height: 100% ; scrollbar-width: none; }
#allMenu .menu__inner::-webkit-scrollbar { display: none; }
#allMenu .header__inner { position: absolute; left: 0; top: 0; width: 100%; }
#allMenu .gnb__list { display: flex; justify-content: center; height: 100% ; }
#allMenu .gnb__list > li { width: 20%; padding-inline: 40px; padding-top: 280px; border-right: 1px solid #222222; }
#allMenu .gnb__list > li:first-child { border-left: 1px solid #222222; }
#allMenu .gnb__list > li > a { position: relative; display: inline-block; font-size: 32px; font-weight: 600; color: #fff; margin-bottom: 60px; pointer-events: none; cursor:default; }
#allMenu .gnb__list > li > a::before { content: ""; position: absolute; left: -40px; top: 50%; display: block;  width: 14px; height: 10px; background: url("/img/common/point_marker_2.svg") no-repeat center center/contain; transform: translate(-50%, -50%); visibility: hidden; opacity: 0; transition: 0.3s ease-in; }
#allMenu .gnb__list > li:hover > a::before { visibility: visible; opacity: 1; }
#allMenu .lnb__list > li + li { margin-top: 15px; }
#allMenu .lnb__list > li > a { font-size: 19px; color: #fff; opacity: 0.2; transition: 0.3s ease-in; }
#allMenu .lnb__list > li > a:hover { opacity: 1; }
#btn-menu-close { width: 20px; height: 20px; border: none; background: url("/img/common/icon_close.svg") no-repeat center center/contain; }


/* footer */
.footer { background-color: #111; padding: 20px 0; }
.footer * { font-family: var(--font-set-2); }
.footer__inner { position: relative; padding: 0 50px; }
.footer__inner .logo { width: 286px; }
.footer__inner .logo img { width: 100%; }
.footer__content { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20px; color: #ccc; }
.footer__content .copyright { margin-top: 20px; font-size: 17px; font-weight: 300; color: #ccc; }
.footer-info .row { display: flex; flex-wrap: wrap; row-gap: 0.5em; }
.footer-info .row + .row { margin-top: 10px; }
.footer-info .row .label { width: 100px; font-size: 17px; color: #fff; }
.footer-info .row > p { width: 350px; font-size: 17px; font-weight: 300; color: #CCC; }
.footer-info dl { display: flex; column-gap: 10px; font-size: 17px; }
.footer-info dl:nth-of-type(1) { width: 170px; }
.footer-info dl dt { color: #fff; }
.footer-info dl dd { font-weight: 300; }
.footer__content .right { display: flex; gap: 10px; }
.f-btn-box { position: relative; display: flex; align-items: center; width: 250px; height: 70px; padding-inline: 40px; font-size: 17px; font-weight: 500; text-align: left; color: #888; border: none; background-color: #191919; }
.f-btn-box::after { content: ""; position: absolute; right: 40px; top: 50%; display: block; width: 9px; height: 14px; background: url("/img/common/arrow_right_gray.svg") no-repeat center center/contain; transform: translateY(-50%); }
.f-site { position: relative; }
.f-site .btn-f-site { border: none; cursor: pointer; transition: 0.3s ease-in; }
.f-site .btn-f-site::after{ width: 14px; height: 9px; background-image: url("/img/common/arrow_up_gray.svg"); transition: 0.3s ease-in; }
.f-site .btn-f-site.on::after { transform: translateY(-50%) rotateX(180deg); }
.f-site .f-site__list { position: absolute; left: 0; bottom: 100%; display: none; width: 100%; padding: 15px 0; background-color: #333; }
.f-site .f-site__list > li + li { margin-top: 5px; }
.f-site .f-site__list > li > a { display: flex; align-items: center; padding: 5px 40px; font-size: 17px; font-weight: 500; color: #888; }
.btn-top { width: 70px; height: 70px; border: none; background: url("/img/common/icon_btn_top.svg") no-repeat center center/auto var(--main-color); }

/* font */
.ff-pd { font-family: var(--font-Pretendard); }
.ff-of { font-family: var(--font-Outfit); }
.ff-set-2 { font-family: var(--ff-set-2); }

@media screen and (max-width:1600px) {
    /* header */
    .header .gnb .gnb__list > li { width: 120px; }
    .gnb .gnb__list > li > a { font-size: 16px; }
    .gnb .lnb__list > li > a{ font-size: 15px; }
    .header.on .gnb .gnb__list > li { width: 160px; }
    
    /* footer */
    .footer-info .row .label, .footer-info dl, .footer-info .row > p { font-size: 16px; }
    .footer__content .copyright { font-size: 16px; }
    .f-btn-box { width: 200px; height: 50px; padding-inline: 20px; font-size: 16px; }
    .f-site .f-site__list > li > a { padding: 0 20px; font-size: 14px; }
    .f-btn-box::after { right: 20px; }
    .btn-top { width: 50px; height: 50px; }
}
@media screen and (max-width:1400px) {
    .inner { width: calc(100% - 40px); }
    .btn-radius { width: 240px; height: 60px; }
    .tab-type-01 .tab__item { height: 40px; font-size: 14px; }

    .header__inner, .footer__inner { padding: 0 20px; }
    .header .logo, #allMenu .logo { width: 180px; height: 32px; }
    .header .logo { left: 20px; }
    .header .header-btn { right: 20px; }
    .gnb .lnb__list > li > a{ font-size: 14px; }
    .header.on .gnb .gnb__list > li { width: 140px; }
    #allMenu .menu__inner { padding: 0 30px; }
    
    .footer__content { flex-direction: column; align-items: flex-start; row-gap: 40px; }
}
@media screen and (max-width:1200px)  {
    .gnb { display: none; }
    :root {
        --header-H: 60px;
    }
    .tab-type-02 .tab__item { width: 150px; height: 40px; font-size: 16px; }

    .header{ position: fixed; left: 0; top: 0; }
    .header .logo, #allMenu .logo { width: 140px; height: 25px; }
    #btn-all-menu { width: 40px; height: 40px; }
    #allMenu::before { bottom: -20px; width: 500px; }
    #allMenu .gnb__list > li { padding-inline: 20px; }
    #allMenu .gnb__list > li > a { font-size: 26px; }
    #allMenu .gnb__list > li > a::before { left: -20px; }
    #allMenu .lnb__list > li > a { font-size: 16px; }
}
@media screen and (max-width:1024px) {
    .btn-radius { width: 200px; height: 50px; border-radius: 5px; font-size: 16px; }
    .tab-type-01 .tab__item { padding: 0 15px; height: 40px; }
    .tab-type-02 .tab__item { width: 120px; height: 40px; font-size: 14px; }
    .tab-type-03 .tab__item { height: 40px; font-size: 14px; }
    .tab-type-line { margin-bottom: 40px; }
    .tab-type-line .tab__item > a { font-size: 16px; }

    #allMenu .menu__inner { margin-top: var(--header-H); padding-top: 80px; height: calc(100% - var(--header-H) - 40px); }
    #allMenu .gnb__list { display: block; }
    #allMenu .gnb__list > li { width: 100%; padding: 0; border-right: none;  }
    #allMenu .gnb__list > li + li { margin-top: 40px; }
    #allMenu .gnb__list > li:first-child { border-left: none; }
    #allMenu .gnb__list > li > a { margin-bottom: 10px; padding-inline: 20px 10px; }
    #allMenu .gnb__list > li > a::before { visibility: visible; opacity: 1; left: 0; }
    #allMenu .lnb__list { flex-wrap: wrap; gap: 14px;  padding-top: 10px; border-top: 1px solid #222222; padding-left: 20px; }
    #allMenu .lnb__list > li + li { margin-top: 0; }
    #allMenu .lnb__list > li > a { opacity: 0.5; }

    .footer .logo { width: 180px; }
    .footer-info .row .label, .footer-info dl, .footer-info .row > p { font-size: 14px; }
    .footer__content .copyright { font-size: 14px; }
    .footer-info .row .label { width: 70px; }
    .footer-info .row > p { width: 280px; }
    .footer-info dl:nth-of-type(1) { width: 140px; }
    .f-btn-box { width: 160px; height: 40px; font-size: 14px; } 
    .btn-top { width: 40px; height: 40px; background-size: 10px; }
}
@media screen and (min-width:1025px) {
    #allMenu .lnb__list { display: block !important; }
}
@media (max-width:1024px) and (min-width:769px) {
    #allMenu .lnb__list { display: flex !important; }
}
@media screen and (max-width:768px) {
    .btn-top { position: absolute; right: 20px; top: 0; }
    .mo-br { display: inline; }
    .tab-type-line { gap: 0 5px; }
    .tab-type-line .tab__item::before { left: -2.5px; }
    .tab-type-line .tab__item > a { padding: 0 5px; font-size: 14px; }
    
    #allMenu::before { bottom: -10px; width: 300px; }
    #allMenu .gnb__list > li + li { margin-top: 30px; }
    #allMenu .gnb__list > li > a { pointer-events: initial; cursor: pointer; }
    #allMenu .lnb__list { display: none; }
    #allMenu .lnb__list > li + li { margin-top: 14px; }
}