.attention-info-panel {
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    /* ほんのり動くようなグラデーション背景 */
    background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
    border: 2px solid #b11226;
    padding: 12px 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(177, 18, 38, 0.1);
}

.panel-tag {
    background: #ff4757; /* 少し明るい赤 */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 12px;
    animation: pulse 2s infinite; /* 拍動アニメーション */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.panel-body {
    flex-grow: 1;
    font-size: 15px;
    color: #222;
}

.panel-label {
    font-weight: bold;
    color: #b11226;
    margin-right: 5px;
}

.panel-btn {
    margin-left: 20px;
    padding: 10px 25px;
    background: #b11226;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.panel-btn:hover {
    background: #e63946;
    transform: translateX(3px); /* 矢印っぽく少し右に動く */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .attention-info-panel {
        flex-direction: column;
        text-align: center;
    }
    .panel-btn {
        margin: 10px 0 0 0;
        width: 100%;
    }
}