@charset "UTF-8";
/* =============================================
   なにわ引越センター サイトリニューアル
   デザイン方針: 緑を継承して洗練 / 親しみ×信頼
   ============================================= */

:root {
  --green-900: #0a3d29;
  --green-700: #0e5c3c;
  --green-600: #12714a;
  --green-500: #1a8a5c;
  --green-100: #e4f2ea;
  --green-050: #f2f8f4;
  --orange-600: #e8650f;
  --orange-500: #f07b23;
  --orange-050: #fef3e8;
  --ink: #22322b;
  --ink-soft: #5a6b62;
  --line: #dde7e1;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(10, 61, 41, .08);
  --shadow-hover: 0 10px 32px rgba(10, 61, 41, .14);
  --font-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic Medium", YuGothic, Meiryo, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; } /* 追従ヘッダー分 */
body {
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; border-radius: 999px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  padding: 18px 40px; font-size: 18px;
  box-shadow: 0 6px 18px rgba(232, 101, 15, .35);
}
.btn-outline {
  background: var(--white); color: var(--green-700);
  border: 2px solid var(--green-600);
  padding: 16px 36px; font-size: 16px;
}
.btn-line {
  background: #06c755; color: var(--white);
  padding: 14px 28px; font-size: 15px;
}
.btn svg { flex-shrink: 0; }

/* ---------- ヘッダー ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--line); }
.header-topbar {
  background: var(--green-900); color: #cfe5da; font-size: 12px;
  text-align: center; padding: 6px 16px; letter-spacing: .04em;
}
.header-main { display: flex; align-items: center; gap: 24px; padding: 14px 24px; max-width: 1280px; margin: 0 auto; }
.header-logo img { width: 220px; height: auto; }
.header-contact { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.header-tel { text-align: right; line-height: 1.3; }
.header-tel a { font-size: 24px; font-weight: 800; color: var(--green-700); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 6px; }
.header-tel small { display: block; font-size: 11px; color: var(--ink-soft); }
.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 12px 22px; font-size: 14px; }


/* ---------- ヒーロー ---------- */
.hero {
  position: relative; overflow: hidden;
  /* 画像の上側をトリミングして高さを詰める（下端基準で cover） */
  padding: clamp(16px, 2vw, 40px) 0;
  align-items: center;
  color: var(--white);
  background: url("../img/hero-pc.png") center bottom / cover no-repeat, #016a34;
  aspect-ratio: 1360 / 610;
  min-height: 540px;
  display: flex;
}
/* コピー側（右半分）だけ暗く落として可読性を確保 */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 34%, rgba(6, 48, 30, .40) 52%, rgba(6, 48, 30, .62) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 45% 55%;
  padding: 0 24px; max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-copy { grid-column: 2; padding: 24px 0; }
.hero-copy .hero-area { display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 6px 18px; font-size: 13px; letter-spacing: .08em; margin-bottom: 18px; backdrop-filter: blur(2px); }
.hero-copy h1 { font-size: clamp(24px, 2.6vw, 38px); line-height: 1.45; font-weight: 800; letter-spacing: .02em; text-shadow: 0 2px 14px rgba(4, 40, 24, .5); }
.hero-copy h1 .accent { color: #ffe07a; }
.hero-copy .hero-sub { margin-top: 16px; font-size: clamp(13px, 1.05vw, 15.5px); color: #eaf5ef; text-shadow: 0 1px 8px rgba(4, 40, 24, .5); }
.hero-badges { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-badges li {
  background: rgba(255,255,255,.96); border-radius: 14px;
  padding: 13px 22px; font-size: clamp(11.5px, .95vw, 13.5px); font-weight: 700;
  line-height: 1.5; color: var(--green-900);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 6px 18px rgba(4, 40, 24, .3);
}
.hero-badges strong {
  font-size: clamp(22px, 2vw, 30px); color: var(--orange-600);
  line-height: 1.15; letter-spacing: -.01em; margin: 2px 0 1px;
}
.hero-badges strong small { font-size: .5em; font-weight: 800; }
.hero-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
.hero-cta .btn-primary { padding: 16px 30px; font-size: clamp(14px, 1.15vw, 17px); }
.hero-cta .btn-tel {
  background: var(--white); color: var(--green-700); padding: 12px 24px; border-radius: 14px;
  text-align: left; line-height: 1.3; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 14px rgba(4, 40, 24, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-cta .btn-tel:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.hero-cta .btn-tel .num { font-size: 21px; font-weight: 800; display: block; }
.hero-cta .btn-tel small { font-size: 11px; color: var(--ink-soft); font-weight: 600; }

.pc-only { display: inline; }
.hero-logo-sp { display: none; }

/* ---------- セクション共通 ---------- */
section { padding: 80px 0; }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .en { display: block; font-size: 13px; font-weight: 700; letter-spacing: .2em; color: var(--green-500); text-transform: uppercase; margin-bottom: 8px; }
.sec-head h2 { font-size: 32px; font-weight: 800; letter-spacing: .04em; display: inline-block; position: relative; padding-bottom: 14px; }
.sec-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green-500) 0 60%, var(--orange-500) 60% 100%);
}
.sec-head .lead { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }

/* ---------- 引越プラン ---------- */
.plans {
  background:
    radial-gradient(rgba(18, 113, 74, .07) 1.5px, transparent 1.5px),
    var(--green-050);
  background-size: 22px 22px;
}
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--white); border-radius: var(--radius); padding: 34px 24px 28px;
  text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card::before {
  content: ""; position: absolute; top: -34px; right: -34px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--green-050); transition: transform .3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-card:hover::before { transform: scale(1.25); }
.plan-card > * { position: relative; }
.plan-card .icon { display: block; width: 104px; height: 104px; margin: 0 auto 18px; transition: transform .3s ease; }
.plan-card:hover .icon { transform: scale(1.07) rotate(-2deg); }
.plan-card .icon svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 12px rgba(10, 61, 41, .16)); }
.plan-card h3 { font-size: 20px; font-weight: 800; text-wrap: balance; }
.plan-card p {
  font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.7;
  text-wrap: balance; word-break: auto-phrase;
}
.plan-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--green-600); }

/* ---------- その他サービス ---------- */
.services .service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 22px 26px; text-align: center; transition: box-shadow .25s ease, transform .25s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { display: block; width: 76px; height: 76px; margin: 0 auto 16px; }
.service-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 10px rgba(10, 61, 41, .14)); }
.service-card h3 { font-size: 16.5px; font-weight: 800; color: var(--green-700); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--ink-soft); text-align: left; word-break: auto-phrase; }

.disused-banner {
  margin-top: 28px; background: linear-gradient(120deg, var(--green-700), var(--green-500));
  border-radius: var(--radius); color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px 36px; box-shadow: var(--shadow);
}
.disused-banner h3 { font-size: 22px; font-weight: 800; }
.disused-banner p { font-size: 14px; color: #d9ebe2; margin-top: 6px; }
.disused-banner .btn { background: var(--white); color: var(--green-700); padding: 14px 32px; font-size: 15px; flex-shrink: 0; }

/* ---------- 見積CTAバンド ---------- */
.cta-band { background: #f4f4f4; padding: 52px 0 56px; }
.cta-catch {
  text-align: center; color: var(--orange-600); font-weight: 800;
  font-size: clamp(15px, 1.6vw, 18px); letter-spacing: .04em; margin-bottom: 18px;
}
.cta-band .cta-box {
  display: flex; align-items: stretch; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}

/* 無料お見積もりボタン（縦積み・オレンジグラデ） */
.cta-estimate {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  min-width: 300px; padding: 22px 40px; border-radius: 10px;
  background: linear-gradient(180deg, #fbaa1b 0%, #f7811a 45%, #f45c07 100%);
  color: var(--white); box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
  transition: filter .2s ease, transform .2s ease;
}
.cta-estimate:hover { filter: brightness(1.06); transform: translateY(-2px); }
.cta-estimate svg { width: 52px; height: 40px; }
.cta-estimate span { font-size: 19px; font-weight: 700; letter-spacing: .04em; }

/* 電話ボックス */
.cta-band .cta-tel {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 320px; padding: 18px 36px; border-radius: 10px;
  background: var(--white); border: 1px solid #c8c8c8; text-align: center;
}
.cta-band .cta-tel > a { display: flex; align-items: center; gap: 8px; color: #1a1a1a; }
.cta-band .cta-tel .freedial { width: 46px; height: auto; flex-shrink: 0; }
.cta-band .cta-tel .num { font-size: clamp(24px, 2.6vw, 31px); font-weight: 800; letter-spacing: .01em; line-height: 1.2; }
.cta-band .cta-tel small { display: block; font-size: 13px; color: #444; margin-top: 2px; }
.cta-tel-label { font-size: clamp(15px, 1.5vw, 18px); font-weight: 700; color: #1a1a1a; margin-top: 8px; }

/* TikTok 5%off（既存サイトの画像をそのまま使用） */
.cta-tiktok { margin-top: 32px; text-align: center; }
.cta-tiktok a { display: block; transition: transform .2s ease, opacity .2s ease; }
.cta-tiktok a:hover { transform: translateY(-2px); opacity: .85; }
.cta-tiktok img { width: min(620px, 94%); height: auto; margin: 0 auto; }

/* ---------- 選ばれる理由 ---------- */
.reasons { background: var(--white); }
.reason-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 40px 0; position: relative; }
.reason-item + .reason-item { border-top: 1px dashed var(--line); }
.reason-item:nth-child(even) .reason-visual { order: 2; }
.reason-num {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .18em; color: var(--green-500);
}
.reason-num::after {
  content: attr(data-num);
  font-size: 56px; line-height: 1; letter-spacing: 0; font-weight: 800; font-style: italic;
  background: linear-gradient(160deg, var(--green-500), var(--green-100));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.reason-item h3 { font-size: 24px; font-weight: 800; margin: 8px 0 14px; line-height: 1.5; }
.reason-item h3 mark { background: linear-gradient(transparent 62%, #ffe2c4 62%); color: inherit; }
.reason-item p { font-size: 14.5px; color: var(--ink-soft); }
.reason-visual img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.reason-visual .ph {
  border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 580/276;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.reason-visual .ph svg { width: 84px; height: 84px; stroke: var(--green-500); }

/* ---------- 安心ガイド ---------- */
.guide {
  background:
    radial-gradient(rgba(18, 113, 74, .07) 1.5px, transparent 1.5px),
    var(--green-050);
  background-size: 22px 22px;
}
.guide-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.guide-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 16px; text-align: center;
  box-shadow: var(--shadow); font-weight: 700; font-size: 14.5px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .25s ease;
}
.guide-card:hover { transform: translateY(-4px); }
.guide-card svg { width: 34px; height: 34px; stroke: var(--green-600); }

/* ---------- お客様の声 ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
}
.voice-head { display: flex; align-items: center; gap: 14px; }
.voice-face { width: 58px; height: 58px; flex-shrink: 0; }
.voice-card .stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; line-height: 1.4; }
.voice-card .meta { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.voice-card .meta .tag {
  display: block; background: var(--green-100); color: var(--green-700);
  border-radius: 4px; padding: 1px 8px; font-weight: 700; width: fit-content; margin-bottom: 3px;
}
.voice-card .meta .who { display: block; }
.voice-card .voice-body { font-size: 14px; flex: 1; }
.center-more { text-align: center; margin-top: 36px; }
.center-more .btn { padding: 14px 44px; font-size: 15px; }

/* ---------- お知らせ・ブログ ---------- */
.news {
  background:
    radial-gradient(rgba(18, 113, 74, .07) 1.5px, transparent 1.5px),
    var(--green-050);
  background-size: 22px 22px;
  padding-bottom: 40px;
}
.news-list { background: var(--white); border-radius: var(--radius); padding: 0 24px; }
.news-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a { display: flex; gap: 24px; padding: 18px 8px; font-size: 15px; align-items: baseline; transition: background .2s; }
.news-list a:hover { background: var(--green-050); }
.news-list time { color: var(--green-600); font-weight: 700; font-size: 13.5px; flex-shrink: 0; }

.blog { background: var(--white); padding-top: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--white); transition: box-shadow .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card .thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, var(--green-100), #d3e9dc);
  display: flex; align-items: center; justify-content: center;
}
.blog-card .thumb svg { width: 40px; height: 40px; stroke: var(--green-500); }
/* アイキャッチは枠いっぱいに（中央を基準にトリミング）。
   絶対配置にしないと、画像の実寸で枠の高さが伸びてしまう。 */
.blog-card .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.blog-card .body { padding: 16px 16px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card time { font-size: 12px; color: var(--ink-soft); }
.blog-card h3 { font-size: 14px; line-height: 1.6; font-weight: 700; }

/* ---------- フッター ---------- */
.site-footer { background: var(--green-900); color: #cfe5da; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-logo { background: var(--white); border-radius: 10px; padding: 12px 16px; width: fit-content; }
.footer-logo img { width: 200px; }
.footer-addr { margin-top: 16px; font-size: 13.5px; font-style: normal; }
.footer-tel { margin-top: 14px; }
.footer-tel a { font-size: 24px; font-weight: 800; color: var(--white); display: inline-flex; align-items: center; gap: 8px; }
.footer-tel .freedial { width: 42px; height: auto; filter: invert(1) brightness(2); }
.footer-tel small { display: block; font-size: 12px; }
.footer-nav h4, .footer-sns h4, .footer-about h4 { color: var(--white); font-size: 14px; letter-spacing: .1em; margin-bottom: 16px; border-left: 3px solid var(--green-500); padding-left: 10px; }
.footer-nav li { margin-bottom: 10px; font-size: 14px; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }
.sns-links { display: flex; gap: 12px; margin-top: 20px; }
.sns-links a {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.sns-links a:hover { background: rgba(255,255,255,.28); }
.sns-links svg { width: 22px; height: 22px; fill: var(--white); }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.15); padding: 20px 24px; font-size: 12px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom .links a { margin-right: 18px; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- 固定CTA（モバイル） ---------- */
.fixed-cta { display: none; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band .cta-box { gap: 18px; }
  .cta-estimate, .cta-band .cta-tel { min-width: 280px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .services .service-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 133px; }
  body { font-size: 15px; }
  section { padding: 56px 0; }
  .sec-head h2 { font-size: 25px; }

  .header-main { padding: 10px 16px; gap: 12px; }
  .header-logo img { width: 168px; }
  .header-tel, .header-cta .btn-line-h { display: none; }
  .header-cta .btn { padding: 10px 14px; font-size: 12.5px; white-space: nowrap; }



  .pc-only { display: none; }

  /* SPはロゴを独立要素にし、背景は画像と同じ縦グラデーションで再現 */
  .hero {
    background-image: none;
    background-color: #8fc31f;
    background: linear-gradient(180deg,
      #8fc31f 0%, #8fc31f 44%, #7bb926 58%, #56a034 76%, #1c7c42 90%, #016a34 100%);
    aspect-ratio: auto;
    min-height: 0;
    display: block;
    align-items: initial;
    padding: 0 0 34px;
  }
  .hero::before { background: linear-gradient(180deg, transparent 42%, rgba(6, 48, 30, .22) 62%, rgba(6, 48, 30, .5) 86%); }

  /* SPのみ：FV自体を全幅の逆三角形に切り抜く。
     別要素を継ぎ足さないので、三角形の上に継ぎ目の線が出ない。
     切り抜いた分は負のマージンで詰め、次セクションが真下まで来るようにする */
  .hero {
    padding-bottom: 46px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 50% 100%, 0 calc(100% - 36px));
    margin-bottom: -36px;
  }
  .hero + section { padding-top: 92px; }

  .hero-logo-sp { display: block; padding: 14px 0 4px; }
  .hero-logo-sp img { width: min(52vw, 220px); height: auto; margin: 0 auto; }

  .hero-inner { display: block; padding: 0 20px 20px; }
  .hero-copy { grid-column: 1; padding: 0; text-align: center; }
  .hero-copy h1 { font-size: 25px; }
  .hero-copy .hero-sub { font-size: 14px; }
  .hero-badges { justify-content: center; gap: 8px; }
  .hero-badges li { padding: 8px 12px; font-size: 11px; }
  .hero-badges strong { font-size: 17px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-tel { justify-content: center; text-align: center; }

  .reason-item { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
  .reason-item:nth-child(even) .reason-visual { order: 0; }

  .disused-banner { flex-direction: column; text-align: center; padding: 28px 24px; }

  .cta-band { padding: 40px 0 44px; }
  .cta-band .cta-box { flex-direction: column; align-items: stretch; }
  .cta-estimate, .cta-band .cta-tel { min-width: 0; width: 100%; }
  .cta-estimate { padding: 18px 24px; }
  .cta-estimate svg { width: 42px; height: 32px; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .fixed-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(255,255,255,.96); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(10,61,41,.15);
  }
  .fixed-cta .btn { padding: 13px 10px; font-size: 14px; border-radius: 12px; }
  .fixed-cta .btn-telbar { background: var(--green-700); color: var(--white); }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .plan-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .plan-card { padding: 22px 12px 18px; }
  .plan-card .icon { width: 78px; height: 78px; }
  .plan-card h3 { font-size: 16px; }
  .plan-card p { display: none; }
  .services .service-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .blog-card h3 { font-size: 12.5px; }
}

/* =============================================
   ドロワーメニュー
   ============================================= */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(6, 40, 25, .55); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.drawer-overlay.show { opacity: 1; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(420px, 88vw); background: var(--white);
  box-shadow: -12px 0 40px rgba(6, 40, 25, .25);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto; overscroll-behavior: contain;
}
.drawer.show { transform: translateX(0); }
.drawer-inner { display: flex; flex-direction: column; min-height: 100%; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.drawer-head img { width: 168px; height: auto; }
.drawer-close {
  width: 42px; height: 42px; flex-shrink: 0; border: none; cursor: pointer;
  border-radius: 10px; background: var(--green-050); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.drawer-close:hover { background: var(--green-100); }
.drawer-close svg { width: 20px; height: 20px; }

.drawer-nav { padding: 22px 20px 8px; flex: 1; }
.drawer-group + .drawer-group { margin-top: 26px; }
.drawer-group h3 {
  font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--green-700);
  padding-left: 11px; border-left: 3px solid var(--green-500); margin-bottom: 14px;
}

.drawer-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.drawer-plans a {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-050); border-radius: 10px; padding: 13px 12px;
  font-size: 14.5px; font-weight: 700; color: var(--green-900);
  transition: background .2s ease, transform .2s ease;
}
.drawer-plans a:hover { background: var(--green-100); transform: translateX(2px); }
.drawer-plans em { font-style: normal; font-size: 12px; font-weight: 600; color: var(--ink-soft); }

.drawer-links li + li { border-top: 1px solid var(--line); }
.drawer-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 4px; font-size: 14.5px; font-weight: 600; transition: color .2s, padding .2s;
}
.drawer-links a::after {
  content: ""; width: 7px; height: 7px; flex-shrink: 0;
  border-top: 2px solid var(--green-500); border-right: 2px solid var(--green-500);
  transform: rotate(45deg);
}
.drawer-links a:hover { color: var(--green-600); padding-left: 8px; }

.drawer-foot {
  padding: 20px; border-top: 1px solid var(--line); background: var(--green-050);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-foot .btn { width: 100%; padding: 15px; font-size: 15.5px; }
.drawer-tel {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 20px; display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--green-700); text-align: left;
}
.drawer-tel .num { font-size: 22px; font-weight: 800; display: block; line-height: 1.2; }
.drawer-tel small { font-size: 11px; color: var(--ink-soft); font-weight: 600; }

body.drawer-open { overflow: hidden; }

/* PCでもハンバーガーを表示（ドロワーは全デバイス共通） */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; background: var(--green-700); border: none; border-radius: 10px;
  cursor: pointer; padding: 13px 12px; flex-shrink: 0;
  transition: background .2s ease;
}
.nav-toggle:hover { background: var(--green-600); }
.nav-toggle span { display: block; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   下層ページ共通
   ============================================= */
.page-head {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(ellipse 700px 300px at 80% 0%, rgba(26, 138, 92, .4), transparent 65%),
    linear-gradient(120deg, var(--green-900), var(--green-600));
  padding: 52px 0 56px;
}
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.page-head .inner { position: relative; }
.page-head .en { display: block; font-size: 12px; letter-spacing: .22em; color: #9fd9bd; font-weight: 700; margin-bottom: 10px; }
.page-head h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: .04em; }
.page-head .page-lead { margin-top: 14px; font-size: 15px; color: #d9ebe2; max-width: 760px; }

.breadcrumb { background: var(--green-050); font-size: 12.5px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 11px 0; color: var(--ink-soft); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--green-500); }
.breadcrumb a { color: var(--green-700); }
.breadcrumb a:hover { text-decoration: underline; }

.page-body { padding: 72px 0; }
.page-body .inner { max-width: 900px; }
.page-body.wide .inner { max-width: 1120px; }

.lead-block { text-align: center; margin-bottom: 52px; }
.lead-block h2 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; line-height: 1.6; margin-bottom: 18px; }
.lead-block h2 .mark { background: linear-gradient(transparent 62%, #ffe2c4 62%); }
.lead-block p { color: var(--ink-soft); font-size: 15px; }

/* 見出し */
.h-sec {
  font-size: clamp(19px, 2vw, 24px); font-weight: 800; margin-bottom: 22px;
  padding-left: 16px; border-left: 5px solid var(--green-500); line-height: 1.5;
}
.h-sub { font-size: 17px; font-weight: 800; color: var(--green-700); margin-bottom: 12px; }

.block + .block { margin-top: 56px; }
.page-body p + p { margin-top: 14px; }
.page-body .note { font-size: 13px; color: var(--ink-soft); }

/* プランカード（下層）: 緑の帯＋クリーム背景（既存サイト踏襲） */
.plan-detail {
  border: 2px solid var(--green-600); border-radius: 20px; overflow: hidden;
  background: #fffdf0;
}
.plan-detail + .plan-detail { margin-top: 32px; }
.plan-detail .ribbon {
  background: var(--green-600); color: var(--white); font-weight: 800;
  font-size: clamp(14.5px, 1.6vw, 17.5px); letter-spacing: .04em;
  width: fit-content; max-width: calc(100% - 32px); margin: 0 auto;
  padding: 13px 44px; border-radius: 0 0 16px 16px; text-align: center;
}
.plan-detail .pd-body { padding: 24px 30px 30px; }
.plan-detail h3 {
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 800; color: var(--green-700);
  text-align: center; letter-spacing: .08em; margin-bottom: 16px;
}
.plan-detail p { font-size: 14.5px; color: #4a5a50; }

/* ステップリスト */
.steps { counter-reset: step; }
.step-item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px 0; position: relative; }
.step-item + .step-item { border-top: 1px dashed var(--line); }
.step-no {
  counter-increment: step; width: 62px; height: 62px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--green-600), var(--green-500)); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; line-height: 1.1; box-shadow: 0 6px 16px rgba(18, 113, 74, .3);
}
.step-no::before { content: "STEP"; font-size: 9px; letter-spacing: .1em; opacity: .85; }
.step-no::after { content: counter(step); font-size: 22px; font-style: italic; }
.step-body h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 10px; line-height: 1.5; }
.step-body p { font-size: 14.5px; color: var(--ink-soft); }
.step-body h4 { font-size: 15px; font-weight: 800; color: var(--green-700); margin: 18px 0 6px; }

/* 番号なしのカードグリッド */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.info-card h3 { font-size: 16.5px; font-weight: 800; color: var(--green-700); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--ink-soft); word-break: auto-phrase; }

/* チェックリスト */
.check-list li {
  position: relative; padding: 10px 0 10px 32px; font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312714a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* バッジリスト（処分できるもの等） */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li {
  background: var(--green-050); border: 1px solid var(--green-100); color: var(--green-900);
  border-radius: 999px; padding: 7px 16px; font-size: 13.5px; font-weight: 600;
}
.tag-list.warn li { background: #fdf0ec; border-color: #f7d5c9; color: #a33c19; }

/* 注意ボックス */
.notice-box {
  background: var(--orange-050); border-left: 4px solid var(--orange-500);
  border-radius: 0 10px 10px 0; padding: 18px 22px; font-size: 14px;
}
.notice-box.green { background: var(--green-050); border-left-color: var(--green-500); }
.notice-box h4 { font-size: 15.5px; font-weight: 800; color: var(--green-700); margin-bottom: 8px; }

/* テーブル */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 480px; }
table.data th, table.data td { border: 1px solid var(--line); padding: 13px 16px; text-align: left; vertical-align: top; }
table.data th { background: var(--green-050); color: var(--green-900); font-weight: 700; white-space: nowrap; width: 30%; }
table.data td .price { font-weight: 800; color: var(--orange-600); }

/* 料金表 */
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 460px; }
.price-table caption {
  text-align: left; font-weight: 800; color: var(--green-700); font-size: 16px;
  padding: 0 0 10px; 
}
.price-table th, .price-table td { border: 1px solid var(--line); padding: 10px 14px; }
.price-table thead th { background: var(--green-600); color: var(--white); font-weight: 700; text-align: center; }
.price-table tbody th { background: var(--green-050); font-weight: 700; text-align: left; }
.price-table td { text-align: right; font-weight: 700; color: var(--orange-600); white-space: nowrap; }
.price-table td.name { text-align: left; font-weight: 600; color: var(--ink); }
.price-group + .price-group { margin-top: 34px; }

/* FAQ アコーディオン */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.faq-tabs a {
  border: 2px solid var(--green-100); background: var(--white); border-radius: 999px;
  padding: 10px 26px; font-weight: 700; font-size: 14.5px; color: var(--green-700);
  transition: background .2s, border-color .2s;
}
.faq-tabs a:hover { background: var(--green-050); border-color: var(--green-500); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 40px 20px 0;
  cursor: pointer; font-weight: 700; font-size: 15.5px; position: relative; list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-600); color: var(--white); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-style: italic;
}
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 27px; width: 11px; height: 11px;
  border-right: 2.5px solid var(--green-500); border-bottom: 2.5px solid var(--green-500);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--green-600); }
.faq-answer { display: flex; gap: 14px; padding: 0 8px 22px 0; }
.faq-answer::before {
  content: "A"; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-050); color: var(--orange-600); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-style: italic;
}
.faq-answer .txt { font-size: 14.5px; color: var(--ink-soft); padding-top: 4px; }
.faq-answer a { color: var(--green-600); font-weight: 700; text-decoration: underline; }

/* 会社案内 3つの和 */
.wa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wa-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); border-top: 4px solid var(--green-500);
}
.wa-card .kanji {
  width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(140deg, var(--green-600), var(--green-500)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800;
  box-shadow: 0 8px 20px rgba(18, 113, 74, .28);
}
.wa-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.wa-card p { font-size: 14px; color: var(--ink-soft); text-align: left; }

.message-sign { text-align: right; font-weight: 700; margin-top: 20px; }

/* お客様の声 一覧 */
.voice-archive { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.voice-archive .voice-card { height: 100%; }

/* ブログ 一覧 */
.blog-archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* 記事本文 */
.article-body h2 {
  font-size: clamp(19px, 2vw, 24px); font-weight: 800; margin: 44px 0 18px;
  padding: 12px 18px; background: var(--green-050); border-left: 5px solid var(--green-500); border-radius: 0 8px 8px 0;
}
.article-body h3 { font-size: 18px; font-weight: 800; color: var(--green-700); margin: 30px 0 12px; }
.article-body p { font-size: 15.5px; line-height: 1.95; }
.article-body ul { margin: 16px 0; }
.article-body ul li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 15px; }
.article-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.article-meta time { color: var(--ink-soft); font-size: 14px; }
.article-meta .cat { background: var(--green-100); color: var(--green-700); border-radius: 999px; padding: 4px 14px; font-size: 12.5px; font-weight: 700; }

/* 約款 */
.terms-body { font-size: 14.5px; }
.terms-body h2 { font-size: 18px; font-weight: 800; color: var(--green-700); margin: 34px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--green-100); }
.terms-body h3 { font-size: 15.5px; font-weight: 800; margin: 22px 0 8px; }
.terms-body p { color: var(--ink-soft); }
.terms-body ol { counter-reset: t; margin: 10px 0; }
.terms-body ol > li { counter-increment: t; position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--ink-soft); }
.terms-body ol > li::before {
  content: counter(t); position: absolute; left: 0; top: 2px; width: 21px; height: 21px;
  border-radius: 50%; background: var(--green-100); color: var(--green-700);
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* =============================================
   見積フォーム
   ============================================= */
.form-steps { display: flex; gap: 4px; margin-bottom: 40px; overflow-x: auto; padding-bottom: 4px; }
.form-steps li {
  flex: 1; min-width: 78px; text-align: center; font-size: 12.5px; font-weight: 700;
  padding: 12px 6px; background: var(--white); border: 2px solid var(--green-100); color: var(--ink-soft);
  border-radius: 8px; position: relative; white-space: nowrap;
}
.form-steps li.done { background: var(--green-050); border-color: var(--green-100); color: var(--green-600); }
.form-steps li.current { background: var(--green-600); border-color: var(--green-600); color: var(--white); box-shadow: 0 4px 12px rgba(18, 113, 74, .3); }

.form-card { background: var(--white); border: 2px solid var(--green-600); border-radius: var(--radius); overflow: hidden; }
.form-card > h2 {
  background: var(--green-600); color: var(--white); text-align: center;
  font-size: 18px; font-weight: 800; padding: 16px; letter-spacing: .06em;
}
.form-card .form-inner { padding: 30px 32px; background: #fffdf5; }

.form-row { display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: start; padding: 16px 0; }
.form-row + .form-row { border-top: 1px dashed var(--line); }
.form-row > .label { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; padding-top: 10px; }
.req { background: #ffd23f; color: #6b4a00; font-size: 11px; font-weight: 800; border-radius: 4px; padding: 3px 8px; flex-shrink: 0; }
.req.any { background: var(--green-100); color: var(--green-700); }

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="number"],
.form-row input[type="date"],
.form-row select,
.form-row textarea {
  width: 100%; border: 1px solid #d5ddd8; border-radius: 8px; padding: 12px 14px;
  font-size: 15px; font-family: inherit; background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(26, 138, 92, .15);
}
.form-row .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.form-inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-inline input { flex: 1; min-width: 120px; }

/* 必須チェックのエラー表示 */
.form-alert {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid #e0b4b3;
  border-left: 4px solid #b32d2e;
  border-radius: 8px;
  background: #fdf3f3;
  color: #8f2321;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.6;
}
.form-row { scroll-margin-top: 150px; }
.form-row.is-error { background: #fdf6f6; border-radius: 8px; }
.form-row.is-error > .label { color: #8f2321; }
.form-row.is-error input[type="text"],
.form-row.is-error input[type="tel"],
.form-row.is-error input[type="email"],
.form-row.is-error input[type="number"],
.form-row.is-error input[type="date"],
.form-row.is-error select,
.form-row.is-error textarea { border-color: #c0413f; background: var(--white); }
.form-row.is-error .choice { border-color: #c0413f; }
.field-error {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  color: #b32d2e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.field-error::before { content: "!"; flex: none; width: 16px; height: 16px; border-radius: 50%; background: #b32d2e; color: var(--white); font-size: 11px; line-height: 16px; text-align: center; }

/* ============================================
   Contact Form 7 を埋め込んだフォーム（求人応募）
   CF7側のフォーム定義で .form-row / .label / .req を使う前提。
   CF7が付ける独自クラスをテーマの見た目に寄せる。
   ============================================ */
.form-card-plugin .wpcf7 { margin: 0; }
.form-card-plugin .wpcf7-form > p:empty,
.form-card-plugin .form-row > br { display: none; }
.form-card-plugin .wpcf7-form-control-wrap { display: block; }

.form-card-plugin input[type="text"],
.form-card-plugin input[type="tel"],
.form-card-plugin input[type="email"],
.form-card-plugin input[type="number"],
.form-card-plugin input[type="date"],
.form-card-plugin select,
.form-card-plugin textarea {
  width: 100%; border: 1px solid #d5ddd8; border-radius: 8px; padding: 12px 14px;
  font-size: 15px; font-family: inherit; background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-card-plugin textarea { min-height: 130px; resize: vertical; }
.form-card-plugin input:focus, .form-card-plugin select:focus, .form-card-plugin textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(26, 138, 92, .15);
}
.form-card-plugin .hint { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }

/* ラジオ・チェックはテーマのカード型に合わせる */
.form-card-plugin .wpcf7-radio,
.form-card-plugin .wpcf7-checkbox {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px;
}
.form-card-plugin .wpcf7-list-item { display: block; margin: 0; }
.form-card-plugin .wpcf7-list-item > label {
  position: relative; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-100); border-radius: 10px; padding: 14px 12px; cursor: pointer;
  background: var(--white); font-size: 14.5px; font-weight: 700; text-align: center;
  transition: border-color .2s, background .2s, transform .15s;
}
.form-card-plugin .wpcf7-list-item > label:hover { border-color: var(--green-500); transform: translateY(-2px); }
.form-card-plugin .wpcf7-list-item input { position: absolute; opacity: 0; pointer-events: none; }
.form-card-plugin .wpcf7-list-item > label:has(input:checked) {
  border-color: var(--green-600); background: var(--green-050); color: var(--green-700);
  box-shadow: 0 3px 10px rgba(18, 113, 74, .16);
}
.form-card-plugin .wpcf7-list-item > label:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(26, 138, 92, .25); }

/* 送信ボタン（CF7側で class:btn class:btn-primary を付ける）
   .form-inner の中に入るので、通常の .form-actions の下敷きは外す。 */
.form-card-plugin .form-actions {
  display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 28px 0 4px; background: none;
}
.form-card-plugin .wpcf7-spinner { margin: 0; }

/* エラー表示 */
.form-card-plugin .wpcf7-not-valid { border-color: #c0413f; }
.form-card-plugin .wpcf7-not-valid-tip {
  display: block; margin-top: 8px; color: #b32d2e; font-size: 13px; font-weight: 700; line-height: 1.6;
}
.form-card-plugin .wpcf7-response-output {
  margin: 22px 0 0; padding: 14px 16px; border: 1px solid var(--line); border-left: 4px solid var(--green-600);
  border-radius: 8px; background: var(--green-050); color: var(--green-900);
  font-weight: 700; font-size: 14.5px; line-height: 1.6;
}
.form-card-plugin .wpcf7-form.invalid .wpcf7-response-output,
.form-card-plugin .wpcf7-form.unaccepted .wpcf7-response-output,
.form-card-plugin .wpcf7-form.failed .wpcf7-response-output {
  border-color: #e0b4b3; border-left-color: #b32d2e; background: #fdf3f3; color: #8f2321;
}

/* ラジオ・チェックのカード化 */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 10px; }
.choice {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--green-100); border-radius: 10px; padding: 14px 12px; cursor: pointer;
  background: var(--white); font-size: 14.5px; font-weight: 700; text-align: center;
  transition: border-color .2s, background .2s, transform .15s;
}
.choice:hover { border-color: var(--green-500); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice input:checked + span { color: var(--green-700); }
.choice:has(input:checked) { border-color: var(--green-600); background: var(--green-050); box-shadow: 0 3px 10px rgba(18, 113, 74, .16); }
.choice:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(26, 138, 92, .25); }

/* 荷物カウンター */
/* 荷物の選択カード（イラスト＋名称＋個数） */
.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
.item-row {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 10px 14px;
  background: var(--white); text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.item-row:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(26, 138, 92, .15); }
.item-row .thumb {
  display: block; width: 100%; max-width: 122px; aspect-ratio: 122 / 81;
  border-radius: 8px; overflow: hidden; background: var(--green-050);
}
.item-row .thumb img { width: 100%; height: 100%; object-fit: contain; }
.item-row .name {
  font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--green-900);
  word-break: auto-phrase; text-wrap: balance;
}
.counter { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.counter button {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; border: 1px solid var(--green-100);
  background: var(--green-050); color: var(--green-700); font-size: 17px; font-weight: 800;
  cursor: pointer; line-height: 1; transition: background .2s;
}
.counter button:hover { background: var(--green-100); }
/* .form-row input[type=number] の width:100% を上書きするため詳細度を上げる */
.form-row .counter input[type="number"], .counter input {
  width: 54px; flex-shrink: 0; text-align: center; border: 1px solid #d5ddd8;
  border-radius: 8px; padding: 6px 2px; font-size: 15px; font-weight: 700;
  -moz-appearance: textfield; appearance: textfield;
}
.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.form-actions { display: flex; gap: 14px; justify-content: center; padding: 26px 32px 30px; background: var(--white); flex-wrap: wrap; }
.form-actions .btn { min-width: 190px; }
.btn-back { background: var(--white); border: 2px solid var(--line); color: var(--ink-soft); padding: 16px 34px; font-size: 15px; }
.btn-back:hover { border-color: var(--green-500); color: var(--green-700); }

/* 確認画面 */
.confirm-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.confirm-table th, .confirm-table td { border-bottom: 1px solid var(--line); padding: 14px 12px; text-align: left; vertical-align: top; }
.confirm-table th { width: 34%; color: var(--green-700); font-weight: 700; background: var(--green-050); }
.form-done { text-align: center; padding: 20px 0; }
.form-done .icon {
  width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.form-done .icon svg { width: 42px; height: 42px; stroke: var(--green-600); }
.form-done h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; }
.form-done p { color: var(--ink-soft); }

/* =============================================
   下層レスポンシブ
   ============================================= */
@media (max-width: 1024px) {
  .wa-grid { grid-template-columns: 1fr; }
  .blog-archive { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .page-head { padding: 34px 0 38px; }
  .page-body { padding: 48px 0; }
  .block + .block { margin-top: 40px; }
  .lead-block { margin-bottom: 36px; }

  .voice-archive, .blog-archive { grid-template-columns: 1fr; }
  .plan-detail .pd-body { padding: 20px 18px 22px; }
  .step-item { grid-template-columns: 1fr; gap: 12px; }
  .step-no { width: 54px; height: 54px; }

  .form-card .form-inner { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 8px; padding: 14px 0; }
  .form-row > .label { padding-top: 0; }
  .form-actions { padding: 20px 16px 24px; flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .form-steps li { min-width: 62px; font-size: 11px; padding: 10px 4px; }

  .drawer-nav { padding: 18px 16px 8px; }
  .drawer-foot { padding: 16px; }
}

@media (max-width: 480px) {
  .drawer-plans { grid-template-columns: 1fr; }
  .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .item-row { padding: 10px 6px 12px; }
  .item-row .name { font-size: 12px; }
  .confirm-table th { width: 40%; }
}

/* ページネーション */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination .current {
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14.5px; border: 1px solid var(--line); background: var(--white);
  transition: background .2s, border-color .2s, color .2s;
}
.pagination a:hover { background: var(--green-050); border-color: var(--green-500); color: var(--green-700); }
.pagination .current { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.pagination .dots { color: var(--ink-soft); padding: 0 4px; }
.pagination .next { padding: 0 20px; }

/* お客様の声 一覧のカードをリンク化 */
a.voice-card { transition: box-shadow .25s ease, transform .25s ease; }
a.voice-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* PDFビューア枠 */
.pdf-frame {
  display: block; width: 100%; height: min(78vh, 900px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--green-050);
}

/* スクリーンリーダー専用 */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* info-card をリンクにした場合 */
a.info-card { transition: box-shadow .25s ease, transform .25s ease; display: block; }
a.info-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* =============================================
   キャラクター演出（既存サイト素材の再利用）
   ============================================= */
/* 下層ページヘッダーのキャラクター */
.page-head .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.page-head .ph-chara {
  flex-shrink: 0; width: clamp(96px, 12vw, 150px); margin: -12px 40px -28px 0;
  filter: drop-shadow(0 6px 14px rgba(4, 40, 24, .35));
}
.page-head .ph-chara img { width: 100%; }

/* プランカード内の対話イラスト */
.plan-dialog { margin-top: 22px; text-align: center; }
.plan-dialog img { max-width: 480px; width: 100%; margin: 0 auto; }

/* 図解イラスト */
.diagram-block { text-align: center; margin-top: 22px; }
.diagram-block img { max-width: 520px; width: 100%; margin: 0 auto; }

/* フローカード（オフィスの流れ 等） */
.flowcards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 44px;
  counter-reset: fstep; position: relative; margin-top: 8px;
}
.flowcard {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 22px; text-align: center; position: relative; counter-increment: fstep;
  box-shadow: 0 2px 10px rgba(10, 61, 41, .06);
}
.flowcard::before {
  content: "Step" counter(fstep);
  display: block; font-size: 15px; font-weight: 700; letter-spacing: .12em;
  color: var(--green-600); margin-bottom: 6px;
}
.flowcard:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -32px; transform: translateY(-50%);
  border-left: 14px solid #8fc7ab; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.flowcard:nth-child(3n)::after { display: none; }
.flowcard h3 { font-size: 16.5px; font-weight: 800; color: var(--green-700); min-height: 3.2em; display: flex; align-items: center; justify-content: center; line-height: 1.6; }
.flowcard .fc-icon { width: 74px; height: 74px; margin: 10px auto 14px; display: flex; align-items: center; justify-content: center; }
.flowcard .fc-icon img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.flowcard p { font-size: 13.5px; color: var(--ink-soft); text-align: left; word-break: auto-phrase; }

/* フローカードを包むクリーム枠 */
.flow-panel {
  background: #fffdf0; border: 2px solid var(--green-600); border-radius: 20px;
  padding: 0 34px 38px; margin-top: 40px;
}
.flow-panel > .fp-title {
  background: var(--green-600); color: var(--white); text-align: center;
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; letter-spacing: .06em;
  border-radius: 0 0 14px 14px; padding: 14px 26px; margin: 0 auto 26px; width: fit-content;
}
.flow-panel > .fp-lead { max-width: 800px; margin: 0 auto 30px; font-size: 14.5px; }
.flow-panel h2.fp-heading { text-align: center; font-size: clamp(18px, 2vw, 23px); font-weight: 800; color: var(--green-700); margin-bottom: 26px; }

/* プランカードのアイコン画像版（TOP） */
.plan-card .icon-img {
  display: flex; align-items: center; justify-content: center;
  width: 112px; height: 112px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-050); transition: transform .3s ease;
}

.plan-card .icon-img svg { width: 100%; height: 100%; display: block; }
  35%  { transform: translateY(-10px) scale(1.12) rotate(-6deg); }
  65%  { transform: translateY(-4px) scale(1.04) rotate(4deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@media (max-width: 860px) {
  .page-head .ph-chara { margin-right: 0; width: 84px; }
  .flowcards { grid-template-columns: 1fr; gap: 30px; }
  .flowcard::after, .flowcard:nth-child(3n)::after { display: none; }
  .flowcard:not(:last-child)::before { }
  .flowcard h3 { min-height: 0; }
  .flow-panel { padding: 0 18px 26px; }
  .plan-card .icon-img { width: 84px; height: 84px; }
}


/* ---------- お客様の声 詳細: なにわからの返信 ---------- */
.reply-box {
  margin-top: 44px; background: #fffdf0;
  border: 2px solid var(--green-600); border-radius: 20px; padding: 0 30px 28px;
}
.reply-head {
  background: var(--green-600); color: var(--white); font-weight: 800;
  font-size: clamp(15px, 1.7vw, 18px); letter-spacing: .06em; text-align: center;
  width: fit-content; margin: 0 auto 22px; padding: 12px 40px; border-radius: 0 0 16px 16px;
}
.reply-body { display: flex; align-items: center; gap: 26px; }
.reply-mark { width: clamp(84px, 12vw, 130px); height: auto; flex-shrink: 0; }
.reply-body p { font-size: 14.5px; color: #4a5a50; }

/* 詳細ページの評価表示 */
.article-meta .voice-face { width: 52px; height: 52px; }
.article-meta .stars { color: #f5a623; letter-spacing: 2px; }
table.data .stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- ドロワー: プランアイコン ---------- */
.drawer-plans .ico {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.drawer-plans .ico img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 860px) {
  .reply-body { flex-direction: column; text-align: center; gap: 16px; }
  .reply-box { padding: 0 18px 22px; }
}


/* =============================================
   FV テキストの表示アニメーション
   ============================================= */
.hero-copy[data-anim] > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in .8s cubic-bezier(.16, .8, .3, 1) forwards;
}
.hero-copy[data-anim] > .hero-area { animation-delay: .15s; }
.hero-copy[data-anim] > h1         { animation-delay: .3s; }
.hero-copy[data-anim] > .hero-sub  { animation-delay: .5s; }
.hero-copy[data-anim] > .hero-badges { animation-delay: .65s; }
.hero-copy[data-anim] > .hero-cta  { animation-delay: .8s; }

/* バッジは1つずつ */
.hero-copy[data-anim] .hero-badges li {
  opacity: 0; transform: translateY(14px) scale(.96);
  animation: hero-in .6s cubic-bezier(.16, .8, .3, 1) forwards;
}
.hero-copy[data-anim] .hero-badges li:nth-child(1) { animation-delay: .75s; }
.hero-copy[data-anim] .hero-badges li:nth-child(2) { animation-delay: .87s; }
.hero-copy[data-anim] .hero-badges li:nth-child(3) { animation-delay: .99s; }

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* 動きを減らす設定の環境ではアニメーションを止める */
@media (prefers-reduced-motion: reduce) {
  .hero-copy[data-anim] > *,
  .hero-copy[data-anim] .hero-badges li {
    opacity: 1; transform: none; animation: none;
  }
  .plan-card .icon-img img { animation: none; }
}

/* ドロワーのロゴリンク */
.drawer-logo { display: block; transition: opacity .2s ease; }
.drawer-logo:hover { opacity: .75; }


/* =============================================
   引越プランアイコンの SVG アニメーション（常時再生）
   ============================================= */
.plan-card .icon-img svg { overflow: visible; }

/* --- 単身: 目がにこにこする（口の大きさは変えない） --- */
.pi-single .pi-eye { animation: pi-eye-smile 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.pi-single .pi-box { animation: pi-box-tilt 3.2s ease-in-out infinite; transform-origin: 44px 48px; }

/* --- 家族: 3人が順番に目をにこにこさせる --- */
.pi-family .pi-p1 .pi-eye { animation: pi-eye-smile 3.2s ease-in-out infinite;     transform-origin: center; transform-box: fill-box; }
.pi-family .pi-p2 .pi-eye { animation: pi-eye-smile 3.2s ease-in-out infinite .3s; transform-origin: center; transform-box: fill-box; }
.pi-family .pi-p3 .pi-eye { animation: pi-eye-smile 3.2s ease-in-out infinite .6s; transform-origin: center; transform-box: fill-box; }

/* --- カップル: ハートが交互に鼓動、キラッと光る --- */
.pi-couple .pi-heart-a { animation: pi-beat 1.9s ease-in-out infinite;      transform-origin: 25px 34px; }
.pi-couple .pi-heart-b { animation: pi-beat 1.9s ease-in-out infinite .32s; transform-origin: 41px 40px; }
.pi-couple .pi-sparkle { animation: pi-twinkle 2.6s ease-in-out infinite;   transform-origin: 19px 16px; }

/* --- 今すぐ: スピード線が流れる／車輪が回る／車体が揺れる --- */
.pi-now .pi-truck  { animation: pi-drive 1.1s ease-in-out infinite; }
.pi-now .pi-wheel  { animation: pi-spin 1s linear infinite; transform-origin: center; transform-box: fill-box; }
.pi-now .pi-line1  { animation: pi-dash 1.1s linear infinite; }
.pi-now .pi-line2  { animation: pi-dash 1.1s linear infinite .18s; }
.pi-now .pi-line3  { animation: pi-dash 1.1s linear infinite .36s; }

/* --- オフィス: 窓が順番に点灯 --- */
.pi-office .pi-windows rect { animation: pi-lit 3.6s ease-in-out infinite; }
.pi-office .w1 { animation-delay: 0s; }
.pi-office .w2 { animation-delay: .3s; }
.pi-office .w3 { animation-delay: .6s; }
.pi-office .w4 { animation-delay: .9s; }
.pi-office .w5 { animation-delay: 1.2s; }
.pi-office .w6 { animation-delay: 1.5s; }

/* --- 不用品: リサイクルマークが回る／フタが開く --- */
.pi-disused .pi-recycle { animation: pi-spin 4s linear infinite; }
.pi-disused .pi-lid     { animation: pi-lid 2.8s ease-in-out infinite; transform-origin: 26px 22px; }

@keyframes pi-eye-smile {
  0%, 38%, 100% { transform: scaleY(1); }
  55%, 82%      { transform: scaleY(.32) translateY(-1.2px); }
}
@keyframes pi-box-tilt {
  0%, 38%, 100% { transform: rotate(0deg); }
  55%, 82%      { transform: rotate(-4deg); }
}
@keyframes pi-beat {
  0%, 55%, 100% { transform: scale(1); }
  68%           { transform: scale(1.12); }
  80%           { transform: scale(1.02); }
}
@keyframes pi-twinkle {
  0%, 60%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  75%           { opacity: 1; transform: scale(1) rotate(35deg); }
}
@keyframes pi-drive {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-1.4px); }
}
@keyframes pi-spin {
  to { transform: rotate(360deg); }
}
@keyframes pi-dash {
  0%   { opacity: 0; transform: translateX(7px); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-9px); }
}
@keyframes pi-lit {
  0%, 100% { fill: #e4f2ea; }
  50%      { fill: #ffe07a; }
}
@keyframes pi-lid {
  0%, 70%, 100% { transform: translateY(0) rotate(0deg); }
  82%           { transform: translateY(-2.5px) rotate(-7deg); }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card .icon-img svg * { animation: none !important; }
}

/* =============================================
   ページ内アンカーメニュー（スクロール追従）
   ============================================= */
.anchor-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 44px;
  align-items: start;
}
/* グリッドトラックが中身の最小幅で膨らむのを防ぐ */
.anchor-layout > * { min-width: 0; }

.anchor-nav {
  position: sticky;
  /* 追従ヘッダー（約119px）の下に収まる位置 */
  top: 134px;
  background: #fffdf0;
  border: 2px solid var(--green-600);
  border-radius: 14px;
  padding: 20px 18px;
}
.anchor-nav .an-title {
  font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--green-700);
  padding-left: 10px; border-left: 3px solid var(--green-500); margin-bottom: 14px;
}
.anchor-nav li + li { margin-top: 2px; }
.anchor-nav a {
  display: block; padding: 9px 10px 9px 22px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft); position: relative;
  transition: background .2s ease, color .2s ease;
}
.anchor-nav a::before {
  content: ""; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-100);
  transition: background .2s ease, transform .2s ease;
}
.anchor-nav a:hover { background: var(--green-050); color: var(--green-700); }
.anchor-nav a.is-current {
  background: var(--green-600); color: var(--white); font-weight: 700;
}
.anchor-nav a.is-current::before { background: #ffe07a; transform: translateY(-50%) scale(1.2); }

/* 右カラム側: 各ブロックに見出し帯を付ける */
.anchor-body .block { scroll-margin-top: 10px; }
.anchor-body .block + .block { margin-top: 60px; }
.anchor-body .h-sec {
  background: var(--green-600); color: var(--white); border-left: none;
  text-align: center; border-radius: 10px; padding: 14px 24px; position: relative;
  margin-bottom: 30px;
}
.anchor-body .h-sec::after {
  content: ""; position: absolute; left: 50%; bottom: -11px; transform: translateX(-50%);
  border-top: 12px solid var(--green-600);
  border-left: 12px solid transparent; border-right: 12px solid transparent;
}

@media (max-width: 1024px) {
  .anchor-layout { grid-template-columns: 210px 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .anchor-layout { grid-template-columns: 1fr; gap: 0; }
  .anchor-nav {
    position: sticky; top: 123px; z-index: 20; margin-bottom: 32px;
    padding: 12px 12px; border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10, 61, 41, .12);
  }
  .anchor-nav .an-title { display: none; }
  .anchor-nav ul {
    display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .anchor-nav ul::-webkit-scrollbar { display: none; }
  .anchor-nav li + li { margin-top: 0; }
  .anchor-nav a {
    white-space: nowrap; padding: 9px 16px; border: 1px solid var(--green-100);
    background: var(--white); font-size: 13px;
  }
  .anchor-nav a::before { display: none; }
  .anchor-body .block { scroll-margin-top: 75px; }
  .anchor-body .block + .block { margin-top: 44px; }
}

/* =============================================
   求人ページ
   ============================================= */
.recruit-tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: -28px 0 52px;
}
.recruit-tags li {
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 14px; border-radius: 999px;
  background: var(--green-050); color: var(--green-700);
  border: 1px solid var(--green-100);
}
.recruit-tags li.is-main {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white); border-color: transparent;
}

/* ---------- 数字で見る職場 ---------- */
.rc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rc-stats li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center; padding-bottom: 22px;
  box-shadow: var(--shadow);
}
.rc-label {
  background: var(--green-700); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; padding: 9px 12px;
}
.rc-ico { display: block; margin: 20px auto 12px; width: 66px; color: var(--green-600); }
.rc-ico svg { width: 100%; height: auto; }
.rc-value {
  font-size: 30px; font-weight: 800; line-height: 1.2; color: var(--ink);
  letter-spacing: .02em;
}
.rc-value small { font-size: 15px; font-weight: 700; margin-left: 2px; }

/* ---------- 先輩スタッフの声 ---------- */
.rc-people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.rc-person {
  border: 2px solid var(--green-100); border-radius: 18px;
  background: var(--white); overflow: hidden;
}
.rc-person-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: var(--green-050); border-bottom: 1px solid var(--green-100);
}
.rc-avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--white); border: 2px solid var(--green-100);
}
.rc-avatar svg { width: 100%; height: 100%; }
.rc-person-role { font-size: 12px; font-weight: 700; color: var(--green-600); letter-spacing: .08em; }
.rc-person-name { font-size: 19px; font-weight: 800; line-height: 1.4; }
.rc-person-name span { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.qa-list { padding: 6px 22px 12px; }
.qa-list .faq-item summary { font-size: 15px; padding: 15px 30px 15px 26px; }
.qa-list .faq-item:last-child { border-bottom: none; }
.qa-list .faq-answer { padding-left: 26px; }
.qa-list .faq-answer::before { display: none; }

/* ---------- 応募CTA帯 ---------- */
.recruit-cta { background: var(--green-050); padding: 44px 0; margin: 60px 0; }
.rc-cta-catch {
  text-align: center; font-size: clamp(17px, 1.9vw, 21px); font-weight: 800;
  color: var(--green-700); margin-bottom: 22px;
}
.rc-cta-btns { display: flex; gap: 20px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.rc-cta-btns .btn-primary { padding: 20px 38px; }
.rc-cta-tel {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid var(--green-600); border-radius: 14px;
  padding: 12px 30px; min-width: 300px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rc-cta-tel:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.rc-cta-tel .mark img { width: 34px; height: auto; }
.rc-cta-tel .num { font-size: 27px; font-weight: 800; color: var(--green-700); line-height: 1.2; letter-spacing: .01em; }
.rc-cta-tel small { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- 募集要項テーブル ---------- */
table.data.spec th { width: 22%; min-width: 130px; vertical-align: top; }
table.data.spec td { line-height: 1.85; }
.dot-list { margin: 8px 0; }
.dot-list li { position: relative; padding-left: 16px; font-size: 14.5px; }
.dot-list li + li { margin-top: 5px; }
.dot-list li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-500);
}
.pay-main {
  font-size: 20px; font-weight: 800; color: var(--orange-600);
  line-height: 1.4; margin-bottom: 6px;
}
.pay-main.small { font-size: 17px; }
.cond-head {
  font-size: 13px; font-weight: 800; color: var(--green-700);
  letter-spacing: .08em; margin-top: 16px;
}
.cond-head:first-child { margin-top: 0; }
table.data.spec td a { color: var(--green-600); font-weight: 700; }
.map-link { margin-top: 14px; font-size: 14px; }
.map-link a { color: var(--green-600); font-weight: 700; text-decoration: underline; }

/* 性別などの少数選択肢 */
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-row .choice { min-width: 118px; }

@media (max-width: 900px) {
  .rc-people { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .recruit-tags { margin: -18px 0 34px; }
  .rc-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rc-label { font-size: 11.5px; padding: 8px 6px; letter-spacing: 0; }
  .rc-ico { width: 52px; margin: 14px auto 8px; }
  .rc-value { font-size: 24px; }
  .rc-value small { font-size: 13px; }
  .recruit-cta { padding: 34px 0; margin: 44px 0; }
  .rc-cta-btns { flex-direction: column; }
  .rc-cta-btns .btn-primary { width: 100%; }
  .rc-cta-tel { min-width: 0; width: 100%; }
  .qa-list { padding: 4px 16px 8px; }
  .qa-list .faq-item summary { font-size: 14.5px; padding: 14px 28px 14px 24px; }
  table.data.spec th { width: auto; min-width: 0; }
}

/* ---------- TOP: 採用情報バンド ---------- */
.recruit-band {
  color: var(--white);
  background:
    radial-gradient(rgba(255, 255, 255, .07) 1.5px, transparent 1.5px),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  background-size: 22px 22px, auto;
}
.rb-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; }
.rb-copy .en {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #9fd8b8; margin-bottom: 10px;
}
.rb-copy h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.4; letter-spacing: .02em; }
.rb-copy > p { margin-top: 16px; font-size: 15px; color: #dcefe4; max-width: 42em; }
.rb-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.rb-chips li {
  font-size: 13.5px; font-weight: 700; padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3);
}
.rb-chips li:first-child { background: rgba(255, 224, 122, .18); border-color: #ffe07a; color: #ffe07a; }
.rb-cta { margin-top: 28px; }
.rb-visual img { width: 100%; max-width: 300px; margin: 0 auto; }

@media (max-width: 860px) {
  .rb-grid { grid-template-columns: 1fr; gap: 6px; text-align: center; }
  .rb-copy > p { margin-left: auto; margin-right: auto; }
  .rb-chips { justify-content: center; }
  .rb-cta .btn { width: 100%; }
  .rb-visual { order: -1; }
  .rb-visual img { max-width: 150px; }
}


/* 求人ページなど、見積CTAを出さないページ */
body.no-estimate-cta .cta-band,
body.no-estimate-cta .fixed-cta { display: none; }
/* スマホ固定CTA分の下余白も戻す */
@media (max-width: 860px) {
  body.no-estimate-cta { padding-bottom: 0; }
}

/* 見積確認画面の「修正する」ボタン */
.confirm-edit {
  border: none; background: none; cursor: pointer;
  font-size: 12.5px; font-weight: 700; color: var(--green-600);
  text-decoration: underline; margin-left: 10px; padding: 0;
  font-family: inherit;
}
.confirm-edit:hover { color: var(--green-700); }

/* ---------- お客様の声：項目別評価 ---------- */
.voice-single .article-meta .score {
  font-weight: 800; color: var(--orange-600); font-size: 17px;
}
.voice-scores {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px 28px; margin: 0 0 30px;
  border-top: 1px solid var(--line);
}
.voice-scores li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 4px; border-bottom: 1px solid var(--line);
}
.voice-scores .name {
  flex: 1; font-size: 14.5px; font-weight: 700; color: var(--green-900);
}
.voice-scores .stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.voice-scores .num {
  min-width: 2.6em; text-align: right;
  font-size: 14px; font-weight: 800; color: var(--ink-soft);
}
.voice-scores .is-none .stars { color: var(--line); }
.voice-scores .is-none .name { color: var(--ink-soft); font-weight: 600; }

.voice-single .h-sub { margin-top: 30px; }

@media (max-width: 720px) {
  .voice-scores { grid-template-columns: 1fr; gap: 0; }
  .voice-scores .name { font-size: 13.5px; }
  .voice-scores .stars { font-size: 14px; }
}

/* 求人：チェック付きリストと差し替え待ちの目印 */
.rc-checks { margin: 14px 0 8px; }
.rc-checks li {
  position: relative; padding-left: 26px; font-size: 14.5px; font-weight: 700; color: var(--green-900);
}
.rc-checks li + li { margin-top: 6px; }
.rc-checks li::before {
  content: ""; position: absolute; left: 0; top: .22em; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect width='18' height='18' rx='4' fill='%231a8a5c'/%3E%3Cpath d='M4.5 9.5l3 3 6-6.5' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px no-repeat;
}
.rc-checks .sub { display: block; font-weight: 500; font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.placeholder { color: #b45309; background: #fff7e6; border: 1px dashed #f0b35c; border-radius: 6px; padding: 6px 10px; font-size: 13px; display: inline-block; }

/* 求人：福利厚生の一覧（2カラム） */
.rc-benefits {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px; margin: 4px 0 10px;
}
.rc-benefits li {
  position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.7;
}
.rc-benefits li::before {
  content: ""; position: absolute; left: 0; top: .38em; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23e4f2ea'/%3E%3Cpath d='M3.6 7.2l2.2 2.2 4.5-5' fill='none' stroke='%2312714a' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
@media (max-width: 860px) {
  .rc-benefits { grid-template-columns: 1fr; gap: 4px; }
}

/* 見積STEP6：カテゴリ内リンクとリード文 */
.item-nav {
  margin: 0 32px 4px; padding: 16px 18px;
  background: var(--green-050); border: 1px solid var(--green-100); border-radius: 12px;
}
.item-nav-title {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  color: var(--green-700); margin-bottom: 10px;
}
.item-nav ul { display: flex; flex-wrap: wrap; gap: 8px; }
.item-nav a {
  display: block; padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--green-100);
  font-size: 13px; font-weight: 700; color: var(--green-700);
  transition: background .2s ease, border-color .2s ease;
}
.item-nav a:hover { background: var(--green-100); border-color: var(--green-500); }
.item-lead { margin: 14px 32px 0; font-size: 13.5px; color: var(--ink-soft); }
.sp-only { display: none; }

/* カテゴリ見出しは追従ヘッダーに隠れないよう余白を確保する */
.item-grid { scroll-margin-top: 140px; }
.form-inner .label[id] { scroll-margin-top: 140px; }

@media (max-width: 860px) {
  .item-nav { margin: 0 16px 4px; padding: 12px 14px; }
  .item-nav ul { gap: 6px; }
  .item-nav a { padding: 6px 12px; font-size: 12.5px; }
  .item-lead { margin: 12px 16px 0; font-size: 13px; }
  .sp-only { display: inline; }
  .form-inner .label[id] { scroll-margin-top: 120px; }
}
