.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : rgb(251,221,99);
    -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) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #fff;
    background: rgb(251,221,99);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
  
  }

  /* pcmenu */
   .header{
    /* max-width: 980px; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
    background: rgba(255, 230, 88, 0.7);
  }
  
  .MenuPc ul {
    display: flex;
    height: 50px;
  }
  
  .MenuPc ul li {
    padding: 0 10px;
    height: 100%;
    list-style: none;
    text-decoration: none;
    color: rgb(83, 83, 83);
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    transition: .3s;
    /* font-weight: bold; */
    position: relative;
    padding: 0 10px;
  }
  
  .MenuPc ul li a {
    text-decoration: none;
    color: rgb(83, 83, 83);
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    transition: .3s;
    /* font-weight: bold; */
    position: relative;
    padding: 0 10px;
  }
  @media screen and ( max-width:1000px ){
    .pc{
        display: none;
    }
  }
  @media screen and ( min-width:1001px ){
    .sp{
        display: none;
    }
  }
  