/* ============================================================
   page-experienced.css  — 経験者の方へ（完全版）
   ============================================================ */

/* ===== CSS変数 ===== */
:root {
  --teal:      #D4703A;
  --teal-dark: #FF9900;  /* ← メインカラー変更 */
  --teal-pale: #FDF3EB;
  --teal-line: #F2C49B;
  --text:      #3a3530;
  --text-soft: #5a5550;
  --text-muted:#8a8580;
  --white:     #ffffff;
  --border:    #e0d8c8;
}

/* ===== ヒーロー装飾 ===== */
.exp-hero::before {
  content: 'EXP';
  position: absolute;
  right: -12px; bottom: -20px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(68px,16vw,180px);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  line-height: 1;
  letter-spacing: .08em;
  pointer-events: none;
  white-space: nowrap;
}
.exp-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--orange-main), var(--orange-deep));
}
.exp-hero .section-label {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--orange-main);
  margin-bottom: 14px;
}
.exp-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 14px;
}
.exp-hero p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.95;
  max-width: 560px;
  margin: 0 auto 28px;
}
.exp-hero .sub-nav a {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
}
.exp-hero .sub-nav a:hover {
  background: var(--orange-main);
  color: #fff;
  border-color: var(--orange-main);
}

/* ===== ページ本体 ===== */
.exp-page { background: transparent; padding: 0 0 80px; }
.exp-inner { max-width: 920px; margin: 0 auto; padding: 36px 26px 0; }
.exp-inner > .ladyreq-breadcrumb { margin-bottom: 42px; }

/* ===== content-block 共通 ===== */
.exp-page .content-block { padding: 40px 0; border-bottom: 1px solid rgba(212,112,58,.1); }
.exp-page .content-block:last-child { border-bottom: none; padding-bottom: 0; }
.exp-page .content-block h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px,3vw,26px);
  font-weight: 700; color: var(--orange-deep);
  line-height: 1.45; margin-bottom: 20px;
  padding-bottom: 14px; position: relative;
}
.exp-page .content-block h2::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 100%; height: 1px;
  background: rgba(212,112,58,.12);
}
.exp-page .content-block h2::before {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 56px; height: 3px;
  background: linear-gradient(to right, var(--orange-main), var(--orange-deep));
  border-radius: 2px; z-index: 1;
}
.exp-page .content-block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700; color: var(--orange-deep);
  margin: 42px 0 14px; padding-left: 14px;
  border-left: 3px solid var(--orange-main); line-height: 1.5;
}
.exp-page .content-block p {
  font-size: 15px; color: var(--gray-text);
  line-height: 2; margin-bottom: 18px;
}

/* ===== エリアカード ===== */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}
.area-card.highlight {
  border-color: var(--teal-line);
  background: var(--teal-pale);
}
.area-card.highlight::after {
  content: 'ここで働く';
  position: absolute;
  top: 10px; right: -22px;
  background: var(--teal);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 28px 3px 10px;
  white-space: nowrap;
}
.card-area {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.card-name span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.card-tag {
  display: inline-block;
  font-size: 9.5px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid var(--teal-line);
  border-radius: 2px;
  padding: 2px 7px;
  margin: 2px 2px 0 0;
  letter-spacing: 0.05em;
}
.area-card.highlight .card-tag { background: var(--white); }

/* ===================================================
   PC / SP 表示切り替え
   =================================================== */
@media (min-width: 769px) {
  .content-block .table-wrap { display: block !important; }
  .content-block .tab-wrap   { display: none   !important; }
}
@media (max-width: 768px) {
  .content-block .table-wrap { display: none  !important; }
  .content-block .tab-wrap   { display: block !important; }
}

/* ===================================================
   PC テーブル
   =================================================== */
.content-block .table-wrap {
  background: var(--white);
  background-image: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
}
.content-block .table-wrap table { width: 100%; border-collapse: collapse; }
.content-block .table-wrap thead tr {
  background: var(--teal-pale);
  border-bottom: 1px solid var(--teal-line);
}
.content-block .table-wrap thead th {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  color: var(--teal-dark);
}
/* 提灯セル */
.content-block .table-wrap thead th:first-child {
  background: var(--teal-pale) !important;
  color: var(--teal-dark) !important;
  font-weight: 300;
  width: 18%;
  vertical-align: middle;
  text-align: center;
}
.content-block .table-wrap thead th:first-child svg {
  filter: invert(62%) sepia(40%) saturate(400%) hue-rotate(140deg) brightness(0.95);
}
.content-block .table-wrap thead th:first-child span { color: var(--teal-dark) !important; }

/* 飛田ヘッダー：背景写真 */
.content-block .table-wrap thead th.th-matsushima {
  position: relative;
  background-image: url('../../img/matsushima.jpg');
  background-size: cover;
  background-position: center 30%;
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  overflow: hidden;
}
.content-block .table-wrap thead th.th-matsushima::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(122,41,0,0.75) 0%, rgba(122,41,0,0.65) 100%);
  z-index: 0;
}
.content-block .table-wrap thead th.th-matsushima > * { position: relative; z-index: 1; }
.content-block .table-wrap thead th.th-matsushima span {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.90) !important;
}
/* 松島・飛田ヘッダー */
.content-block .table-wrap thead th.th-other { color: var(--teal-dark); font-weight: 500; }

/* tbody */
.content-block .table-wrap tbody tr { border-bottom: 1px solid var(--border); }
.content-block .table-wrap tbody tr:last-child { border-bottom: none; }
.content-block .table-wrap tbody tr:nth-child(even) { background: #faf8f3; }
.content-block .table-wrap td {
  padding: 11px 14px;
  font-size: 12.5px;
  color: var(--text-soft);
  vertical-align: middle;
  line-height: 1.7;
}
.content-block .table-wrap td:first-child {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 400;
  border-right: 1px solid var(--border);
}
/* 信太山tbody */
.content-block .table-wrap td.mat-col {
  position: static;
  background-image: none !important;
  background-color: rgba(212,112,58,0.10) !important;
  border-right: 1px solid var(--teal-line);
  border-left:  1px solid var(--teal-line);
  color: #1A5F70;
  font-weight: 500;
}
.content-block .table-wrap td.mat-col::before { display: none; }
.content-block .table-wrap tbody tr:nth-child(even) td.mat-col {
  background-color: rgba(212,112,58,0.18) !important;
}

/* バッジ */
.badge {
  display: inline-block;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 4px;
}
.badge-best  { background: var(--teal); color: var(--white); }
.badge-check { background: var(--teal-pale); color: var(--teal-dark); border: 1px solid var(--teal-line); }

/* ===================================================
   SP タブ
   =================================================== */
.content-block .tab-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
}

/* ナビ */
.content-block .tab-nav {
  display: flex !important;
  align-items: stretch;
  border-bottom: 2px solid var(--teal-line);
  background: var(--teal-pale);
}

/* 提灯アイコンセル */
.content-block .tab-icon-cell {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  min-width: 44px;
  max-width: 44px;
  flex-shrink: 0;
  border-right: 1px solid var(--teal-line);
  gap: 3px;
}
.content-block .tab-icon-cell span {
  font-size: 8px;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

/* タブボタン群 */
.content-block .tab-btns {
  display: flex !important;
  flex: 1;
  overflow: hidden;
}

/* 全タブボタン共通 */
.content-block .tab-btn {
  flex: 1;
  min-width: 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border: none !important;
  border-right: 1px solid var(--teal-line) !important;
  background: transparent !important;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted) !important;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
  box-shadow: none !important;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  overflow: hidden;
}
.content-block .tab-btn:last-child { border-right: none !important; }

/* ---- 飛田ボタン：背景写真＋オーバーレイ ---- */
.content-block .tab-btn.matsushima {
  background-image: url('../../img/matsushima.jpg') !important;
  background-size: cover !important;
  background-position: center 30% !important;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
/* 非アクティブ：濃いオーバーレイ */
.content-block .tab-btn.matsushima::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 58, 0.62);
  z-index: 0;
  transition: background 0.15s;
}
/* アクティブ：オーバーレイを薄く */
.content-block .tab-btn.matsushima.active::before {
  background: rgba(20, 60, 58, 0.30);
}
/* テキスト前面 */
.content-block .tab-btn.matsushima > * {
  position: relative;
  z-index: 1;
}
.content-block .tab-btn.matsushima .tab-badge {
  color: rgba(255,255,255,0.8) !important;
  position: relative;
  z-index: 1;
}

/* 非飛田ボタン アクティブ */
.content-block .tab-btn:not(.matsushima).active {
  background: var(--teal) !important;
  color: #fff !important;
}
.content-block .tab-btn:not(.matsushima).active .tab-badge {
  color: rgba(255,255,255,0.8) !important;
}

/* バッジテキスト */
.content-block .tab-btn .tab-badge {
  display: block;
  font-size: 8px;
  font-weight: 300;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* タブパネル */
.content-block .tab-panel {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
}
.content-block .tab-panel.active {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: auto;
}

/* タブ行 */
.content-block .tab-row {
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid var(--border) !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 44px;
}
.content-block .tab-row:last-child { border-bottom: none !important; }
.content-block .tab-row:nth-child(even) { background: #faf8f3 !important; }

/* ラベル */
.content-block .tab-label {
  display: flex !important;
  align-items: center !important;
  width: 28% !important;
  min-width: 72px !important;
  max-width: 90px !important;
  flex-shrink: 0 !important;
  padding: 10px 8px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  border-right: 1px solid var(--border) !important;
  line-height: 1.5 !important;
  background: transparent !important;
  box-sizing: border-box !important;
}
/* 値 */
.content-block .tab-value {
  display: flex !important;
  align-items: center !important;
  flex: 1 !important;
  padding: 10px 10px !important;
  font-size: 12px !important;
  color: var(--text-soft) !important;
  line-height: 1.6 !important;
  box-sizing: border-box !important;
}
/* 松島新地パネル強調 */
.content-block .mat-panel .tab-label {
  color: #1A6E80 !important;
  border-right-color: var(--teal-line) !important;
  background: rgba(212,112,58,0.08) !important;
}
.content-block .mat-panel .tab-value {
  color: #1A5F70 !important;
  font-weight: 500 !important;
}
.content-block .mat-panel .tab-row:nth-child(even) {
  background: rgba(212,112,58,0.10) !important;
}

/* ===================================================
   NOTESブロック — 余白型＋ナンバリング強調
   =================================================== */
.notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  /* ② 高さ揃える */
  align-items: stretch;
}
.note-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* ② 高さ揃える */
  height: 100%;
  box-sizing: border-box;
}
/* ③ 背景番号：右下に寄せ、薄く・小さく */
.note-item::before {
  content: attr(data-num);
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  opacity: 0.045;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}
/* ラベル行 */
.note-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
/* ① バッジを小さく・アイコンを大きく */
.note-label .note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 1px solid var(--teal-line);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 5px;
  box-sizing: border-box;
}
/* アイコン画像：バッジからはみ出して大きく */
.note-label .note-icon img,
.note-label .note-icon svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  /* バッジより大きくして飛び出し感 */
  margin: -8px;
  filter: drop-shadow(0 1px 3px rgba(212,112,58,0.18));
}
/* ラベルテキスト2段 */
.note-label .note-label-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
/* ④ POINT番号：黄金比で小さめ */
.note-label .note-point {
  font-size: 8.5px;
  letter-spacing: 0.28em;
  color: var(--teal-dark);
  opacity: 0.65;
  font-weight: 400;
  text-transform: uppercase;
}
/* ④ タイトル：黄金比で大きく（8.5 × 1.618 ≒ 13.75px） */
.note-label .note-title {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.3;
}
/* 本文 */
.note-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 2.05;
  position: relative;
  z-index: 1;
  margin: 0;
  /* ② flex-grow で高さを埋める */
  flex-grow: 1;
}
.note-text strong {
  color: var(--teal-dark);
  font-weight: 600;
}
@media (max-width: 768px) {
  .notes { grid-template-columns: 1fr 1fr; }
  .note-item { padding: 22px 18px 26px; }
  .note-label .note-title { font-size: 13px; }
  .note-text { font-size: 13.5px; }
}
@media (max-width: 560px) {
  .notes { grid-template-columns: 1fr; }
  .note-item { padding: 24px 20px 28px; }
  .note-item::before { font-size: 72px; bottom: 6px; right: 10px; }
  .note-text { font-size: 14px; line-height: 2; }
}

/* ===================================================
   給与アップグリッド
   =================================================== */
.salary-up-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}
.su-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  border: 1px solid rgba(212,112,58,.15);
  transition: transform .2s;
}
.su-card:hover { transform: translateY(-4px); }
.su-card .icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #fff0f6, #ffd8eb);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.su-card .icon i { color: var(--orange-main); font-size: 20px; }
.su-card h4 { font-size: 14px; font-weight: 700; color: var(--orange-deep); margin-bottom: 8px; }
.su-card p  { font-size: 13px; color: var(--gray-text); line-height: 1.8; margin: 0; }

/* ===================================================
   ハイライトノート
   =================================================== */
.highlight-note {
  background: linear-gradient(135deg, #fff5f9 0%, #fff0f6 100%);
  border-radius: 16px;
  padding: 26px 28px;
  border-left: 4px solid var(--orange-main);
  margin: 28px 0;
}
.highlight-note strong {
  display: block; color: var(--orange-deep);
  font-size: 15px; font-weight: 700; margin-bottom: 8px;
}
.highlight-note__text { font-size: 14px; color: var(--gray-text); line-height: 1.9; margin: 0; }

/* ===================================================
   シフトグリッド
   =================================================== */
.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 26px 0;
}
.shift-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,112,58,.15);
}
.shift-card-head {
  background: var(--orange-deep);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 18px;
  letter-spacing: .02em;
}
.shift-card-body { padding: 16px; }
.shift-card-body ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.shift-card-body ul li {
  font-size: 14px; color: var(--gray-text);
  padding-left: 16px; position: relative; line-height: 1.7;
}
.shift-card-body ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--orange-main); font-weight: 700;
}

/* ===================================================
   声カード
   =================================================== */
.exp-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.ev-card {
  background: var(--orange-pale);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--orange-light);
}
.ev-quote { font-size: 14px; color: var(--orange-deep); line-height: 1.85; margin-bottom: 12px; }
.ev-meta  { font-size: 12px; color: var(--gray-text); margin-bottom: 8px; }
.voice-read-more {
  font-size: 13px; color: var(--orange-main);
  font-weight: 600; text-decoration: none;
}
.voice-read-more:hover { text-decoration: underline; }
.btn-center-wrap {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px;
  margin: 26px 0 8px;
}

/* ===================================================
   レスポンシブ
   =================================================== */
@media (max-width: 768px) {
  .salary-up-grid { grid-template-columns: 1fr 1fr; }
  .exp-voices     { grid-template-columns: 1fr; }
  .notes          { grid-template-columns: 1fr; }
  .area-cards     { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .salary-up-grid { grid-template-columns: 1fr; }
  .shift-grid     { grid-template-columns: 1fr; }
  .exp-page .content-block { padding: 44px 0; }
}

/* ===================================================
   移籍メリット・デメリット表
   =================================================== */
.merit-demerit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 48px;
  align-items: start;
}

/* ブロック共通 */
.md-block {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ヘッダー */
.md-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.md-head-icon { font-size: 16px; }
.md-head-label { line-height: 1; }

/* メリット：水色ベース */
.md-merit .md-head {
  background: var(--teal-dark);
  color: #fff;
}
.md-merit .md-head-icon { color: rgba(255,255,255,0.85); }

/* デメリット：メリットより落ち着いたトーン */
.md-demerit .md-head {
  background: #e8f4f8;
  color: #2a7a90;
  border-bottom: 1px solid #c2dfe8;
}
.md-demerit .md-head-icon { color: #FF9900; }

/* テーブル共通 */
.md-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.md-table tr {
  border-bottom: 1px solid var(--border);
}
.md-table tr:last-child { border-bottom: none; }

/* th：カテゴリ */
.md-table th {
  width: 36%;
  padding: 11px 14px;
  font-size: 11.5px;
  font-weight: 600;
  vertical-align: top;
  line-height: 1.6;
  white-space: nowrap;
}
/* td：説明文 */
.md-table td {
  padding: 11px 14px;
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.8;
  vertical-align: top;
}

/* メリット行カラー */
.md-merit .md-table tr:nth-child(odd)  th { background: rgba(212,112,58,0.08); color: #7A2900; }
.md-merit .md-table tr:nth-child(even) th { background: rgba(212,112,58,0.04); color: #7A2900; }
.md-merit .md-table tr:nth-child(odd)  td { background: #fff; }
.md-merit .md-table tr:nth-child(even) td { background: #fafefe; }

/* デメリット行カラー */
.md-demerit .md-table tr:nth-child(odd)  th { background: #f0f8fb; color: #2a7a90; }
.md-demerit .md-table tr:nth-child(even) th { background: #e8f4f8; color: #2a7a90; }
.md-demerit .md-table tr:nth-child(odd)  td { background: #fff; }
.md-demerit .md-table tr:nth-child(even) td { background: #fafcfd; }

/* レスポンシブ */
@media (max-width: 768px) {
  .merit-demerit-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .md-table th { white-space: normal; width: 32%; }
  .md-table th,
  .md-table td { font-size: 12px; padding: 10px 12px; }
}

/* ===================================================
   メリデメ前見出し h3 — 水色ボーダー版
   =================================================== */
.md-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 20px;
  padding-left: 14px;
  border-left: 3px solid var(--teal-dark);
  line-height: 1.5;
}