/* 医院様専用のCSS */

/*診療内容*/
.service-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.service-block img {
  width: 32%;
  height: auto;
}

/*でか文字対応*/
p,
strong {
  font-size: 1.2em;
  line-height: 1.5;
}

.content h2 {
  font-size: 1.6em;
}

.content h3 {
  font-size: 1.4em;
}

.content h4 {
  font-size: 1.2em;
}

/*スマホ版追従ボタンがフッターに被らないようにするためのCSS*/
@media screen and (max-width: 768px) {
  .copylight {
    width: 100%;
    padding: 30px 0 80px;
    background-color: #f0c0b9;
    text-align: center;
    color: #fff;
  }

  /*診療内容*/
  .service-block {
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
  }

  .service-block img {
    width: 100%;
    height: auto;
  }
}