
#ir-menu .active a {
    color: #D71A66;
}



    .rare-nav-xyz99 {
      color: #333;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: flex-start; 
      position: relative;
    }

    /* 共通ナビ */
    nav {
      flex: 1;
    }

    ul.rare-menu-xyz99 {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 20px;
      justify-content: flex-start; 
    }
    ul.rare-menu-xyz99 li {
      position: relative;
    }

    ul.rare-menu-xyz99 a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
      padding: 6px 8px;
      display: block;
    }
    .rare-menu-xyz99 > li > a.rare-drop-xyz99::after {
      content: " ▾";
      font-size: 0.7em;
    }
    ul.rare-menu-xyz99 a:hover {
      background: rgba(255,255,255,0.1);
      border-radius: 4px;
    }

    /* ドロップダウン */
    .rare-menu-xyz99 .rare-dropdown-xyz99 {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      min-width: 200px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 6px 14px rgba(0,0,0,0.15);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-5px);
      transition: .2s ease;
      z-index: 2000;
    }
    .rare-menu-xyz99 .rare-dropdown-xyz99 a {
      color: #333;
      padding: 8px;
      border-bottom: 1px solid #eee;
    }
    .rare-menu-xyz99 li:hover .rare-dropdown-xyz99 {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* ハンバーガーボタン */
    .rare-hamburger-xyz99 {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      margin-right: 10px; /* 左端に配置 */
    }
    .rare-hamburger-xyz99 span {
      width: 25px;
      height: 2px;
      background: #333;
      border-radius: 2px;
      transition: .3s;
    }

    /* スマホ用 */
    @media (max-width: 768px) {
      ul.rare-menu-xyz99 {
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 10px 0;
        box-sizing: border-box;
              z-index: 2000;
      }
      ul.rare-menu-xyz99.show-xyz99 {
        display: flex;
      }
      .rare-hamburger-xyz99 {
        display: flex;
      }
      .rare-menu-xyz99 li {
        width: 100%;
      }
      .rare-menu-xyz99 li a {
        width: 100%;
        padding: 12px 20px;
      }
      .rare-menu-xyz99 li:hover .rare-dropdown-xyz99 {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: #34495e;
        width: 100%;
      }
      .rare-dropdown-xyz99 a {
        color: #fff;
        padding-left: 40px; 
      }
      .ir-menu-sp{
        position: absolute;
        left: 80px;
        line-height: 1;
        font-weight: bold;
      }
    }




