.inner{
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.inner:after{
    content: "";
    clear: both;
    display: block;
}

/* header */
header{
    /*border-bottom: solid 1px #dcdcdc;*/
}
#top-head{
    width: 100%;
    padding: 0;
    top: 0;
    position: fixed;
    /*margin-top: 0;*/

    /*top: -100px;*/
    /*position: absolute;*/
    /*margin: 100px auto 0;*/
    margin: 0 auto;
    /*padding: 30px 0 0;*/
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head{
    color: #4D4D4D;
    text-decoration: none;
}
/* Fixed reset */
#top-head.fixed{
    padding-top: 0;
    background: transparent;

    margin-top: 0;
    top: 0;
    position: fixed;
    height: 55px;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#mobile-head{
    background: #fff;
    width: 100%;
    height: 60px;
    z-index: 999;
    position: relative;
    /*border-bottom: solid 1px #dcdcdc;*/
}
#top-head.fixed .logo,
#top-head .logo{
    position: absolute;
    left: 13px;
    top: 13px;
    /*color: #333;*/
    /*font-size: 26px;*/
    float: left;
    width: 50%;
}
#top-head .logo a{
    display: block;
}
#top-head .logo a img{
    width: 100%;
}

#global-nav{
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -502px;
    background: #b3b3b3;
    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;*/

    /*list-style: none;*/
    /*position: absolute;
    right: 0;
    bottom: 0;*/
    /*font-size: 14px;*/
}
#global-nav ul li{
    float: none;
    position: static;
    border-bottom: solid 1px #fff;

    /*float: left;*/
}
#global-nav ul li:last-child{
    border-bottom: none;
}
#top-head #global-nav ul li a,
#top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    color: #4D4D4D;
    padding: 13px 0;

    /*padding: 0 30px;*/
}
#nav-toggle {
    display: block;

    /*display: none;*/
    position: absolute;
    right: 12px;
    top: 19px;
    width: 34px;
    /*height: 36px;*/
    cursor: pointer;
    z-index: 1000;
}


#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}


/* #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(562px);
    -webkit-transform: translateY(562px);
    transform: translateY(562px);
}



/* ===================================
            iphone　横向き
=================================== */
@media screen and (min-width: 568px){


}


/* ===================================
                tablet
=================================== */
@media screen and (min-width:768px){

    header{
        border-bottom: none;
    }


}





/* ===================================
            tablet　横向き
=================================== */
@media screen and (min-width: 1024px){
    /*#top-head{
        top: -100px;
        
        width: 100%;
        margin: 0 auto;
        padding: 0;
        line-height: 1;
        z-index: 999;
    }
    #top-head,
    #top-head.fixed{
        position: static;
    }*/


}


/* ===================================
                desktop
=================================== */
@media screen and (min-width:1200px){
    /*.inner {
        width: 1200px;
        margin: 0 auto;
    }
    .inner:after {
        content: "";
        clear: both;
        display: block;
    }*/
     
    /* header */
    /*header{
        border-bottom: solid 1px #dcdcdc;
    }
    #top-head{
        top: -100px;
        position: absolute;
        width: 100%;
        padding: 30px 0 0;
        line-height: 1;
        z-index: 999;
    }
    #top-head a,
    #top-head {
        color: #fff;
        text-decoration: none;
    }
    #top-head .inner {
        position: relative;
    }
    #top-head .logo{
        float: left;
        width: 50%;
    }
    #top-head .logo a{
        display: block;
    }
    #top-head .logo a img{
        width: 100%;
    }
    #global-nav ul {
        list-style: none;
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: left;
    }
    #global-nav ul li a {
        padding: 0 30px;
    }*/
     
    /* 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: #333;
    }
    #top-head.fixed #global-nav ul li a {
        color: #333;
        padding: 0 20px;
    }*/
     
    /* Toggle Button */
    /*#nav-toggle {
        position: absolute;
        right: 12px;
        top: 19px;
        width: 34px;
        cursor: pointer;
        z-index: 101;
    }
    #nav-toggle div {
        position: relative;
    }
    #nav-toggle span {
        display: block;
        position: absolute;
        height: 1px;
        width: 100%;
        background: #666;
        left: 0;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }
    #nav-toggle span:nth-child(1) {
        top: 0;
    }
    #nav-toggle span:nth-child(2) {
        top: 11px;
    }
    #nav-toggle span:nth-child(3) {
        top: 22px;
    }*/


}





