.hd-top {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.hd-top .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hd-top a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    font-size: 1rem;
}

.hd-top .gunsan a{
    color: #192A89;
    font-size: bold;
}

.hd-top .gunsan img{
    width: auto;
    margin-right: 5px;
}

.hd-top .gunsan span{
    display: none;
}

.hd-top .member-area {
    display: flex;
}

.hd-top .member-area a {
    margin-left: 10px;
}

.hd-top .member-area .hide {
    display: none;
}

.hd-top .member-area .point {
    color: #0DA043;
    font-weight: 600;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.logo a {
    width: 200px;
}

.logo img {
    max-width: 100%;
}

.nav .main-menu {
    display: flex;
    text-align: center;
}

.nav .main-menu>li {
    position: relative;
    width: 16.66%;
    font-size: 1.125rem;
}

.nav .main-menu>li a {
    line-height: 60px;
    transition: all 0.2s;
}

.nav .main-menu span{
    position: absolute;
    bottom: 4px;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

.nav .main-menu span.green{
    color: #0DA043;
}

.nav .main-menu span.orange{
    color: orange;
}

.nav .sub-menu {
    transition: all 0.2s;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 9;
    height: 0;
    overflow: hidden;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav .sub-menu>li {
    width: 100%;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: left;
    line-height: 45px;
}

.nav .sub-menu>li:hover a {
    color: #0DA043;
    background-color: #F8FFF9;
}

.nav .sub-menu>li a {
    display: block;
    padding: 0 20px;
}

.nav .sub-menu>li:last-child {
    border-bottom: none;
}

.mo-menubtn,
.mo-cont,
.nav .icon-cell{
    display: none;
}

@media screen and (min-width: 1025px) {

    .nav .main-menu li:hover>.sub-menu {
        height: auto;
    }

    .hd-top .gunsan img{
        width: 150px;
        margin-right: 5px;
    }

    .hd-top .gunsan span{
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 600;
    }
}

@media screen and (max-width: 1024px) {
    .mo-menubtn,
    .mo-cont{
        display: block;
    }

    .nav-wrap {
        position: relative;
    }

    .hd-top a {
        line-height: 30px;
        font-size: 0.875rem;
    }

    .hd-top .gunsan img{
        width: 120px;
        margin-right: 5px;
    }

    .logo {
        padding: 20px 0;
    }

    .logo a {
        width: 120px;
    }

    .mo-menubtn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        cursor: pointer;
    }

    .mo-menubtn i {
        color: #42433E;
    }

    .over {
        position: fixed;
        display: none;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 8;
        background: rgba(0, 0, 0, 0.5);
    }

    .over.on {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh;
        z-index: 9;
        background-color: #fff;
        display: none;
    }

    .nav.on {
        display: block;
    }

    .mo-cont {
        position: relative;
    }

    .mo-closebtn {
        position: absolute;
        top: 0;
        right: 0;
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
        cursor: pointer;
    }

    .mo-closebtn i {
        color: #42433E;
    }

    .mo-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
    }

    .mo-logo img {
        width: 100px;
    }

    .mo-member {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: #eaeef3;
        height: 50px;
        padding: 0 20px;
    }

    .mo-member a {
        background-color: #192A89;
        color: #fff;
        border-radius: 50px;
        padding: 5px 15px;
    }

    .mo-member a.hide {
        display: none;
    }

    .nav #wrap.inner {
        padding: 0;
    }

    .nav .main-menu {
        flex-wrap: wrap;
        text-align: left;
    }

    .nav .main-menu>li {
        position: relative;
        width: 100%;
        line-height: 60px;
        font-size: 1rem;
        padding: 0 20px;
        border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    }

    .nav .main-menu>li a {
        transition: all 0.2s;
        display: block;
        padding: 0 35px;
    }

    .nav .main-menu span{
        position: absolute;
        text-align: left;
    }

    .nav .main-menu>li strong.su a {
        pointer-events: none;
        cursor: pointer;
    }
    
    .nav .icon-cell{
        position: absolute;
        left: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 60px;
    }

    .nav .sub-menu {
        position: relative;
        top: auto;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-radius: 10px;
    }

    .nav .sub-menu>li {
        border-bottom: solid 1px rgba(0, 0, 0, 0.1);
        background-color: #eaeef3;
        line-height: 50px;
    }

    .nav .sub-menu>li:last-child {
    }

    .nav .sub-menu>li:hover a {
        color: #192A89;
        background-color: rgba(25,42,137,0.1);
    }

    .nav .sub-menu>li a {
        display: block;
        padding: 0 15px;
    }

    .nav .sub-menu>li:last-child {
        border-bottom: none;
    }

    .nav .main-menu li.on .sub-menu {
        height: auto;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 768px) {

    .logo {
        padding: 10px 0;
    }

    .logo a {
        width: 100px;
    }

    .nav {
        width: 80%;
    }

    .mo-closebtn i {
        color: #42433E;
    }

    .mo-member {
        height: 45px;
    }

    .nav .main-menu>li {
        position: relative;
        line-height: 50px;
    }
    
    .nav .icon-cell{
        height: 50px;
    }

    .nav .sub-menu {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-radius: 5px;
    }

    .nav .sub-menu>li {
        line-height: 45px;
    }

    .nav .main-menu li.on .sub-menu {
        margin-bottom: 10px;
    }

}