nav {
  * {
    font-weight: bold;
  }
}
.navtop {
    z-index: 1002;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    background: #ff3b72;
    height: 60px;
    display: flex;
    align-items: center;
    font-weight: 900;
    border-radius: 100px;
    a {
        text-decoration: none;
        color: #333;
    }
}
.infonav {
  font-size: 10px;
  background: rgb(170, 0, 0);
  margin-left: 10px;
  padding: 5px;
  width: 150px;
  border-radius: 5px;
  color: #fff;
  a {
    color: #fff;
    border: 1px solid #fff;
  }
}
.infotop.scrolled {
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    margin: 0;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 20px;
    li {
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: #fff 1px solid;
        &:hover {
            border-bottom: 1px solid #333333;
        }
    }
    div {
        background: gray;
        height: 20px;
        width: 1px;
    }
    a {
      color: #ff3b72;
      background: #fff;
      padding: 15px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      img {
        width: 20px;
        height: auto;
      }
    }
}
.logo {
    width: auto;
    height: 30px;
    margin-left: 10px;
}
.logoa {
    display: flex;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  margin: 0;
  padding: 0;
}
nav a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 25px;
  z-index: 1100;
  transition: transform 0.3s ease;
  border-radius: 100px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 0px;
  transition: all 0.3s ease;
  margin-left: 1.5px;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.menu-toggle.open {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
  span {
    background: #ff3b72;
  }

}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1005;
  display: none;
  background: #00000024;
}
.overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  padding: 50px 30px;
  max-width: 500px;
  transition: right 0.5s ease;
  z-index: 1011;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.mobile-nav li {
  transition: all 0.3s ease;
  border-radius: 5px;
  &:hover {
    transition: all 0.3s ease;
    background: #fff;
    a {
      transition: all 0.3s ease;
      color: #333;
    }
  }
  &:active {
    transform: scale(0.95);
    transition: all 0.3s ease;
  }
}
.mobile-nav a {
  display: flex;
  align-items: center;
  color: #ff3b72;
  text-decoration: none;
  display: flex;
  height: 50px;
  padding: 20px;
}
.mb-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  img {
    width: 18px;
    height: auto;
  }
}


@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-list {
    display: none;
  }
  .infotop {
    width: 100%;
  }
}


/* フッター */
footer {
    position: absolute;
    left: 0;
    right: 0;
    width:100%;
    background:#ff3b72;
    color:white;
    text-align:center;
    padding: 10px;
    margin-top: 20px;
    .fme {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      a {
        text-decoration: none;
        color: #fff;
        font-size: 13px;
      }
    }
}
.footermenu {
  display: flex;
  justify-content: center;
}

/**/
#navevent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80%;
  height: auto;
  padding: 0;
  img {
    width: 100%;
    height: auto;
  }
}