@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

ul.button {
    position: fixed;
    right: 5%;
    top: 1%;
    z-index: 6;
}

ul.button li span {
    display: block;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    background-color:#58adbf;
    transition: 0.5s;
    z-index: 5;
}
ul.button.active li span{
    background-color: #FFF;
}

ul.button.active li:nth-child(1) span {
    /* transform: rotate(45deg) translate(13px, 14px); */
    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: #58adbf;
    transform: translateX(100%);
    transition: 0.5s;
    padding: 50px 50px;
    z-index: 5;
}

header .glonav li{
    line-height: 50px;
}

.logo-top{
    max-width: 70px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 40px;
}
header .glonav li.flex a{
    margin: 0px 20px;
}
header .glonav li.flex img{
    width: 40px;
}
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: #8b8b8b49;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 20px;
}
.pagetop a:hover {
    display: block;
    background-color: #58adbf;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:10px 20px;
	filter:alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

@media screen and (min-width:780px){
    /*タブレット用として画面幅を768pxまでに設定*/
    .logo-top{
        max-width: 55px;
    }
    header .glonav li.flex a{
        margin: 20px 10px;
        padding: 8px 8px;
        width: 64px;
        height: 64px;
    }
    header .glonav li.flex img{
        max-width: 25px;
    }
    }
@media screen and (min-width:1024px){
/*PC用として画面幅を1024pxまでに設定*/
}
