header{
    height: 90px;
    width: 100%;
    padding: 0px 15px;
    /* background-color: rgba(34, 49, 52, 0.3); */
    background:linear-gradient(rgba(34, 49, 52, 0.4),rgba(0,0,0,0));
    position: fixed;
    top: 0;
    z-index: 10;
    display: flex;
}

/* .c-logo{
  width: 29px;
  height: 30px
} */

.c-logo {
  position: absolute;
  z-index: 9;
  top: 20px;
  left: 20px;
  width: 20%;
  min-width: 240px;
}

.username{
  color: #ffff;
  position: fixed;
  left: 12vh;
  top: 3vh;
  font-size: 2em;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 15;
  right: 2vh;
  top: 2vh;
  width: 35px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  }

  .hamburger span {
    display : block;
    position: absolute;
    border-width: 2px;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #ddd;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    background : rgb(187, 180, 180);
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    background : rgb(194, 193, 193);
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0%;
    color: #000;
    background-color: rgba(255,255,255,0.89);
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 30%;
    height: 40%;
  }
  
  nav.globalMenuSp ul {
    /* background: #ccc; */
    /* background-color: rgba(200, 175, 186, 0.3); */
    margin: 0 auto;
    width: 100%;
    padding-right: 10%;
    font-size: 13px;
    padding-top: 60%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0px;
    width: 100%;
    border-bottom: 0px solid #fff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  @media screen and (min-width: 769px) {
  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 0em0px;
    text-decoration: none;
    font-size: 1.6em;
  }
}
  /* nav.globalMenuSp ul li:hover{
    background :#ddd;
  } */
  
  /* @media screen and (max-width: 1025px) { */

  /*　ハンバーガーボタン　*/
  /* .hamburger{
    display: block;
    position: absolute;
    z-index: 3;
    right: 4vh;
    top: 1vh;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    }
} */

@media screen and (min-width: 768px) {
    nav.globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        right: 0%;
        color: #000;
        background-color: rgba(255,255,255,0.89);
        text-align: center;
        transform: translateX(100%);
        transition: all 0.6s;
        width: 15%;
        height: 40%;
      }
      
      nav.globalMenuSp ul {
       
        /* background: #ccc; */
        /* background-color: rgba(200, 175, 186, 0.3); */
        margin: 0 auto;
        padding-top: 30%;
        width: 100%;
        padding-right: 10%;
      }
      
      nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0px;
        width: 100%;
        border-bottom: 0px solid #fff;
      }

      nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
      }

    .nav.globalMenuSp ul li a {
        display: block;
        color: #000;
        padding: 0em0px;
        text-decoration: none;
        font-size: 1.0em;
    }
}
  
