/***************************************
          ヘッダー
*****************************************/
#stars_hp header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  padding: 0 50px;
}

#stars_hp .header_logo{
  width: 80px;
  height: 80px;
}

#stars_hp .header_nav{
  background: #fff;
  border-radius: 98px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.07));
  overflow: hidden;
}

#stars_hp .header_nav ul{
  display: flex;
  margin: 0;
  padding: 0;
}

#stars_hp .header_nav li{
  list-style: none;
  border-right: 1px solid #DFDFDF;
}

#stars_hp .header_nav li:last-child{
  border-right: none;
}

#stars_hp .header_nav a{
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.07em;
  font-weight: bold;
  width: 150px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#stars_hp .header_hamburger{
  display: none;
  position: relative;
  width: 90px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 200;
}

#stars_hp .header_hamburger span {
  position: absolute;
  left: 19px;
  width: 10px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

#stars_hp .header_hamburger span:nth-child(1) {
  top: calc(50% - 5px);
}

#stars_hp .header_hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

#stars_hp .header_hamburger span:nth-child(3) {
  bottom: calc(50% - 5px);
}

/* バツボタンに変形 */
#stars_hp .header_hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#stars_hp .header_hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

#stars_hp .header_hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

#stars_hp .header_nav_list .current-menu-item a {
  background: linear-gradient(to bottom, #0485EB, #0E56D7);
  box-shadow: inset 0 4px 5px rgba(255, 255, 255, 0.2);
  color: #fff;
}

#stars_hp .header_nav_list a:hover {
  opacity: 0.5;
}

/* モバイルメニュー */
#stars_hp .mobile_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: -1;
  transition: right 0.3s ease;
  overflow-y: auto;
}

#stars_hp .mobile_menu.is-open {
  right: 0;
}


#stars_hp .mobile_menu_nav {
  padding: 100px 0 40px;
}

#stars_hp .mobile_menu_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#stars_hp .mobile_menu_list li {
  border-bottom: 1px solid #DFDFDF;
}

#stars_hp .mobile_menu_list a {
  display: block;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.07em;
  color: #000;
  text-decoration: none;
  position: relative;
}

#stars_hp .mobile_menu_list a::after{
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(to bottom, #0485EB, #0E56D7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 1;
  border-radius: 50%;
}

#stars_hp .mobile_menu_list a::before{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  z-index: 2;
}

#stars_hp .mobile_menu_list .current-menu-item a {
  background: linear-gradient(to bottom, #0485EB, #0E56D7);
  color: #fff;
}

#stars_hp .mobile_menu_list a:active {
  opacity: 0.5;
}

#stars_hp .mobile_menu_download{
  display: block;
  width: calc(100% - 64px);
  margin: auto;
}

@media (max-width: 768px) {
  #stars_hp .header_hamburger{
    display: block;
  }

  #stars_hp header{
    height: 100px;
    padding: 0 26px;
  }

  #stars_hp .header_nav{
    display: none;
  }

  #stars_hp .header_logo{
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 769px) {
  #stars_hp .mobile_menu {
    display: none;
  }
}