#button_container {
  position: fixed;
  top: 4px;
  right: 38px;
  z-index: 20;
  height: 60px;
  z-index: 40;
  width: 60px;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}

#toggle {
  position: absolute;
  left: 14px;
  top: 21px;
  width: 34px;
  z-index: 300;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span {
  background-color: #000;
}
#toggle span {
  background-color: #000;
  border: none;
  height: 1px;
  width: 34px;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span:nth-of-type(2) {
  top: 8px;
  display: none;
}
#toggle span:nth-of-type(3) {
  top: 8px;
}

#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 {
  -webkit-transform: translateY(26px) translateX(0) rotate(0);
      -ms-transform: translateY(26px) translateX(0) rotate(0);
          transform: translateY(26px) translateX(0) rotate(0);
}

#toggle.active .bottom {
  -webkit-transform: translateY(0px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(0px) translateX(0) rotate(-45deg);
          transform: translateY(0px) 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;
  background-color: white;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s 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);
  -o-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;
       -o-transition-delay: 0.25s;
          transition-delay: 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.overlay-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(100% - 120px);
  left: 0;
  top: 100px;
}

ul.lineList {
  position: relative;
  width: 100%;
  height: 100%;
}
ul.lineList > li {
  height: calc(100% / 9);
  max-height: 60px;
  position: relative;
}
ul.lineList > li.onlyPc2 {
  display: block;
}
ul.lineList > li.onlySp2 {
  display: none;
}
ul.lineList > li > a {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 90%;
  padding-left: 90px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
ul.lineList > li.sns {
  padding-left: 88px;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  ul.lineList > li.onlyPc2 {
    display: none;
  }
  ul.lineList > li.onlySp2 {
    display: block;
  }

  #button_container {
    right: 13px;
    top: 18px !important;
  }
}
@media screen and (max-width: 320px) {
  #button_container {
    top: 8px !important;
  }
}