body {
    padding-top: 70px;
}

header {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    line-height: 1;
    z-index: 9;
    height: 70px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    background: #fff;
}

header .inner {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

header .inner .lng {
    position: absolute;
    top: 5px;
    right: 0;
}

header .inner .lng a {
    display: inline-block;
    text-align: center;
    width: 40px;
    line-height: 20px;
    border: 1px solid #ccc;
    color: #999;
    margin: 0 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    text-decoration: none;
    transition: .3s;
}

header .inner .lng a.current,
header .inner .lng a:hover {
    background: #6e8da7;
    color: #fff;
    border: 1px solid #6e8da7;
}

header h1 {
    margin: 0;
}

header h1 img {
    width: 188px;
    height: 70px;
}

header #logo {
    float: left;
}

#navigation {
    float: right;
    width: 800px;
    margin-top: 13px;
}

@media only screen and (max-width: 1024px) {

#navigation {
    width: 710px;
}

header .inner {
    min-width: 820px;
}

}

#navigation ul {
    display: table;
    width: 100%;
    padding: 25px 0;
}

#navigation ul li {
    border-left: 1px solid #b1b4ba;
    display: table-cell;
}

#navigation ul li:last-child {
    border-right: 1px solid #b1b4ba;
}

#navigation ul li a {
    display: block;
    text-align: center;
    width: 100%;
    padding: .2rem 1rem;
    line-height: 1;
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    color: #5b5e60;
    letter-spacing: .1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: .3s;
}

#navigation ul li a:hover {
    color: #6a93b0;
}
 
/* Toggle Button */
#toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#toggle div {
    position: relative;
}
#toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#toggle span:nth-child(1) {
    top: 0;
}
#toggle span:nth-child(2) {
    top: 11px;
}
#toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width: 834px) {
    header {
        width: 100%;
        padding: 0;
        height: 56px;
    }
    header {
        top: 0;
        position: fixed;
        margin-top: 0;
    }

    header .inner {
        width: 100%;
        min-width: auto;
    }
    /* Fixed reset */
    header.fixed {
        padding-top: 0;
        background: transparent;
    }

    header .inner .lng {
        top: 16px;
        right: 65px;
        z-index: 1000;
    }
    #logo {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    header.fixed h1,
    header h1 {
    padding: 0 0 0 11px;
    }
    header h1 img {
    width: 150px;
    height: 56px;
    }
    #navigation {
        position: absolute;
        top: -2000px;
        background: rgba(22,29,49,.95);
        width: 100%;
        height: 2000px;
        overflow-y: hidden;
        text-align: center;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #navigation ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        display: block;
        padding: 0;
    }
    #navigation ul li {
        float: none;
        position: static;
        display: block;
    }
    header #navigation ul li a,
    header.fixed #navigation ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
        border-bottom: 1px solid #7a8195;
    }
    #navigation ul li {
        border-left: none;
    }

    #navigation ul li:last-child {
        border-right: none;
    }  

    #toggle {
        display: block;
    }
    .open #toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    .open #navigation {
        /* #navigation top + #mobile-head height */
        -moz-transform: translateY(2043px);
        -webkit-transform: translateY(2043px);
        transform: translateY(2043px);
    }
}