/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/
@media screen and (max-width: 767px) {
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  /* background:#D54884; */
  cursor: pointer;
  width: 50px;
  height: 29px;
  /* border-radius: 5px; */
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: black;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
}

.openbtn span:nth-of-type(2) {
  top: 16px;
}

.openbtn span:nth-of-type(3) {
  top: 22px;
}

.openbtn span:nth-of-type(1)::before {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: -10px;
  left: 1px;
  color: black;
  font-size: 0.7rem;
  /* text-transform: uppercase; */
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
  top: 10px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(1)::before {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(45deg);
  top: -10px;
  left: 5px;
}
}