.sp {
    display: none !important;
}
.inner {
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
.hidden {
    visibility: hidden;
}
/* header */
#top-head {
    background-image: url(../img/top-bar.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 30px 0 0;
    line-height: 1;
    z-index: 999;
    height: 180px;
}

#top-head a,
#top-head {
    background-color: #ffface;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#global-nav.pc ul {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    padding-top: 2vw;
}
#global-nav ul li.eikyu {
    padding: 1vw 3vw;
}
#global-nav ul li.eikyu img {
    max-width: 12vw;
}
    
#global-nav li.icon-top a:before {
    content: url(../img/head-icon-01.jpg);
}
#global-nav li.icon-item a:before {
    content: url(../img/head-icon-02.jpg);
}
#global-nav li.icon-heart a:before {
    content: url(../img/head-icon-03.jpg);
}
#global-nav li.icon-company a:before {
    content: url(../img/head-icon-04.jpg);
}
#global-nav li.icon-contact a:before {
    content: url(../img/head-icon-05.jpg);
}
#global-nav li.icon-shop a:before {
    content: url(../img/head-icon-06.jpg);
}
#global-nav ul li a {
    display: block;
    width: 11vw;
    white-space: nowrap;
}
#global-nav ul li.bar img {
    max-width: 1vw;
}
.jpn, .eng {
    font-size: 1vw;
}
.jpn {
    padding-top: 10px;
    color: #c3610a;
}
.eng {
    color: #f7b500;
}

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #ffface;
}
#top-head.fixed #global-nav ul li a {
    color: #ffface;
    padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #bb5f1e;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle p {
    position: absolute;
    top: 30px;
    font-size: 12px;
    font-weight: bold;
    color: #bb5f1e;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width: 640px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }

    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
        height: auto;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #ffface;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #mobile-head .logo.sp img {
        height: 50px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #ffface;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
        
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    #top-head .eng {
        font-size: 14px;
    }
}