/* ============================================================
   監修者紹介ページ — supervisor.css
   固定ページのカスタムHTMLブロックに貼り付けて使用
   ============================================================ */

/* --- 全体ラッパー --- */
.sv-page {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 0 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  line-height: 1.8;
}

/* --- ヒーローセクション --- */
.sv-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 0 32px;
  border-bottom: 2px solid #1a3a5c;
}
.sv-hero__photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a3a5c;
}
.sv-hero__body {
  flex: 1;
}
.sv-hero__label {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  background: #1a3a5c;
  padding: 2px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.sv-hero__name {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 4px;
}
.sv-hero__name-en {
  font-size: 14px;
  color: #888;
  margin: 0 0 12px;
  letter-spacing: .05em;
}
.sv-hero__title {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* --- セクション共通 --- */
.sv-section {
  padding: 36px 0 28px;
  border-bottom: 1px solid #e5e5e5;
}
.sv-section:last-child {
  border-bottom: none;
}
.sv-section__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  padding-left: 20px !important;
  border-left: 4px solid #1a3a5c !important;
  line-height: 1.4;
}

/* --- 趣味写真 --- */
.sv-hobby-img {
  display: block;
  max-width: 100%;
  border-radius: 8px;
  margin: 0 0 16px;
}

/* --- メッセージ --- */
.sv-message p {
  margin: 0 0 16px;
}

/* --- 経歴タイムライン --- */
.sv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.sv-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #ccd5de;
}
.sv-timeline li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
}
.sv-timeline li::marker {
  content: none;
}
.sv-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #1a3a5c;
  border-radius: 50%;
}
.sv-timeline li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sv-timeline__year {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a3a5c;
  min-width: 5em;
}
.sv-timeline__desc {
  flex: 1;
  font-size: 15px;
}

/* --- 資格リスト --- */
.sv-qualifications {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sv-qualifications li::marker {
  content: none;
}
.sv-qualifications li {
  flex: 0 0 auto;
  max-width: 100%;
  background: #f4f7fa;
  border: 1px solid #d4dce6;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

/* --- 実績テーブル --- */
.sv-results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.sv-results-table th,
.sv-results-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.sv-results-table th {
  width: 35%;
  background: #f9fafb;
  font-weight: 600;
  color: #1a3a5c;
}

/* --- メディア掲載 --- */
.sv-media-list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0;
}
.sv-media-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* --- レスポンシブ --- */
@media (max-width: 600px) {
  .sv-hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .sv-hero__photo {
    width: 140px;
    height: 140px;
  }
  .sv-hero__name {
    font-size: 24px;
  }
  .sv-qualifications {
    flex-direction: column;
  }
  .sv-results-table th,
  .sv-results-table td {
    display: block;
    width: 100%;
  }
  .sv-results-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .sv-results-table td {
    padding-top: 0;
  }
}
