@charset "UTF-8";

#breadcrumbs ol{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    color: var(--color-white);
    overflow-y: hidden;
    line-height: 1.5;
    font-size: 12px;
    word-break: keep-all;
    white-space: nowrap;
    overflow-x: scroll;
}

#breadcrumbs ol li a{
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

#breadcrumbs ol li:last-child a{
    padding-right: 0;
}

#breadcrumbs ol li:not(:last-child) a::after{
    position: absolute;
    content: '';
    right: 6px;
    width: 8px;
    height: 100%;
    background: url(/images/bar-rhythm/akihabara/arrow_right.webp) center no-repeat;
    background-size: contain;
    z-index: 1;
}

#breadcrumbs ol li:last-child a{
    pointer-events: none;
}

@media screen and (min-width: 1024px) {
    #breadcrumbs ol{
        flex-wrap: wrap;
        overflow-x: auto;
        word-break: normal;
        white-space: normal;
        font-size: 16px;
    }
    #breadcrumbs ol li:nth-of-type(2){
        width: 60%;
    }
    #breadcrumbs ol li:not(:last-child) a::after{
        width: 10px;
        right: 8px;
    }
    #breadcrumbs ol li a{
        padding-right: 25px;
    }
}