/* 医院様専用のCSS */
html {
  scroll-behavior: smooth;
}

/*予約ボタン*/
.web-reserve-button {
  display: block;
  width: 80%;
  margin: 6vw auto 0;
}

.web-reserve-button a {
  display: block;
  background-color: #6ed459;
  width: 100%;
  margin-inline: auto;
  padding-block: 4vw;
  color: #ffffff;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  border-radius: 320px;
}

@media print,
screen and (min-width: 1025px) {
  .web-reserve-button {
    display: block;
    width: 32%;
    margin: 2vw auto;
  }

  .web-reserve-button a {
    padding-block: 2vw;
    font-size: 1.1vw;
    transition: all ease-out .25s;
  }

  .web-reserve-button a:hover {
    opacity: 0.7;
  }
}

/* アンカーボタン */
a.btn2 {
  display: inline-block;
  background: #6ed459;
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  border-radius: 6px;
  padding: 4px;
  text-decoration: none;
  margin-top: 0.5em;
  width: 48%;
}

a.btn2::before {
  font-family: "Font Awesome 5 Free";
  /*ent: '\f105';*/
  font-weight: 900;
  margin-right: 0.2em;
  color: #ffffff;
}

.info .desc {
  height: 80vw;
  overflow-y: scroll;
}

@media print,
screen and (min-width: 1025px) {
  .info .desc {
    height: 400px;
  }
}