@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  background-color: #fffae7; /* RGB */
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.1rem;
  text-align: left;
}
button {
  font-family: "ヒラギノ明朝 Pro", "游明朝体", "ヒラギノ明朝 ProN", "メイリオ", sans-serif;
}
.none {
  display: none;
}
.max-width_inner {
  width: calc(100% - 100px);
  margin: auto;
  max-width: 1000px;
}
.button-wrap {
  text-align: center;
}
.order-button a {
  display: block;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  letter-spacing: clamp(0.1rem, 1vw, 0.5rem);
  font-weight: 500;
  color: #fff;
  background: #EBDB61;
  border: none;
  padding: 1.5rem 0;
  border-radius: 15px;
  border-bottom: 4px solid #BEAF40;
  width: 55%;
  margin: 0 auto 6%;
}
.order-button a:hover {
  background: #EFE27F;
  border-bottom: 4px solid #C9BA4D;
}
@media (min-width: 580px) and (max-width: 960px) {
  .button-wrap {
    text-align: center;
  }
  .order-button a {
    font-size: 24px;
    letter-spacing: 0.1rem;
    border-radius: 12px;
    width: 58%;
    margin-bottom: 4%;
    padding: 1rem 0;
  }
  .order-button a:hover {
    background: #EFE27F;
    border-bottom: 4px solid #C9BA4D;
  }
}
@media (max-width:580px) {
  .order-button a {
    font-size: clamp(18px, 4.5vw, 22px);
    letter-spacing: 0.1rem;
    border-radius: 8px;
    width: 75%;
    padding: 20px 0 20px 0;
    margin-bottom: 8%
  }
}