.icon-red-blink {
        border-radius: 0.4rem;
        padding: 0.1rem 0.5rem;
        margin-right: 0.5rem; /*アイコンの画面右側はみ出し防止*/
        font-weight: bold;
        color: white;
        position: relative;
        top: -0.15rem;
        left: 0.8rem;
		white-space: nowrap;
	    animation: blink-red 0.7s infinite alternate;
    }

.steady-bgcolor {
        background-color: red;
    }/*ブリンクを打ち消して常時表示*/

@keyframes blink-red {
   0% { background:red }
  50% { background:red }
 100% { background: }
}

.icon-red-blink-clr-eea {
        border-radius: 0.4rem;
        padding: 0.1rem 0.5rem;
        margin-right: 0.5rem; /*アイコンの画面右側はみ出し防止*/
        font-weight: bold;
        color: palegoldenrod;
        position: relative;
        top: -0.15rem;
        left: 0.8rem;
		white-space: nowrap;
	    animation: blink-red 0.7s infinite alternate;
    }/*背景がpalegoldenrod時用*/
