@charset "UTF-8";

/* ----------------------------------------
 *  Responsive Style:
 * ---------------------------------------- */


/*@media only screen and (max-width: 480px) { */

@media screen and (max-width: 834px) and (orientation: portrait) {
    .lastSidebar {
        width: 80%;
    }
}


/*@media only screen and (max-width: 767px) { */

@media screen and (max-width: 834px) and (orientation: portrait) {
    /* ----------------------------------------
 *  Core Style:
 * ---------------------------------------- */
    .lastSidebar {
        width: 30%;
        height: 100%;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9998 !important;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        min-width: 250px;
    }
    #lastOverlay {
        width: 100%;
        height: 100%;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        /*z-index: 9997;*/
        z-index: 1;
        background: rgba(0, 0, 0, 0.5);
    }
    body.noscroll {
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        overflow: hidden;
    }
    /* ----------------------------------------
 *  User Style:
 * ---------------------------------------- */
    #slideMenu {
        display: none;
    }
    #slideMenu h2 {
        margin: 0;
        padding: 24px 16px;
    }
    .globalNavi {
        border-top: dotted 1px #333;
    }
    .globalNavi li {
        border-bottom: dotted 1px #333;
    }
    .globalNavi li a {
        padding: 0 16px;
        display: block;
        line-height: 3.2em;
    }
    .triggerBtn {
        width: 32px;
        height: 32px;
        display: block;
        position: fixed;
        top: 14px;
        right: 18px;
        left: auto;
        z-index: 9999;
        background: none;
    }
    #menuTrigger,
    #menuTrigger span {
        display: inline-block;
        box-sizing: border-box;
        transition: all .4s;
    }
    #menuTrigger {
        width: 100%;
        height: 100%;
        position: absolute;
        top: -5px;
        left: 10px;
    }
    #menuTrigger:active {
        background: rgba(255, 255, 255, 0.4);
    }
    #menuTrigger span {
        width: 28px;
        height: 4px;
        position: absolute;
        left: 2px;
        border-radius: 2px;
        background-color: #E50012;
    }
    #menuTrigger span:nth-of-type(1) {
        top: 4px;
    }
    #menuTrigger span:nth-of-type(2) {
        top: 14px;
    }
    #menuTrigger span:nth-of-type(3) {
        bottom: 4px;
    }
    #menuTrigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-45deg);
        transform: translateY(11px) rotate(-45deg);
    }
    #menuTrigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    #menuTrigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }
}