.reservationPage h1 {
  width: 300px;
  margin: 2em auto 0;
}
.reservationPage h1 a {
  display: block;
}
.reservationPage h1 a img {
  width: 100%;
}
.reservationPage h2 {
  color: #ec6d81;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.reservationPage .inner {
  width: 92%;
}
.reservationPage .inner table {
  border: 1px solid #ddd;
  font-size: 0.9em;
  border-bottom: none;
  margin-bottom: 3em;
  width: 100%;
}
.reservationPage .inner table th {
  box-sizing: border-box;
  display: block;
  padding: 0.5em;
  text-align: center;
  background-color: #fbf7f0;
  border-bottom: 1px solid #ddd;
}
.reservationPage .inner table td {
  box-sizing: border-box;
  text-align: left;
  padding: 1em 0.5em;
  display: block;
  border-bottom: 1px solid #ddd;
}
.reservationPage .inner a.pinkBtn {
  padding: 0.7em 0;
  text-decoration: none;
  background-color: #ec6d81;
  display: block;
  color: #fff;
  border-radius: 10px;
  font-size: 1.2em;
}
.reservationPage .inner a.pinkBtn:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 580px) {
  .reservationPage .inner {
    width: 980px;
  }
  .reservationPage .inner h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #ec6d81;
  }
  .reservationPage .inner table tr {
    display: flex;
  }
  .reservationPage .inner table th {
    display: inline-block;
    padding: 1.5em;
    width: 15%;
  }
  .reservationPage .inner table td {
    display: inline-block;
    padding: 1.5em;
    flex: 1;
  }
  .reservationPage .inner a.pinkBtn {
    width: 500px;
    margin: 0 auto;
  }
}