@charset "UTF-8";
/* CSS Document */

.button09 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 100px;
  color: #333;
  font-size: 10px;
  font-weight: 700;
  background-color: #EAEAEA;
  transition: 0.3s;
}

.button09 a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #888888;
  transition: 0.2s;
}

.button09 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(225deg);
}

.button09 a:hover::before {
  top: 0;
  left: 0;
border: 2px solid #FFE200;
}

.button09 a:hover {
  text-decoration: none;
  background-color: #FFE200;
}