#button_container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 20;
  display: block;
  /* 	background-color: red; */
  height: 60px;
  z-index: 40;
  width: 60px;
  -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);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}
#button_container.hide {
  visibility: none;
  opacity: 0;
}

#toggle {
  position: absolute;
  left: 14px;
  top: 25px;
  width: 30px;
  z-index: 300;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  mix-blend-mode: difference;
  background-blend-mode: difference;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span {
  background-color: #000;
}
#toggle span {
  background-color: #000;
  border: none;
  height: 1px;
  width: 30px;
  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;
}
#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 {
  -webkit-transform: translateY(16px) translateX(0) rotate(0);
      -ms-transform: translateY(16px) translateX(0) rotate(0);
          transform: translateY(16px) translateX(0) rotate(0);
  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);
}

body.top #toggle span {
  background-color: #fff;
}
body.top #toggle.active span {
  background-color: #000;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 39;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.98);
  -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;
}

#overlayBox .contact {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-weight: 700;
  font-weight: 200;
  color: #000;
  left: 20px;
}
#overlayBox .contact .ttl {
  font-size: 10px;
  margin-bottom: 3px;
}
#overlayBox .contact .desp {
  font-size: 18px;
}

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

ul.lineList {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
ul.lineList > li {
  margin-bottom: 25px;
  max-height: 60px;
  position: relative;
}
ul.lineList > li.onlyPc2 {
  display: block;
}
ul.lineList > li.onlySp2 {
  display: none;
}
ul.lineList > li > a {
  color: #000;
  display: inline-block;
  line-height: 90%;
  letter-spacing: 0.05em;
  font-size: 24px;
  font-weight: 200;
  margin-left: 60px;
  border-bottom: 1px solid transparent;
}
ul.lineList > li > a:hover {
  border-bottom: 1px solid #b3a494;
}
ul.lineList > li.sns {
  padding-left: 88px;
}
ul.lineList > li .topBtn {
  font-family: "Lato";
}
ul.lineList > li .num {
  font-family: "ChunkFive-Roman";
  color: #b3a494;
  font-size: 20px;
  margin-right: 20px;
}
ul.lineList > li .name {
  margin-right: 20px;
}
ul.lineList > li .job {
  font-size: 12px;
}

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