/* セクション全体 */
.doctor_profile {
  width: 90%;
  background-color: #fdf6f4;
  overflow: hidden;
  margin: 40px auto 48px;
  align-items: center;
}

/* ヘッダー（ピンク帯） */
.doctor_profile_header {
  background-color: #eeb9b8;
  padding: 20px 24px;
  text-align: center;
}

.doctor_profile_heading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ボディ */
.doctor_profile_body {
  padding: 32px 28px 36px;
  text-align: center;
}

/* クリニック名・院長名 */
.doctor_profile_clinic {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
}

.doctor_profile_name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px;
  letter-spacing: 0.06em;
}

/* 写真（丸型） */
.doctor_profile_photo_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.doctor_profile_photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* 紹介文 */
.doctor_profile_desc {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
  text-align: left;
  margin: 0 0 28px;
}

/* ボタン群 */
.doctor_profile_btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.doctor_profile_btn {
  width: 100%;
  display: inline-block;
  background-color: #eeb9b8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.2s ease;
}

.doctor_profile_btn:hover {
  opacity: 0.8;
}

/* 経歴・資格セクション */
.doctor_profile_section {
  margin-bottom: 28px;
  text-align: left;
}

.doctor_profile_section:last-child {
  margin-bottom: 0;
}

/* セクションタイトル（両脇に横線） */
.doctor_profile_section_title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #eeb9b8;
  margin: 0 0 16px;
  letter-spacing: 0.06em;
}

.doctor_profile_section_title::before,
.doctor_profile_section_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #eeb9b8;
  opacity: 0.5;
}

/* リスト */
.doctor_profile_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doctor_profile_list li {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  padding: 4px 0;
}

.doctor_profile_photo-02 {
  width: 90%;
  margin-bottom: 20px;
}

.doctor_profile_01 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   PC レイアウト（900px以上）
   ============================================================ */
@media (min-width: 900px) {
  .doctor_profile {
    margin: 48px auto 56px;
  }

  .doctor_profile_contents {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
  }

  .doctor_profile_photo-02 {
    width: 90%;
    margin-bottom: 20px;
  }

  .doctor_profile_heading {
    font-size: 22px;
  }

  .doctor_profile_body {
    padding: 40px 48px 48px;
    max-width: 800px;
    margin: 0 auto;
  }

  .doctor_profile_clinic {
    font-size: 15px;
  }

  .doctor_profile_name {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .doctor_profile_photo {
    width: 210px;
    height: 210px;
  }

  .doctor_profile_desc {
    font-size: 15px;
  }

  .doctor_profile_btn {
    font-size: 15px;
    padding: 14px 32px;
    min-width: 160px;
  }

  .doctor_profile_section_title {
    font-size: 16px;
  }

  .doctor_profile_list li {
    font-size: 14px;
  }

  .doctor_profile_section-00 {
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
    margin-top: 30px;
  }

  .doctor_profile_section {
    margin-bottom: 28px;
    text-align: left;
    flex: 1;
  }
}
