/* =========================================================
   スキマかんご — design system v2.1（マルチページ版）
   メディカルブルー×コーラル×クリーム／丸ゴシック／ケアの装飾
   ========================================================= */

:root {
  --cream: #FFF9EF;
  --cream-deep: #FDF1E0;
  --white: #FFFFFF;

  --teal: #3E7FBE;
  --teal-deep: #2A5F94;
  --teal-tint: #E4EFF8;
  --teal-line: #C7DCEF;

  --orange: #F5764F;
  --orange-deep: #E05A32;
  --orange-tint: #FDE9E0;

  --yellow: #FFD95C;
  --yellow-tint: #FFF3C7;
  --pink: #F7A6B8;
  --sky: #9BD6F0;
  --green: #7FBF6E;
  --green-deep: #5FA24F;

  --ink: #4E4640;
  --ink-soft: #7C736B;
  --ink-faint: #ABA197;

  --line: #F0E2CE;
  --shadow: 0 2px 6px rgba(200, 140, 80, 0.08), 0 10px 26px rgba(200, 140, 80, 0.12);
  --shadow-lift: 0 6px 14px rgba(200, 140, 80, 0.12), 0 20px 44px rgba(200, 140, 80, 0.16);

  --font-round: "M PLUS Rounded 1c", sans-serif;
  --font-body: "Zen Maru Gothic", sans-serif;
  /* Klee One は .cta-note 1箇所のみのために1ファミリー丸ごと読み込んでいたため廃止 */
  --font-hand: var(--font-body);

  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 26px;

  --wrap: 1120px;
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-round);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}

input, select, textarea, button { font-family: inherit; font-size: inherit; color: inherit; }
input, select, textarea { accent-color: var(--teal); }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-s); z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

.marker {
  background: linear-gradient(transparent 60%, var(--yellow) 60%, var(--yellow) 92%, transparent 92%);
  padding: 0 2px;
}

/* ---------------- アイコン付き見出し ---------------- */

.head-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.section-head.center .head-row { justify-content: center; }
.head-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-deep);
}
.head-icon.orange { background: var(--orange-tint); color: var(--orange); }
.head-icon svg { width: 22px; height: 22px; }
.head-label {
  font-family: var(--font-round);
  font-weight: 700; font-size: 15px;
  color: var(--teal-deep);
  letter-spacing: .04em;
}
.head-label.orange { color: var(--orange-deep); }

/* ---------------- 汎用アニメーション ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------- ボタン ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-round); font-weight: 800; font-size: 16px;
  padding: 16px 30px; border-radius: 999px;
  border: 2.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  line-height: 1.3;
}
.btn::after {
  content: "›";
  font-size: 20px; line-height: 1;
  transform: translateY(-1px);
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 0 var(--orange-deep); }
.btn-orange:hover { background: var(--orange-deep); box-shadow: 0 2px 0 var(--orange-deep); transform: translateY(0); }
.btn-teal-line { background: var(--white); border-color: var(--teal); color: var(--teal-deep); }
.btn-teal-line:hover { background: var(--teal-tint); }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-small::after { font-size: 17px; }
.cta-note { font-family: var(--font-hand); font-size: 14px; color: var(--ink-soft); margin-top: 12px; }

/* ---------------- ヘッダー ---------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; height: var(--header-h);
}
.logo {
  font-family: var(--font-round); font-size: 21px; font-weight: 800;
  text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.logo .mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo .dot { color: var(--orange); }

.audience-switch {
  position: relative; display: inline-flex;
  background: var(--teal-tint);
  border: 1.5px solid var(--teal-line);
  border-radius: 999px; padding: 4px;
}
.switch-thumb {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: var(--teal);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(42, 95, 148, .3);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
}
body[data-page="facility"] .switch-thumb { transform: translateX(100%); }
body[data-page="other"] .switch-thumb { opacity: 0; }
.switch-link {
  position: relative; z-index: 1;
  text-decoration: none;
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  padding: 8px 18px; border-radius: 999px;
  color: var(--teal-deep);
  transition: color .3s ease;
}
body[data-page="worker"] .switch-link.worker,
body[data-page="facility"] .switch-link.facility { color: var(--white); }

.head-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.head-links a {
  text-decoration: none;
  font-family: var(--font-round); font-weight: 700; font-size: 14.5px;
  color: var(--ink-soft);
}
.head-links a:hover { color: var(--teal-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: var(--white); border: 1.5px solid var(--teal-line);
  border-radius: var(--radius-s);
  width: 44px; height: 44px;
  align-items: center; justify-content: center; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2.5px; border-radius: 2px;
  background: var(--teal-deep); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--cream); z-index: 90;
  flex-direction: column; padding: 26px 24px 48px; gap: 6px;
  overflow-y: auto;
}
body.nav-open .mobile-nav { display: flex; }
body.nav-open { overflow: hidden; }
.mobile-nav .group-label {
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  color: var(--teal-deep); margin: 18px 0 6px;
  display: flex; align-items: center; gap: 6px;
}
.mobile-nav .group-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.mobile-nav a {
  text-decoration: none; font-size: 17px;
  font-family: var(--font-round); font-weight: 700; color: var(--ink);
  padding: 9px 0;
}
.mobile-nav .btn { width: 100%; margin-top: 8px; }

/* ---------------- ヒーロー（トップ用） ---------------- */

.hero {
  padding: 30px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-bunting { width: 100%; height: 52px; margin-bottom: 26px; }
.hero .wrap {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 52px; align-items: center;
  position: relative;
}
.hero-sun {
  position: absolute;
  top: -18px; right: -8px;
  width: 92px; height: 92px;
  animation: sunspin 40s linear infinite;
}
@keyframes sunspin { to { transform: rotate(360deg); } }
.hero-cloud {
  position: absolute;
  bottom: -10px; left: -30px;
  width: 120px; opacity: .9;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--teal-line);
  color: var(--teal-deep);
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  border-radius: 999px; padding: 7px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(29px, 4.3vw, 48px);
  letter-spacing: .01em;
}
.hero-sub {
  margin-top: 20px; font-size: 17px;
  color: var(--ink-soft); max-width: 46ch;
}
.hero-actions {
  margin-top: 30px;
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lift);
  border: 2px solid var(--teal-line);
  transform: rotate(1.2deg);
  position: relative;
  overflow: hidden;
}
.hero-card-head {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  padding: 13px 22px;
  display: flex; align-items: center; gap: 8px;
}
.hero-card-head svg { width: 18px; height: 18px; }
.hero-card-body { padding: 8px 22px 18px; }
.hero-mini-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 13px 0; border-top: 1.5px dashed var(--line);
}
.hero-mini-row:first-of-type { border-top: none; }
.hero-mini-time {
  font-family: var(--font-round); font-weight: 800;
  color: var(--white); background: var(--orange);
  font-size: 12.5px; border-radius: 999px;
  padding: 3px 10px; margin-top: 2px;
  min-width: 56px; text-align: center; flex-shrink: 0;
}
.hero-mini-text strong { display: block; font-size: 15px; font-family: var(--font-round); font-weight: 800; }
.hero-mini-text span { font-size: 13px; color: var(--ink-soft); }
.hero-card-sticker {
  position: absolute; top: 8px; right: 10px;
  width: 40px; height: 40px;
}

/* ---------------- 下層ページヒーロー ---------------- */

.page-hero {
  padding: 34px 0 38px;
  background: var(--cream-deep);
}
.breadcrumb {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--ink-faint); }
.breadcrumb a { color: var(--teal-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(25px, 3.4vw, 36px); }
.page-hero .lede { margin-top: 12px; color: var(--ink-soft); font-size: 16px; max-width: 60ch; }

/* ---------------- セクション共通 ---------------- */

section { padding: 68px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3.1vw, 34px); }
.section-head .lede { margin-top: 12px; color: var(--ink-soft); font-size: 16.5px; }

.band-cream { background: var(--cream-deep); }
.band-teal { background: var(--teal-tint); }

.scallop { display: block; width: 100%; height: 26px; margin-bottom: -1px; }
.scallop.flip { transform: scaleY(-1); margin-bottom: 0; margin-top: -1px; }

/* ---------------- 吹き出し ---------------- */

.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.voice-item { text-align: center; }
.voice-bubble {
  position: relative;
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: left;
  transition: transform .22s ease;
}
.voice-item:hover .voice-bubble { transform: translateY(-4px); }
.voice-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: var(--white);
  border-bottom: 0;
  filter: drop-shadow(0 2px 0 var(--teal-line));
}
.voice-item:nth-child(2) .voice-bubble { border-color: #FBD3A6; }
.voice-item:nth-child(2) .voice-bubble::after { filter: drop-shadow(0 2px 0 #FBD3A6); }
.voice-item:nth-child(3) .voice-bubble { border-color: #F4C3CE; }
.voice-item:nth-child(3) .voice-bubble::after { filter: drop-shadow(0 2px 0 #F4C3CE); }
.voice-face { width: 62px; height: 62px; margin: 18px auto 8px; }
.voice-name { font-size: 12.5px; color: var(--ink-faint); font-family: var(--font-round); font-weight: 700; }

.stat-strip {
  margin-top: 44px;
  display: flex; align-items: center; gap: 26px;
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 24px 30px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.stat-strip .num {
  font-family: var(--font-round); font-weight: 800;
  font-size: 44px; color: var(--orange-deep); line-height: 1;
  white-space: nowrap;
}
.stat-strip .num small { font-size: 18px; color: var(--ink); }
.stat-strip .desc { flex: 1; min-width: 250px; font-size: 14px; color: var(--ink-soft); }

/* ---------------- 時程表 ---------------- */

.timetable-board {
  background: var(--white);
  border-radius: var(--radius-l);
  border: 2px solid var(--teal-line);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.tt-head {
  background: var(--teal);
  border-radius: calc(var(--radius-l) - 2px) calc(var(--radius-l) - 2px) 0 0;
  color: var(--white);
  font-family: var(--font-round); font-weight: 800; font-size: 16px;
  padding: 14px 26px;
  display: flex; align-items: center; gap: 10px;
}
.tt-head svg { width: 20px; height: 20px; }
.timetable-inner { padding: 20px clamp(20px, 4vw, 46px) 34px; }
.tt-row {
  display: grid;
  grid-template-columns: 82px 36px 1fr;
  gap: 6px; padding: 24px 0;
}
.tt-row + .tt-row { border-top: 1.5px dashed var(--line); }
.tt-time {
  font-family: var(--font-round); font-weight: 800;
  font-size: 13px; color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  padding: 4px 0; text-align: center;
  height: fit-content; margin-top: 2px;
}
.tt-time.step { background: var(--teal); }
.tt-line { position: relative; display: flex; justify-content: center; }
.tt-line::before {
  content: ""; width: 3px; border-radius: 3px;
  background: var(--teal-tint);
  position: absolute; left: 50%; margin-left: -1.5px; top: 0; bottom: -24px;
}
.tt-row:last-child .tt-line::before { bottom: 0; }
.tt-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); margin-top: 6px;
  position: relative; z-index: 1;
  border: 3.5px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal-tint);
}
.tt-row.is-branch .tt-dot { background: var(--orange); }
.tt-body h3 { font-size: 19px; }
.tt-body > p { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }
.tt-note {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  color: var(--teal-deep); background: var(--teal-tint);
  padding: 4px 14px; border-radius: 999px;
}
.tt-fork {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.tt-fork-item {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 16px 18px;
}
.tt-fork-item strong { display: block; font-size: 14.5px; font-family: var(--font-round); font-weight: 800; margin-bottom: 4px; }
.tt-fork-item span { font-size: 13px; color: var(--ink-soft); }
.tt-fork-item.win { border-color: var(--orange); background: var(--orange-tint); }
.tt-fork-item.win strong { color: var(--orange-deep); }

/* ---------------- メリット ---------------- */

.benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 28px 20px 24px;
  border: 2px solid var(--line);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-line); }
.benefit-card .icon-wrap {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.benefit-card:nth-child(2) .icon-wrap { background: var(--orange-tint); }
.benefit-card:nth-child(3) .icon-wrap { background: var(--yellow-tint); }
.benefit-card:nth-child(4) .icon-wrap { background: #FDEBEF; }
.benefit-card .icon-wrap svg { width: 36px; height: 36px; }
.benefit-card h3 { font-size: 17px; }
.benefit-card p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); text-align: left; }

.chip-strip { margin-top: 44px; text-align: center; }
.chip-strip .chip-title {
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  color: var(--teal-deep); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip-strip .chip-title svg { width: 18px; height: 18px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  background: var(--white);
  border: 1.5px solid var(--teal-line);
  color: var(--teal-deep);
  font-family: var(--font-round); font-weight: 700; font-size: 13.5px;
  border-radius: 999px; padding: 6px 16px;
}
a.chip { text-decoration: none; transition: background .18s ease, transform .18s ease; }
a.chip:hover { background: var(--teal-tint); transform: translateY(-2px); }
.benefit-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .benefit-grid.cols-3 { grid-template-columns: 1fr; } }

/* ---------------- 安心 ---------------- */

.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px;
}
.trust-item {
  background: var(--white);
  padding: 30px 24px 26px;
  border-radius: var(--radius-m);
  border: 2px solid var(--teal-line);
  box-shadow: var(--shadow);
  text-align: center;
}
.trust-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 5px var(--teal-tint);
}
.trust-badge svg { width: 34px; height: 34px; }
.trust-item h3 { font-size: 16.5px; }
.trust-item p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); text-align: left; }

.legal-box {
  margin-top: 44px;
  background: var(--white);
  border: 1.5px dashed var(--teal-line);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  font-size: 13.5px; color: var(--ink-soft);
  line-height: 2;
}
.legal-box strong { color: var(--ink); }
.placeholder { color: var(--orange-deep); font-weight: 700; }

/* ---------------- 料金 ---------------- */

.fee-table { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fee-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 32px 30px;
  border: 2px solid var(--line);
  position: relative;
}
.fee-card.highlight { border-color: var(--orange); }
.fee-ribbon {
  position: absolute; top: -14px; left: 24px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
  border-radius: 999px; padding: 4px 16px;
}
.fee-card .label {
  font-family: var(--font-round); font-weight: 800;
  color: var(--teal-deep); font-size: 15px;
}
.fee-card .price {
  font-family: var(--font-round); font-weight: 800;
  font-size: 36px; margin-top: 8px; color: var(--ink);
}
.fee-card .price small { font-size: 16px; font-weight: 700; }
.fee-card.highlight .price { color: var(--orange-deep); }
.fee-card ul { margin: 18px 0 0; padding-left: 20px; font-size: 14.5px; color: var(--ink-soft); }
.fee-card li + li { margin-top: 6px; }
.fee-card li::marker { color: var(--teal); }

/* ---------------- ピッチ ---------------- */

.pitch-block {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-lift);
  border: 2px solid var(--teal-line);
  position: relative;
}
.pitch-avatar {
  width: 76px; height: 76px;
  position: absolute; top: -34px; left: 40px;
}
.pitch-block .pitch-label {
  font-family: var(--font-round); font-weight: 800; font-size: 14px;
  color: var(--teal-deep); margin-bottom: 14px; padding-left: 84px;
}
.pitch-block p { font-size: 16px; line-height: 2.05; margin-top: 4px; }
.pitch-block p + p { margin-top: 18px; }

/* ---------------- FAQ ---------------- */

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-m);
  border: 2px solid var(--line);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--teal-line); }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  font-family: var(--font-round);
  font-size: 16px; font-weight: 800; color: var(--ink);
  cursor: pointer;
}
.qa-badge {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  color: var(--white);
  margin-top: -1px;
}
.qa-badge.q { background: var(--teal); }
.qa-badge.a { background: var(--orange); }
.faq-q .plus {
  flex-shrink: 0; margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%; border: 2px solid var(--teal-line);
  position: relative; margin-top: 2px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--teal-deep);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: background .25s ease;
}
.faq-q .plus::before { width: 10px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 10px; }
.faq-item[open] .faq-q .plus { transform: rotate(135deg); background: var(--teal); border-color: var(--teal); }
.faq-item[open] .faq-q .plus::before, .faq-item[open] .faq-q .plus::after { background: var(--white); }
.faq-a {
  padding: 0 22px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--ink-soft); font-size: 15px;
}
.faq-a p { flex: 1; }

/* ---------------- 最終CTA ---------------- */

.final-cta { text-align: center; }
.final-cta .wrap { max-width: 660px; position: relative; }
.final-cta h2 { font-size: clamp(26px, 3.5vw, 38px); }
.final-cta .lede { margin-top: 16px; color: var(--ink-soft); font-size: 16.5px; }
.final-cta .hero-actions { justify-content: center; margin-top: 28px; }

/* ---------------- コラム ---------------- */

.column-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.column-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.column-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-line); }
.column-card-visual {
  height: 96px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.column-card-visual.v-teal { background: var(--teal-tint); }
.column-card-visual.v-orange { background: var(--orange-tint); }
.column-card-visual.v-yellow { background: var(--yellow-tint); }
.column-card-visual svg { width: 52px; height: 52px; }
.column-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.column-cat {
  align-self: flex-start;
  font-family: var(--font-round); font-weight: 800; font-size: 11.5px;
  color: var(--teal-deep); background: var(--teal-tint);
  border-radius: 999px; padding: 3px 12px;
  margin-bottom: 10px;
}
.column-card h3 { font-size: 16px; line-height: 1.6; }
.column-card .excerpt { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.column-card .date {
  margin-top: 12px; font-size: 12px; color: var(--ink-faint);
  font-family: var(--font-round); font-weight: 700;
}

/* ---------------- 記事本文 ---------------- */

.article-hero { padding: 34px 0 8px; background: var(--cream-deep); }
.article-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 14px 0 26px;
  font-size: 13px; color: var(--ink-faint);
  font-family: var(--font-round); font-weight: 700;
}
.article-body { padding: 8px 0 60px; }
.article-body > p { margin: 22px 0; }
.article-body h2 {
  margin: 52px 0 20px;
  font-size: clamp(20px, 2.6vw, 26px);
  background: var(--teal-tint);
  border-left: 7px solid var(--teal);
  border-radius: 8px;
  padding: 13px 18px;
}
.article-body h3 {
  margin: 36px 0 14px;
  font-size: 18.5px;
  padding-bottom: 8px;
  border-bottom: 2.5px dashed var(--teal-line);
}
.article-body ul, .article-body ol { margin: 20px 0; padding-left: 26px; }
.article-body li { margin: 8px 0; }
.article-body li::marker { color: var(--teal); font-weight: 800; }
.article-body strong { color: var(--orange-deep); }

.toc {
  background: var(--white);
  border: 2px dashed var(--teal-line);
  border-radius: var(--radius-m);
  padding: 20px 26px;
  margin: 30px 0;
}
.toc .toc-title {
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  color: var(--teal-deep);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.toc ol { margin: 0; padding-left: 22px; font-size: 14.5px; }
.toc li { margin: 6px 0; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--teal-deep); text-decoration: underline; }

.kangoroo-promo {
  position: relative;
  width: min(100%, 640px);
  margin: 34px auto;
  padding: 26px 20px 24px;
  background: var(--white);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-m);
  box-shadow: 0 8px 24px rgba(50, 77, 66, .08);
  text-align: center;
}
.kangoroo-promo-label {
  position: absolute;
  top: 10px;
  left: 12px;
  margin: 0;
  padding: 2px 8px;
  border: 1px solid #8b8b8b;
  border-radius: 4px;
  color: #555;
  background: #fff;
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .04em;
}
.kangoroo-promo-lead {
  margin: 14px 0 14px;
  color: var(--ink);
  font-family: var(--font-round);
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 800;
}
.kangoroo-promo-banner {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  line-height: 0;
}
.kangoroo-promo-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: contain;
  border: 0;
}
.kangoroo-promo-button { margin-top: 18px; }
.kangoroo-promo a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .kangoroo-promo {
    margin: 28px auto;
    padding: 24px 12px 18px;
  }
  .kangoroo-promo-lead { margin-top: 16px; }
  .kangoroo-promo-button { width: 100%; }
}

/* ============================================================
   コラム試作：ブランク復職記事（pg-blank）のみ
   ============================================================ */

.article-redesign-page { background: #f4f6f8; }
.wrap-article-wide { width: min(100% - 48px, 1180px); margin-inline: auto; }

.article-hero-redesign {
  padding: 38px 0 42px;
  background:
    radial-gradient(circle at 86% 10%, rgba(42, 95, 148, .10), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7fafc 72%, #eef5fa 100%);
  border-bottom: 1px solid #dfe6ec;
}
.article-hero-redesign .breadcrumb { margin-bottom: 28px; }
.article-hero-redesign-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: end;
  gap: 48px;
}
.article-kicker {
  margin: 0 0 10px;
  color: #28639b;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.article-hero-redesign h1 {
  max-width: 800px;
  margin: 0;
  color: #202c3a;
  font-size: clamp(31px, 3vw, 40px);
  line-height: 1.42;
  letter-spacing: -.025em;
}
.article-meta-redesign { margin: 20px 0 0; color: #667487; }
.article-trust-card {
  padding: 20px 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #dbe4eb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 44, 58, .07);
}
.article-trust-card .article-trust-label {
  margin: 0 0 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.article-trust-card .article-trust-name {
  margin: 0 0 7px;
  color: #202c3a;
  font-family: var(--font-round);
  font-size: 16px;
  font-weight: 800;
}
.article-trust-card p:last-child { margin: 0; color: #64748b; font-size: 12px; line-height: 1.75; }

.article-body-redesign { padding: 42px 0 76px; }
.article-redesign-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(250px, 300px);
  align-items: start;
  gap: 48px;
}
.article-redesign-main {
  min-width: 0;
  padding: 42px 46px 50px;
  background: #fff;
  border: 1px solid #e2e8ee;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(32, 44, 58, .07);
  counter-reset: article-section;
}
.article-redesign-main > p {
  margin: 24px 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}
.article-redesign-main > p:first-of-type { font-size: 17.5px; color: #29384a; }
.article-redesign-main strong { color: #b83e24; }
.article-redesign-main .marker {
  background: linear-gradient(transparent 65%, rgba(250, 204, 21, .42) 65%);
  color: inherit;
}
.article-redesign-main > h2 {
  counter-increment: article-section;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  margin: 68px 0 24px;
  padding: 0 0 14px;
  color: #202c3a;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #d7e4ef;
  border-radius: 0;
  font-size: 27px;
  line-height: 1.5;
}
.article-redesign-main > h2::before {
  content: counter(article-section, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: #fff;
  background: #28639b;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}
.article-redesign-main > h3 {
  margin: 38px 0 14px;
  padding: 0 0 9px 14px;
  color: #243447;
  border: 0;
  border-left: 4px solid #5b8fb9;
  border-bottom: 1px solid #e2e8f0;
  font-size: 20px;
}
.article-redesign-main > ul,
.article-redesign-main > ol {
  margin: 24px 0;
  padding: 20px 24px 20px 48px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.article-redesign-main li { margin: 9px 0; line-height: 1.8; }
.article-redesign-main .wp-balloon {
  margin: 26px 0;
  padding: 18px 20px;
  color: #334155;
  background: #f1f7fb;
  border: 1px solid #c9dce9;
  border-left: 5px solid #5b8fb9;
  border-radius: 10px;
}
.article-redesign-main .toc {
  margin: 32px 0 10px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid #dbe4eb;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(32, 44, 58, .05);
}
.article-redesign-main .toc .toc-title { color: #28639b; font-size: 16px; }
.article-redesign-main .toc li { margin: 8px 0; }
.article-redesign-main .toc a { color: #334155; }
.article-redesign-main table {
  display: table;
  width: 100%;
  margin: 24px 0 30px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #d7e1e8;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}
.article-redesign-main th,
.article-redesign-main td { min-width: 0; padding: 12px 13px; border: 0; border-right: 1px solid #e2e8ee; border-bottom: 1px solid #e2e8ee; }
.article-redesign-main th:last-child,
.article-redesign-main td:last-child { border-right: 0; }
.article-redesign-main tr:last-child td { border-bottom: 0; }
.article-redesign-main thead th { color: #244866; background: #eaf2f8; }
.article-redesign-main .source-note { color: #64748b; font-size: 13px; }

.article-key-takeaway {
  margin-bottom: 34px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #eef6fb 0%, #f8fbfd 100%);
  border: 1px solid #cbdfea;
  border-radius: 16px;
}
.article-key-takeaway .article-key-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 10px;
  color: #fff;
  background: #28639b;
  border-radius: 999px;
  font-family: var(--font-round);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}
.article-key-takeaway h2 {
  margin: 0;
  padding: 0;
  color: #202c3a;
  background: transparent;
  border: 0;
  font-size: 23px;
  line-height: 1.55;
}
.article-key-takeaway ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.article-key-takeaway li { position: relative; margin: 8px 0; padding-left: 27px; color: #334155; }
.article-key-takeaway li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28724b;
  font-weight: 900;
}
.article-key-summary { margin: 14px 0 0; color: #334155; font-size: 15px; line-height: 1.85; }
.article-table-scroll { width: 100%; margin: 24px 0 30px; overflow-x: auto; border-radius: 12px; -webkit-overflow-scrolling: touch; }
.article-redesign-main .article-table-scroll table { min-width: 680px; margin: 0; }

.kangoroo-promo-editorial {
  width: 100%;
  max-width: none;
  margin: 38px 0;
  padding: 24px 26px 22px;
  text-align: left;
  background: #fff;
  border: 2px solid #b9d7e8;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 44, 58, .08);
}
.kangoroo-promo-editorial .kangoroo-promo-label { top: -12px; left: 14px; }
.kangoroo-promo-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.kangoroo-promo-brand { margin: 0 0 4px; color: #202c3a; font-family: var(--font-round); font-size: 23px; font-weight: 900; }
.kangoroo-promo-strong { margin: 0; color: #1478b4; font-size: 16px; font-weight: 800; line-height: 1.55; }
.kangoroo-promo-strong sup { font-size: 10px; }
.kangoroo-promo-free {
  flex: 0 0 auto;
  min-width: 82px;
  padding: 8px 10px;
  color: #526173;
  background: #e3f2f8;
  border-radius: 10px;
  text-align: center;
  font-size: 10px;
  line-height: 1.35;
}
.kangoroo-promo-free strong { color: #c64a2d; font-size: 21px; }
.kangoroo-promo-body { display: grid; grid-template-columns: minmax(210px, 245px) 1fr; align-items: stretch; gap: 20px; }
.kangoroo-promo-editorial .kangoroo-promo-banner { width: 100%; max-width: 245px; align-self: center; }
.kangoroo-promo-editorial .kangoroo-promo-content { min-width: 0; }
.kangoroo-promo-editorial .kangoroo-promo-eyebrow {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 9px;
  color: #28639b;
  background: #e9f4fa;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.kangoroo-promo-editorial .kangoroo-promo-heading {
  margin: 0 0 12px;
  color: #202c3a;
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}
.kangoroo-promo-benefits { display: grid; gap: 9px; margin: 0; padding: 16px 16px 16px 39px; background: #fbf8e9; border-radius: 10px; }
.kangoroo-promo-benefits li { position: relative; margin: 0; color: #334155; font-size: 13px; font-weight: 700; line-height: 1.65; }
.kangoroo-promo-benefits li::marker { color: #1d88c6; }
.kangoroo-promo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; overflow: hidden; background: #c6deeb; border: 1px solid #c6deeb; border-radius: 9px; }
.kangoroo-promo-stats > div { display: grid; gap: 4px; padding: 11px 8px; background: #fff; text-align: center; }
.kangoroo-promo-stats span { color: #64748b; font-size: 10px; }
.kangoroo-promo-stats strong { color: #28639b; font-size: 14px; }
.kangoroo-promo-editorial .kangoroo-promo-button {
  width: 100%;
  margin-top: 18px;
  min-height: 54px;
  padding: 14px 20px;
  color: #fff;
  background: #b83e24;
  border-color: #b83e24;
  box-shadow: 0 4px 0 #872b19;
  font-size: 15px;
}
.kangoroo-promo-editorial .kangoroo-promo-note { margin: 12px 0 0; color: #7b8794; font-size: 10px; line-height: 1.6; }
.mynavi-kaigo-promo { border-color: #f0bd83; }
.mynavi-kaigo-promo .kangoroo-promo-strong { color: #df5a2b; }
.mynavi-kaigo-promo .kangoroo-promo-free { background: #e4f5f6; }
.mynavi-kaigo-promo .kangoroo-promo-eyebrow { color: #b84420; background: #fff0e5; }
.mynavi-kaigo-promo .kangoroo-promo-benefits { background: #fff6e5; }
.mynavi-kaigo-promo .kangoroo-promo-stats { background: #b9dfe3; border-color: #b9dfe3; }
.mynavi-kaigo-promo .kangoroo-promo-stats strong { color: #087f91; }
.mynavi-kaigo-promo .mynavi-kaigo-button { background: #b83e24; border-color: #b83e24; box-shadow: 0 4px 0 #872b19; }
.mynavi-image-source { margin: 7px 0 0; color: #7b8794; font-size: 9px; text-align: center; }
.mynavi-promotion-disclosure { margin: 9px 0 0; color: #64748b; font-size: 10px; text-align: center; }

.skima-final-cta {
  margin-top: 42px;
  padding: 34px 32px;
  text-align: center;
  background: linear-gradient(135deg, #fff3ec, #fff9f5);
  border: 2px solid #efaa8e;
  border-radius: 16px;
}
.skima-final-cta-label { display: inline-flex; margin: 0 0 10px; padding: 4px 11px; color: #fff; background: #c64a2d; border-radius: 999px; font-size: 11px; font-weight: 800; }
.article-redesign-main .skima-final-cta h2 { margin: 0; padding: 0; color: #202c3a; background: transparent; border: 0; font-size: 23px; line-height: 1.55; }
.skima-final-cta > p:not([class]) { max-width: 610px; margin: 13px auto 0; color: #526173; font-size: 14px; line-height: 1.8; }
.article-redesign-main .skima-final-cta ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0; background: transparent; border: 0; list-style: none; }
.skima-final-cta li { position: relative; margin: 0; padding-left: 20px; color: #334155; font-size: 13px; font-weight: 800; }
.skima-final-cta li::before { content: "✓"; position: absolute; left: 0; color: #28724b; }
.skima-final-cta .btn { width: min(100%, 430px); margin-top: 22px; min-height: 54px; color: #fff; background: #c64a2d; border-color: #c64a2d; box-shadow: 0 4px 0 #9f351f; }
.skima-final-cta .skima-final-cta-note { margin: 12px 0 0; color: #7b8794; font-size: 10px; }

.article-redesign-sidebar { min-width: 0; }
.article-sidebar-sticky { position: sticky; top: 100px; display: grid; gap: 18px; }
.article-sidebar-card {
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe6ec;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(32, 44, 58, .06);
}
.article-sidebar-label { margin: 0 0 5px; color: #28639b; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.article-sidebar-title { margin: 0 0 12px; color: #202c3a; font-family: var(--font-round); font-size: 15px; font-weight: 800; }
.article-sidebar-summary ol { margin: 0; padding-left: 24px; color: #526173; font-size: 13px; }
.article-sidebar-summary li { margin: 7px 0; }
.article-sidebar-toc > ol { margin: 0; padding: 0; list-style: none; counter-reset: sidebar-toc; }
.article-sidebar-toc { max-height: calc(100vh - 330px); overflow-y: auto; scrollbar-width: thin; }
.article-sidebar-toc li { counter-increment: sidebar-toc; position: relative; margin: 0; padding: 9px 0 9px 28px; border-bottom: 1px solid #edf1f4; font-size: 12px; line-height: 1.55; }
.article-sidebar-toc li:last-child { border-bottom: 0; }
.article-sidebar-toc li::before { content: counter(sidebar-toc, decimal-leading-zero); position: absolute; left: 0; top: 10px; color: #6c91ae; font-size: 10px; font-weight: 800; }
.article-sidebar-toc a { color: #526173; text-decoration: none; }
.article-sidebar-toc a:hover { color: #28639b; }

.article-editor-box {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #dfe6ec;
}
.article-editor-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #28639b;
  border-radius: 50%;
  font-family: var(--font-round);
  font-weight: 800;
}
.article-editor-title { margin: 0 0 4px; color: #202c3a; font-family: var(--font-round); font-weight: 800; }
.article-editor-box p:last-child { margin: 0; color: #64748b; font-size: 12.5px; line-height: 1.8; }
.article-editor-box-compact {
  margin-top: 48px;
  padding: 24px;
  background: #f8fafc;
  border: 1px solid #dfe6ec;
  border-radius: 14px;
}
.article-editor-box-compact .article-editor-link { margin-top: 8px; }
.article-editor-box-compact .article-editor-link a { color: #28639b; font-weight: 700; }

/* 復職準備度診断 */
.return-checklist {
  margin: 28px 0 36px;
  padding: 28px;
  background: #f8fbfd;
  border: 1px solid #cbdfea;
  border-radius: 16px;
}
.return-checklist-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.return-checklist-eyebrow { margin: 0 0 4px; color: #28724b; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.return-checklist .return-checklist-head h3 {
  margin: 0;
  padding: 0;
  color: #202c3a;
  border: 0;
  font-size: 21px;
}
.return-checklist-score { display: flex; align-items: baseline; gap: 4px; margin: 0; color: #526173; white-space: nowrap; }
.return-checklist-score strong { color: #28639b; font-size: 30px; line-height: 1; }
.return-checklist-score span { font-size: 14px; font-weight: 800; }
.return-checklist-progress { height: 8px; margin: 18px 0 22px; overflow: hidden; background: #dce8ef; border-radius: 999px; }
.return-checklist-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, #5b8fb9, #28724b); border-radius: inherit; transition: width .25s ease; }
.return-checklist fieldset { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.return-checklist-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dbe4eb;
  border-radius: 11px;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.return-checklist-item:hover { border-color: #87abc6; transform: translateY(-1px); }
.return-checklist-item:has(input:checked) { background: #eff8f3; border-color: #76a98b; }
.return-checklist-item input {
  width: 21px;
  height: 21px;
  margin: 2px 0 0;
  accent-color: #28724b;
}
.return-checklist-item input:focus-visible { outline: 3px solid rgba(40, 99, 155, .3); outline-offset: 3px; }
.return-checklist-item span { min-width: 0; }
.return-checklist-item strong { display: block; color: #29384a; font-size: 15px; }
.return-checklist-item small { display: block; margin-top: 3px; color: #64748b; font-size: 12.5px; line-height: 1.65; }
.return-checklist-result { margin-top: 20px; padding: 20px; background: #fff; border: 2px solid #b8d0df; border-radius: 12px; }
.return-checklist-result.is-complete { background: #eff8f3; border-color: #76a98b; }
.return-result-label { margin: 0 0 4px; color: #28639b; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.return-result-title { margin: 0 0 8px; color: #202c3a; font-family: var(--font-round); font-size: 18px; font-weight: 800; }
.return-checklist-result > p:not([class]) { margin: 0; color: #526173; font-size: 14px; line-height: 1.8; }
.return-result-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.return-result-actions .btn { min-height: 46px; padding: 11px 18px; color: #fff; background: #28639b; border-color: #28639b; box-shadow: 0 3px 0 #1e4b75; font-size: 13px; }
.return-result-actions .btn.is-affiliate { background: #c64a2d; border-color: #c64a2d; box-shadow: 0 3px 0 #9f351f; }
.return-checklist-reset { padding: 7px 2px; color: #64748b; background: transparent; border: 0; cursor: pointer; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.return-checklist-reset:hover { color: #28639b; }

.article-redesign-page .sticky-cta { align-items: center; gap: 9px; }
.article-redesign-page .sticky-cta .sticky-cta-pr {
  flex: 0 0 auto;
  padding: 3px 7px;
  color: #555;
  background: #fff;
  border: 1px solid #8b8b8b;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}
.article-redesign-page .sticky-cta .btn {
  min-height: 48px;
  color: #fff;
  background: #c64a2d;
  border-color: #c64a2d;
  box-shadow: 0 3px 0 #9f351f;
}
.sticky-affiliate-copy { display: grid; flex: 1 1 auto; gap: 3px; }
.sticky-affiliate-copy small { color: #64748b; font-size: 8px; line-height: 1.2; text-align: center; }
.sticky-affiliate-copy .btn { width: 100%; }

@media (max-width: 980px) {
  .article-redesign-layout { grid-template-columns: minmax(0, 1fr); }
  .article-redesign-sidebar { display: none; }
  .article-hero-redesign-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .article-trust-card { max-width: 520px; }
}

@media (max-width: 700px) {
  .article-redesign-page .site-header .wrap {
    min-height: 64px;
    padding-top: 9px;
    padding-bottom: 9px;
    flex-wrap: nowrap;
  }
  .article-redesign-page .site-header .audience-switch { display: none; }
  .article-redesign-page .mobile-nav { inset: 64px 0 0; }
  .wrap-article-wide { width: min(100% - 26px, 1180px); }
  .article-hero-redesign { padding: 24px 0 28px; }
  .article-hero-redesign .breadcrumb { margin-bottom: 20px; }
  .article-hero-redesign h1 { font-size: 28px; line-height: 1.45; }
  .article-meta-redesign { gap: 8px 12px; margin-top: 16px; font-size: 12px; }
  .article-trust-card { padding: 16px 18px; }
  .article-body-redesign { padding: 22px 0 56px; }
  .article-redesign-main { padding: 24px 18px 34px; border-radius: 14px; }
  .article-redesign-main > p,
  .article-redesign-main > p:first-of-type { font-size: 16px; line-height: 1.9; }
  .article-redesign-main > h2 { grid-template-columns: 38px 1fr; gap: 10px; margin-top: 54px; font-size: 22px; }
  .article-redesign-main > h2::before { width: 36px; height: 30px; font-size: 11px; }
  .article-redesign-main > h3 { font-size: 18px; }
  .article-redesign-main > ul,
  .article-redesign-main > ol { padding: 17px 16px 17px 40px; }
  .article-key-takeaway { padding: 22px 20px; }
  .article-key-takeaway h2 { font-size: 20px; }
  .return-checklist { padding: 20px 14px; }
  .return-checklist .return-checklist-head h3 { font-size: 18px; }
  .return-checklist-score strong { font-size: 26px; }
  .return-checklist-item { padding: 14px 12px; }
  .return-result-actions { align-items: stretch; flex-direction: column; }
  .return-result-actions .btn { width: 100%; }
  .return-checklist-reset { align-self: center; }
  .kangoroo-promo-editorial { padding: 22px 14px 18px; }
  .kangoroo-promo-head { align-items: flex-start; }
  .kangoroo-promo-brand { font-size: 20px; }
  .kangoroo-promo-strong { font-size: 14px; }
  .kangoroo-promo-free { min-width: 68px; padding: 7px 6px; }
  .kangoroo-promo-body { grid-template-columns: 1fr; gap: 18px; }
  .kangoroo-promo-editorial .kangoroo-promo-banner { max-width: 310px; margin: 0 auto; }
  .kangoroo-promo-editorial .kangoroo-promo-content { padding: 0 2px; }
  .kangoroo-promo-stats strong { font-size: 12px; }
  .kangoroo-promo-editorial .kangoroo-promo-button { width: 100%; }
  .skima-final-cta { padding: 27px 16px; }
  .article-redesign-main .skima-final-cta h2 { font-size: 20px; }
  .article-redesign-main .skima-final-cta ul { align-items: flex-start; flex-direction: column; width: max-content; max-width: 100%; margin-right: auto; margin-left: auto; text-align: left; }
  .article-redesign-main table { display: block; width: 100%; overflow-x: auto; table-layout: auto; }
  .article-redesign-main th,
  .article-redesign-main td { min-width: 126px; }
}

.cta-box {
  background: var(--orange-tint);
  border: 2px solid var(--orange);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  text-align: center;
  margin: 44px 0;
}
.cta-box .cta-title { font-family: var(--font-round); font-weight: 800; font-size: 19px; margin-bottom: 8px; }
.cta-box p { font-size: 14.5px; color: var(--ink-soft); }
.cta-box .btn { margin-top: 18px; }

.author-box {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  margin-top: 44px;
  display: flex; gap: 18px; align-items: flex-start;
}
.author-box .voice-face { width: 56px; height: 56px; margin: 0; flex-shrink: 0; }
.author-box .a-name { font-family: var(--font-round); font-weight: 800; font-size: 14.5px; }
.author-box p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

.related { padding: 50px 0 70px; }
.related h2 { font-size: 22px; margin-bottom: 24px; }

/* ---------------- フォーム ---------------- */

.form-wrap { padding: 48px 0 72px; }
.form-card {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4.5vw, 44px);
}
.field { margin-bottom: 26px; }
.field > label, .field > .group-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-round); font-weight: 800; font-size: 15px;
  margin-bottom: 8px;
}
.req, .opt {
  font-size: 11px; font-family: var(--font-round); font-weight: 800;
  border-radius: 6px; padding: 2px 8px;
}
.req { background: var(--orange); color: var(--white); }
.opt { background: var(--teal-tint); color: var(--teal-deep); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  padding: 13px 16px;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--teal-tint);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }
.tel-error { display: none; font-size: 12.5px; font-weight: 700; color: var(--orange-deep); margin-top: 6px; }
.choice-list { display: flex; flex-direction: column; gap: 10px; }
.choice {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  cursor: pointer;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}
.choice:hover { border-color: var(--teal-line); }
.choice input { width: 18px; height: 18px; flex-shrink: 0; }
.choice input:checked + span { font-weight: 700; }
.consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--teal-tint);
  border-radius: var(--radius-s);
  padding: 16px 18px;
  font-size: 14.5px;
}
.consent-row input { width: 18px; height: 18px; margin-top: 4px; flex-shrink: 0; }
.consent-row a { color: var(--teal-deep); font-weight: 700; }
.form-submit { text-align: center; margin-top: 30px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .ok-badge {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px var(--teal-tint);
}
.form-success .ok-badge svg { width: 36px; height: 36px; }
.form-success h2 { font-size: 22px; }
.form-success p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
.form-error {
  margin-top: 22px;
  background: var(--orange-tint);
  border: 2px solid var(--orange);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  text-align: center;
}
.form-error p { font-size: 14.5px; color: var(--ink); margin-bottom: 12px; }

/* ---------------- 会社概要テーブル ---------------- */

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.company-table th, .company-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1.5px dashed var(--line);
  vertical-align: top;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 190px;
  background: var(--teal-tint);
  font-family: var(--font-round); font-weight: 800;
  color: var(--teal-deep);
  white-space: nowrap;
}

/* ---------------- 規約系プレーンテキスト ---------------- */

.prose { padding: 44px 0 72px; }
.prose h2 { font-size: 20px; margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 2.5px dashed var(--teal-line); }
.prose p, .prose li { font-size: 15px; }
.prose p { margin: 14px 0; }
.prose ol, .prose ul { margin: 14px 0; padding-left: 26px; }
.prose li { margin: 6px 0; }
.prose .updated { font-size: 13px; color: var(--ink-faint); margin-top: 30px; text-align: right; }

/* ---------------- マーケティング要素 ---------------- */

.btn-line { background: #06C755; color: #fff; box-shadow: 0 4px 0 #059A47; }
.btn-line:hover { background: #059A47; box-shadow: 0 2px 0 #059A47; transform: translateY(0); color: #fff; }
.btn-line svg { width: 19px; height: 19px; flex-shrink: 0; }

.cta-trust {
  margin-top: 14px;
  display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap;
  font-family: var(--font-round); font-weight: 700; font-size: 13px;
  color: var(--ink-soft);
}
.cta-trust span { display: inline-flex; align-items: center; gap: 5px; }
.cta-trust svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
.cta-trust a { color: var(--teal-deep); }

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.compare-table {
  width: 100%; min-width: 640px;
  border-collapse: separate; border-spacing: 0;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 14px;
  font-size: 14px; text-align: center;
  border-bottom: 1.5px dashed var(--line);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  background: var(--cream-deep);
}
.compare-table tbody th {
  background: var(--cream);
  text-align: left;
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  width: 178px;
}
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-us { background: var(--orange-tint); }
.compare-table thead .col-us { background: var(--orange); color: #fff; }
.compare-table small {
  display: block; font-size: 11.5px; font-weight: 500;
  color: var(--ink-soft); margin-top: 3px; line-height: 1.5;
}
.compare-table .col-us small { color: var(--ink); }
.mk { font-family: var(--font-round); font-weight: 800; font-size: 17px; line-height: 1; display: inline-block; }
.mk-best { color: var(--teal-deep); font-size: 21px; }
.mk-ok { color: var(--ink-soft); }
.mk-tri { color: var(--orange-deep); }
.mk-no { color: var(--ink-faint); }
.compare-note { font-size: 12px; color: var(--ink-faint); margin-top: 10px; text-align: right; }


.feature-card {
  display: grid; grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-l);
  overflow: hidden; text-decoration: none;
  box-shadow: var(--shadow);
  max-width: 780px; margin: 0 auto;
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature-visual {
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
}
.feature-visual svg { width: 96px; height: 96px; }
.feature-body { padding: 24px 28px 22px; }
.feature-body h3 { font-size: 18.5px; margin-top: 10px; line-height: 1.6; }
.feature-body .excerpt { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.feature-body .f-meta {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
}
.feature-body .f-meta .date { color: var(--ink-faint); }
.feature-body .f-meta .go { color: var(--orange-deep); }

.line-alt {
  background: #EAF9F0;
  border: 2px solid #B5E8C8;
  border-radius: var(--radius-m);
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.line-alt p {
  font-family: var(--font-round); font-weight: 800; font-size: 14.5px;
  display: flex; align-items: center; gap: 8px;
}
.line-alt p svg { width: 20px; height: 20px; color: #06C755; flex-shrink: 0; }

.share-row { margin-top: 20px; display: flex; justify-content: center; }
.share-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: #06C755; color: #fff;
  text-decoration: none;
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  border-radius: 999px; padding: 10px 20px;
  transition: background .18s ease;
}
.share-line:hover { background: #059A47; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1.5px solid var(--line);
  box-shadow: 0 -6px 18px rgba(200, 140, 80, 0.12);
}
.sticky-cta .btn { flex: 1; padding: 13px 8px; font-size: 14px; }

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body.has-sticky { padding-bottom: 74px; }
  body.has-sticky .mobile-nav { padding-bottom: 110px; }
}
@media (max-width: 900px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-visual { height: 110px; }
}

/* ---------------- 求人 ---------------- */

.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.job-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 20px 18px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-line); }
.job-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-family: var(--font-round); font-weight: 800; font-size: 11.5px;
  border-radius: 999px; padding: 3px 12px;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-taiken { background: var(--teal-tint); color: var(--teal-deep); }
.job-card h3 { font-size: 16px; line-height: 1.6; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--ink-soft); }
.job-tags span { background: var(--cream); border: 1.5px solid var(--line); border-radius: 999px; padding: 2px 10px; }
.job-salary {
  font-family: var(--font-round); font-weight: 800; font-size: 15.5px;
  color: var(--orange-deep);
}
.job-card .go {
  margin-top: auto; text-align: right;
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
  color: var(--teal-deep);
}

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}
.filter-bar label {
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  color: var(--teal-deep);
  display: flex; align-items: center; gap: 8px;
}
.filter-bar select {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  font-family: var(--font-round); font-weight: 700; font-size: 14px;
}
.filter-bar select:focus { outline: none; border-color: var(--teal); }
.filter-count {
  margin-left: auto;
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  color: var(--ink-soft);
}
.filter-count strong { color: var(--orange-deep); font-size: 17px; }
.jobs-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 2px dashed var(--teal-line);
  border-radius: var(--radius-m);
  color: var(--ink-soft);
  font-size: 15px;
}

/* 求人詳細 */
.job-hero-badges { margin-top: 14px; }
.job-quick {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.job-quick .job-salary { font-size: 22px; }
.job-quick .job-tags { margin-top: 10px; }
.job-quick .cta-col { margin-top: 20px; display: flex; gap: 12px; }
.job-quick .cta-col .btn { flex: 1; }
.job-quick .gate-note {
  margin-top: 14px;
  font-size: 12.5px; color: var(--ink-soft);
  background: var(--cream);
  border-radius: 10px;
  padding: 10px 14px;
  line-height: 1.8;
}
.job-quick .gate-note strong { color: var(--teal-deep); }

.job-table { margin-top: 44px; }
.job-table th { width: 150px; }
.lock-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow-tint);
  border: 1.5px solid #EFD98A;
  color: #8A6A12;
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
  border-radius: 999px; padding: 3px 12px;
}

.apply-box {
  margin-top: 44px;
  background: var(--orange-tint);
  border: 2px solid var(--orange);
  border-radius: var(--radius-l);
  padding: clamp(26px, 4.5vw, 40px);
  text-align: center;
}
.apply-box h2 { font-size: clamp(20px, 2.8vw, 26px); }
.apply-steps {
  display: flex; justify-content: center; gap: 10px 26px; flex-wrap: wrap;
  margin: 18px 0 6px;
  font-family: var(--font-round); font-weight: 800; font-size: 13.5px;
  color: var(--ink);
}
.apply-steps span { display: inline-flex; align-items: center; gap: 7px; }
.apply-steps .n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12.5px; flex-shrink: 0;
}
.apply-box .hero-actions { justify-content: center; margin-top: 18px; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 34px;
  font-family: var(--font-round); font-weight: 800; font-size: 14px;
  color: var(--teal-deep); text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* 登録ページ：求人引き継ぎ＆流れ */
.job-notice {
  background: var(--teal-tint);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: 14.5px;
}
.job-notice strong { font-family: var(--font-round); display: block; margin-top: 2px; }
.flow-mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 26px;
}
.flow-mini .step {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 14px;
  text-align: center;
}
.flow-mini .n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-family: var(--font-round); font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.flow-mini p { font-family: var(--font-round); font-weight: 800; font-size: 13.5px; line-height: 1.6; }
.flow-mini small { display: block; font-size: 11.5px; color: var(--ink-soft); font-weight: 500; margin-top: 4px; }

@media (max-width: 900px) {
  .job-grid { grid-template-columns: 1fr; }
  .filter-count { margin-left: 0; width: 100%; }
  .job-quick .cta-col { flex-direction: column; }
}
@media (max-width: 560px) {
  .flow-mini { grid-template-columns: 1fr; }
}

.badge-hw { background: #E7F3FB; color: #2273A8; border: 1.5px solid #BBDDF0; }
.badge-ad { background: #EFEAFB; color: #5B3FA8; border: 1.5px solid #D6C8F0; }
.hw-employer {
  font-size: 12.5px; color: var(--ink-soft);
  font-family: var(--font-round); font-weight: 700;
}
.source-box {
  background: #F4FAFE;
  border: 2px solid #BBDDF0;
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin-top: 30px;
  font-size: 13.5px; color: var(--ink-soft);
  line-height: 2;
}
.source-box strong { color: #2273A8; }

.ad-facility-box {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  margin-top: 24px;
}
.ad-facility-box .f-name { font-family: var(--font-round); font-weight: 800; font-size: 18px; }
.ad-facility-box .f-note { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.ad-apply-form {
  margin-top: 44px;
  background: var(--cream-deep);
  border-radius: var(--radius-l);
  padding: clamp(24px, 4.5vw, 38px);
}
.ad-apply-form h2 { font-size: 20px; margin-bottom: 6px; }
.ad-apply-form .lede { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.ad-apply-note {
  margin-top: 18px; font-size: 12.5px; color: var(--ink-faint);
  background: var(--white); border-radius: 10px; padding: 12px 16px; line-height: 1.8;
}

/* ---------------- リッチモーション ---------------- */

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes sway { 0%, 100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.6deg); } }
@keyframes twinkle { 0%, 100% { opacity: .15; transform: scale(.6) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(18deg); } }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes shineSweep { to { left: 140%; } }
@keyframes confettiFall { to { transform: translateY(130px) rotate(340deg); opacity: 0; } }
@keyframes drawMaru { to { stroke-dashoffset: 0; } }

.hero-cloud { animation: floaty 7s ease-in-out infinite; }
.hero-bunting g { transform-origin: 600px 0px; animation: sway 7s ease-in-out infinite; }
.hero-copy { position: relative; }
.hero-copy > * { animation: popIn .7s cubic-bezier(.2, .8, .3, 1) backwards; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-copy > *:nth-child(3) { animation-delay: .16s; }
.hero-copy > *:nth-child(4) { animation-delay: .24s; }
.hero-copy > *:nth-child(5) { animation-delay: .32s; }
.hero .hero-card { animation: popIn .8s .2s cubic-bezier(.2, .8, .3, 1) backwards; }

.twinkle {
  position: absolute; width: 18px; height: 18px;
  color: #FFC93C; pointer-events: none;
  animation: twinkle 2.8s ease-in-out infinite;
}
.twinkle.t2 { width: 13px; height: 13px; color: var(--pink); animation-delay: 1.3s; animation-duration: 3.4s; }

.btn { position: relative; overflow: hidden; }
.btn:active { transform: translateY(1px) scale(.97); }
.btn-orange::before {
  content: ""; position: absolute; top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
}
.btn-orange:hover::before { animation: shineSweep .7s ease; }

.faq-a { transition: max-height .35s ease, opacity .25s ease; overflow: hidden; }

/* ---------------- 10秒ぴったり診断 ---------------- */

.shindan-wrap { max-width: 620px; margin: 0 auto; }
.shindan-card {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lift);
  padding: clamp(26px, 4.5vw, 40px);
  position: relative;
  overflow: hidden;
}
.sh-progress { display: flex; justify-content: center; gap: 9px; margin-bottom: 20px; }
.sh-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal-tint);
  transition: background .3s ease, transform .3s ease;
}
.sh-dot.on { background: var(--teal); transform: scale(1.25); }
.sh-step { display: none; }
.sh-step.is-active { display: block; animation: popIn .45s cubic-bezier(.2, .8, .3, 1); }
.sh-q {
  font-family: var(--font-round); font-weight: 800;
  font-size: 19px; text-align: center; margin-bottom: 20px;
  line-height: 1.6;
}
.sh-options { display: grid; gap: 11px; }
.sh-opt {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: var(--ink); cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.sh-opt:hover { border-color: var(--teal); background: var(--teal-tint); }
.sh-opt:active { transform: scale(.98); }
.sh-opt svg { width: 30px; height: 30px; flex-shrink: 0; }
.sh-back {
  display: block; margin: 16px auto 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-round); font-weight: 700; font-size: 12.5px;
  color: var(--ink-faint);
}
.sh-back:hover { color: var(--teal-deep); }
.sh-result { display: none; text-align: center; }
.sh-result.is-active { display: block; animation: popIn .5s cubic-bezier(.2, .8, .3, 1); }
.sh-type {
  display: inline-block;
  background: var(--yellow-tint);
  border-radius: 999px; padding: 5px 18px;
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  color: #8A6A12;
}
.sh-result .voice-face { width: 78px; height: 78px; margin: 16px auto 8px; }
.sh-result h3 { font-size: 21px; }
.sh-msg {
  margin-top: 14px; text-align: left;
  background: var(--cream);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  font-size: 14.5px; color: var(--ink-soft);
  line-height: 2;
}
.sh-msg strong { color: var(--teal-deep); }
.sh-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.sh-cta .btn { width: 100%; }
.confetti-piece {
  position: absolute; top: -12px;
  width: 9px; height: 14px; border-radius: 2px;
  pointer-events: none;
  animation: confettiFall 1.15s ease-in forwards;
}

/* ---------------- 花丸スタンプ ---------------- */

.hanamaru {
  position: absolute; top: -20px; right: -12px;
  width: 58px; height: 58px;
  color: #E85D5D;
  transform: rotate(10deg);
  pointer-events: none;
}
.hanamaru path {
  stroke: currentColor; fill: none;
  stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 400; stroke-dashoffset: 400;
}
.hanamaru.draw path { animation: drawMaru 1s .25s ease forwards; }
.hanamaru.draw path + path { animation-delay: .55s; }
.tt-fork-item.win { position: relative; }
.form-success { position: relative; }
.form-success .hanamaru { top: -4px; right: 6%; width: 66px; height: 66px; }

/* ---------------- 体験当日のこと ---------------- */

.day-info {
  margin-top: 30px;
  background: var(--white);
  border: 2px dashed var(--teal-line);
  border-radius: var(--radius-m);
  padding: 20px 24px;
}
.day-info-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-round); font-weight: 800; font-size: 15.5px;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.day-info-title svg { width: 24px; height: 24px; flex-shrink: 0; }
.day-info ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.day-info li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; }
.di-label {
  flex-shrink: 0;
  min-width: 86px; text-align: center;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-family: var(--font-round); font-weight: 800; font-size: 12.5px;
  border-radius: 999px; padding: 4px 12px;
  margin-top: 1px;
}

/* ---------------- 施設ポータル・管理画面 ---------------- */

.portal-wrap { max-width: 640px; margin: 0 auto; padding: 48px 24px 72px; }
.portal-wrap.wide { max-width: 980px; }
.portal-card {
  background: var(--white);
  border: 2px solid var(--teal-line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4.5vw, 40px);
}
.portal-card h1 { font-size: 24px; }
.portal-card .lede { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }
.portal-alert {
  margin-top: 16px; padding: 12px 16px; border-radius: 10px;
  font-size: 13.5px; display: none;
}
.portal-alert.show { display: block; }
.portal-alert.err { background: var(--orange-tint); border: 1.5px solid var(--orange); color: var(--ink); }
.portal-alert.ok { background: var(--teal-tint); border: 1.5px solid var(--teal-line); color: var(--teal-deep); }
.portal-switch { margin-top: 18px; text-align: center; font-size: 13.5px; color: var(--ink-soft); }
.portal-switch a { color: var(--teal-deep); font-weight: 700; }
.terms-embed {
  margin: 18px 0; max-height: 220px; overflow-y: auto;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 16px 18px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.9;
}
.terms-embed h3 { font-size: 13px; margin: 14px 0 4px; color: var(--ink); }
.terms-embed h3:first-child { margin-top: 0; }

.portal-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 30px;
}
.portal-header h1 { font-size: 22px; }
.portal-header .who { font-size: 13px; color: var(--ink-soft); }
.portal-logout {
  background: none; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-family: var(--font-round); font-weight: 700; font-size: 13px;
  cursor: pointer; color: var(--ink-soft);
}
.portal-logout:hover { border-color: var(--teal); color: var(--teal-deep); }

.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.stat-card {
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-m);
  padding: 18px 20px;
}
.stat-card .n { font-family: var(--font-round); font-weight: 800; font-size: 30px; color: var(--orange-deep); }
.stat-card .l { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

.portal-section { margin-bottom: 40px; }
.portal-section h2 { font-size: 18px; margin-bottom: 14px; }

.dash-job-row {
  display: grid; grid-template-columns: 1fr auto auto auto;
  align-items: center; gap: 14px;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-m);
  padding: 16px 18px; margin-bottom: 10px;
}
.dash-job-row .t { font-family: var(--font-round); font-weight: 800; font-size: 14.5px; }
.dash-job-row .m { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; }
.dash-status {
  font-family: var(--font-round); font-weight: 800; font-size: 11.5px;
  border-radius: 999px; padding: 3px 12px;
}
.dash-status.published { background: var(--teal-tint); color: var(--teal-deep); }
.dash-status.closed { background: var(--cream); color: var(--ink-faint); }
.dash-job-row .btn-small { white-space: nowrap; }

.data-table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-m); overflow: hidden; border: 2px solid var(--line); }
.data-table th, .data-table td { padding: 10px 14px; font-size: 13px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.data-table th { background: var(--cream-deep); font-family: var(--font-round); font-weight: 800; font-size: 12px; }
.data-table tr:last-child td { border-bottom: none; }
.empty-note { font-size: 13.5px; color: var(--ink-faint); padding: 20px; text-align: center; }

@media (max-width: 700px) {
  .stat-cards { grid-template-columns: 1fr; }
  .dash-job-row { grid-template-columns: 1fr; }
}

/* ---------------- フッター ---------------- */

.footer-lawn { display: block; width: 100%; height: 74px; margin-bottom: -1px; }
.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 50px 0 30px;
  font-size: 14px;
}
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-logo {
  font-family: var(--font-round); font-weight: 800;
  font-size: 20px; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .mark { width: 26px; height: 26px; }
.footer-top p { margin-top: 14px; line-height: 1.9; color: rgba(255, 255, 255, 0.66); }
.footer-col h4 {
  font-family: var(--font-round); font-weight: 800; font-size: 13px;
  letter-spacing: .06em; color: rgba(255, 255, 255, 0.6); margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255, 255, 255, 0.9); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
  color: rgba(255, 255, 255, 0.55); font-size: 12.5px;
}

/* ---------------- レスポンシブ ---------------- */

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 42px; }
  .hero-card { transform: none; order: -1; max-width: 440px; }
  .hero-sun { top: -34px; right: 4px; width: 72px; height: 72px; }
  .hero-cloud { display: none; }
  .voice-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .fee-table { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .head-links { display: none; }
}

@media (max-width: 760px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 50px 0; }
  .hero { padding-bottom: 44px; }
  .tt-row { grid-template-columns: 64px 26px 1fr; }
  .tt-time { font-size: 11.5px; }
  .tt-fork { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .pitch-avatar { width: 60px; height: 60px; top: -26px; left: 24px; }
  .pitch-block .pitch-label { padding-left: 72px; }
  .footer-top { grid-template-columns: 1fr; }
  .company-table th { width: 120px; white-space: normal; }
}

@media (max-width: 430px) {
  .logo { font-size: 17px; }
  .logo .mark { width: 24px; height: 24px; }
  .switch-link { padding: 7px 11px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-sun { animation: none; }
}

/* ============================================================
   モバイル最適化・レスポンシブ強化（2026-07 追加）
   既存ルールの後に置き、電話幅の崩れを総ざらいで補正
   ============================================================ */

/* --- はみ出し／横スクロール防止（iOS Safari 含む） --- */
html { overflow-x: hidden; }
body { overflow-wrap: break-word; word-break: normal; }
img, svg, video, iframe, canvas, picture { max-width: 100%; }
table { max-width: 100%; }

/* 横スクロールが必要な表は必ずラッパー内でスクロール（管理/施設ダッシュボード） */
.data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- 電話・小型タブレット（〜640px） --- */
@media (max-width: 640px) {
  /* コンテナ余白と縦間隔 */
  .wrap, .wrap-narrow { padding: 0 16px; }
  section { padding: 46px 0; }

  /* 主要グリッドはすべて1カラムに（保険として明示） */
  .benefit-grid, .benefit-grid.cols-3, .voice-grid, .trust-grid,
  .fee-table, .column-grid, .job-grid, .flow-mini, .stat-cards,
  .tt-fork, .footer-top, .feature-card {
    grid-template-columns: 1fr;
  }

  /* ボタン：長い日本語ラベルの折り返しを許可し、CTA群は縦積み全幅 */
  .btn { white-space: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; }

  /* ヒーロー：カードの傾きを解除して見切れ防止、サブ文字を調整 */
  .hero-card { transform: none; }
  .hero-sub { font-size: 15.5px; }

  /* stat-strip：横並び→縦積み、最小幅解除 */
  .stat-strip { flex-direction: column; align-items: flex-start; }
  .stat-strip .desc { min-width: 0; }

  /* 会社概要テーブル：見出し列を詰める */
  .company-table th { width: 96px; }

  /* 比較表：3列すべてを1画面に収める（横スクロール廃止） */
  .compare-wrap { overflow-x: visible; }
  .compare-table { min-width: 0; width: 100%; table-layout: fixed; }
  .compare-table th, .compare-table td { padding: 9px 3px; font-size: 11px; word-break: break-word; }
  .compare-table thead th { font-size: 10.5px; line-height: 1.3; }
  .compare-table tbody th { width: 62px; font-size: 10.5px; padding: 9px 4px; line-height: 1.3; text-align: left; }
  .compare-table small { display: block; font-size: 9px; margin-top: 2px; line-height: 1.35; }
  .mk { font-size: 13px; }
  .mk-best { font-size: 15px; }
  .compare-note { text-align: left; }
}

/* --- 小型スマホ（〜400px） --- */
@media (max-width: 400px) {
  .wrap, .wrap-narrow { padding: 0 13px; }
  .hero h1 { font-size: 25px; }
  .btn { font-size: 15px; padding: 14px 18px; }
  .logo { font-size: 16px; }
  .page-hero h1 { font-size: 23px; }
}

/* ============================================================
   追加修正2（2026-07）：見出しの句読点改行／ヘッダー切替をモバイルでも常時表示
   ============================================================ */

/* 見出しは句読点(、。！？)で改行（build側で<wbr>挿入）。語中での不自然な改行を防ぐ */
h1, h2 { word-break: keep-all; overflow-wrap: anywhere; }

/* スマホ：ヘッダーを2段に。上段=ロゴ＋メニュー、下段=全幅の「はたらく方／施設の方」切替。
   → はたらく方／施設のどちらで来ても、最初の画面で切替が必ず見える */
@media (max-width: 760px) {
  :root { --header-h: 106px; }
  .site-header .wrap {
    height: auto; flex-wrap: wrap; align-items: center;
    padding-top: 10px; padding-bottom: 10px; row-gap: 10px;
  }
  .logo { order: 1; }
  .nav-toggle { order: 2; }
  .audience-switch {
    order: 3; display: inline-flex; width: 100%; box-sizing: border-box;
  }
  .audience-switch .switch-link {
    flex: 1; text-align: center; white-space: nowrap; padding: 9px 0; font-size: 14px;
  }
  .switch-thumb { width: calc(50% - 4px); }
}

/* ============================================================
   追加修正3（2026-07）：体験強化
   （ヒーロー時間割アニメ／単発シミュレーター／求人票のコツ）
   ============================================================ */

/* ヒーローの「きょうのじていひょう」：現在の行がやさしく点灯 */
.hero-mini-row { transition: background-color .5s ease; border-radius: 12px; padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.hero-mini-row.is-now { background: #FFF4D6; }
.hero-mini-row .hero-mini-time { transition: transform .5s ease; }
.hero-mini-row.is-now .hero-mini-time { transform: scale(1.1); }

/* 単発シミュレーター */
.sim-card { background: var(--white); border: 2px solid var(--teal-line); border-radius: var(--radius-l); padding: 26px 26px 20px; box-shadow: var(--shadow); }
.sim-row { display: grid; grid-template-columns: 110px 1fr 92px; align-items: center; gap: 14px; padding: 10px 0; }
.sim-row label { font-family: var(--font-round); font-weight: 800; font-size: 14px; color: var(--teal-deep); }
.sim-row output { font-family: var(--font-round); font-weight: 800; text-align: right; font-size: 15px; }
.sim-row input[type="range"] { width: 100%; accent-color: var(--orange); }
.sim-result { margin-top: 14px; padding-top: 16px; border-top: 1.5px dashed var(--line); text-align: center; font-family: var(--font-round); font-weight: 800; font-size: 17px; }
.sim-result strong { font-size: 34px; color: var(--orange-deep); margin: 0 4px; font-variant-numeric: tabular-nums; }
.sim-result small { font-size: 13px; color: var(--ink-soft); font-weight: 700; margin-left: 2px; }
.sim-note { font-size: 11.5px; color: var(--ink-faint); margin-top: 12px; text-align: center; }
@media (max-width: 640px) {
  .sim-card { padding: 20px 16px 16px; }
  .sim-row { grid-template-columns: 84px 1fr 72px; gap: 10px; }
  .sim-row label { font-size: 12.5px; }
  .sim-row output { font-size: 13px; }
  .sim-result strong { font-size: 29px; }
}

/* 求人票のコツ（施設向け） */
.tips-list { list-style: none; counter-reset: tip; margin: 0; padding: 0; display: grid; gap: 14px; }
.tips-list li { counter-increment: tip; background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-m); padding: 16px 18px 16px 58px; position: relative; font-size: 14.5px; line-height: 1.9; }
.tips-list li::before { content: counter(tip); position: absolute; left: 16px; top: 17px; width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-round); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.tips-list li strong { font-family: var(--font-round); display: block; margin-bottom: 2px; color: var(--teal-deep); }

/* 求人作成フォームの補足注記（法定明示ガイド） */
.form-help { font-size: 11.5px; color: var(--ink-faint); margin: 6px 0 0; line-height: 1.8; }
.form-help strong { color: var(--ink-soft); }


/* ══ WordPress移管記事(旧ケアキャリア)用 ══ */
.article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; margin: 18px 0; font-size: 13.5px; background: var(--white); border-radius: 10px; }
.article-body th, .article-body td { border: 1px solid var(--teal-line); padding: 8px 10px; text-align: left; vertical-align: top; min-width: 72px; }
.article-body thead th { background: var(--teal-tint); font-weight: 700; color: var(--teal-deep); }
.article-body h4 { font-size: 15px; margin: 22px 0 8px; }
.article-body hr { border: 0; border-top: 2px dashed var(--teal-line); margin: 28px 0; }
.article-body iframe { max-width: 100%; border: 0; border-radius: 12px; margin: 12px 0; }
.article-body .btn { margin: 10px 0; }
.article-body .wp-balloon { background: var(--teal-tint); border: 2px solid var(--teal-line); border-radius: 14px; padding: 12px 16px; margin: 18px 0; font-size: 14.5px; }
.article-body .wp-balloon p { margin: 0 0 6px; }
.article-body .wp-balloon p:last-child { margin-bottom: 0; }
.article-body .wp-ref { font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 0; padding-top: 10px; border-top: 1px dotted var(--teal-line); }
.article-body blockquote { border-left: 4px solid var(--teal-line); background: var(--teal-tint); margin: 18px 0; padding: 12px 16px; border-radius: 0 10px 10px 0; }
.article-list-head { font-size: 19px; margin: 40px 0 6px; }
.article-list-head .d { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-left: 6px; }
.article-list { list-style: none; padding: 0; margin: 10px 0 8px; }
.article-list li { border-bottom: 1px dashed var(--teal-line); }
.article-list a { display: block; padding: 12px 4px; color: var(--ink); font-weight: 700; text-decoration: none; font-size: 14.5px; line-height: 1.5; }
.article-list a:hover { color: var(--teal-deep); }
.article-list .d { display: block; font-size: 12px; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }


/* ── 管理ダッシュボード：登録者・相談の一覧 ── */
.dash-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 6px;
}
.dash-section-head h2 { margin: 0; }
.table-note { margin: 0 0 .8rem; font-size: 13px; color: var(--ink-soft); }
.table-search {
  width: 100%; max-width: 380px; margin-bottom: 14px;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 14px; background: var(--white); color: var(--ink);
}
.table-search:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint); }
.data-table .sub { font-size: 12px; color: var(--ink-soft); }
.data-table td.msg {
  max-width: 320px; white-space: pre-wrap; word-break: break-word;
  font-size: 13px; color: var(--ink-soft);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
