/*
 * 医師紹介ページ - スマホ用（768px以下）
 */

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

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

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

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

/* ========================================
   Doctor Card（医師カード）
   ======================================== */
.doctor-card {
  margin-top: 30px;
}

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

.doctor-card__photo {
  width: 70%;
  min-width: 240px;
  max-width: 400px;
  margin: 0 auto;
}

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

.doctor-card__info {
  text-align: center;
}

.doctor-card__name {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 16px;
  display: inline-block;
}

.doctor-card__intro {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  text-align: left;
}

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

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

/* 下段：経歴・資格情報（表風レイアウト） */
.doctor-card__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-accent-tan);
  border-bottom: 1px solid var(--color-accent-tan);
  background: #faf9f7;
  margin-top: 30px;
  padding: 20px 0;
}

.doctor-card__row {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
.doctor-card__row:first-child {
  padding-top: 0;
}
.doctor-card__row:last-child {
  padding-bottom: 0;
}

.doctor-card__row:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  border-bottom: 1px dashed #cac3b9;
  margin: 0 auto;
}

.doctor-card__row:last-child:before {
  content: none;
}

.doctor-card__label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333;
  /* margin-bottom: 10px; */
  padding-left: 12px;
  text-align: center;
  /* border-left: 3px solid var(--color-accent-tan); */
}

.doctor-card__value {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  padding-left: 15px;
}

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