#toggle {
  display: block;
  color: #000;
  text-align: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 101;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.trigger,
.trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger {
  position: relative;
  width: 28px;
  height: 19px;
}
.trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
}
.trigger span:nth-of-type(1) {
  top: 0;
}
.trigger span:nth-of-type(2) {
  top: 8px;
}
.trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background-color: #000;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger span:nth-of-type(3) {
  bottom: 0;
}
.trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
.trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}

.toggleWrap {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  z-index:99;
}
.mainNav{
	padding-top:85px;
}

.mainNav li {
  list-style-type: none;
  line-height: 45px;
  height: 45px;
  font-size: 18px;
  font-weight: bold;
}
.navItem {
  display: block;
  text-decoration: none;
  color: #3e3e3e;
  padding: 0;
  text-align: center;
  font-size: 45px;
  line-height: 65px;
  letter-spacing:0.1em;
}
.navReserve{
	position: absolute;
	bottom: 0;
  text-align: center;
  letter-spacing:0.1em;
 	width:100%;
}
.navReserve a{
	width:100%;
	background-color:#505050;
    color: #FFF;
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
  font-size: 45px;
  line-height: 70px;
  display:block;
}
.navReserve a:hover{
	text-decoration:none;
	background-color:#005AFF;
    color: #FFF;
}


.hide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.animation {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}
.no-scroll {
  overflow: hidden;
}