@charset "utf-8";

/* ================================

infoNet burgerMenu.css   ver2.0

================================ */
@media screen and (min-width: 768px) {
  .burgerMotion {
    display: none;
  }
  #header .burgerWrap .burgerInner .burgerItem {
    display: none;
  }
  .burgerWrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .burgerMotion {
    display: block;
  }
  #header .burgerWrap .burgerInner .burgerItem {
    display: block;
  }
}

/* burger */
.burgerMotion {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 15;
  width: 45px;
  height: 45px;
  padding: 0 13px;
  background-color: #018637;
  color: #fff;
}
.burgerMotion:after {
  content: "メニュー";
  display: block;
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  transform: scale(0.8);
  margin: auto;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.en .burgerMotion:after {
  content: "MENU";
  bottom: 4px;
}
.burgerMotion p {
  position: relative;
  top: 8px;
  width: 20px;
  height: 19px;
  margin: 0;
  padding: 0;
}
.burgerMotion p span {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-color: #fff;
}
.burgerMotion p span:before,
.burgerMotion p span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.2s;
}
.burgerMotion p span:before {
  margin-top: -8px;
}
.burgerMotion p span:after {
  margin-top: 8px;
}
.burgerMotion.active:after {
  content: "閉じる";
}
.en .burgerMotion.active:after {
  content: "CLOSE";
}
.burgerMotion.active p span {
  background-color: rgba(255, 255, 255, 0);
}
.burgerMotion.active p span:before {
  transform: rotate(45deg);
  margin-top: 0;
}
.burgerMotion.active p span:after {
  transform: rotate(-45deg);
  margin-top: 0;
}
.burgerOverlay {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
