/* 
 * Naver v3.1.2 - 2015-04-04 
 * A jQuery plugin for responsive navigation. Part of the Formstone Library. 
 * http://formstone.it/naver/ 
 * 
 * Copyright 2015 Ben Plum; MIT Licensed 
 */

/* 
 * Naver v3.1.2 - 2015-04-04 
 * A jQuery plugin for responsive navigation. Part of the Formstone Library. 
 * http://formstone.it/naver/ 
 * 
 * Copyright 2015 Ben Plum; MIT Licensed 
 */

/* 
 * Naver v3.1.2 - 2014-11-25 
 * A jQuery plugin for responsive navigation. Part of the Formstone Library. 
 * http://formstone.it/naver/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */

@media screen and (max-width:1190px) {

    .naver {
        margin: 0;
    }

    .naver,
    .naver *,
    .naver *:before,
    .naver *:after {
        box-sizing: border-box;
        width: 100%;
        top:10px;
    }

    .naver-handle {
        width: 100%;
        background-color: transparent;
        border: none;
        color: #000;
        cursor: pointer;
        display: none;
        font-size: 14px;
        /*文字サイズ*/
        margin: 0;
        padding: 10px 15px;
        /*ナビの高さ余白*/
        position: relative;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .naver-handle:after {
        height: 1px;
        width: 25px;
        position: absolute;
        top: 0;
        right: 30px;
        bottom: 0;
        background: #000;
        box-shadow: 0 7px 0 #000, 0 -7px 0 #000;
        content: '';
        display: block;
        margin: auto 0;
        transition: all .4s;
    }

    .naver.open .naver-handle:after {
        width: 15px;
        height: 15px;
        background: transparent;
        border: none;
        box-shadow: none;
        color: #000;
        content: "\00d7";
        font-size: 22px;
        font-weight: 700;
        line-height: 15px;
        text-align: center;
        transition: all .4s;
    }

    .naver-wrapper {
        border: none;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .naver-container:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        line-height: 0;
        visibility: hidden;
    }

    .naver.enabled .naver-handle {
        display: block;
    }

    .naver.enabled .naver-wrapper {
        height: 0px;
        overflow: hidden;
    }

    .naver.enabled .naver-container {
        background: #000;
        border: none;
    }

}
