body#restportal .section .portal {
  display: flex;
  justify-content: space-around;
}
body#restportal .section .portal li {
  flex-basis: 46%;
}
body#restportal .section .portal li a {
  display: flex;
  align-items: center;
  padding: 1.25em 2.5em;
  text-decoration: none;
  background-color: #d4ad74;
  -moz-border-radius: 1.25em;
  -webkit-border-radius: 1.25em;
  border-radius: 1.25em;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
body#restportal .section .portal li a::before {
  content: '';
  width: 6.25em;
  height: 6.25em;
  background-repeat: no-repeat;
  background-position: 0 0;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
body#restportal .section .portal li a:hover {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
body#restportal .section .portal li a span {
  flex-grow: 1;
  color: #fff;
  font-size: 1.875em;
  font-weight: 700;
  text-align: center;
}
body#restportal .section .portal li:nth-child(1) a::before {
  background-image: url("../images/restportal/icon_restaurant.svg");
}
body#restportal .section .portal li:nth-child(2) a::before {
  background-image: url("../images/restportal/icon_store.svg");
}

/* RWD
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  body#restportal .section .portal li a {
    flex-direction: column;
    align-items: center;
    padding: 1.25em 0;
    -moz-border-radius: 0.625em;
    -webkit-border-radius: 0.625em;
    border-radius: 0.625em;
  }
  body#restportal .section .portal li a::before {
    width: 3.125em;
    height: 3.125em;
  }
  body#restportal .section .portal li a span {
    margin-top: 0.625em;
    font-size: 1.125em;
  }
}
