/* カテゴリ階層ナビ */
.p-termNavigation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5em;
    margin: 2.5em 0;
    font-size: 11px !important;
    line-height: 1.6;
}


/* 現在のカテゴリー */
.p-termNavigation .c-categoryList__link.-current {
    color: #ffffff;
    text-decoration: none;
    padding: 0.2em 1em;
    border-radius: 12px; /* 丸みを緩く */
    background: #af66a6;
    transition: all 0.25s ease;
}

.p-termNavigation .c-categoryList__link.hov-flash-up:hover {
    background: #3e3e3e;
    color: #fff;
}
.p-termNavigation a {
text-decoration: none !important;

}

/* 親・子カテゴリーリンク */
.p-termNavigation .c-categoryList__link.hov-flash-up {
 font-weight: 600;
    color: #af66a6;           /* 文字は黒 */
    background: #ffffff;       /* 中は白 */
    border: 1px solid #af66a6; /* 枠線 */
    border-radius: 12px;
    padding: 0.2em 1em;
}

/* 親カテゴリーの前にフォルダーアイコン（リンク外） */
.p-termNavigation .c-category-folder::before {
    content: "\f07b"; /* FontAwesome フォルダー */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* solid */
    color: #af66a6;
    margin-right: 0.3em;
}

/* セパレーションにチェヴロン */
.p-termNavigation .c-categoryList__separation::before {
    content: "\f054"; /* FontAwesome チェヴロン */
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #af66a6;
    margin: 0em;
}



