/* ============================================ */
/* header
/* ============================================ */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 990;
  padding: 20px 0;
  transition: all 0.5s;
}
#header .inner {
  max-width: 95%;
  width: 95%;
}
#header .h-logo {
  max-width: 160px;
  width: 100%;
}
#header.scroll {
  background-color: rgba(15, 45, 65, 0.8);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

#floating-entry {
  position: fixed;
  z-index: 999;
  top: 15px;
  right: calc(2.5% + 45px + 1.5%);
  max-width: 160px;
  width: 100%;
  transition: all 0.5s;
}
#floating-entry a {
  width: 100%;
  font-weight: 800;
  padding: 12px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0px;
  border-radius: 50px;
  background-color: #ff7400;
}

#menu-toggle {
  position: fixed;
  display: block;
  width: 45px;
  cursor: pointer;
  z-index: 9999;
  font-weight: 600;
  top: 21px;
  right: 2.5%;
}
#menu-toggle .line-wrap {
  position: relative;
  width: 100%;
  height: 30px;
}
#menu-toggle .line-wrap span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 5px;
  background-color: #ff7400;
  transition: all 0.5s;
}
#menu-toggle .line-wrap span:nth-child(2) {
  top: 50%;
  transform: translate(0%, -50%);
}
#menu-toggle .line-wrap span:nth-child(3) {
  bottom: 0;
}
#menu-toggle.active .line-wrap span:nth-child(1) {
  top: 12px;
  transform: rotate(-30deg);
}
#menu-toggle.active .line-wrap span:nth-child(2) {
  opacity: 0;
}
#menu-toggle.active .line-wrap span:nth-child(3) {
  bottom: 12px;
  transform: rotate(30deg);
}

#menu {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  background-image: url(../img/lp/bg-mist.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
}
#menu .menu-wrap {
  height: 100%;
  padding: 70px 0 0;
}
#menu .menu-title {
  text-align: center;
  color: #fff;
  font-size: 50px;
  margin: 50px 0 0;
  line-height: 1.2;
}
#menu .menu-list {
  padding: 30px 0 0;
  height: 100%;
}
#menu .menu-list .menu-item {
  position: relative;
  max-width: 550px;
  width: 85%;
  margin: auto;
  border-bottom: solid 1px #fff;
}
#menu .menu-list .menu-item:first-of-type {
  border-top: solid 1px #fff;
}
#menu .menu-list .menu-item a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  padding: 20px 40px 20px 70px;
}
#menu .menu-list .menu-item a::before {
  position: absolute;
  content: attr(data-num);
  top: 50%;
  left: 25px;
  transform: translate(0%, -50%);
  font-size: 20px;
  line-height: 1;
}
#menu .menu-list .menu-item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  transform: translate(0%, -50%);
  width: 10px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transition: all 0.5s;
}
#menu .menu-list .menu-item.recruit {
  margin: 50px auto 0;
  border-bottom: none;
  text-align: center;
}
#menu .menu-list .menu-item.recruit a {
  display: inline-block;
  padding: 5px 20px;
  font-size: 13px;
  border: solid 1px #fff;
}
#menu .menu-list .menu-item.recruit a::before, #menu .menu-list .menu-item.recruit a::after {
  display: none;
}
#menu.open {
  visibility: visible;
  opacity: 1;
}

@media (hover: hover) {
  #floating-entry a:hover {
    color: #2862ae;
    background-color: #fff;
  }
  #menu .menu-list .menu-item a:hover {
    opacity: 0.6;
  }
  #menu .menu-list .menu-item a:hover::after {
    right: 15px;
  }
}
@media screen and (max-width: 768px) {
  #menu .menu-wrap {
    overflow-y: auto;
  }
  #menu .menu-list {
    height: auto;
    padding: 50px 0;
  }
  #menu .menu-list .menu-item {
    max-width: 85%;
  }
}
@media screen and (max-width: 600px) {
  #header .inner {
    max-width: 90%;
    width: 90%;
  }
  #header .h-logo {
    max-width: 130px;
  }
  #menu-toggle {
    top: 18px;
    right: 5%;
  }
  #menu .menu-title {
    max-width: 250px;
    width: 85%;
    font-size: 40px;
    text-align: center;
    margin: 30px auto 0;
  }
  #menu .menu-list .menu-item a {
    font-size: 14px;
    padding: 15px 30px 15px 50px;
  }
  #menu .menu-list .menu-item a::before {
    left: 10px;
    font-size: 16px;
  }
  #menu .menu-list .menu-item a::after {
    right: 10px;
    width: 8px;
    height: 10px;
  }
  #menu .menu-list .menu-item.recruit a {
    font-size: 12px;
  }
  #floating-entry {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }
  #floating-entry a {
    padding: 15px 20px;
    border-radius: 0;
    font-weight: 600;
  }
}/*# sourceMappingURL=lp-header.css.map */