/* ==============================================
   LP Header
   ============================================== */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 95px;
  z-index: 100;
  margin: 0;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.lp-header--scrolled {
  background: #040A20;
}

.lp-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 269px;
  height: 95px;
  margin: 0;
  padding: 0;
  line-height: 1;
  z-index: 4;
}

.lp-header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.lp-header__nav {
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}

.lp-header__nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.lp-header__nav-list li a {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}

.lp-header__nav-list li a:hover {
  opacity: 0.7;
}

.lp-header__cta {
  position: fixed;
  top: 24px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 101;
}

/* ==============================================
   SP ( ~ 768px )
   ============================================== */
@media screen and (max-width: 768px) {

  .lp-header {
    height: 64px;
  }

  .lp-header__inner {
    padding: 0 20px;
    height: 64px;
  }

  .lp-header__logo {
    top: 0;
    transform: none;
    width: auto;
    height: 64px;
  }

  .lp-header__logo img {
    width: auto;
    height: 100%;
  }

  .lp-header__nav {
    display: none;
  }

  .lp-header__cta {
    display: none;
  }

}

/* ==============================================
   SP固定フッターCTA
   ============================================== */

.lp-sp-cta {
  display: none;
}

@media screen and (max-width: 768px) {

  .lp-sp-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .lp-sp-cta--visible {
    transform: translateY(0);
  }

  .lp-sp-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-decoration: none;
    cursor: pointer;
  }

  .lp-sp-cta__btn img {
    width: auto;
    height: 14px;
    flex-shrink: 0;
  }

  .lp-sp-cta__btn--dl {
    color: #2B7FFF;
    background: #fff;
    border-top: 2px solid #2B7FFF;
    border-bottom: 2px solid #2B7FFF;
  }

  .lp-sp-cta__btn--contact {
    color: #fff;
    background: linear-gradient(90deg, #4258FF 0%, #29A9FF 50%, #4258FF 100%);
  }

}


.lp-header__nav-list li {
  position: relative;
}
.lp-header__nav-list li.no-link > a {
  pointer-events: none;
}
.lp-header__nav-list .header-nav-child-wrap {
  background-color: #040A20;
}

.lp-header__nav-list li:hover .header-nav-child-wrap {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
} 
.lp-header .header-btn {
  margin: 0.5rem 1rem 0 auto;
}
.lp-header .header-btn span {
  background-color: #fff;
}
.lp-header .drawer {
  background: #040A20;
}
.lp-header .drawer-link__item {
  color: #fff;
}















