@charset "UTF-8";
.border_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 400px; /* ボタン幅 */
  max-width: 400px; /* ボタン幅 */
  border: 2px solid #69CEAD; /* 線幅・種類・色 */
  background: #fff; /* 背景色 */
  padding: 1em 2em;
  font-weight: bold; /* 文字の太さ */
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

/* マウスオーバーした際のデザイン */
.border_btn01:hover {
  color: #fff; /* 文字色 */
  background: #69CEAD; /* 背景色 */
}