/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 29 2026 | 13:03:06 */
/*//////////////////////////////////
「記事一覧（Display Postsプラグイン）」や「パンくずリスト」のデザインを微調整
/*//////////////////////////////////

/* 日付の右側にスペースを入れる */
.my-list .date {
    margin-right: 15px; /* ここの数字でスペースの広さを調整 */
}

/* もし「日付を先頭」にしている場合は、こちらで間隔を調整 */
.my-list .listing-item {
    display: flex;
    gap: 15px; /* 日付とタイトルの間の余白 */
}
/* Display Postsで表示されるSNSシェアボタンを非表示にする */
.display-posts-listing .sb {
    display: none !important;
}

/* もしボタン周りの余白や「シェアする」という文字が残る場合はこちらも追加 */
.display-posts-listing .sns_share,
.display-posts-listing .secondary_sns_share {
    display: none !important;
}
.sb {
    display: none !important;
}

/* パンくずを横並びにする強制指定 */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/"; /* 区切り文字を表示 */
    padding: 0 10px;
    color: #ccc;
}