@charset "UTF-8";

/* 全体 */
.breadcrumb {
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 14px;
}

/* 各項目 */
.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* セパレータ自動 */
.breadcrumb-item:not(:last-of-type)::after {
    content: "｜";
    margin: 0 2px;
    font-size: 12px;
    color: #9a9a9a;
}

/* 先頭の項目に入れる */
.pd-l {
    padding-left: 5px;
}