/*-------------------------------------------------
 保安・農業ボタン
-------------------------------------------------*/
#box ul {
  list-style: none;
}

#box
li {
  display: inline-block;
  width: 350px;
  height: 20px;
  background-color: none;
  padding: 50px
  margin: 10px;
  box-shadow: none; /* ここで初期値を設定しないとEdgeやIEで動かないようだ*/
  animation: blink 1s linear infinite;
}
#box
li:nth-of-type(1) {
  animation-delay: 0.5s;
}

#box
li:nth-of-type(2) {
  animation-delay: 1s;
}

* {
  box-sizing: border-box;
}