/* ============================================================
   page-experienced.css  — 経験者の方へ
   ネイビーダーク × ピンクアクセント
   ============================================================ */

/* ===== ヒーロー ===== */
.exp-hero {
  position: relative;
  background: var(--navy);
  padding: 68px 26px 68px;
  text-align: center;
  overflow: hidden;
}
.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(--pink-main), var(--pink-deep));
}
.exp-hero .section-label {
  font-size: 11px; letter-spacing: .25em;
  color: rgba(240,62,122,.8);
  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(--pink-main);
  color: #fff;
  border-color: var(--pink-main);
}

/* ===== ページ本体 ===== */
.exp-page { background: var(--white); padding: 0 0 80px; }
.exp-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 68px 26px 0;
}
/* 2カラム用コンテナ */
.exp-page-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 68px 26px 0;
}
.exp-inner > .ladyreq-breadcrumb,
.exp-page-container > .ladyreq-breadcrumb {
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(240,62,122,.15);
}

/* ===== content-block 共通（beginner.cssと同一、再宣言） ===== */
.exp-page .content-block { padding: 60px 0; border-bottom: 1px solid rgba(240,62,122,.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(--navy);
  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(240,62,122,.12);
}
.exp-page .content-block h2::before {
  content: ''; position: absolute;
  left: 0; bottom: 0; width: 56px; height: 3px;
  background: linear-gradient(to right, var(--pink-main), var(--pink-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(--navy);
  margin: 42px 0 14px; padding-left: 14px;
  border-left: 3px solid var(--pink-main); line-height: 1.5;
}
.exp-page .content-block p {
  font-size: 15px; color: var(--gray-text);
  line-height: 2; margin-bottom: 18px;
}

/* ===== 比較テーブル ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
}
.compare-table thead tr {
  background: var(--navy);
  color: #fff;
}
.compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
}
.compare-table thead th.ours {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
}
.compare-table tbody tr {
  border-bottom: 1px solid rgba(240,62,122,.1);
  transition: background .15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(240,62,122,.03); }
.compare-table tbody td { padding: 13px 16px; color: var(--gray-text); }
.compare-table tbody td:first-child { color: var(--navy); font-weight: 600; }
.compare-table tbody td.ours {
  background: rgba(240,62,122,.04);
  color: var(--navy);
  font-weight: 600;
}
.compare-table .check {
  display: inline-block;
  color: var(--pink-main);
  font-weight: 700;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .compare-table { font-size: 12px; }
  .compare-table thead th,
  .compare-table tbody td { padding: 10px 10px; }
}

/* ===== 給与アップグリッド ===== */
.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(240,62,122,.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(--pink-main); font-size: 20px; }
.su-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); 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(--pink-main);
  margin: 28px 0;
}
.highlight-note strong {
  display: block; color: var(--navy);
  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(240,62,122,.15);
}
.shift-card-head {
  background: var(--navy);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 18px;
  letter-spacing: .02em;
}
.shift-card-body {
  padding: 16px 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(--pink-main); font-weight: 700;
}

/* ===== 声カード ===== */
.exp-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.ev-card {
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--pink-light);
}
.ev-quote { font-size: 14px; color: var(--navy); 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(--pink-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) {
  .exp-inner,
  .exp-page-container { padding: 40px 20px 0; }
  .salary-up-grid { grid-template-columns: 1fr 1fr; }
  .exp-voices { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .exp-hero { padding: 60px 20px 48px; }
  .salary-up-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .exp-page .content-block { padding: 44px 0; }
}
