<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.t-doctors-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--size6) var(--size3);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  background-color: #F9F9F9;
  border-top: solid 2px var(--color-green);
}
@media screen and (max-width: 638px) {
  .t-doctors-result {
    padding: var(--size3) var(--size2);
    gap: 1.6rem;
  }
}

.t-doctors-result__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-heading);
  gap: 2rem;
  line-height: 1;
}
.t-doctors-result__title dt {
  color: #292B3C;
  font-size: 2rem;
}
.t-doctors-result__title dd {
  color: var(--color-green);
  font-size: 4rem;
}
@media screen and (max-width: 638px) {
  .t-doctors-result__title {
    gap: 1.6rem;
  }
  .t-doctors-result__title dt, .t-doctors-result__title dd {
    width: 100%;
    text-align: center;
  }
  .t-doctors-result__title dt {
    font-size: 1.6rem;
  }
  .t-doctors-result__title dd {
    font-size: 2.4rem;
    line-height: 1.25;
  }
}

.t-doctors-result__text {
  font-size: var(--fontsize15);
  color: var(--color-black3);
  line-height: 1.5;
}
@media screen and (max-width: 638px) {
  .t-doctors-result__text {
    text-align: left;
  }
}</pre></body></html>