.menu_section {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 102;
    position: sticky;
    top: 0px;
    background-color: #ffffff;
    border-bottom: 1px solid #d5d5d5;
}
.gnb {
    padding: 10px 50px 10px 50px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}
.gnb:hover {
    color:#0265a8
}
.gnb_hambuger {
    position: absolute;
    left: 60px;
}
.gnb_hambuger_M {
    display: none;
}
.gnb_hambuger_sub2 {
    position: absolute;
    background-color: #ffffff;
    left: 20px;
    top: 60px;
    padding: 5px 20px 5px 20px;
    z-index: 990;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: none;
}
.gnb_hambuger_sub {
    position: absolute;
    background-color: #ffffff;
    left: 0;
    top: 40px;
    padding: 5px 20px 5px 20px;
    z-index: 990;
    display: none;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#sidemenu:checked ~ .gnb_hambuger_sub,
#sidemenu2:checked ~ .gnb_hambuger_sub2 {
    display: block;
}
.gnb_hambuger_sub_list {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border-bottom: 1px solid #ededed;
    color: #000000;
}
.gnb_hambuger_sub_list:last-child {
    border-bottom: 0;
}
.gnb_sub {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 990;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: none;
}
.gnb:hover > .gnb_sub {
    display: block;
}
.gnb_sub_list {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 5px 20px 5px 20px;
    border-bottom: 1px solid #ededed;
    color: #000000;
    min-width: 150px;
}
.gnb_sub_list:hover {
    background-color: #ededed;
}
.gnb_sub_list:last-child {
    border-bottom: 0;
}
@media (max-width: 1024px) {
    .gnb {
        padding: 10px 30px 10px 30px;
        font-size: 16px;
    }
    .gnb_hambuger {
        left: 40px;
    }
}
@media (max-width: 768px) {
    .gnb {
        padding: 10px 20px 10px 20px;
        font-size: 14px;
    }
    .gnb_hambuger {
        left: 20px;
    }
}
@media (max-width: 425px) {
    .menu_section {
        display: none;
    }
    .gnb_hambuger_M {
        display: block;
    }
    #main_space div {
        font-size: 14px;
        margin-right: 10px;
    }
}