@charset "utf-8";

.gnbMenu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
    width: 100%;
    height: 61px;
    border-top: 1px solid #eee;
    background: #fff;
    box-sizing: border-box;
    z-index: 999;
}

.gnbMenu ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-sizing: border-box;
}

.gnbMenu li {
    position: relative;
}

.gnbMenu li a {
    display: block;
    padding-top: 28px;
    font-size: 12px;
    font-weight: 500;
}

.gnbMenu li.current a {
    color: #7ba34d;
}

.gnbMenu li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gnbMenu .home a:before {
    width: 20px;
    height: 20px;
    background: url(../images/ic_home.png) no-repeat;
    background-size: cover;
}

.gnbMenu .reservation a:before {
    width: 20.5px;
    height: 21px;
    background: url(../images/ic_reservation.png)no-repeat;
    background-size: cover;
}

.gnbMenu .member a:before {
    width: 22.5px;
    height: 20px;
    background: url(../images/ic_member.png)no-repeat;
    background-size: cover;
}

.gnbMenu .statics a:before {
    width: 19px;
    height: 20px;
    background: url(../images/ic_statics.png)no-repeat;
    background-size: cover;
}

.gnbMenu .admin a:before {
    width: 20px;
    height: 20px;
    background: url(../images/ic_admin.png)no-repeat;
    background-size: cover;
}

.gnbMenu .home.current a:before {
    background: url(../images/ic_home_on.png) no-repeat;
    background-size: cover;
}

.gnbMenu .reservation.current a:before {
    background: url(../images/ic_reservation_on.png)no-repeat;
    background-size: cover;
}

.gnbMenu .member.current a:before {
    background: url(../images/ic_member_on.png)no-repeat;
    background-size: cover;
}

.gnbMenu .statics.current a:before {
    background: url(../images/ic_statics_on.png)no-repeat;
    background-size: cover;
}

.gnbMenu .admin.current a:before {
    background: url(../images/ic_admin_on.png)no-repeat;
    background-size: cover;
}

footer {
    margin: 10px 18px;
    padding: 30px 20px;
    background: #eee;
}

.footer {
    text-align: center;
}

.footer h1 {
    font-size: 14px;
    font-weight: 500;
    font-family: 'gmarketsans';
    /*color: #fff;*/
    margin-bottom: 19px;
}

.footer .addr {
    font-size: 11px;
    font-weight: 200;
    /*color: #fff;*/
    line-height: 18px;
    margin-bottom: 26px;
}

.footer .terms {
    font-size: 0;
}

.footer .terms a {
    display: inline-block;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #00c3ff;
}

.footer .terms a~a {
    margin-left: 14px;
}

.footer .copy {
    font-size: 10px;
    font-weight: 200;
    /*color: #fff;*/
    margin-top: 25px;
}