@charset "utf-8";
.button {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.button .mallLink.reserve, .button .mallLink.waiting {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.button .mallLink.reserve::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/btn_index02_no.png) no-repeat 0 0/100%;
  content: "";
}
.button .mallLink.reserve::after {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.button .mallLink.on.reserve::after {
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s;
  background: url(../img/btn_index02_on.png) no-repeat 0 0/100%;
  content: "";
}
.button .mallLink.waiting::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/btn_index03_no.png) no-repeat 0 0/100%;
  content: "";
}
.button .mallLink.waiting::after {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.button .mallLink.on.waiting::after {
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s;
  background: url(../img/btn_index03_on.png) no-repeat 0 0/100%;
  content: "";
}
.button img {
  width: 100%;
  height: auto;
}
.text_link {
  margin-top: 20px;
  text-align: center;
}
/* add 20210312 */
@media screen and (max-width: 768px) {
  .button .mallLink {
    width: 70%;
    height: auto;
  }
}