/*　ハンバーガーボタン */
.hamburger {
  display : block;
  position: fixed;
  z-index : 101;
  right : 17px;
  top   : 12px;
  width : 59px;
  height: 59px;
  border: 1px #E073A9 solid;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;

}
.hamburger span {
  display : block;
  position: absolute;
  width   : 25px;
  height  : 3px ;
  left    : 15px;
  background : #E073A9;
  -webkit-transition: 0.5s all;
  -moz-transition   : 0.5s all;
  transition        : 0.5s all;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}

/* ナビ開いてる時のボタン */

.hamburger.active span:nth-child(1) {
  top : 29px;
  left: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}




nav.globalMenuSp {
  position: fixed;
  z-index : 100;
  top  : 0;
  left : 0;
  color: #3E3E3F;
  background: #F2F2F2;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding-top: 55px;
}

nav.globalMenuSp ul {
  background: #F2F2F2;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: left;
}

nav.globalMenuSp ul li {
  background: #F2F2F2;
  list-style-type: none;
  padding: 15px 60px;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #3E3E3F;
  text-decoration :none;
  font-size: 20px;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
  font-weight: bold;
}


.header-tel-sp {
  width: 167px;
  margin-left: 2%;
  margin-top: -30px;
  margin-bottom: 30px;
  max-width: 90%;
  background: #F2F2F2;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(80%);
}

@media (max-width:1640px) {

  nav.globalMenuSp.active {
    transform: translateX(70%);
  }


}

@media (max-width:900px) {

  nav.globalMenuSp {

    z-index : 100;
  }


  nav.globalMenuSp ul {
    background: #F2F2F2;
    width: 600px;
    margin: 0 auto;
    padding: 0 30%;
    width: 100%;
    height: 100%;
    text-align: left;

  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding:0;
    width: 100%;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #3E3E3F;
    padding: .8em 0;
    text-decoration :none;
    font-size: 25px;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-weight: bold;
  }

  .globalMenuSp span {
    font-size: 25px;
  }

  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
  .header-tel-sp {
    display: none;
  }
}


@media (max-width:650px) {

  nav.globalMenuSp {
    position: fixed;
    z-index : 100;
    top  : 0;
    left : 0;
    color: #3E3E3F;
    background: #F2F2F2;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    padding-top: 55px;
  }

  nav.globalMenuSp ul {

    padding: 0 25%;


  }
  .header-tel-sp {
    display: none;
  }

  nav.globalMenuSp ul li a {
    display: block;
    width: auto;
    color: #3E3E3F;
    padding: .5em 0px;
    text-decoration :none;
    font-size: 15px;
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
    font-weight: bold;

  }

  .globalMenuSp span {
    font-size: 15px;
  }





}
