
#ir-menu .active a {
    color: #D71A66;
}

#ir-menu .active a.black {
    color: #333;
}

.rare-nav-xyz99 {
    color: #777;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}


/* 共通ナビ */

nav {
    flex: 1;
}

#ir-menu ul.rare-menu-xyz99 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

#ir-menu ul.rare-menu-xyz99 li {
    position: relative;
}

#ir-menu ul.rare-menu-xyz99 a {
    text-decoration: none;
    font-size: 13px;
    padding: 6px 8px;
    display: block;
    margin: 0;
}

.rare-menu-xyz99>li>a.rare-drop-xyz99::after {
    content: " ▾";
    font-size: 1em;
}

#ir-menu 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: 230px;
    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) {
    #ir-menu ul.rare-menu-xyz99 {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        padding: 10px 0;
        box-sizing: border-box;
        z-index: 2000;

    }
    .rare-nav-xyz99 {
    background-color: #eee;
    }
    #ir-menu ul.rare-menu-xyz99.show-xyz99 {
        display: flex;
        background-color: #eee;
    
    }
    #ir-menu {
        border-bottom: none;
    }
    #ir-menu a {
        font-size: 15px;
        line-height:0;
    }
    .rare-hamburger-xyz99 {
        display: flex;
    }
    .rare-menu-xyz99 li {
        width: 100%;
    }
    .rare-menu-xyz99 li a {
        width: 100%;
        padding: 12px 20px;
    }
    #ir-menu .rare-menu-xyz99 li:hover .rare-dropdown-xyz99 {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: #eee;
        width: 100%;
        padding:5px 0;
        
    }
    #ir-menu .rare-dropdown-xyz99 a {
        padding-left: 40px;
        padding-top: 30px;
    }
    .ir-menu-sp {
        position: absolute;
        left: 80px;
        line-height: 1;
        font-weight: bold;
        color:#333
    }
}



