/* ============================================================
   page-beginner-nakai.css — 統合版（重複削除・整理済み）
   ============================================================ */

/* ===== CSS変数 ===== */
:root {
  --sky-50:  #EDF8FC;
  --sky-100: #C8EDF8;
  --sky-200: #8DD5EE;
  --sky-400: #38AACF;
  --sky-500: #2196B8;
  --sky-600: #1A7A96;
  --sky-700: #145D73;
  --sky-900: #0A3040;
  --text:        #1C2B33;
  --text-muted:  #546E7A;
  --text-light:  #8EA5B5;
  --white:       #ffffff;
  --border:      rgba(56,170,207,0.18);
  --border-med:  rgba(56,170,207,0.35);
  --accent:      #38AACF;
  --accent-dark: #1A7A96;
  /* nakai */
  --nakai-main: #96E8BC;
  --nakai-dark: #1A7A96;
  --nakai-pale: #EDF8FC;
  --nakai-line: #B6F9C9;
  --nakai-mid:  #7DD181;
  --ff-head: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --ff-body: 'Noto Sans JP', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--ff-body); color: var(--text); background: #F0F8FC; line-height: 1.7; font-size: 15px; }

.page-header { background: var(--sky-700); color: var(--white); padding: 40px 0 32px; text-align: center; }
.page-header .kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--sky-200); margin-bottom: 8px; font-weight: 500; }
.page-header h1 { font-family: var(--ff-head); font-size: clamp(22px,5vw,34px); font-weight: 700; color: var(--white); }
.page-header h1 span { color: var(--sky-200); }

.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.main-wrap { background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 8px 40px 56px; }
@media(max-width:600px){ .main-wrap{ padding: 8px 16px 40px; } }

/* ============================================================
   exp-hero / exp-page
   ============================================================ */
.exp-page { background: transparent; padding: 0 0 80px; }
.exp-page .content-page-container { padding-top: 0 !important; }
.exp-page .page-2col-layout { padding-top: 0 !important; margin-top: 0 !important; }
.exp-page .content-block { padding: 40px 0; border-bottom: 1px solid rgba(150,232,188,.1); }
.exp-page .content-block:first-child { padding-top: 0; }
.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(--nakai-main);
  line-height: 1.45;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  text-align: left;
}

.exp-page .content-block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 700;
  color: var(--nakai-dark);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--nakai-main);
  line-height: 1.5;
  text-align: left;
}
.exp-page .content-block p {
  font-size: 15px; color: var(--text-muted);
  line-height: 2; margin-bottom: 18px;
}

/* ============================================================
   content-block（汎用）
   ============================================================ */
.content-block { padding: 52px 0 40px; border-top: 1px solid var(--border); }
.content-block:first-child { border-top: none; }
.content-block h2 {
  font-family: var(--ff-head); font-size: clamp(20px,3.5vw,26px);
  font-weight: 700; color: var(--text); margin-bottom: 6px;
  position: relative; padding-left: 16px;
}
.content-block h2::before {
  content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:4px; height:70%; background:var(--accent); border-radius:2px;
}
.content-block > p { font-size: 14px; color: var(--text-muted); margin-top: 6px; margin-bottom: 20px; line-height: 1.8; }
.content-block h3 { font-family:var(--ff-head); font-size:16px; font-weight:700; color:var(--text); margin:32px 0 10px; }
.note-text { font-size: 12px; color: var(--text-light); line-height: 1.7; }
.text-muted { color: var(--text-muted); font-size: 12px; }

/* ============================================================
   salary-sim
   ============================================================ */
.salary-sim { background:var(--sky-50); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:24px 20px 18px; margin-bottom:28px; }
.salary-sim__header { margin-bottom: 18px; }
.salary-sim__label { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--accent-dark); }
.salary-sim__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
@media(max-width:560px){ .salary-sim__grid{ grid-template-columns:1fr; } }
.salary-sim__card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:20px 16px; position:relative; overflow:hidden; transition:border-color .2s,; }
.salary-sim__card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--sky-200); }
.salary-sim__card:hover { border-color:var(--accent); box-shadow: none; }
.salary-sim__card--mid { border-color:var(--accent); box-shadow: none; }
.salary-sim__card--mid::before { background:var(--accent); }
.salary-sim__badge { display:inline-block; font-size:10px; font-weight:700; padding:2px 10px; border-radius:99px; background:var(--accent); color:var(--white); margin-bottom:10px; }
.salary-sim__time { font-size:12px; color:var(--text-muted); margin-bottom:6px; }
.salary-sim__amount { font-family:var(--ff-head); font-size:14px; color:var(--text-muted); line-height:1.1; margin-bottom:8px; }
.salary-sim__amount strong { font-size:32px; font-weight:700; color:var(--accent-dark); }
.salary-sim__amount span { font-size:14px; color:var(--text-light); }
.salary-sim__note { font-size:11px; color:var(--text-muted); padding-top:10px; border-top:1px solid var(--border); }
.salary-sim__caption { font-size:11px; color:var(--text-light); margin-top:14px; line-height:1.7; }
.salary-sim__caption::before { content:'※ '; color:var(--accent); }
/* 仲居バリアント */
.salary-sim--nakai .salary-sim__card--mid { background:linear-gradient(160deg,#96E8BC,#7DD181); }
.salary-sim--nakai .salary-sim__card--mid .salary-sim__badge { background:rgba(255,255,255,.25); color:#fff; }

/* ============================================================
   compare-table
   ============================================================ */
.compare-table { width:100%; border-collapse:separate; border-spacing:0; border:1.5px solid var(--border); border-radius:var(--radius-md); overflow:hidden; margin-bottom:10px; }
.compare-table thead tr { background:var(--sky-600); }
.compare-table thead th { padding:11px 14px; font-size:12px; font-weight:700; color:var(--white); text-align:left; letter-spacing:.04em; }
.compare-table tbody tr { background:var(--white); transition:background .15s; }
.compare-table tbody tr:hover { background:var(--sky-50); }
.compare-table tbody td { padding:12px 14px; font-size:13px; color:var(--text); border-bottom:1px solid var(--border); vertical-align:middle; }
.compare-table tbody tr:last-child td { border-bottom:none; }
.cast-pop-row td { background:var(--sky-50)!important; }
.cast-pop-row:hover td { background:var(--sky-100)!important; }
.cast-td-time { font-family:var(--ff-head); font-size:18px; font-weight:700; color:var(--accent-dark); display:flex; align-items:baseline; gap:3px; flex-wrap:wrap; }
.cast-td-time small { font-size:12px; font-weight:400; color:var(--text-muted); }
.cast-pop-badge { display:inline-block; font-size:9px; font-weight:700; padding:2px 7px; border-radius:99px; background:var(--accent); color:var(--white); margin-left:6px; vertical-align:middle; line-height:1.6; }
.cast-td-formula { font-size:11px; color:var(--text-light); font-family:monospace; }
.cast-td-reward { display:block; font-family:var(--ff-head); font-size:16px; font-weight:700; color:var(--accent-dark); }
.cast-td-hourly { display:block; font-size:10px; color:var(--text-light); margin-top:2px; }
@media(max-width:640px){
  .compare-table,.compare-table thead,.compare-table tbody,.compare-table tr,.compare-table th,.compare-table td{display:block;}
  .compare-table thead{display:none;}
  .compare-table tbody{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;border:none;}
  .compare-table tbody tr{border:1.5px solid var(--border);border-radius:var(--radius-md);padding:14px;}
  .compare-table tbody tr.cast-pop-row{border-color:var(--accent);}
  .compare-table tbody td{padding:4px 0;border-bottom:none;font-size:12px;}
}

/* ============================================================
   待遇グリッド
   ============================================================ */
.treatment-list-block { margin-top:32px; background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:24px 20px; }
.treatment-list-block h3 { font-family:'Noto Serif JP',serif; font-size:16px; font-weight:700; color:var(--nakai-dark); margin:0 0 14px; padding-left:14px; border-left:3px solid var(--nakai-main); line-height:1.5; text-align:left; }
.tl-block-header { font-family:var(--ff-head); font-size:16px; font-weight:700; color:var(--text); margin-bottom:18px!important; padding-bottom:12px; border-bottom:1px solid var(--border); }
.tl-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
@media(max-width:680px){ .tl-grid{ grid-template-columns:repeat(2,1fr); } }
.tl-item { display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px; background:var(--sky-50); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:18px 10px 14px; transition:border-color .2s,transform .2s; cursor:default; }
.tl-item:hover { border-color:var(--accent); transform:translateY(-2px); }
.tl-icon { width:44px; height:44px; border-radius:50%; background:var(--sky-100); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.tl-icon svg { width:20px; height:20px; stroke:var(--accent); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.tl-item > span { font-size:12px; font-weight:700; color:var(--text); line-height:1.4; display:block; }
.tl-item > span small { display:block; font-size:10px; font-weight:400; color:var(--text-muted); margin-top:3px; line-height:1.5; }

/* ============================================================
   details-table
   ============================================================ */
.details-table { width:100%; border-collapse:separate; border-spacing:0; border:1.5px solid var(--border); border-radius:var(--radius-md); overflow:hidden; margin-bottom:20px; }
.details-table tbody tr { background:var(--white); transition:background .15s; }
.details-table tbody tr:hover { background:var(--sky-50); }
.details-table tbody tr+tr th,.details-table tbody tr+tr td { border-top:1px solid var(--border); }
.details-table th { width:120px; padding:14px 16px; font-size:12px; font-weight:700; color:var(--sky-700); background:var(--sky-50); vertical-align:top; white-space:nowrap; text-align:left; }
.details-table td { padding:14px 16px; font-size:13px; color:var(--text); vertical-align:top; line-height:1.8; }
.details-table td strong { color:var(--accent-dark); font-weight:700; }
.details-table td small { font-size:11px; color:var(--text-muted); }
.tag-inline { display:inline-block; font-size:10px; font-weight:700; padding:2px 9px; border-radius:99px; background:var(--sky-100); color:var(--sky-600); border:1px solid var(--border); margin:3px 3px 3px 0; }
@media(max-width:600px){
  .details-table,.details-table tbody,.details-table tr,.details-table th,.details-table td{display:block;}
  .details-table th{width:100%;border-bottom:none;padding-bottom:4px;white-space:normal;}
  .details-table td{padding-top:6px;}
}

/* ============================================================
   highlight-note / highlight-box
   ============================================================ */
.highlight-note { background:var(--nakai-pale); border:1.5px solid var(--border-med); border-left:4px solid var(--accent); border-radius:var(--radius-md); padding:18px 20px; margin-top:20px; }
.highlight-note__head { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.highlight-note__head svg { width:18px; height:18px; stroke:var(--sky-600); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.highlight-note__head strong,.highlight-note strong { display:block; font-size:14px; font-weight:700; color:var(--nakai-dark); margin-bottom:8px; }
.highlight-note__text { font-size:13px; color:var(--text-muted); line-height:1.8; margin:0; }
.highlight-note__text strong { display:inline; font-size:inherit; color:var(--accent-dark); }
.highlight-note--green { background:#f0faf7; border-left-color:#3bbf8a; }
.highlight-note--green strong { color:#1a7a56; }

.highlight-box { background:var(--sky-50); border:1.5px solid var(--border-med); border-left:4px solid var(--accent); border-radius:var(--radius-md); padding:18px 20px; margin:20px 0; }
.highlight-box > strong { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:700; color:var(--sky-700); margin-bottom:10px; }
.highlight-box > strong svg { width:17px; height:17px; stroke:var(--accent-dark); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.highlight-box > p { font-size:13px; color:var(--text-muted); line-height:1.8; margin-bottom:0; }

/* ============================================================
   FAQ
   ============================================================ */
.recruit-faq { margin-top:24px; display:flex; flex-direction:column; gap:0; }
.rfaq-cat { display:flex; align-items:center; gap:8px; font-size:12px; font-weight:700; color:var(--sky-600); letter-spacing:.06em; padding-bottom:10px; margin-top:36px; margin-bottom:10px; border-bottom:2px solid var(--sky-100); }
.rfaq-cat svg { width:15px; height:15px; stroke:var(--accent); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.recruit-faq > .rfaq-cat:first-child { margin-top:0; }
.rfaq-item { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-md); overflow:hidden; transition:border-color .2s; margin-bottom:6px; }
.rfaq-item:hover { border-color:var(--border-med); }
.rfaq-item.is-open { border-color:var(--accent); }
.rfaq-q { width:100%; display:flex; align-items:center; gap:12px; padding:16px; background:none; border:none; cursor:pointer; text-align:left; font-family:var(--ff-body); font-size:13.5px; font-weight:700; color:var(--text); line-height:1.5; transition:background .15s; }
.rfaq-q:hover { background:var(--sky-50); }
.rfaq-q-icon { display:flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; flex-shrink:0; background:var(--accent); color:var(--white); font-size:12px; font-weight:700; }
.rfaq-toggle { margin-left:auto; flex-shrink:0; width:26px; height:26px; border-radius:50%; border:1.5px solid var(--border-med); display:flex; align-items:center; justify-content:center; transition:transform .25s,background .15s,border-color .15s; }
.rfaq-toggle svg { width:13px; height:13px; stroke:var(--accent); fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; transition:transform .25s; }
.rfaq-item.is-open .rfaq-toggle { background:var(--sky-100); border-color:var(--accent); }
.rfaq-item.is-open .rfaq-toggle svg { transform:rotate(180deg); }
.rfaq-a { max-height:0; overflow:hidden; transition:max-height .32s ease; }
.rfaq-item.is-open .rfaq-a { max-height:500px; }
.rfaq-a-inner { padding:14px 20px 18px 54px; font-size:13px; color:var(--text-muted); line-height:1.85; border-top:1px solid var(--border); }
.rfaq-a-inner a { color:var(--accent); font-size:12px; text-decoration:none; display:inline-block; margin-top:6px; }
.rfaq-a-inner a:hover { text-decoration:underline; }

/* ============================================================
   ボタン類
   ============================================================ */
.btn-center-wrap { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:32px; text-align:center; }
.btn-outline { display:inline-flex; align-items:center; gap:6px; padding:12px 32px; border:1.5px solid var(--accent); border-radius:99px; color:var(--accent); font-size:13px; font-weight:700; text-decoration:none; font-family:var(--ff-body); transition:background .2s,color .2s; }
.btn-outline:hover { background:var(--accent); color:var(--white); }
.btn-link { display:inline-flex; align-items:center; gap:5px; padding:5px 12px; border:1.5px solid var(--border-med); border-radius:99px; font-size:11px; font-weight:700; color:var(--accent-dark); text-decoration:none; background:var(--sky-50); transition:background .18s,border-color .18s,color .18s; white-space:nowrap; vertical-align:middle; margin-left:4px; }
.btn-link svg { width:11px; height:11px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.btn-link:hover { background:var(--accent); border-color:var(--accent); color:var(--white); }
.btn-block-wrap { display:flex; justify-content:flex-end; margin-top:12px; }
.btn-block { display:inline-flex; align-items:center; gap:6px; padding:8px 18px; border:1.5px solid var(--accent); border-radius:99px; font-size:12px; font-weight:700; color:var(--accent); text-decoration:none; background:var(--white); transition:background .18s,color .18s; white-space:nowrap; }
.btn-block svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.btn-block:hover { background:var(--accent); color:var(--white); }
.btn-primary { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; background:var(--accent); color:var(--white); border:none; border-radius:99px; font-size:14px; font-weight:700; text-decoration:none; transition:background .2s,transform .15s; cursor:pointer; }
.btn-primary:hover { background:var(--accent-dark); transform:translateY(-1px); color:var(--white); }
.text-link { color:var(--accent); text-decoration:underline; font-weight:700; text-underline-offset:2px; }
.text-link:hover { color:var(--accent-dark); }

/* ============================================================
   check-list / two-col-content / info-card-sm
   ============================================================ */
.check-list { list-style:none; padding:0; margin:8px 0 0; display:flex; flex-direction:column; gap:8px; }
.check-list li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--text-muted); line-height:1.6; }
.check-list li::before { content:''; display:block; width:18px; height:18px; flex-shrink:0; margin-top:1px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338AACF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size:contain; background-repeat:no-repeat; }
.two-col-content { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:20px; }
@media(max-width:560px){ .two-col-content{ grid-template-columns:1fr; } }
.info-card-sm { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; position:relative; overflow:hidden; transition:border-color .2s,; }
.info-card-sm::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--sky-200); }
.info-card-sm:hover { border-color:var(--accent); box-shadow: none; }
.info-card-sm h4 { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--text); margin:0 0 8px; }
.info-card-sm h4 svg { width:16px; height:16px; stroke:var(--accent); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.info-card-sm p { font-size:12px; color:var(--text-muted); line-height:1.7; margin:0; }
.salary-num { font-size:20px; font-weight:700; color:var(--accent-dark); }

/* ============================================================
   pay-flow（3ステップ横並び）
   ============================================================ */
.pay-flow { display:flex; align-items:stretch; margin:24px 0; }
.pf-step { flex:1; background:var(--white); border:1.5px solid var(--border); padding:22px 16px 18px; position:relative; text-align:center; }
.pf-step:first-child { border-radius:var(--radius-md) 0 0 var(--radius-md); }
.pf-step:last-child  { border-radius:0 var(--radius-md) var(--radius-md) 0; }
.pf-step + .pf-step  { border-left:none; }
.pf-step:not(:last-child)::after { content:''; position:absolute; right:-12px; top:50%; transform:translateY(-50%); width:0; height:0; border-top:11px solid transparent; border-bottom:11px solid transparent; border-left:12px solid var(--accent); z-index:2; }
.pf-num { display:inline-block; font-size:11px; font-weight:700; color:var(--white); background:var(--accent); padding:4px 14px; border-radius:99px; margin-bottom:12px; letter-spacing:.04em; }
.pf-text { font-size:12px; color:var(--text-muted); line-height:1.65; }
@media(max-width:600px){
  .pay-flow { flex-direction:column; gap:0; }
  .pf-step { border-radius:0; border-left:1.5px solid var(--border); border-top:none; }
  .pf-step:first-child { border-radius:var(--radius-md) var(--radius-md) 0 0; border-top:1.5px solid var(--border); }
  .pf-step:last-child  { border-radius:0 0 var(--radius-md) var(--radius-md); }
  .pf-step:not(:last-child)::after { right:auto; top:auto; bottom:-12px; left:50%; transform:translateX(-50%); border-left:11px solid transparent; border-right:11px solid transparent; border-top:12px solid var(--accent); border-bottom:none; }
}

/* ============================================================
   仲居ステップ（nakai-system）
   ============================================================ */
.nakai-system { display:flex; flex-direction:column; gap:0; margin:24px 0 32px; border:1.5px solid rgba(150,232,188,.2); border-radius:var(--radius-md); overflow:hidden; }
.ns-step { display:flex; align-items:flex-start; border-bottom:1px solid rgba(150,232,188,.15); background:var(--white); transition:background .15s; }
.ns-step:last-child { border-bottom:none; }
.ns-step:nth-child(even) { background:var(--nakai-pale); }
.ns-step:hover { background:#e3f6fb; }
.ns-step__num { flex-shrink:0; width:64px; min-height:72px; display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond','Georgia',serif; font-size:22px; font-weight:700; color:var(--white); background:var(--nakai-main); letter-spacing:.04em; position:relative; }
.ns-step__num::after { content:''; position:absolute; right:-10px; top:50%; transform:translateY(-50%); width:0; height:0; border-top:10px solid transparent; border-bottom:10px solid transparent; border-left:10px solid var(--nakai-main); z-index:1; }
.ns-step__body { flex:1; padding:16px 20px; }
.ns-step__body strong { display:block; font-size:14px; font-weight:700; color:var(--nakai-dark); margin-bottom:6px; }
.ns-step__body p { font-size:13px; color:var(--text-muted); line-height:1.8; margin:0; }
@media(max-width:560px){
  .ns-step__num { width:48px; min-height:60px; font-size:18px; }
  .ns-step__num::after { display:none; }
  .ns-step__body { padding:14px; }
}

/* ============================================================
   仕事内容カード
   ============================================================ */
.work-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:24px 0; }
.work-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-md); padding:22px 18px; position:relative; overflow:hidden; transition:border-color .2s,transform .2s; }
.work-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(to right,var(--nakai-main),var(--nakai-mid)); }
.work-card:hover { border-color:var(--nakai-main); box-shadow: none; transform:translateY(-3px); }
.work-card__icon { width:44px; height:44px; background:var(--nakai-pale); border:1px solid var(--nakai-line); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.work-card__icon i { font-size:18px; color:var(--nakai-main); }
.work-card h4 { font-size:14px; font-weight:700; color:var(--nakai-dark); margin:0 0 8px; line-height:1.5; }
.work-card p { font-size:13px; color:var(--text-muted); line-height:1.8; margin:0; }
@media(max-width:560px){ .work-cards{ grid-template-columns:1fr; } }
