@media only screen and (max-width: 767px) {
  .hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 0;
    top   : 0;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    margin: 23px;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #555;
    -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;
    -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;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    color: #333333;
    background: #ffffff;
    text-align: left;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  
  nav.globalMenuSp ul {
    background: #c8bce3;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #ffffff;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover{
    background :#e4def1;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #333333;
    padding: 1em;
    text-decoration :none;
  }
  
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }

  .menu_top:hover {
    background: none!important;
  }

  .menu_top a {
    display: inline-block!important;
  }

  .menu_top a img {
    width: 100px;
  }

  .menu_fotter {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  nav.globalMenuSp ul {
    float: right;
    margin: 70px 30px 0 30px;
  }
      
  nav.globalMenuSp ul li {
    list-style-type: none;
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: -o-box;
    display: -ms-box;
    display: box;
    -webkit-box-align: end;
    -moz-box-align: end;
    -o-box-align: end;
    -ms-box-align: end;
    box-align: end;
    height: 40px;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #333333;
    margin: 0 18px;
    display: block;
  }

  nav.globalMenuSp ul li a img {
    height: 30px;
  }

  .menu_top, .menu_sp {
    display: none!important;
  }
  
.menu_fotter {
  text-align: center;
}
.menu_fotter li {
  display: inline-block;
  margin: 0 16px;
}
.menu_fotter img {
  height: 30px;
}
}