@charset "UTF-8";

body.sitemapNonScroll {
    overflow: hidden;
}

@media (max-width: 1199px) {

    body.mobileNonScroll {
        overflow: hidden;
    }

}

/* 가운데영역 */
.container {
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
}

/* 스크롤 */
.customScroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.customScroll::-webkit-scrollbar-track {
    background-color: #F7F8F9;
}

.customScroll::-webkit-scrollbar-thumb {
    background-color: #4D8FFF;
    border-radius: 10px;
}

/* 닫기 버튼 */
.closeBtn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #E8EBED;
    border-radius: 8px;
    background: url(../images/common/close_icon.svg)no-repeat center;
}

.closeBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ADCBFF 0%, rgba(173, 203, 255, 0.4) 40%, rgba(173, 203, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


/* 애니메이션 */
.fadeEffect {
    animation: fadeEffect 1.5s .3s both;
}

@keyframes fadeEffect {

    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

main {
    padding-top: var(--header-high);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lm);
}

@media (max-width: 1199px) {

    main {
        padding-top: var(--header-high);
    }

}

@media (max-width: 767px) {

    main {
        padding-top: var(--header-high);
    }

}

/* 헤더 */
#headerWrap.scroll {
    box-shadow: 0 10px 40px #EDF4FF;
}

#headerWrap.scroll .subMenuWrap {
    top: 79px;
}

#headerWrap .headerTopWrap {
    transition: all .5s;
}

#headerWrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffffe3;
    backdrop-filter: blur(5px);
}

#headerWrap .headerTopBox {
    height:var(--header-high);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerWrap .headerTopBox .header-left {
    display:flex;
    align-items: center;
    gap: 24px;
}

#headerWrap .headerTopBox .logoBox h1 a,
#headerWrap .headerTopBox .logoBox h1 a img {
    display: block;
}

#headerWrap .headerTopBox .logoBox h1 a .logo {
    display: flex;
    align-items: center;
    gap: 0 12px;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .img {
    overflow: hidden;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .img img {
    position: relative;
    left: 47px;
    width:36px;
}

#headerWrap.active .headerTopBox .logoBox h1 a .logo .img img {
    left: 0;
    transition: all .7s;
}

#headerWrap.active .headerTopBox .logoBox h1 a .logo .text .text01 em {
    animation: fadeEffect 1.5s .3s both;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(1) {
    animation-delay: .3s;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(2) {
    animation-delay: .35s;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(3) {
    animation-delay: .4s;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(4) {
    animation-delay: .45s;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(5) {
    animation-delay: .5s;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em:nth-child(6) {
    animation-delay: .55s;
}

#headerWrap.active .headerTopBox .logoBox h1 a .logo .text .text02 {
    animation: fadeEffect 1.5s .7s both;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 {
    display: block;
    margin-bottom: 3px;
    font-size: 24px;
    color: #1B1D1F;
    font-weight: 400;
    font-family: 'Retrosans';
    line-height: 1;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 em {
    display: inline-block;
}

#headerWrap .headerTopBox .logoBox h1 a .logo .text .text02 {
    display: block;
    font-size: 6px;
    color: #9EA4AA;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}




#headerWrap .headerTopBox .btnBox {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

#headerWrap .headerTopBox .snsLinkBox {
    display: flex;
    gap: 0 8px;
}
#headerWrap .headerTopBox .snsLinkBox a {
    display: flex;
    align-items: center;
}

#headerWrap .searchBtnBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 2px solid #C8DCFF;
}

#headerWrap .searchBtnBox .searchBtn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #89B5FF url(../images/common/search_icon.svg)no-repeat center;
}
#headerWrap .searchBtnBox .searchBtn.active {    
    background: #89B5FF url(../images/common/search_on_icon.svg)no-repeat center;
}

#headerWrap .headerTopBox .btnBox .authBox {
    width: 164px;
    height: 48px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0 4px;
    background: linear-gradient(to right, #454C53, #9AAAB9);
    border-radius: 16px;
}

#headerWrap .headerTopBox .btnBox .authBox a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding:4px 8px;
}

#headerWrap .headerBottomBox {
    position: relative;
}

#headerWrap .mobileBtn,
#headerWrap .sitemapBtn {
    border: 1px solid #E8EBED;
    border-radius: 8px;
    background: url(../images/common/sitemap_icon.svg)no-repeat center, #fff;
}

#headerWrap .sitemapBtn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#headerWrap .headerTopBox .menu-box {}

#headerWrap .headerTopBox .menu-box .depth01 {
    display: flex;
    gap: 0;
    align-items: center;
}

#headerWrap .headerTopBox .menu-box .depth01 li h2 a {
    position: relative;
    padding: 20px 0;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #454C53;
}

#headerWrap .headerTopBox .menu-box .depth01 li h2 a span {
    position: relative;
    display: inline-block;
    padding: 5px 16px;
    transition: all .3s;    
}

#headerWrap .headerTopBox .menu-box .depth01 li h2 a span::before {
    opacity: 0;
    content: '';
    position: absolute;
    top: -1.6px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #EDF4FF 0%, #88B4FF 50%, #EDF4FF 100%);
    border-radius: 16px;
    z-index: -1;
    transition: all .3s;
}

#headerWrap .headerTopBox .menu-box .depth01 li h2 a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #4D8FFF;
    transition: all .3s;
}

#headerWrap .headerTopBox .menu-box .depth01>li h2 a.active {
    font-weight: 700;
    color: #203C6B;
}

#headerWrap .headerTopBox .menu-box .depth01>li h2 a.active span {
    position: relative;
    width: 100%;
    box-shadow: 0 0 20px #EDF4FF;
    border-radius: 16px;
    text-shadow: 0 0 12px #88B4FF, 0 0 18px #ADCBFF, 0 0 26px #ADCBFF;
    background-color: #fff;
}

#headerWrap .headerTopBox .menu-box .depth01>li h2 a.active span::before {
    opacity: 1;
}

#headerWrap .headerTopBox .menu-box .depth01 li h2 a.active::before {
    width: 100%;
}

/* 헤더-서브메뉴 */
#headerWrap .subMenuWrap {
    display: none;
    padding: 40px 0;
    position: fixed;
    top: calc(var(--header-high) - 1px);
    left: 0;
    right: 0;    
    z-index: 99999999999999;
    transition: all .5s;
}

#headerWrap .submenuBG.active {
    display: block;
}

#headerWrap .submenuBG {
    display: none;
    position: fixed;
    top: var(--header-high);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: rgba(30, 43, 55, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    height:100vh;
}

#headerWrap .subMenuWrap::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 50%;
    top: 1px;
    bottom: 0;
    transform: translateX(-50%);
    border-top: 1px solid #E8EBED;
    background: linear-gradient(to right, #FFFFFF 75%, #C8DCFF);
    z-index: -1;
}

#headerWrap .subMenuWrap .subMenuBox {
    display: flex;
    align-items: flex-start;
}
#headerWrap .subMenuWrap .subMenuBox .subMenuList {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 20px;
    gap:16px;
    font-family: 'Retrosans';
    min-height: 270px;
    border-right: 1px solid var(--gray-100);
}

#headerWrap .subMenuWrap .subMenuBox h2 {
    flex-shrink: 0;
    font-size: 20px;
    color: #203C6B;    
    font-weight: 400;
    animation: var(--hd-txt);
    animation-delay: 0.1s;
    width: 100%;
    max-width: 264px;
}

#headerWrap .subMenuWrap .subMenuBox .depth02 {
    width: 100%;
    animation: var(--hd-txt);
    animation-delay: 0.2s;
    justify-items: start;
    display: flex;    
    flex-direction: column;
}
#headerWrap .subMenuWrap .subMenuBox .depth02 li {
    width: 100%;
}

#headerWrap .subMenuWrap .subMenuBox .depth02 li h3 a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #454C53;
    padding:4px 0;
    letter-spacing: 0.3px;
    transition: color .3s;
}

#headerWrap .subMenuWrap .subMenuBox .depth02 li h3 a:hover {
    color: #4D8FFF;
    text-decoration: underline;    
}

#headerWrap .subMenuWrap .subMenuBox .imgBox {
    animation: var(--hd-txt);
    animation-delay: 0.3s;
}

#headerWrap .subMenuWrap .subMenuBox .imgBox .img {
    width: 346px;
    height: 160px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

#headerWrap .subMenuWrap .subMenuBox .imgBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#headerWrap .subMenuWrap .subMenuBox .imgBox p {
    color: #454C53;
    text-align: right;
    font-family: 'Retrosans';
}



/* 헤더-사이트맵 */
#sitemapBox {
    opacity: 0;
    padding: 64px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999999;
    height:100dvh;
    background: linear-gradient(to right, #FFFFFF 60%, #EDF4FF);
    clip-path: circle(0 at 100% 0);
    transition: clip-path 0.6s cubic-bezier(0, 0, 0.13, 0.99), opacity 0.6s cubic-bezier(0, 0, 0.13, 0.99);
}

#sitemapBox.active {
    opacity: 1;
    clip-path: circle(180% at 100% 0);
}

#sitemapBox .container {
    position: relative;
}

.sitemapContents {
    display:flex;
    justify-content: space-between;
    gap: 80px;
}

#sitemapBox nav {
    padding-right: 24px;
    width:100%;
    height: calc(100vh - 267px);
    overflow-y: auto;
}

#sitemapBox .sitemapTitleBox {
    margin-bottom: 55px;
}

#sitemapBox .sitemapTitleBox h3 {
    font-size: 32px;
    color: #9EA4AA;
    font-weight: 400;
    font-family: 'Retrosans';
    letter-spacing: 5px;
}

#sitemapBox .sitemapDepth01>li {
    margin-bottom: 80px;
    display: flex;
    gap: 0 104px;
}

#sitemapBox .sitemapDepth01 li:last-child {
    margin-bottom: 0;
}

#sitemapBox .sitemapDepth01 li .leftBox h2 {
    margin-bottom: 26px;
}

#sitemapBox .sitemapDepth01 li .leftBox h2 a {
    display: block;
    font-size: 24px;
    color: #203C6B;
    font-family: 'Retrosans';
    font-weight: 400;
}

#sitemapBox .sitemapDepth01 li .leftBox .imgBox {
    width: 200px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
}

#sitemapBox .sitemapDepth01 li .leftBox .imgBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sitemapBox .sitemapDepth02 {
    margin-top: 40px;
    width: 100%;
}

#sitemapBox .sitemapDepth02>li {
    border-bottom: 1px solid #E8EBED;
    padding:20px 0;
}

#sitemapBox .sitemapDepth02 li .depthLayoutBox {
    display: flex;
    align-items: center;
    gap: 24px;
}
#sitemapBox .sitemapDepth02 li h3 {
    width:100%;
    max-width:156px;
}
#sitemapBox .sitemapDepth02 li h3 a {    
    display: block;
    background: linear-gradient(90deg, #454C53, #9EA4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 500;
}

#sitemapBox .sitemapDepth02 li:last-child h3 a {
    border: 0;
}

#sitemapBox .sitemapDepth03 {
    display: flex;
    gap: 0 8px;
}

#sitemapBox .sitemapDepth03 li h4 a {
    padding: 2px 8px;
    display: inline-block;
    font-weight: 500;
    color: #454C53;
    background-color: #E8EBED;
    border-radius: 10px;
}

#sitemapBox aside {
  width: 100%;
  max-width:220px;
}

#sitemapBox .sitemapAuthBox {
    margin-bottom: 50px;
    width: 164px;
    height: 48px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0 35px;
    background: linear-gradient(to right, #454C53, #9AAAB9);
    border-radius: 16px;
}

#sitemapBox .sitemapAuthBox a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

#sitemapBox .sitemapInfoBox {
    margin-bottom: 56px;
}

#sitemapBox .sitemapInfoBox .box {
    margin-bottom: 28px;
}

#sitemapBox .sitemapInfoBox .box:last-child {
    margin-bottom: 0;
}

#sitemapBox .sitemapInfoBox .box span {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    color: #000000;
    font-family: 'Retrosans';
}

#sitemapBox .sitemapInfoBox .box p {
    font-size: 14px;
    font-weight: 500;
    color: #454C53;
}

#sitemapBox .sitemapsnsBox {
    display: flex;
    gap: 0 8px;
}

#sitemapBox .sitemapsnsBox a {
    display: block;
    transition: all .3s;
}

#sitemapBox .sitemapsnsBox a:hover {
    transform: translateY(-6px);
}

#sitemapBox .sitemapTitleBox {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
}

#mobileMenuBox {
    display: none;
}

@media (min-width: 1200px) {

    #headerWrap .mobileBtn,
    #headerWrap .mobileCloseBtn {
        display: none !important;
    }
}

@media (max-width: 1580px) {

    #headerWrap .subMenuWrap .subMenuBox h2 {
    }

    #headerWrap .subMenuWrap .subMenuBox .depth02 li {
        width: 100%;
    }

}

@media (max-width: 1199px) {

    #headerWrap .headerTopWrap {
        display: block !important;
    }

    #headerWrap #sitemapBox,
    #headerWrap .sitemapBtn,
    #headerWrap .headerTopBox .menu-box,
    #headerWrap .headerTopBox .btnBox .authBox,
    #headerWrap .headerBottomWrap {
        display: none !important;
    }

    #headerWrap .headerTopBox {
        padding: 12px 0;
    }

    #headerWrap .mobileCloseBtn {
        display: none;
        width: 48px;
        height: 48px;
    }

    #headerWrap .mobileBtn {
        display: block;
        width: 48px;
        height: 48px;
    }

    #mobileMenuBox {
        opacity: 0;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        right: 0;
        max-width: 512px;
        width: 100%;
        min-height: 756px;
        background: linear-gradient(to bottom, #FFFFFF 60%, #EDF4FF);
        border-radius: 0 0 0 40px;
        overflow: hidden;
        z-index: 9999999;
        clip-path: circle(0 at 100% 0);
        transition: clip-path 0.6s cubic-bezier(0, 0, 0.13, 0.99), opacity 0.6s cubic-bezier(0, 0, 0.13, 0.99);
    }

    #mobileMenuBox.active {
        opacity: 1;
        clip-path: circle(180% at 100% 0);
    }

    #mobileMenuBox .mobileAothBox {
        position: relative;
        padding-left: 17px;
        display: flex;
        align-items: center;
        background: linear-gradient(120deg, #454C53 0%, #9AA9B9 50%, #454C53 100%);
        background-size: 200% 100%;
        z-index: 999999;
        animation: skeletonShimmer 9s infinite linear;
    }

    @keyframes skeletonShimmer {

        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }

    }

    .mobilebg {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        height:100dvh;
        z-index: 99999;
        background-color: rgba(30, 43, 55, 0.5);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .mobilebg.active {
        display: block;
    }

    #mobileMenuBox .mobileAothBox .btn {
        padding: 22px 13px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
    }

    #mobileMenuBox .mobileDepth01 {
        flex: 1;
    }

    #mobileMenuBox .mobileDepth01 li h2 a {
        padding-left: 30px;
        display: flex;
        align-items: center;
        width: 190px;
        height: 64px;
        font-size: 20px;
        color: #9EA4AA;
        font-weight: 700;
    }

    #mobileMenuBox .mobileDepth01 .menu_list.active h2 a {
        background: linear-gradient(to right, #EDF4FF, #FFFFFF 40%);
        color: #203C6B;
    }

    /* #mobileMenuBox .mobileDepth01 li:first-child .mobileDepth02 {
        display: block;
    } */

    #mobileMenuBox .mobileDepth02 {
        display: none;
        padding-top: 80px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: calc(100% - 190px);
        z-index: 999;
        border-left: 4px solid #EDF4FF;
    }
    #mobileMenuBox .menu_list.active .mobileDepth02 {
        display: block;
    }

    #mobileMenuBox .mobileDepth02 li h3 a {
        position: relative;
        padding: 8px 60px 8px 22px;
        display: block;
        font-weight: 600;
        background: linear-gradient(90deg, #454C53, #9EA4AA 20%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 16px;
    }
    #mobileMenuBox .mobileDepth02 li.active {
        background-color: var(--blue-50);
    }
    #mobileMenuBox .mobileDepth02 li.active h3 a {
        position: relative;
        background: linear-gradient(90deg, #4D8DFB, #454E58 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #mobileMenuBox .mobileDepth02 li h3.depth03 a::after {
        content: '';
        width: 10px;
        height: 7px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        right: 32px;
        background: url(../images/common/arrow_icon02.svg)no-repeat center / contain;
    }

    #mobileMenuBox .mobileDepth02 li h3.active a::after {
        transform: translateY(-50%) rotate(0);
    }

    #mobileMenuBox .mobileDepth03 {
        display: none;
        padding: 10px 10px 16px 18px;
    }

    #mobileMenuBox .mobileDepth03 li {
        margin-bottom: 8px;
    }

    #mobileMenuBox .mobileDepth03 li:last-child {
        margin-bottom: 0;
    }

    #mobileMenuBox .mobileDepth03 li h4 a {
        padding: 2px 8px;
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        color: #454C53;
        background-color: #E8EBED;
        border-radius: 10px;
    }

    #mobileMenuBox footer {
        margin-top: auto;
        padding: 10px;
        color: #9EA4AA;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        background-color: #fff;
        z-index: 99999;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo {
        gap: 0 12px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 {
        margin-bottom: 2px;
        font-size: 24px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .text .text02 {
        font-size: 6px;
        letter-spacing: 1.3px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .img img {
        width: 38px;
    }

}

@media (max-width: 767px) {

    #headerWrap .headerTopBox .btnBox {
        gap: 0 8px;
    }
    #headerWrap .headerTopBox .snsLinkBox {
        display:none;
    }

    #headerWrap .searchBtnBox {
        width: 40px;
        height: 40px;
        background-color: #88B4FF;
        border: 0;
        overflow: hidden;
    }

    #headerWrap .searchBtnBox .searchBtn {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    #headerWrap .mobileCloseBtn,
    #headerWrap .mobileBtn {
        width: 40px;
        height: 40px;
    }

    #mobileMenuBox {
        top: 64px;
    }

    .mobilebg {
        top: 64px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo {
        gap: 0 9px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .text .text01 {
        font-size: 19px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .text .text02 {
        font-size: 4px;
        letter-spacing: 1.5px;
    }

    #headerWrap .headerTopBox .logoBox h1 a .logo .img img {
        width: 27px;
    }

}

@media (max-width: 480px) {  

    #mobileMenuBox {
        max-width: none;
        min-height: auto;
        bottom: 0;
        border-radius: 0;
        height: calc(100dvh - 64px);
    }

    #mobileMenuBox .mobileDepth02 {
        width: calc(100% - 164px);
    }

    #mobileMenuBox .mobileDepth01 li h2 a {
        padding: 0 20px;
        width: 164px;
        font-size: 18px;
    }

    #mobileMenuBox .mobileDepth02 li h3.depth03 a::after {
        right: 28px;
    }

}

/* 헤더-통합검색 */
#searchContentBox {
    position: absolute;
    top: var(--header-high);
    left: 0;
    right: 0;
    padding: 80px 20px;
    border-top: 1px solid #E8EBED;
    background: linear-gradient(to right, #FFFFFF 70%, #EDF4FF);
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.4s ease;
    z-index: 9999999;
    pointer-events: none;
}

#searchContentBox.active {
    max-height: 100dvh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#searchContentBox .title {
    margin-bottom: 24px;
    text-align: center;
    color: #454C53;
    font-size: 38px;
    font-weight: 500;
}

#searchContentBox .searchInputBox {
    position: relative;
    max-width: 480px;
    margin: 0 auto 36px;
}

#searchContentBox .searchInputBox .searchBtn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    background: url(../images/common/search_icon.svg)no-repeat center;
}

#searchContentBox .searchInputBox input {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px 0 56px;
    height: 64px;
    border: 2px solid #C8DCFF;
    border-radius: 16px;
    font-weight: 600;
}

#searchContentBox .searchInputBox input::placeholder {
    color: #9EA4AA;
}

#searchContentBox .sportsList {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 34px;
    justify-content: center;
}

#searchContentBox .sportsList li a {
    display: block;
    text-align: center;
}

#searchContentBox .sportsList li a .iconBox {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    width: 48px;
    height: 48px;
    border: 1px solid #E8EBED;
    border-radius: 16px;
}

#searchContentBox .sportsList li a h3 {
    font-weight: 500;
    color: #454C53;
    font-size: 14px;
}

@media (max-width: 1199px) {

    #searchContentBox {
        top: 72px
    }

}

@media (max-width: 767px) {

    #searchContentBox {
        top: 64px;
    }

}

@media (max-width: 480px) {

    #searchContentBox {
        padding: 64px 20px;
        background: linear-gradient(to bottom, #FFFFFF 85%, #EDF4FF);
    }

    #searchContentBox .sportsList {
        gap: 12px 0;
    }

    #searchContentBox .sportsList li {
        width: 33.33%;
    }

    #searchContentBox .title {
        margin-bottom: 16px;
        font-size: 29px;
    }

}

/* 푸터 */
#footerWrap {
    margin-top:40px;
}
#footerWrap .footerTopBox {
    padding: 60px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #E8EBED 50%, #FFFFFF 100%);
}

#footerWrap .footerRightBox {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#footerWrap .layoutBox {
    position: relative;
    display: flex;
}

#footerWrap .footerLogoBox {
    display: flex;
    align-items: center;
    margin-right: 119px;
}

#footerWrap .footerLogoBox h1 {
    
}

#footerWrap .footerLogoBox h1 .footerLogoImg01 {
    display: block;
}

#footerWrap .footerLogoBox h1 .footerLogoImg02 {
    display: none;
}

#footerWrap .footerLogoBox .footerSNSBox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 8px;
}

#footerWrap .footerLogoBox .footerSNSBox a:hover img {
    transform: translateY(-7px);
}

#footerWrap .footerLogoBox .footerSNSBox img {
    display: block;
    transition: all .3s;
}

#footerWrap .footerInfoBox {
    display: flex;
    gap: 16px var(--spacing-lm);
    flex-wrap: wrap;
}

#footerWrap .footerInfoBox .box {
 
}

#footerWrap .footerInfoBox .box:last-child {
    margin-bottom: 0;
}

#footerWrap .footerInfoBox .box span {
    display: block;
    font-size: 14px;
    color: #000;
    font-family: 'Retrosans';
}

#footerWrap .footerInfoBox .box em {
    display: block;
    font-weight: 500;
    color: #454C53;
}

#footerWrap .footerApplicationBox {
    padding-top: 24px;
}

#footerWrap .footerApplicationBox .applicationBtn {
    margin-bottom: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 16px;
    max-width: 243px;
    width: 100%;
    height: 96px;
    border-radius: 40px;
    background: linear-gradient(to bottom, #727170, #4F5F7A, #4A82E2);
    color: #fff;
    font-weight: 700;
}

#footerWrap .footerApplicationBox .applicationBtn::before {
    content: '';
    width: 48px;
    height: 48px;
    background: url(../images/common/footer_icon02.svg)no-repeat center;
}

#footerWrap .copy {
    font-size: 12px;
    color: #9EA4AA;
    font-weight: 700;
}
#footerWrap .footerBottomBox {
    background: linear-gradient(to right, #4B5A6C 0%, #17283B 50%, #335377 100%);
}

#footerWrap .footerBottomBox .border {
    height: 4px;
    background-color: #F9F7F1;
    border: 1px solid #BF9F17;
}

#footerWrap .footerBottomBox .footerLinkBox {
    width: 100%;
    max-width: 1480px;
    height: 64px;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: space-between;
}

#footerWrap .footerBottomBox .footerLinkBox .link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 140px;
    font-size: 14px;
    font-weight: 700;
    color: #E4DAB1; 
    gap: 16px;
}

#footerWrap .footerBottomBox .footerLinkBox .link::after {
    content: '';
    width: 21px;
    height: 10px;
    background: url(../images/common/arrow_icon01.svg)no-repeat center;
}

@media (max-width: 1199px) {

    #footerWrap .footerLogoBox {
        margin-right: 64px;
    }

}

@media (max-width: 767px) {
    #footerWrap .layoutBox {
        flex-direction: column;
        gap: 24px;
    }

    #footerWrap .footerInfoBox {
        padding: 0;
        flex-direction: column;
    }

    #footerWrap .footerTopBox {
        padding: 40px 0 24px;
    }

    #footerWrap .footerRightBox {
        flex-direction: column;
        gap: 24px 0;
    }

    #footerWrap .footerApplicationBox {
        padding: 0;
        align-items: flex-start;
    }

    #footerWrap .footerApplicationBox .applicationBtn {
        margin-bottom: 40px;
    }

    #footerWrap .footerLogoBox h1 img {
        width: 154px;
    }

    #footerWrap .footerInfoBox .box span {
        margin-bottom: 3px;
    }
    #footerWrap .footerInfoBox .box em {
        font-size:14px;
    }

}

@media (max-width: 576px) {

    #footerWrap .footerLogoBox {
        margin: 0;
    }  

    #footerWrap .footerLogoBox .footerSNSBox {
        justify-content: center;
    }

    #footerWrap .copy {
        width: 100%;
    }

    #footerWrap .footerBottomBox .footerLinkBox .link {
        width: auto;
        gap: 0 16px;
    }

}

@media (max-width: 414px) {

    #footerWrap .footerBottomBox .footerLinkBox {
        padding: 26px;
        flex-direction: column;
        gap: 19px 0;
        height: auto;
    }

    #footerWrap .footerBottomBox .footerLinkBox .link {
        width: 100%;
    }

}

/* 모집 사이드바*/
.applicationSideBox {
    position: fixed;
    top: 210px;
    left: 8px;
    z-index: 999;
    transition: all .5s;
}

.apply-program h1 {
    text-align: center;
    font-family: 'Retrosans';
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 1.3;
}

.apply-program a {
    position: relative;
    width: 128px;
    height: 269px;
    border-radius: 40px;
    background: linear-gradient(to bottom, #F98429, #FECCA8);
    display: block;
    padding-top: 32px;
    overflow: hidden;
}

.apply-program a::after {
    content: '';
    width: 100%;
    height: 228px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -45px;
    background: url(../images/common/aside_img.png)no-repeat center / cover;
    pointer-events: none;
}

.apply-program .applicationBtn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    display: block;
    width: 88px;
    height: 33px;
    line-height: 33px;
    border-radius: 16px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1B1D1F;
    z-index: 9;
}

.apply-program .infoText {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 73px;
    height: 34px;
    line-height: 34px;
    border-radius: 8px;
    text-align: center;
    background-color: #121106;
    font-weight: 700;
    color: #83FF04;
    box-shadow: 0 10px 20px rgba(94, 185, 14, 0.3);
    animation: effect 1s alternate infinite;
}

.apply-program .infoText::after {
    content: '';
    width: 14px;
    height: 7px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
    background: url(../images/common/arrow_icon03.svg)no-repeat center;
}




.user-signup-banner {
    margin-top: 20px;
}
.user-signup-banner a {
    width: 128px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-s);
    border-radius: var(--radius-l);
    background: linear-gradient(0deg, var(--blue-400), var(--blue-500));
    padding: var(--spacing-ms);
    box-shadow: 10px 10px 40px var(--blue-50);
}
.user-signup-banner a .tit-box {
    
}
.user-signup-banner a .tit-box img {
    padding: 8px 0;
}
.user-signup-banner a .tit-box h1 {
    font-size:18px;
    color: var(--white);
}
.user-signup-banner a .applicationBtn {
    display: block;
    width: 88px;
    height: 33px;
    line-height: 33px;
    border-radius: 16px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1B1D1F;
    z-index: 9;
}


@keyframes effect {

    0% {
        transform: translateX(-50%) rotate(-12deg);
    }

    100% {
        transform: translateX(-50%) rotate(12deg);
    }

}

@media (max-width: 1648px) {

    .apply-program {
        display: none;
    }

}

.scroll-top-btn {
    border: 2px solid var(--blue-900);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    bottom: 60px;
    right: var(--spacing-xs);
    width: 56px;
    height: 56px;
    box-shadow: 10px 10px 40px 0px #0000001a;
    z-index: 90;
    border-radius: var(--spacing-s);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.8);   
    font-size:12px;
    font-weight:500;
    color:var(--blue-900);
}