.initial-header {
  position: fixed;
  top: 1rem;
  left: 0;
  z-index: 999;
  width: 100vw;
  padding: min(10vw, 3.8rem) 0;
  -webkit-filter: drop-shadow(0 0.8rem 0.8rem rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0 0.8rem 0.8rem rgba(0, 0, 0, 0.05));
}
.initial-header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.initial-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.4%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.8rem 3.2rem;
  border-radius: 1rem;
  background-color: white;
}
.initial-header-nav li {
  text-align: center;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 500;
}
.initial-header-nav li:nth-child(3) {
  margin-right: 23%;
}
.initial-header-nav li a {
  text-decoration: none;
}
.initial-header-nav li a:hover, .initial-header-nav li a:active {
  background: linear-gradient(15deg, #B3F1EE, #1D1F46);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.initial-header-nav li a:hover small, .initial-header-nav li a:active small {
  background: linear-gradient(15deg, #B3F1EE, #1D1F46);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.initial-header-nav li small {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.6;
  width: 100%;
  white-space: nowrap;
}/*# sourceMappingURL=header.css.map */


.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 4.5rem;
  height: 2rem;
  cursor: pointer;
  position: relative;
  z-index: 999999;
}

.hamburger-menu span {
  display: block;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 0.3rem;
  margin-bottom: 0.7rem;
}

.sticky-header ul{
  padding: 1.75rem 5rem;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-right: 11rem;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .mobile-menu{
    display: none;
  }
  .hamburger-menu{
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .initial-header{
    position: absolute;
    top: 0rem;
  }
  .initial-header-logo{
    display: none;
    position: absolute;
    top: 7rem;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 23rem;
    aspect-ratio: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .initial-header-logo-sp{
    width: 10rem;
    height: 10rem;
    margin-bottom: 3rem;
  }
  .initial-header-logo-sp img{
    width: 10rem;
    height: 10rem;
  }
  .desktop-menu {
    display: none;
  }
  .hamburger-menu {
    display: block;
    float: right;
    right: 2rem;
    top: 5.5rem;
    position: fixed;
    z-index: 9999999;
  }
  
  .mobile-menu ul{
    padding: 1.75rem 5rem;
    display: block;
    align-items: center;
    justify-content: right;
    margin-right: 11rem;
    margin-top: 7rem;
  }

  .mobile-menu ul li{
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    line-height: 3.75rem;
    letter-spacing: 0.25rem;
    padding: 0 1rem;
    text-align: left;
  }

  .mobile-menu ul li p{
    font-weight: bold;
  }

  .initial-header-nav {
    background-color: transparent;
  }
  /* Mobile Menu Styling */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 25rem;
    height: 100%;
    background-color: #333;
    z-index: 999;
    transition: right 0.3s ease;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 5rem 2rem;
    display: block;
    white-space: unset;
  }

  .mobile-menu ul li {
    margin-bottom: 1.5rem;
  }

  .mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
  }

  /* When mobile menu is active */
  .mobile-menu.active {
    right: 0;
    height: 100vh;
  }
}
