body {
  font-family: 'Noto Serif JP', serif;
  color: #454545;
  margin: 0;
}
h2 {
  margin: 0;
}
img {
  max-width: 100%;
}
section {
  padding: 50px 20px;
}
.wrapper {
  max-width: 520px;
  margin: auto;
}
p,
li {
  font-size: 14px;
  line-height: 1em;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
button:active {
  border: none;
  outline: none;
  transform: translateY(1px);
}
.bold {
  font-weight: 700;
}
.title {
  font-size: 22px;
  color: #2e2422;
  padding-bottom: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}
.title:before {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: linear-gradient(45deg, #69B3AE, #73a5c9);
}
.reservations {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.reservation__label {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.8em;
}
.to_schedule {
  background: rgba(142,106,87, 0.7);
  color: #fff;
  font-family: 'Noto Serif JP';
  font-size: 15px;
  text-align: center;
  border-radius: 3px;
  line-height: 22px;
  width: 100%;
  padding: 12px 4px;
  margin: 10px 0;
  outline: none;
}
.footer {
  text-align: center;
  background: #f5f5f5;
  padding: 40px 10px;
}
.footer a {
  color: #454545;
  text-decoration: none;
  line-height: 20px;
  font-size: 12px;
  cursor: pointer;
}
.footer img {
  padding: 12px 0;
  height: 40px;
  cursor: pointer;
}
.footer__c {
  font-size: 12px;
  line-height: 0;
}
@media screen and (max-width: 959px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  section {
    padding: 120px 3%;
  }
  .wrapper {
    width: 960px;
    margin: auto;
  }
  p,
  li {
    font-size: 18px;
    line-height: 1.8em;
  }
  button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .title {
    font-size: 31px;
    color: #2e2422;
    padding-bottom: 60px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 30px;
  }
  .sp-only {
    display: none;
  }
  .reservations {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .reservation__label {
    font-size: 16px;
  }
  .to_schedule {
    background: rgba(142,106,87, 0.7);
    color: #fff;
    font-family: 'Noto Serif JP';
    font-size: 15px;
    text-align: center;
    border-radius: 3px;
    line-height: 22px;
    width: 100%;
    padding: 10px 12px;
    margin: 12px 0;
  }
  .footer {
    text-align: center;
    background: #f5f5f5;
    position: relative;
    padding: 60px 10px;
  }
  .footer a {
    color: #454545;
    text-decoration: none;
    line-height: 20px;
  }
  .footer__below {
    display: flex;
    justify-content: center;
    gap: 3%;
  }
  .footer img {
    padding: 7px 0;
    height: 40px;
    cursor: pointer;
  }
  .footer__c {
    margin-top: 30px;
    line-height: 0;
  }
}