/* お知らせピル [tk_news_pill]（BONO型・最新1件） */
.tk-news-wrap{
    display:flex;
    justify-content:center;
    margin:4px 0 20px;
}
.tk-news-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    max-width:92%;
    padding:10px 22px;
    background:#fff;
    border:1px solid #ebedf2;
    border-radius:999px;
    box-shadow:0 4px 14px rgba(30,40,70,.06);
    text-decoration:none;
    transition:transform .12s ease, box-shadow .12s ease;
}
.tk-news-pill:hover{
    transform:translateY(-1px);
    box-shadow:0 6px 18px rgba(30,40,70,.10);
}
.tk-news-badge{
    flex-shrink:0;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    color:#f25c2a;
}
.tk-news-title{
    font-size:13px;
    font-weight:700;
    color:#1f2733;
    letter-spacing:.02em;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
@media (max-width:520px){
    .tk-news-pill{ padding:9px 16px; }
    .tk-news-title{ white-space:normal; font-size:12px; line-height:1.5; }
}
