/* 予約の際の注意点 */
.rCaution ul {
  color: #668ad8;
  border: double 5px #668ad8; /*二重線 太さ 色*/
  background: #f1f8ff;
  padding: 0.5em 0.5em 0.5em 2em;
}

.rCaution ul li {
  line-height: 1.5;
  padding: 0.5em 0;
}

/* 各予約の説明テキスト */
.rtext {
  padding: 0.5em 1em;
  margin: 2em 0;
  border-radius: 7%;
}

/* 症状のackground-colorを交互に変化 */
.bgcA {
  background-color: lavenderblush;
}
.bgcB {
  background-color: honeydew;
}
.bgcC {
  background-color: azure;
}

.rtext h5 {
  width: max-content;
  font-weight: bold;
}

/* LINE予約 */

.LINEQR {
  text-align: center;
}

.LINEQR img {
  width: 300px;
  height: 300px;
}

/* 電話予約 */

.tel p {
  font-size: 36px;
  text-align: center;
}

/* タップで電話発信 */

.btn-tel{
  position: relative;
  display: block;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  text-align: center;
  background: #f75065;
  padding: 5px 0;
  margin: auto;
  max-width: 250px;
}

.btn-tel::after{
  content: "";
  background: url(img/telephone.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
}

/* スマホでのみ対応 */

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
