@charset "utf-8";


.openbtn {
  display: block;
  position: relative;
  cursor: pointer;
  width:55px;
  height:55px;
  z-index: 20;
    color:#000;
}

@media screen and (min-width: 992px),
print {

  .openbtn {
background-color:rgba(0,0,0,0);
  }

}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 15px;
  height: 2px;
  border-radius: 2px;
  background:#000;
  width: 48%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
}

.openbtn span:nth-of-type(3) {
  top: 33px;
}


.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left:20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #000;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;

}

.openbtn.active span:nth-of-type(3) {
  top: 32px;
  left:20px;
  transform: translateY(-6px) rotate(45deg);
  width: 31%;
  background: #000;
}

.grecaptcha-badge { visibility: hidden; }




