/* Information Bar Component - 横長電光掲示板風インフォメーションバー */
    .info-bar-wrapper {
        background: #000;
        height: 50px;
        width: 100%;
        overflow: hidden;
        border-top: 2px solid #333;
        border-bottom: 2px solid #333;
        position: relative;
    }

    .info-bar {
        height: 100%;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
        position: relative;
    }

    .info-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(90deg,
                transparent 0px,
                rgba(0, 255, 0, 0.03) 1px,
                transparent 2px,
                transparent 8px);
        pointer-events: none;
    }

    .info-scroll-content {
        display: flex;
        align-items: center;
        white-space: nowrap;
        animation: scrollText 30s linear infinite;
        font-family: "Courier New", "Arial", monospace;
        font-size: 16px;
        font-weight: 500;
        color: #00ff88;
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }

    .info-item {
        display: inline-flex;
        align-items: center;
        margin-right: 60px;
        padding: 0 20px;
    }

    .info-icon {
        margin-right: 8px;
        color: #ffaa00;
        font-size: 14px;
    }

    .info-text {
        color: #00ff88;
    }

    .info-highlight {
        color: #ff6bff;
        font-weight: bold;
    }

    .info-urgent {
        color: #ff4444;
        animation: blink 1.5s infinite;
    }

    @keyframes scrollText {
        0% {
            transform: translateX(100vw);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes blink {

        0%,
        50% {
            opacity: 1;
        }

        51%,
        100% {
            opacity: 0.3;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .info-scroll-content {
            animation: none;
            transform: translateX(0);
            justify-content: center;
            width: 100%;
        }

        .info-urgent {
            animation: none;
            opacity: 1;
        }
    }

    /* Bootstrap md未満（<768px）でフォントサイズ調整 */
    @media (max-width: 767.98px) {
        .info-scroll-content {
            font-size: 14px;
        }

        .info-item {
            margin-right: 40px;
            padding: 0 15px;
        }
    }