@charset "UTF-8";
/* =========================================================
   医院からのご案内 — 専用スタイル
   ========================================================= */

/* ---------------------------------------------------------
   イントロ
   --------------------------------------------------------- */
.info_intro {
  padding: 50px 0 0;
}
.info_intro-text {
  font-size: 15px;
  line-height: 2;
  color: var(--font-color);
}
@media (min-width: 768px) {
  .info_intro {
    padding: 70px 0 0;
  }
  .info_intro-text {
    text-align: center;
  }
}

/* ---------------------------------------------------------
   共通セクション
   --------------------------------------------------------- */
.info_section {
  padding: 50px 0;
  border-bottom: 1px solid var(--primary-200);
}
.info_section:last-of-type {
  border-bottom: none;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .info_section {
    padding: 60px 0;
  }
  .info_section:last-of-type {
    padding-bottom: 100px;
  }
}

/* セクションタイトル */
.info_section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-500);
  display: inline-block;
}
@media (min-width: 768px) {
  .info_section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

/* セクションリード */
.info_section-lead {
  font-size: 14px;
  line-height: 1.8;
  color: var(--font-color);
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .info_section-lead {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------------------
   リスト（箇条書き）
   --------------------------------------------------------- */
.info_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info_list-item {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.9;
  color: var(--font-color);
}
.info_list-item + .info_list-item {
  margin-top: 12px;
}
.info_list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
}
@media (min-width: 768px) {
  .info_list-item {
    font-size: 15px;
  }
}

/* テキスト（単独段落） */
.info_text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--font-color);
}
@media (min-width: 768px) {
  .info_text {
    font-size: 15px;
  }
}

/* ---------------------------------------------------------
   施設基準カード
   --------------------------------------------------------- */
.info_standards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info_standards-item {
  background: var(--primary-100, #f5f9fa);
  border-radius: 8px;
  padding: 24px;
}
.info_standards-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-600, #2a6479);
  margin-bottom: 10px;
  line-height: 1.5;
}
.info_standards-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--font-color);
}
@media (min-width: 768px) {
  .info_standards {
    gap: 16px;
  }
  .info_standards-item {
    padding: 28px 32px;
  }
  .info_standards-title {
    font-size: 17px;
  }
  .info_standards-text {
    font-size: 15px;
  }
}

/* ---------------------------------------------------------
   連携医療機関
   --------------------------------------------------------- */
.info_hospital {
  background: #fff;
  border: 1px solid var(--primary-200);
  border-radius: 8px;
  padding: 24px;
  max-width: 500px;
}
.info_hospital-dl {
  display: flex;
  gap: 16px;
  font-size: 14px;
  line-height: 1.8;
}
.info_hospital-dl + .info_hospital-dl {
  margin-top: 10px;
}
.info_hospital-dt {
  flex-shrink: 0;
  width: 5em;
  font-weight: 600;
  color: var(--primary-500);
}
.info_hospital-dd {
  color: var(--font-color);
}
@media (min-width: 768px) {
  .info_hospital {
    padding: 28px 32px;
  }
  .info_hospital-dl {
    font-size: 15px;
  }
}
