@charset "utf-8";
/* header */
header.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid var(--primary-lighten4);
    background-color: #fff;
    box-sizing: border-box;
}

.headerHead{
    width: 100%;
    background-color: #F9FAFB;
}
.headerHead .headerInner{
    height: var(--header-head);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 260px;
}
header.header .logo{
    flex: 0 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    transform: translateY(-50%);
}
header.header .logo>a{
    display: block;
    width: 100%;
    height: 100%;
}
.headerSearchW{
    flex-basis: 0;
    flex-grow: 1;
    max-width: 360px;
    position: relative;
}
.headerSearchInput{
    display: block;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--primary-lighten4);
    border-radius: 12px;
    padding: 0 50px 0 24px;
    color: var(--grey-darken4);
    font-size: 14px;
    font-weight: 500;
}
.headerSearchInput::placeholder{
    color: var(--grey-base);
}
.headerSearchBtn{
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: var(--transition);
}
.headerHeadRight{
    position: absolute;
    top: 50%;
    right: -8px;
    z-index: 3;
    transform: translateY(-50%);
    display: flex;
    gap: 0 21px;
}
.headerTxtBtn{
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 32px;
    padding: 0 8px;
    border-radius: 5px;
    background-color: transparent;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}
.headerHeadRight>.headerTxtBtn:not(:first-child)::before{
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 16px;
    background-color: var(--border-color);
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
}

.headerBody{
    height: var(--header-body);
    width: 100%;
    display: flex;
}
.headerBody .headerInner{
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
}
.gnbW{
    flex-basis: 0;
    flex-grow: 1;
}
.gnb{
    display: flex;
    justify-content: center;
    transition: var(--transition);
}
.gnbLi{
    position: relative;
}
.gnbLink{
    height: var(--header-body);
    width: 166px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}
.gnbLink::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-base);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}
.lnb{
    position: absolute;
    width: 100%;
    min-height: calc(var(--header-bg-height) - 1px);
    left: 0;
    bottom: 0;
    top: var(--header-body);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: var(--transition);
    z-index: -1;
    background-color: #fff;
    padding: 22px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: .05s ease-out;
}
.gnb>.gnbLi:first-child .lnb{
    border-left: 1px solid var(--border-color);
}
.lnbLink{
    min-height: 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    transition: var(--transition);
}
header.header.menu-active .lnb{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 5;
    transition: .1s ease-out;
}

.headerBodyRight{
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
}
.hamBtn{
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: var(--transition);
}
.hamBtn.hamBtnMo{
    display: none;
}
.hamBtnLine::before,
.hamBtnLine::after,
.hamBtnLine{
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background-color: var(--grey-darken4);
}
.hamBtnLine{
    position: relative;
    transition: var(--transition);
}
.hamBtnLine::before,
.hamBtnLine::after{
    content: "";
    position: absolute;
    left: 0;
}
.hamBtnLine::before{
    top: -7px;
    transform: rotate(0);
    transition: .15s transform ease-out, .15s .15s top ease-out;
}
.hamBtnLine::after{
    bottom: -7px;
    transition: .15s transform ease-out, .15s .15s bottom ease-out;
}
.hamBtn.active .hamBtnLine{
    background-color: #fff;
}
.hamBtn.active .hamBtnLine::before{
    top: 0;
    transform: rotate(45deg);
    transition: .15s top ease-out, .15s .15s transform ease-out;
}
.hamBtn.active .hamBtnLine::after{
    bottom: 0;
    transform: rotate(-45deg);
    transition: .15s bottom ease-out, .15s .15s transform ease-out;
}

.headerDim{
    display: none;
}
.headerBg{
    position: fixed;
    width: 100%;
    height: calc(var(--header-bg-height) - 1px);
    top: calc(var(--header-height) - 1px);
    border-top: 1px solid var(--border-color);
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    transform: translateY(-16px);
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    transition: .15s ease-out;
}
header.header.menu-active .headerBg{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media screen and (min-width: 1201px){
    .headerSearchBtn:hover{
        background-color: var(--primary-lighten5);
    }
    .headerTxtBtn:hover{
        background-color: var(--primary-lighten4);
    }
    .gnbLi:hover .gnbLink::after{
        transform: scaleX(1);
    }
    .gnbLi:hover .lnb{
        background-color: var(--primary-lighten5);
    }
    .lnbLink:hover{
        color: var(--primary-base);
        font-weight: 600;
    }
    .hamBtn:hover{
        background-color: var(--primary-lighten5);
    }
}
@media screen and (max-width: 1439px){
    .gnbLink{
        width: 144px;
    }
}
@media screen and (max-width: 1200px){
    header.header{
        border-bottom: 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, .04);
        transform: translateY(0);
        transition: var(--transition);
    }
    .headerHead .headerInner{
        padding: 0;
    }
    .headerHead .headerInner::before{
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        background-color: #F9FAFB;
    }
    .headerSearchW{
        position: absolute;
        top: var(--header-head);
        left: 0;
        z-index: 1;
        max-width: 100%;
        width: 100%;
        height: var(--header-body);
        display: flex;
        align-items: center;
        overflow: hidden;
        transition: var(--transition);
    }
    .headerSearchInput{
        padding: 0 50px 0 16px;
    }
    .headerHeadRight{
        right: -6px;
        gap: 0 4px;
    }
    .headerTxtBtn{
        display: none;
    }
    .gnbW,
    .gnbW ul,
    .gnbW li{
        display: block;
    }
    .hamBtn.hamBtnPc,
    .headerBg{
        display: none;
    }
    .hamBtn.hamBtnMo{
        display: flex;
        height: 30px;
        width: 30px;
    }
    .hamBtnLine::before,
    .hamBtnLine::after,
    .hamBtnLine {
        width: 22px;
        height: 2px;
    }
    .hamBtnLine::before {
        top: -6px;
    }
    .hamBtnLine::after {
        bottom: -6px;
    }
    .headerBody{
        height: var(--header-body);
        align-items: center;
        transform: scaleY(1);
        transform-origin: center top;
        transition: var(--transition);
    }
    html:has(.header.hidden){
        --header-height: var(--header-head);
    }
    header.header.hidden .headerSearchW{
        top: 0;
    }
    header.header.hidden .headerBody{
        height: 0;
    }
    .headerDim{
        position: fixed;
        display: block;
        width: 100%;
        height: calc(100vh - var(--header-head));
        max-height: calc(var(--view-height) - var(--header-head));
        top: var(--header-head);
        left: 0;
        z-index: 98;
        background-color: rgba(0, 0, 0, .36);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .headerInner{
        justify-content: space-between;
    }
    .headerBody .headerInner{
        display: none;
    }

    html:has(header.header.mo-menu-active) .headerDim{
        opacity: 1;
        visibility: visible;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 500px){
}

/*fullmenuArea*/
@media screen and (min-width: 1201px){
    .fullmenuArea{
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        max-height: calc(var(--view-height) - var(--header-height));
        background-color: #fff;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: var(--transition);
    }
    .fullmenuArea>.container{
        height: 100%;
    }
    .fullmenuArea.active{
        z-index: 9999;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .fullmenuW{
        height: 100%;
        position: relative;
    }
    .fullmenuW::before,
    .fullmenuW::after{
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: calc(100% + var(--header-body));
        background-color: var(--primary-lighten4);
        bottom: 0;
    }
    .fullmenuW::before{
        left: 0;
    }
    .fullmenuW::after{
        right: 0;
    }
    .fullmenuW>strong{
        display: block;
        position: absolute;
        top: -28px;
        left: 0;
        transform: translateY(-100%);
        font-size: 20px;
        font-weight: 700;
        opacity: 0;
        visibility: hidden;
        transition: left var(--transition);
    }
    .fullmenuArea.active .fullmenuW>strong{
        opacity: 1;
        visibility: visible;
        left: 30px;
    }
    .fullmenu{
        max-height: calc(var(--view-height) - var(--header-height));
        overflow-x: hidden;
        overflow-y: auto;
    }
    .fullmenu::-webkit-scrollbar {
        width: 10px;
    }
    .fullmenu::-webkit-scrollbar-track {
        background-color: #EEEEEE;
    }
    .fullmenu::-webkit-scrollbar-thumb {
        background-color: #CCCCCC;
    }
    .fullmenu::-webkit-scrollbar-button {
        display: none;
    }
    .fullmenu{
        display: block;
    }
    .fullmenu>li{
        display: flex;
        padding: 34px 0;
    }
    .fullmenu>li + li{
        border-top: 1px solid var(--primary-lighten4);
    }
    .fullmenuDepth1{
        flex: 0 0 auto;
        width: 208px;
        min-width: 208px;
        height: 60px;
        padding-left: 34px;
        display: flex;
        align-items: center;
        font-size: 22px;
        font-weight: 700;
        position: relative;
    }
    .fullmenuDepth1::before{
        content: "";
        display: block;
        position: absolute;
        width: 3px;
        height: 100%;
        background-color: var(--primary-base);
        top: 0;
        left: 0;
    }
    .fullmenuDepth2W{
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px 20px;
        height: auto !important;
    }
    .fullmenuDepth2{
        height: 60px;
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        transition: var(--transition);
    }
    .fullmenuDepth2W>li{
        width: 206px;
        min-width: 206px;
        flex: 0 0 auto;
        display: block;
    }
    .fullmenuDepth3W{
        display: block;
        margin-top: -2px;
    }
    .fullmenuDepth3W>li{
        display: block;
    }
    .fullmenuDepth3{
        min-height: 32px;
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 500;
        padding: 5px 0;
        transition: var(--transition);
    }
    header.fullmenu-active .gnb{
        opacity: 0;
        visibility: hidden;
    }
    header.fullmenu-active .hamBtnPc{
        transform: translateX(-30px);
    }
    .moMenu,
    .fullmenuPanel{
        display: none;
    }
    .fullmenuDepth2W>li:hover .fullmenuDepth2{
        color: var(--primary-base);
    }
    .fullmenuDepth3:hover{
        color: var(--primary-base);
    }
}
@media screen and (max-width: 1439px){
}
@media screen and (max-width: 1200px){
    .fullmenuArea{
        position: fixed;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - var(--header-head));
        max-height: calc(var(--view-height) - var(--header-head));
        overflow-x: hidden;
        overflow-y: auto;
        top: var(--header-head);
        right: 0;
        z-index: 99;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        padding: 30px 0 80px 0;
        background-color: #fff;
        box-shadow: 0 0 15px rgba(3, 7, 116, .15);
        transition: var(--transition);
    }
    .fullmenuArea.mo-active {
        transform: translateX(0px);
        opacity: 1;
        visibility: visible;
    }
    .fullmenuW>strong{
        display: none;
    }
    .moMenu{
        margin-bottom: 20px;
    }
    .moMenuTop{
        display: flex;
        align-items: center;
        gap: 0 10px;
    }
    .moMenuTop>strong{
        display: block;
        flex-basis: 0;
        flex-grow: 1;
        font-size: 22px;
        font-weight: 600;
    }
    .moLogout{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 118px;
        height: 40px;
        border-radius: 999px;
        font-size: 14px;
        gap: 0 10px;
        border: 1px solid var(--border-color);
        background-color: #fff;
        color: var(--grey-base);
        line-height: 1;
    }
    .moMenuBtnW{
        display: flex;
        margin: 18px -5px 0;
    }
    .moMenuBtn{
        margin: 0 5px;
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 40px;
        border-radius: 8px;
        font-size: 16px;
        background-color: var(--primary-base);
        color: #fff;
        line-height: 1;
        box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
    }
    .fullmenu{
        display: block;
    }
    .fullmenu>li{
        display: block;
        border-bottom: 1px solid var(--primary-lighten2);
    }
    .fullmenuDepth1{
        display: none;
    }
    .fullmenuPanel{
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 50px 0 16px;
        width: 100%;
        height: 54px;
        font-size: 18px;
        font-weight: 600;
        background-color: #fff;
        transition: var(--transition);
    }
    .fullmenuPanel::after{
        content: "";
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        background-image: url(../image/icon-chevron.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: 50%;
        right: 12px;
        transform: translateY(-50%) rotate(-90deg);
        transition: var(--transition);
        z-index: 3;
    }
    .fullmenu>li.active .fullmenuPanel::after{
        transform: translateY(-50%) rotate(90deg);
    }
    .fullmenuPanel::before{
        content: "";
        display: block;
        position: absolute;
        width: 2px;
        height: 100%;
        background-color: var(--primary-darken1);
        top: 0;
        left: 0;
        transform: scaleY(0);
        transition: var(--transition);
    }
    .fullmenu>li.active .fullmenuPanel{
        color: var(--primary-darken1);
        background-color: var(--primary-lighten5);
    }
    .fullmenu>li.active .fullmenuPanel::before{
        transform: scaleY(1);
    }
    .fullmenuPanel>span{
        position: relative;
        display: block;
        padding-left: 10px;
    }
    .fullmenuPanel>span::before{
        content: "";
        display: block;
        position: absolute;
        width: 3px;
        height: 3px;
        background-color: var(--grey-darken4);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: var(--transition);
    }
    .fullmenu>li.active .fullmenuPanel>span::before{
        background-color: var(--primary-base);
    }
    .fullmenuDepth2W{
        width: 100%;
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow-x: hidden;
        overflow-y: hidden;
        display: block;
        transition: var(--transition);
    }
    .fullmenu>li.active .fullmenuDepth2W{
        opacity: 1;
        visibility: visible;
        border-top: 1px solid var(--primary-lighten2);
    }
    .fullmenuDepth2W>li{
        display: block;
    }
    .fullmenuDepth2W>li:not(:last-child){
        border-bottom: 1px solid var(--primary-lighten4);
    }
    .fullmenuDepth2{
        display: flex;
        align-items: center;
        padding: 0 26px;
        height: 48px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
    }
    .fullmenuDepth2>span{
        position: relative;
        display: block;
        padding-left: 10px;
    }
    .fullmenuDepth2>span::before{
        content: "";
        display: block;
        position: absolute;
        width: 3px;
        height: 3px;
        background-color: var(--grey-darken4);
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: var(--transition);
    }
    .fullmenuDepth3W{
        display: block;
        margin-top: -6px;
        padding-bottom: 10px;
    }
    .fullmenuDepth3W>li{
        display: block;
    }
    .fullmenuDepth3{
        display: flex;
        align-items: center;
        min-height: 28px;
        font-size: 14px;
        padding: 4px 36px;
    }
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
}
@media screen and (max-width: 500px){
}

/*footer*/
footer.footer{
    width: 100%;
    background-color: #F0F0F0;
}
.footerHeadInner{
    position: relative;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}
.footerLinkW{
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    margin: 0 -8px;
}
.footerLinkW>li{
    display: block;
}
.footerLink{
    padding: 0 8px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}
.footerLinkW>li:first-child .footerLink{
    font-weight: 700;
    color: #0195FF;
}
.footerLinkApplyW{
    margin-left: auto;
}
.footerLinkApplyW .footerLink{
    font-weight: 700;
}

.footerBody{
    padding: 30px 0 56px 0 ;
    flex-wrap: wrap;
}
.footerAddress{
    color: var(--grey-darken2);
    font-size: 16px;
    font-weight: 500;
}
.footerInfo{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.footerInfo>li{
    display: flex;
    gap: 0 10px;
    font-size: 14px;
    position: relative;
}
.footerInfo>li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 14px;
    top: 2px;
    right: -10px;
    background-color: var(--border-color);
}
.footerInfo>li>strong{
    display: block;
    font-weight: 700;
}
.footerInfo>li>p{
    font-weight: 500;
}
.footerBottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 50px;
    margin-top: 24px;
}
.footerCopyright{
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-base);
}

@media screen and (min-width: 1201px){
    .footerLink:hover{
        background-color: var(--primary-lighten4);
    }
}
@media screen and (max-width: 1200px){
}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .footerHeadInner{
        padding: 16px 0;
    }
    .footerLinkW{
        gap: 2px 4px;
        margin: 0 -4px;;
        padding-top: 30px;
        position: relative;
    }
    .footerLink{
        padding: 0 6px;
        height: 28px;
        font-size: 14px
    }
    .footerLinkApplyW{
        margin-left: 0;
        position: absolute;
        top: 0;
        left: 0;
    }

    .footerBody{
        padding: 20px 0 30px 0;
    }
    .footerAddress{
        font-size: 14px;
    }
    .footerInfo{
        display: block;
    }
    .footerInfo>li{
        gap: 0 6px;
        display: block;
    }
    .footerInfo>li + li{
        margin-top: 6px;
    }
    .footerInfo>li:not(:last-child)::after{
        display: none;
    }
    .footerInfo>li>p{
        margin-top: 2px;
    }
    .footerBottom{
        display: block;
        margin-top: 20px;
    }
    .footerCopyright{
        margin-top: 10px;
        text-align: left;
    }
}
@media screen and (max-width: 500px){
}