@charset "utf-8";

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

infoNet burgerMenu.css   ver3.0

================================ */
/* burger_motion
------------------------- */
.burger_motion {
  position: absolute;
  right: 90px;
  top: 9px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.burger_motion p {
  position: relative;
  width: 60px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 100%;
  border: #43a849 solid 1px;
  background-color: #fff;
}
.burger_motion p span {
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  margin: auto;
  border-radius: 3px;
  background-color: #43a849;
  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: -12px;
  background-color: #43a849;
}
.burger_motion p span:after {
  margin-top: 12px;
  background-color: #43a849;
}
/* 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;
  display: none;
}
.burger_item > * {
  position: relative;
  z-index: 10;
}
.right.burger_item.main {
  z-index: 100;
  transition: opacity 0.3s linear;
  position: fixed;
  width: 100%;
  left: 0;
  margin: 0 auto;
  right: 0;
  top: 0;
  display: block;
  max-height: 100svh;
  overflow-y: auto;
  /* background-color: #fff; */
  z-index: 50;
  opacity: 0;
}
.burger-open .right.burger_item.main {
  opacity: 1;
}
/* burger-overlay
------------------------- */
.burger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  background-blend-mode: multiply;
  backdrop-filter: blur(12px);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .burger_motion p {
    background-color: #43a849;
    width: 100%;
  }

  .burger_motion p span {
    background-color: #fff;
    width: 4.7vw;
    min-width: 20px;
    height: 2px;
  }

  .burger_motion p span:before,
  .burger_motion p span:after {
    background-color: #fff;
    height: 2px;
  }
  .burger_motion {
    display: block;
    width: 12.8vw;
    height: 12.8vw;
    position: relative;
    right: 0;
    top: 0;
    min-width: 50px;
    min-height: 50px;
  }
  .right02 {
    height: 13vw;
  }

  .burger_motion.is-open p {
    background-color: #fff;
  }

  .burger_motion.is-open p span:before,
  .burger_motion.is-open p span:after {
    background-color: #43a849;
  }
  .burger_motion:not(.is-open) p span:after {
    margin-top: 0;
    top: 2.13vw;
  }

  .burger_motion:not(.is-open) p span:before {
    margin-top: 0;
    top: -2.13vw;
  }
}

body.burger-open {
  overflow: hidden;
}
