.h_container {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 2.5fr 1fr 0fr;
    grid-template-rows: 1fr;
    border-bottom: 1px solid #585858;
    background-color: #ffffff;
}

.headerIcon_box {
    margin-left: 10vw;
}

.headerIcon_wrap {
    width: 8vw;
    height: auto;
}

.headerIcon_wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.headerDate_box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    margin-right: 1vw;
}

.headerDate {
    font-size: 2vh;
}

.headerTime {
    font-size: 2.5vh;
    color: #2a9d82;
}

.topMenu_box {
    font-size: 2.8vh;
}

.menu + .menu {
    margin-left: 5vh;
}

.menu:hover {
    cursor: pointer;
    color: #2a9d82;
}

.menuBtn {
    height: 7.6vh;
}

.activeBar {
    width: 100%;
    height: 0.4vh;
    background-color: #ffffff;
}

.logoutBtn_wrap {
    width: 4.5vh;
    height: 4.5vh;
    margin-right: 10vw;
    cursor: pointer;
}

.logoutBtn_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    #ultra_popup::before {
        font-size: clamp(44px, 15vw, 120px) !important;
        text-align: center !important;
        letter-spacing: 2px !important;
    }

    .h_container {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        height: auto;
        border-bottom: 1px solid #d0d0d0;
    }

    .headerIcon_box {
        grid-column: 1;
        grid-row: 1;
        margin-left: 12px;
        align-items: center;
        padding: 8px 0;
    }

    .headerIcon_wrap {
        width: 130px;
        height: auto;
    }

    .headerIcon_wrap img {
        width: 100%;
        height: auto;
        display: block;
    }

    .headerDate_box {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        margin-right: 0;
        padding: 6px 8px;
    }

    .headerDate {
        font-size: 11px;
        text-align: right;
    }

    .headerTime {
        font-size: 15px;
        text-align: right;
    }

    .logoutBtn_box {
        grid-column: 3;
        grid-row: 1;
        display: flex;
        align-items: center;
        padding-right: 12px;
    }

    .logoutBtn_wrap {
        width: 32px;
        height: 32px;
        margin-right: 0;
    }

    .topMenu_box {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-top: 1px solid #e8e8e8;
        font-size: 14px;
        padding: 0;
    }

    .menu {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu + .menu {
        margin-left: 0;
        border-left: 1px solid #e8e8e8;
    }

    .menuBtn {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }

    .activeBar {
        width: 100%;
        height: 3px;
        background-color: #ffffff;
    }
}
