@charset"UTF-8";
      /* メニューのリンク下線を非表示に */
a {
text-decoration:none;
}
/* リンクボタン */
.button-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:3% auto;
    padding: .9em 2em;
    border: none;
    border-radius: 25px;
    background-color: #13d0c3;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button-2:hover {
    background-color: #03c0b3;
}

/* 簡易更新ログテーブル */
table {
  margin:2vh;
  width: 95%;
  height: auto;
}

th,td{
  padding: 1.5vh;
  border:solid 2px #aaaaaa;
  }