@charset "UTF-8";

/* ファーストビュー */
.c-firstText {
    margin-bottom: 20px;
}
.c-firstText p {
    font-size: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .c-firstText {
    margin-bottom: 10px;
  }
  .c-firstText p {
    font-size: 16px;
  }
}

/* 予約方法ボタン */
.c-webreserveBTN a {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-webreserveBTN a:hover {
  opacity: 0.5;
}
.c-webreserveBTN.arrow a:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-webreserveBTN a {
  border-radius: 8px;
  background: #FD8A24;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
}
.c-webreserveBTN a span {
  display: block;
}
.c-webreserveBTN.arrow a {
  padding: 13px 0;
}
.c-webreserveBTN.arrow a:after {
  content: "";
  right: 17.5px;
  background-image: url("../../img/shop/btn/arrow-right-white.svg");
  width: 7.5px;
  height: 12px;
}

/* 予約フォーム */
.c-webreserved__form__detail__text p a {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-webreserved__form__detail__text p a:hover {
  opacity: 0.5;
}
.c-webreserved__form__detail__text p {
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .c-webreserved__form__detail__text p {
    font-size: 12px;
    line-height: 20px;
  }
}
.c-webreserved__form__detail__text p a {
  color: #FC9810;
  text-decoration: underline;
}
.c-webreserved__form__detail__text p span {
  font-weight: 700;
}