@charset "utf-8";

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

infoNet burgerMenu.css   ver3.0

================================ */
/* burger_motion
------------------------- */
.burger_motion {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.burger_motion p {
  position: relative;
  width: 60px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
.burger_motion p span {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  margin: auto;
  border-radius: 3px;
  background-color: #666;
  vertical-align: middle;
  transition: background 0.25s ease-in-out 0.25s;
}
.burger_motion p span:before,
.burger_motion p span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transition: transform ease-in-out 0.25s 0s, margin ease-in-out 0.25s 0.25s;
}
.burger_motion p span:before {
  margin-top: -9px;
  background-color: #666;
}
.burger_motion p span:after {
  margin-top: 9px;
  background-color: #666;
}
/* is-open */
.burger_motion.is-open p span {
  background-color: rgba(255, 255, 255, 0);
  transition: background 0.25s ease-in-out 0s;
}
.burger_motion.is-open p span:before {
  transform: rotate(45deg);
  margin-top: 0;
  transition: transform ease-in-out 0.25s 0.25s, margin ease-in-out 0.25s;
}
.burger_motion.is-open p span:after {
  transform: rotate(-45deg);
  margin-top: 0;
  transition: transform ease-in-out 0.25s 0.25s, margin ease-in-out 0.25s;
}

/* burger_item
------------------------- */
.burger_item {
  position: relative;
  z-index: 90;
  transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
}
.burger_item > * {
  position: relative;
  z-index: 10;
}

/* burger_overlay
------------------------- */
.burger_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
}
