#button_container {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #00a5ff;
  height: 60px;
  width: 60px;
  z-index: 400;
  cursor: pointer;
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  display: none;
  /*
  	&.blacked{
  		#toggle{
  			span{
  				background-color: #000;
  			}
  		}
  	}
  */
}
#button_container.show {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

#toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 14px;
  z-index: 300;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span {
  background-color: #fff !important;
}
#toggle span {
  background: #fff;
  border: none;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span:nth-of-type(2) {
  top: 8px;
}
#toggle span:nth-of-type(3) {
  top: 16px;
}

#toggle.active .top {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
      -ms-transform: translateY(8px) translateX(0) rotate(45deg);
          transform: translateY(8px) translateX(0) rotate(45deg);
}

#toggle.active .middle {
  opacity: 0;
}

#toggle.active .bottom {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
          transform: translateY(-8px) translateX(0) rotate(-45deg);
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 39;
  background-color: #fff;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#overlay.open {
  visibility: visible;
  opacity: 1;
}
#overlay.open #overlayBox {
  opacity: 1;
}
#overlay #overlayBox {
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.overlay-menu {
  width: 100%;
  height: 100%;
  height: calc(100vh - 140px);
  margin-top: 140px;
}
.overlay-menu .snsList {
  float: none;
  text-align: center;
  padding-top: 60px;
}
.overlay-menu .snsList li {
  display: inline-block;
  margin: 0 5px;
  float: none;
}
.overlay-menu .bntList {
  margin-left: 25px;
  margin-right: 25px;
}
.overlay-menu .bntList li a span {
  padding: 15px 0;
}

.navSpList {
  line-height: 1;
  margin-bottom: 0;
}
.navSpList li {
  margin: 5px 0;
  height: 60px;
  letter-spacing: 0.05em;
  text-align: center;
}
.navSpList li a {
  color: #000;
  display: block;
}
.navSpList li a p {
  font-size: 19px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  padding-bottom: 5px;
}
.navSpList li a span {
  display: block;
  font-size: 11px;
  color: #666;
}
.navSpList li.sns {
  margin-left: 0;
  padding-top: 0;
}
.navSpList li.sns a {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: left;
  text-indent: -9999px;
  background-size: 30px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.navSpList li.sns a.instagram {
  background-image: url("../images/ico_instagram.svg");
  background-size: 26px auto;
}

/* ------------------------------------------
smartphone
------------------------------------------ */