/* .kv_sec .nav_area.pc-only {
  display: flex;
} */

.humburger_menu.sp-only {
  display: none;
}

.humburger.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  /* .kv_sec .nav_area.pc-only {
    display: none;
  } */
  .kv_sec .nav_area ul.nav_list.pc-only {
    display: none;
  }
  .kv_sec .nav_area .nav_btn.pc-only {
    display: none;
  }

  .humburger.sp-only {
    display: block;
  }

  .humburger_menu.sp-only {
    display: flex;
  }
}

.humburger {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: -200%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  transition: all 0.3s ease;
  z-index: 2;

  .nav_list {
    list-style: none;
    margin: 0;
    padding-top: 50px;
    text-align: left;
    background: #fff;


    a {
      text-decoration: none;
      color: #000;
      display: block;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;

      li {
        font-size: 18px;
        font-weight: bold;
        color: #000;
      }
    }

    .bg-main {
      background-color: #ec728a;
      color: #fff;

      >li {
        color: #fff;
      }
    }
  }

  &.active {
    display: block;
    top: 0;
    animation: slideDown 0.3s ease forwards;
  }
}

.humburger_wrapper {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.humburger_menu {
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #595757;
  border-radius: 8px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);


  >span {
    display: block;
    height: 2px;
    background-color: #595757;
    border-radius: 2px;
    transition: all 0.2s ease;
  }
}

.humburger_menu.active {
  >span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  >span:nth-child(2) {
    opacity: 0;
  }

  >span:last-child {
    transform: translateY(-10px) rotate(-45deg);
  }
}