@media screen and (max-width: 768px) {
  .management-sub-nav-mobile {
    display: flex !important;
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    background: #ee3025;
    padding: 0 clamp(16px, 6vw, 32px);
    line-height: 1.2;
    overflow: visible;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .management-sub-nav-mobile ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .management-sub-nav-mobile ul li {
    float: none;
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .management-sub-nav-mobile ul li a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }
}

