@charset "UTF-8";

/* -----------------------------------------------
Telemedicine Research Page
ヒーローセクションは common.css の .page-hero を使用
----------------------------------------------- */

/* -----------------------------------------------
Content Section
----------------------------------------------- */
.telemedicine-content {
  background-color: #fff;
}

.telemedicine-content__container {
  max-width: var(--container-max);
  margin-inline: auto;
}

@media (max-width: 767px) {
  .telemedicine-content {
    padding-block: 50px 60px;
  }

  .telemedicine-content__container {
    padding-inline: 4%;
  }
}

@media (min-width: 768px) {
  .telemedicine-content {
    padding-block: 80px 100px;
  }

  .telemedicine-content__container {
    padding-inline: 20px;
  }
}


/* -----------------------------------------------
Handbook Block
----------------------------------------------- */
.telemedicine-handbook {
  margin-bottom: 60px;
}

.telemedicine-handbook__header {
  margin-bottom: 28px;
}

.telemedicine-handbook__body p {
  line-height: 2;
  color: #333;
}

.telemedicine-handbook__body p+p {
  margin-top: 0;
}

@media (max-width: 767px) {
  .telemedicine-handbook {
    margin-bottom: 50px;
  }

  .telemedicine-handbook__body p {
    font-size: var(--fs-14);
  }
}

@media (min-width: 768px) {
  .telemedicine-handbook__body p {
    font-size: 16px;
  }
}


/* -----------------------------------------------
Download Block
----------------------------------------------- */
.telemedicine-download__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.telemedicine-download__title-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 4px solid transparent;
  background-color: white;
  background-image:
    linear-gradient(white, white),
    linear-gradient(to right, #0099d9 0%, #004091 100%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.telemedicine-download__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.telemedicine-download__item {
  padding: 4px 0;
}

.telemedicine-download__link {
  color: #333;
  text-decoration: none;
  display: inline;
  line-height: 2;
}

.telemedicine-download__link-title {
  color: #0099d9;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .telemedicine-download__title {
    font-size: var(--fs-18);
  }

  .telemedicine-download__link {
    font-size: var(--fs-14);
  }
}

@media (min-width: 768px) {
  .telemedicine-download__title {
    font-size: 22px;
  }

  .telemedicine-download__link {
    font-size: 16px;
  }
}