/*
    서브비주얼
*/
#subVisualBanner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 25rem;
    background-repeat: no-repeat;
    background-size: cover;
}

#subVisualBannerTxt {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

#subVisualBannerTxt > h2 {
    color: #FFF;
    text-align: center;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 4.0625rem; /* 162.5% */
    letter-spacing: -0.05rem;
}

#subVisualBannerTxt > p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

#subVisualBannerTxt > p * {
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem; /* 162.5% */
    letter-spacing: -0.02rem;
    display: inline-flex;
    align-items: center;
}

#subVisualBannerTxt > p > a > i {
    font-size: 1.5rem;
}

/*
    서브메뉴
*/
#subVisualMenu {
    position: relative;
    width: 100%;
    height: 0px;
    padding-bottom: 1.69rem;
}

#subVisualMenuWrapper {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 0 2rem;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

#subVisualMenuList {
    display: flex;
    align-items: center;
}

#subVisualMenuList > li > a {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    color: var(--gray400, #3A3A3A);
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625rem; /* 144.444% */
    letter-spacing: -0.0225rem;
}

#subVisualMenuList > li.current > a {
    color: var(--yellow300, #FB0);
}

@media (max-width: 768px) {
    #subVisualMenuWrapper {
        max-width: 100%;
        padding: 0;
    }

    #subVisualMenuList {
        overflow-x: auto;
        white-space: nowrap;
    }
}