/* ----------- Common ----------- */
/* max-width: 768px */
@media only screen
and (max-width: 768px) {

    /*******************
        hidden
    *******************/
    .visible-xs {
        display: block !important;
    }
    .hidden-xs {
        display: none !important;
    }

    /*******************
        layout
    *******************/
    #wrap {
        min-width: 100%;
    }
    /* inner layout box */
    #wrap .inner-wrap {
        width: 100%;
    }

    /* #wrap.main */
    #wrap.main {
        min-width: 100%;
        background: none;
        background-size: cover;
    }

    /*******************
        mobile-nav
    *******************/
    .mobile-nav {
        display: block !important;
        position: fixed;
        width: 100%;
        height: 50px;
        line-height: 50px;
        background-color: rgba(255,255,255,1);
        box-shadow: 0 2px 7px rgba(0,0,0,0.25);
        z-index: 100;
    }

    /* btn-connect */
    .btn-connect {
        width: 100%;
        height: 50px;
    }

    /* login */
    .btn-connect.login li {
        float: left;
        width: 50%;
    }
    .btn-connect.login li a {
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-size: 13px;
        color: #eee;
        border-right: 1px solid #777;
        background-color: #666;
    }
    .btn-connect.login li:last-child a {
        border-right: 0;
        border-left: 1px solid #555;
    }
    .btn-connect.login li a:hover {
        color: #fff;
        background-color: #0690FB;
    }
    .btn-connect.login li a i {
        margin: 0 5px 0 0;
    }

    /* logout */
    .btn-connect.logout li {
        display: block;
        width: 100%;
        height: 50px;
        padding: 0 0 0 30px;
        line-height: 50px;
        text-align: left;
        font-size: 13px;
        color: #fff;
        border-right: 0;
        background-color: #424242;
    }
    .btn-connect.logout li b {
        color: #fff;
    }
    .btn-connect.logout li a {
        margin-left: 10px;
        font-size: 10px;
        color: #e0effc;
    }
    .btn-connect.logout li a:hover {
        color: #fff;
    }
    .btn-connect.logout li i {
        margin: 0 5px 0 0;
    }

    nav .dropdown-backdrop {
        display: none;
    }
    .drawer-open .drawer-overlay {
        z-index: 10;
    }

    /* logout */
    .btn-connect.logout li {
        background-color: #424242;
        /*background-color: #2690ea;*/
    }

    /* logo */
    .logo {
        position: relative;
        left: 10px;
        top: 12px;
    }
    .logo a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
    }
    .logo a img {
        height: 22px;
    }
    .logo a b {
        font-size: 24px;
        font-weight: 900;
        color: #000 !important;
        letter-spacing: -0.75px;
    }

    /* drawer */
    .drawer-overlay {
        background-color: rgba(0,0,0,0.75);
    }

    /* hanburger button */
    .mobile-nav .drawer-hamburger {
        width: 3rem;
        padding: 15px 1.5rem;
    }
    .drawer--right.drawer-open .drawer-hamburger {
        right: 24rem;
    }
    .drawer-open .drawer-hamburger-icon:after,
    .drawer-open .drawer-hamburger-icon:before {
        background-color: #fff;
    }

    /* drawer-nav */
    .drawer--right .drawer-nav {
        position: fixed;
        top: 0;
        right: -24rem;
        overflow: hidden;
        width: 24rem;
        height: 100%;
        color: #222;
        background-color: #323232;
        z-index: 2;
    }
    .drawer--right .drawer-nav .inner-wrap {
        position: relative;
    }

    /* drawer-nav > login-area */
    .drawer-nav .login-area {

    }

    /* drawer-nav > drawer-menu */
    .drawer-menu {
        text-align: center;
        background-color: #fff;
    }

    /* drawer-menu > mobile-gnb-title */
    .drawer-menu .mobile-gnb-title {
        overflow: hidden;
        width: 24rem;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 16px;
        color: #fff;
        background-color: #323232;
    }
    /* depth1 */
    .drawer-menu > li {
        position: relative;
        line-height: 1.1;
    }
    .drawer-menu-item {
        display: block;
        /*padding: 15px 30px 15px 20px;*/
        padding: 25px 10px;
        text-align: left;
        font-size: 15px;
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #dfdfdf;
    }
    .drawer-menu > li:last-child .drawer-menu-item {
        border-bottom: 0;
    }
    .drawer-dropdown .drawer-caret {
        position: absolute;
        right: 10px;
        top: 25px;
    }
    /* depth2 */
    .drawer-dropdown-menu-item {
        display: block;
        padding: 10px 20px 10px 30px;
        line-height: 1.1;
        font-size: 13px;
        color: #767676;
        border-bottom: 1px solid #dfdfdf;
        background-color: #eee;
    }

    /* drawer-nav > mobile-utility-area */
    .mobile-utility-area {
        padding: 0;
    }

    /* d-day */
    .mobile-utility-area .d-days {
        padding: 0;
        position: static;
        width: 100%;
        height: 140px;
        margin-top: 0;
        text-align: center;
        background-color: #2690ea;
    }
    .mobile-utility-area .d-days .today {
        padding: 25px 0 5px;
        line-height: 1.1;
        font-size: 15px;
        color: #aaccf5;
    }
    .mobile-utility-area .d-days .title {
        /*line-height: 100%;*/
        margin: 5px 0 3px;
        line-height: 1.1;
        font-size: 15px;
        font-weight: 300;
        color: #fff;
    }
    .mobile-utility-area .d-days .d-date {
        line-height: 100%;
        font-size: 42px;
        font-weight: 700;
        color: #fff;
    }

    /*******************
        header
    *******************/
    #header {
        display: none !important;
    }

    /*footer*/
    #footer {
        padding: 30px 20px;
    }
    .copyright {
        font-size: 14px;
    }

}

/* max-width: 480px */
@media only screen
and (max-width: 480px) {

    /*******************
        #footer
    *******************/
    /* copyright */
    .copyright {
        font-size: 13px;
    }

}
