@charset "UTf-8";





#pc-header {
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--baemin-color-1);
    padding: 20px;
    box-sizing: border-box;
}

#pc-header .left-layout .home-link {
    display: block;
    width: 300px;
}

#pc-header .left-layout .home-link .home-logo {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 600px) {
    #pc-header {
        display: block;
        padding: 0;
    }

    #pc-header .left-layout {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    #pc-header .left-layout .home-link {
        width: 140px;
        padding: 20px;
    }

    #pc-header .right-layout {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



#pc-header .right-layout {
    height: 100%;
}

#pc-header .right-layout .menu-list-wrapper {
    display: flex;
    align-items: center;
}

#pc-header .right-layout .menu-list-wrapper .menu-box {
    position: relative;
    margin-right: 10px;
}

#pc-header .right-layout .menu-list-wrapper .menu-box:last-child {
    margin-right: 0;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px 40px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.18px;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .sub-menu-box {
    position: absolute;
    z-index: 100;
    top: 42px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    max-height: 0px;
    background-color: var(--baemin-color-1);
    border: 0px solid #fff;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.4s ease;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .sub-menu-box:hover {
    max-height: 1000px;
    border-width: 1px;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .menu-link:hover ~ .sub-menu-box {
    max-height: 1000px;
    border-width: 1px;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .sub-menu-box .sub-menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.16px;
    transition: all 0.4s ease;
}

#pc-header .right-layout .menu-list-wrapper .menu-box .sub-menu-box .sub-menu-link:hover {
    color: #222;
    font-weight: 700;
}