/* 2026 バッジ処理  */
.announcement-badge-global {
    position: fixed;
    top: 120px;
    right: 14px;
    z-index: 9999;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    background-color: #d00;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* バッジクリック時の小ボックス対応 */
.announcement-badge-popup {
    position: fixed;
    z-index: 10000;
    min-width: 220px;
    max-width: 320px;
    padding: 8px 10px;
    border: 1px solid #bfc7d1;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    white-space: pre-line;
}

.announcement-badge-popup[hidden] {
    display: none;
}