/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2026 | 20:08:38 */
/* ==========================================
   隠されているパンくずのタイトルを強制表示する＋折り返し
========================================== */
.p-breadcrumb__list .p-breadcrumb__item:last-child {
    display: inline !important; /* inline-blockからinlineに変更すると折り返しやすくなります */
    visibility: visible !important;
}

.p-breadcrumb__list .p-breadcrumb__item:last-child .p-breadcrumb__text {
    display: inline !important;
    color: #333333 !important;
    opacity: 1 !important;
    
    /* 追加：テキストの折り返しを許可 */
    white-space: normal !important; 
    word-break: break-all !important; 
}