/* パンくず全体 */
.breadcrumbs {
    margin: 1rem 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* リストを横並び */
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: .5rem;

    align-items: center;
}

/* li */
.breadcrumbs li {
    display: flex;
    align-items: center;
}

/* 区切り */
.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: .5rem;
    color: #999;
}

/* リンク */
.breadcrumbs a {
    text-decoration: none;
    color: #4d6b52;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* 現在ページ */
.breadcrumbs li:last-child {
    color: #444;
    font-weight: 600;
}

/* 薄い背景 */
.breadcrumbs {
    background: #f7f6f2;
    border-radius: 8px;
    padding: .75rem 1rem;
    margin-bottom: 2rem;
}