/*
 * 医師紹介ページ - PC用（769px以上）
 */

/* ========================================
   Doctor Profiles Section（医師紹介）
   ======================================== */
.doctor-profiles {
  margin-top: 80px;
  padding: 80px 0 120px;
  background: var(--color-bg);
}

.doctor-profiles__inner {
  width: calc(100% - 40px);
  max-width: 1500px;
  margin: 0 auto;
}

.doctor-profiles__title {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 60px;
}

.doctor-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ========================================
   Doctor Card（医師カード）
   ======================================== */
.doctor-card {
  background: #f9f7f4;
  padding: 50px;
  border-radius: 30px;
}

/* 上段：プロフィールメイン情報 */
.doctor-card__main {
  display: flex;
  gap: 50px;
  align-items: center;
}

.doctor-card__photo {
  flex-shrink: 0;
  width: 35%;
  min-width: 260px;
}

.doctor-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.doctor-card__info {
  flex: 1;
}

.doctor-card__name {
  font-size: 26px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
}

.doctor-card__intro {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.doctor-card__intro p {
  margin-bottom: 1em;
}

.doctor-card__intro p:last-child {
  margin-bottom: 0;
}

/* 区切り線（点線） */
.doctor-card__divider {
}

/* 下段：経歴・資格情報（表風レイアウト） */
.doctor-card__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid #b8a991;
  border-bottom: 2px solid #b8a991;
  background: #fff;
}

.doctor-card__row {
  display: flex;
  border-bottom: 1px solid #e9e4dd;
}

.doctor-card__row:last-child {
  border-bottom: none;
}

.doctor-card__label {
  width: 180px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-card__value {
  padding: 20px 0 20px 30px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* 未設定時メッセージ */
.no-content-message {
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 60px 0;
}
