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

.selectBtn {
  display: flex!important;
  gap: 15px 20px;
}

.selectBtn li {
  width: calc((100% - 20px) / 2);
}

.selectBtn a {
  display: block;
  padding: 30px 15px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.3rem;
  border-bottom: 7px solid #D6A727;
  background: #FCBE0C!important;
  color: inherit;
  font-size: 180%;
}
.selectBtn a:hover {
  margin-top: 6px;
  border-bottom: 1px solid #D6A727;
  text-decoration: none;
}

@media screen and (max-width: 567px) {
  .selectBtn {
    flex-wrap: wrap;
  }

  .selectBtn li {
    width: 100%;
  }
}