@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}
ul.button {
    position: fixed;
    right: 5%;
    top: 3%;
    z-index: 3;
}
ul.button li span {
    display: block;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    background-color:#2b2b2b;
    transition: 0.5s;
    z-index: 3;
}
ul.button.active li span{
    background-color: #FFF;
}
ul.button.active li:nth-child(1) span {
    transform: rotate(45deg) translate(11px, 11px);
}
ul.button.active li:nth-child(2) span {
    transform: rotate(-45deg) translate(-5px, 5px);
}
ul.button.active li:nth-child(3) span {
    opacity: 0;
}
header .glonav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f05016;
    transform: translateX(100%);
    transition: 0.5s;
    padding: 50px 50px;
    z-index: 2;
}
header .glonav li{
    line-height: 50px;
}
.logo-top{
    max-width: 60px;
    margin: 0 auto;
    margin-top: 100px;
}
header .glonav .flex a{
    background-image: url(../img/sns/sns-bg.png);
    margin: 20px 5px;
    padding: 10px;
    width: 55px;
    height: 55px;
}
header .glonav .flex img{
    max-width: 35px;
}
header .glonav.active {
    transform: translateX(0);
    height: 100%;
}
body.active {
    height: 100%;
    overflow: hidden;
  }
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #eb5b30;
    text-align: center;
    color:#fff ;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 20px;
}
.pagetop a:hover {
    display: block;
    background-color:#fff;
    text-align: center;
    color:  #eb5b30;
    font-size: 12px;
    text-decoration: none;
    padding:10px 20px;
	filter:alpha(opacity=50);
    /* -moz-opacity: 0.5;
    opacity: 0.5; */
}

@media screen and (min-width:768px){
    /*タブレット用として画面幅を768pxまでに設定*/
    }
@media screen and (min-width:1024px){
/*PC用として画面幅を1024pxまでに設定*/
}
