/* =========================================================
   株式会社Hitoas - style.css
   Pure CSS / no framework。配色・フォント・余白は :root のトークンで一元管理する。
   新色を直値で書かず、必要ならトークンを :root に足して命名を揃えること。
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body, h1, h2, h3, h4, p, ul, ol, figure, dl, dd, table, th, td { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Design Tokens ---------- */
:root {
  /* 配色（株式会社Hitoas：明るいオレンジ＝親しみ・暖かさ）*/
  --c-primary: #ff7a1a;          /* 明るいオレンジ（主役・ボタン） */
  --c-primary-deep: #e96a00;     /* hover で深く */
  --c-primary-soft: #fff1e6;     /* 主役色のごく淡い背景 */
  --c-accent: #ffb454;           /* アンバー（サブアクセント・グラデ） */
  --g-warm: linear-gradient(120deg, #ff7a1a 0%, #ffb454 100%); /* 暖色グラデ */

  --c-bg: #ffffff;               /* ページ背景 */
  --c-bg-cream: #fff7f0;         /* セクション差し色（温かいクリーム） */
  --c-text: #2b2622;             /* 基本テキスト */
  --c-text-muted: #6e665e;       /* 補助テキスト（白地で 4.5:1 以上を確保） */
  --c-border: #f0e7de;           /* 罫線 */
  --c-ink: #241d18;              /* フッター等の濃色（温かみのあるブラウン） */
  --c-danger: #c0392b;

  /* フォント（Google Fonts は <head> で読み込む。丸み＝親しみ・暖かさ） */
  --f-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --f-disp: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif; /* 見出し・装飾用 */
  --f-en: "Poppins", "Zen Maru Gothic", sans-serif; /* 英字ラベル・数字 */

  /* レイアウト */
  --container: 1120px;
  --gutter: 24px;
  --header-h: 92px;
  --radius: 6px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-card: 0 24px 60px rgba(0,0,0,0.08);
}

/* ---------- Base ---------- */
html, body {
  font-family: var(--f-base);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
}

h1, h2, h3 { line-height: 1.4; font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: 88px 0; }
.section--cream { background: var(--c-bg-cream); }
/* Hero 直下のセクション：白で終わる Hero との境界にメリハリをつける（差し色を一段濃く＋区切り線） */
.hero + .section--cream { background: var(--c-primary-soft); border-top: 1px solid var(--c-border); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__label { display: block; font-family: var(--f-disp); font-size: 13px; letter-spacing: 0.3em; color: var(--c-primary); text-transform: uppercase; margin-bottom: 10px; }
.section__title { font-size: clamp(22px, 4vw, 30px); font-weight: 600; letter-spacing: 0.06em; }
.section__lead { margin-top: 16px; color: var(--c-text-muted); font-size: 15px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  background: var(--c-primary); color: #fff; font-weight: 600;
  letter-spacing: 0.08em; transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--c-primary-deep); transform: translateY(-1px); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--c-border);
}
/* 背景のすりガラス効果は ::before に分離する。
   .hdr 自身に backdrop-filter / filter を持たせると、その要素がモバイル用ドロワー
   (.nav / position:fixed) の「包含ブロック」になり、ドロワーがビューポートではなく
   ヘッダーの高さ(数十px)に閉じ込められてレイアウトが壊れるため。 */
.hdr::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
}
.hdr__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.hdr__logo { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; line-height: 1; }
.hdr__logo-mark { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; transform: scale(1.85); transform-origin: center; }
.hdr__logo-text { display: flex; flex-direction: column; gap: 4px; }
.hdr__logo-name { font-family: var(--f-en); font-weight: 700; font-size: 25px; letter-spacing: 0.01em; color: var(--c-primary); }
.hdr__logo-name .dot { color: var(--c-accent); }
.hdr__logo-sub { font-size: 10px; color: var(--c-text-muted); letter-spacing: 0.14em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav > a { font-size: 14px; letter-spacing: 0.04em; transition: color 0.2s; }
.nav > a:hover { color: var(--c-primary); }
.nav__sns { display: none; } /* PC ヘッダーではアイコンを hdr__actions 側に出す想定 */
.nav__cta { display: none; } /* お問い合わせCTAはモバイルメニュー専用。PCはヘッダーのドロップダウンを使う */
.hdr__actions { display: flex; align-items: center; gap: 14px; }
.hdr__sns { display: inline-flex; }
.sns-icon { width: 22px; height: 22px; }
.sns-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.hdr__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--c-primary); color: #fff; font-size: 14px; font-weight: 600;
  transition: background 0.2s;
}
.hdr__cta:hover { background: var(--c-primary-deep); }

/* お問い合わせドロップダウン（PCヘッダー） */
.hdr__contact { position: relative; }
.hdr__cta--toggle { cursor: pointer; }
.hdr__cta-caret { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.25s; }
.hdr__contact.is-open .hdr__cta-caret { transform: rotate(180deg); }
.contact-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 120;
  width: 300px; padding: 10px;
  background: #fff; border: 1px solid var(--c-border); border-radius: 14px;
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
/* ホバーが切れないようボタンとメニューの隙間を透明領域で埋める */
.contact-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.hdr__contact:focus-within .contact-menu,
.hdr__contact.is-open .contact-menu { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) {
  .hdr__contact:hover .contact-menu { opacity: 1; visibility: visible; transform: none; }
  .hdr__contact:hover .hdr__cta-caret { transform: rotate(180deg); }
}
.contact-menu__item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; transition: background 0.18s; }
.contact-menu__item:hover { background: var(--c-primary-soft); }
.contact-menu__ico { flex-shrink: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--c-primary-soft); color: var(--c-primary); }
.contact-menu__ico svg { width: 20px; height: 20px; }
.contact-menu__t { display: block; font-weight: 600; font-size: 14px; color: var(--c-text); }
.contact-menu__d { display: block; font-size: 12px; color: var(--c-text-muted); margin-top: 1px; }

/* Burger */
.hdr__burger { display: none; width: 40px; height: 40px; position: relative; }
.hdr__burger span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--c-text);
  transition: transform 0.3s, opacity 0.2s;
}
.hdr__burger span:nth-child(1) { top: 13px; }
.hdr__burger span:nth-child(2) { top: 19px; }
.hdr__burger span:nth-child(3) { top: 25px; }
.hdr__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 90;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Page hero（サブページ共通の見出し帯） ---------- */
.page-hero { background: var(--c-primary-soft); padding: 64px 0; text-align: center; }
.page-hero__label { display: block; font-family: var(--f-disp); letter-spacing: 0.3em; color: var(--c-primary); font-size: 13px; text-transform: uppercase; margin-bottom: 10px; }
.page-hero__title { font-size: clamp(24px, 5vw, 34px); letter-spacing: 0.08em; }
.page-hero__lead { margin-top: 14px; color: var(--c-text-muted); font-size: 15px; }

/* ---------- News（新着情報・アコーディオン / news.js と対応） ---------- */
.news__list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--c-border); }
.news__item { border-bottom: 1px solid var(--c-border); }
.news__head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 22px 8px; text-align: left;
}
.news__date { font-family: var(--f-disp); color: var(--c-primary); font-size: 14px; letter-spacing: 0.06em; flex-shrink: 0; }
.news__cat {
  font-size: 11px; letter-spacing: 0.08em; color: var(--c-text-muted);
  border: 1px solid var(--c-border); border-radius: var(--radius-pill);
  padding: 3px 12px; flex-shrink: 0;
}
.news__title { flex: 1; font-size: 15px; font-weight: 500; }
.news__toggle { width: 12px; height: 12px; position: relative; flex-shrink: 0; }
.news__toggle::before, .news__toggle::after { content: ""; position: absolute; background: var(--c-text-muted); transition: transform 0.3s; }
.news__toggle::before { top: 5px; left: 0; right: 0; height: 2px; }
.news__toggle::after { left: 5px; top: 0; bottom: 0; width: 2px; }
.news__item.is-open .news__toggle::after { transform: scaleY(0); }
.news__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.news__item.is-open .news__body { max-height: 600px; }
.news__body-inner { padding: 0 8px 24px; color: var(--c-text-muted); font-size: 14px; }
.news__link { display: inline-flex; gap: 6px; margin-top: 12px; color: var(--c-primary); font-weight: 600; }
.news__empty { text-align: center; color: var(--c-text-muted); padding: 40px 0; }

/* ---------- Form（Web3Forms / contact.js と対応） ---------- */
.form { max-width: 720px; margin: 0 auto; }
.form__intro { font-size: 13px; color: var(--c-text-muted); margin-bottom: 24px; }
.form__intro strong { color: var(--c-danger); }
.form__field { margin-bottom: 22px; }
.form__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form__required { font-size: 11px; color: #fff; background: var(--c-danger); border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__optional { font-size: 11px; color: var(--c-text-muted); border: 1px solid var(--c-border); border-radius: 3px; padding: 2px 7px; margin-left: 6px; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--c-border); border-radius: var(--radius);
  background: #fff; font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-soft); }
.form__textarea { min-height: 160px; resize: vertical; }
.form__hint { display: block; margin-top: 6px; font-size: 12px; color: var(--c-text-muted); }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; cursor: pointer; }
.form__check input { margin-top: 5px; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; border-radius: var(--radius-pill); background: var(--c-primary); color: #fff; font-weight: 600; letter-spacing: 0.1em; transition: background 0.2s; }
.form__submit:hover { background: var(--c-primary-deep); }
.form__submit:disabled { opacity: 0.6; cursor: default; }
.form__success { max-width: 720px; margin: 0 auto 24px; padding: 28px; border: 1px solid var(--c-primary); border-radius: var(--radius); background: var(--c-primary-soft); text-align: center; }
.form__error { padding: 14px; border: 1px solid var(--c-danger); border-radius: var(--radius); background: #fdecea; color: var(--c-danger); font-size: 14px; margin-bottom: 20px; }
.form__radio { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--c-border); border-radius: var(--radius-pill); cursor: pointer; margin: 0 8px 8px 0; }
.form__radio.is-checked { border-color: var(--c-primary); background: var(--c-primary-soft); }

/* ---------- FAQ ---------- */
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__q { width: 100%; text-align: left; padding: 20px 8px; font-weight: 600; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--c-text-muted); font-size: 14px; }
.faq__item.is-open .faq__a { max-height: 500px; padding: 0 8px 20px; }

/* ---------- Footer ---------- */
.ftr { background: var(--c-ink); color: #e9e2da; padding: 64px 0 32px; }
.ftr__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.ftr__about, .ftr__address { font-size: 13px; color: #aaa; margin-top: 14px; line-height: 1.9; }
.ftr__tel a { font-family: var(--f-disp); font-size: 18px; letter-spacing: 0.06em; margin-top: 10px; display: inline-block; }
.ftr__sns { display: flex; gap: 14px; margin-top: 16px; }
.ftr__sns .sns-icon { width: 26px; height: 26px; }
.ftr__heading { font-family: var(--f-disp); letter-spacing: 0.2em; font-size: 13px; color: #fff; margin-bottom: 16px; text-transform: uppercase; }
.ftr__links { display: flex; flex-direction: column; gap: 10px; }
.ftr__links a { font-size: 14px; color: #bbb; transition: color 0.2s; }
.ftr__links a:hover { color: #fff; }
.ftr__bottom { border-top: 1px solid #333; margin-top: 48px; padding-top: 24px; text-align: center; }
.ftr__copy { font-size: 12px; color: #888; letter-spacing: 0.06em; }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(255,255,255,0.96); border-top: 1px solid var(--c-border); backdrop-filter: blur(8px); }
.mobile-cta__inner { display: flex; }
.mobile-cta__btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px; font-size: 10px; color: var(--c-text); }
.mobile-cta__btn--primary { background: var(--c-primary); color: #fff; }
.mobile-cta__btn-icon svg { width: 22px; height: 22px; }

/* ---------- Fade-in（main.js / news.js と対応） ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Hitoas 専用コンポーネント（すべて :root トークン参照）
   ========================================================= */

/* ---------- 英字ラベルは Poppins に ---------- */
.section__label, .page-hero__label { font-family: var(--f-en); font-weight: 600; }
.section__title, .page-hero__title { font-family: var(--f-disp); }

/* ---------- ロゴ ---------- */
.ftr__logo { display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.ftr__logo-mark { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; transform: scale(1.85); transform-origin: center; }
.ftr__logo-text { display: flex; flex-direction: column; gap: 4px; }
.ftr__logo-name { font-family: var(--f-en); font-weight: 700; font-size: 24px; color: #fff; }
.ftr__logo-name .dot { color: var(--c-accent); }
.ftr__logo-sub { font-size: 10px; color: #e9e2da; letter-spacing: 0.14em; }

/* ---------- ボタンのバリエーション ---------- */
.btn--outline { background: #fff; color: var(--c-primary); border: 1.5px solid var(--c-primary); }
.btn--outline:hover { background: var(--c-primary-soft); color: var(--c-primary-deep); }
.btn--lg { padding: 16px 32px; font-size: 15.5px; }
.btn--onband { background: #fff; color: var(--c-primary-deep); }
.btn--onband:hover { background: #fff7f0; color: var(--c-primary-deep); }
.btn--onband-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.85); }
.btn--onband-ghost:hover { background: rgba(255,255,255,0.14); }
.btn__ico { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-bg) 78%); padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 104px); animation: heroBgIn 1.1s ease-out both; }
.hero::before { content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,180,84,0.5), rgba(255,122,26,0) 70%); pointer-events: none; animation: heroGlowIn 1.4s 0.25s ease-out both; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__eyebrow { display: inline-block; font-family: var(--f-en); letter-spacing: 0.22em; color: var(--c-primary-deep); font-size: 13px; font-weight: 600; margin-bottom: 18px; animation: heroFadeUp 0.75s 0.15s ease-out both; }
.hero__title { font-family: var(--f-disp); font-size: clamp(34px, 5.6vw, 58px); line-height: 1.28; font-weight: 700; letter-spacing: 0.02em; }
.hero__title .accent { color: var(--c-primary); }
.hero__type-line { position: relative; display: block; width: 0; max-width: max-content; overflow: hidden; white-space: nowrap; }
.hero__type-line::after { content: ""; position: absolute; top: 0.12em; right: 0; bottom: 0.08em; width: 3px; border-radius: 999px; background: var(--c-primary); opacity: 0; }
.hero__type-line--first { --type-width: 6.4em; animation: heroTyping 1.2s 0.45s steps(6, end) both; }
.hero__type-line--second { --type-width: 4.25em; animation: heroTyping 0.8s 0.45s steps(4, end) both; }
.hero__type-line--first::after { animation: heroCursor 0.72s step-end 0.45s 3, heroCursorOut 0.01s linear 1.72s forwards; }
.hero__type-line--second::after { animation: heroCursor 0.72s step-end 0.45s 2, heroCursorOut 0.01s linear 1.32s forwards; }
.hero__lead { margin-top: 22px; font-size: clamp(15px, 1.4vw, 17px); color: var(--c-text); max-width: 30em; line-height: 1.95; animation: heroFadeUp 0.8s 1.75s ease-out both; }
.hero__media { position: relative; }
.hero__media.fade-in { transition-delay: 0.95s; }
.hero__media img { width: 100%; border-radius: 26px; box-shadow: var(--shadow-card); object-fit: cover; aspect-ratio: 4 / 4.2; }
.hero__badge { position: absolute; left: -16px; bottom: 26px; display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-card); animation: heroBadgeIn 0.75s 1.8s ease-out both; }
.hero__badge-ico { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--g-warm); color: #fff; }
.hero__badge-num { font-family: var(--f-en); font-weight: 700; font-size: 18px; color: var(--c-text); }
.hero__badge-label { font-size: 11.5px; color: var(--c-text-muted); }

@keyframes heroTyping {
  from { width: 0; }
  to { width: var(--type-width); }
}
@keyframes heroCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes heroCursorOut {
  to { opacity: 0; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translate(-10px, 12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes heroBgIn {
  from { background-position: 0 -24px; }
  to { background-position: 0 0; }
}
@keyframes heroGlowIn {
  from { opacity: 0; transform: translate(28px, -18px) scale(0.92); }
  to { opacity: 1; transform: none; }
}

/* ---------- ミッション ---------- */
.mission { max-width: 880px; margin: 0 auto; text-align: center; }
.mission__statement { font-family: var(--f-disp); font-size: clamp(21px, 3.2vw, 30px); font-weight: 700; line-height: 1.6; }
.mission__statement .accent { color: var(--c-primary); }
.mission__text { margin-top: 26px; color: var(--c-text); font-size: 15.5px; line-height: 2; text-align: left; }
.mission__text p + p { margin-top: 1.3em; }
.mission__ask { margin-top: 28px; font-family: var(--f-disp); font-weight: 700; font-size: 16px; color: var(--c-primary-deep); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; max-width: 720px; margin: 20px auto 4px; text-align: left; }
.checklist li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--c-text); }
.checklist__ico { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; }
.checklist__ico svg { width: 15px; height: 15px; }
.mission__closing { margin-top: 30px; padding: 26px 28px; background: var(--c-primary-soft); border-radius: var(--radius); font-family: var(--f-disp); font-size: clamp(17px, 2.2vw, 21px); font-weight: 700; color: var(--c-primary-deep); }

/* ---------- 汎用 split（画像＋テキスト） ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-soft); object-fit: cover; aspect-ratio: 5 / 3.4; }
.split--reverse .split__media { order: 2; }
.split__title { font-family: var(--f-disp); font-size: clamp(20px, 2.8vw, 26px); font-weight: 700; line-height: 1.5; }
.split__text { margin-top: 18px; color: var(--c-text-muted); font-size: 15px; line-height: 1.95; }
.split__points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.split__point { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.split__cta { margin-top: 30px; }
.split__point svg { width: 22px; height: 22px; color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- 選ばれる理由 ---------- */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason { position: relative; padding: 32px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-border); box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; }
.reason:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.reason__no { font-family: var(--f-en); font-size: 12px; letter-spacing: 0.14em; color: var(--c-primary); font-weight: 600; }
.reason__icon { width: 54px; height: 54px; margin: 8px 0 16px; display: grid; place-items: center; border-radius: 14px; background: var(--c-primary-soft); color: var(--c-primary); }
.reason__icon svg { width: 28px; height: 28px; }
.reason__title { font-family: var(--f-disp); font-size: 17.5px; font-weight: 700; line-height: 1.5; }
.reason__desc { margin-top: 10px; font-size: 14px; color: var(--c-text-muted); line-height: 1.85; }

/* ---------- フロー（転職サポートの流れ） ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.flow__step { position: relative; text-align: center; padding: 28px 16px 24px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.flow__step:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -12px; width: 16px; height: 16px; border-top: 2px solid var(--c-accent); border-right: 2px solid var(--c-accent); transform: translateY(-50%) rotate(45deg); z-index: 1; }
.flow__no { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--g-warm); color: #fff; font-family: var(--f-en); font-weight: 700; font-size: 17px; }
.flow__title { margin-top: 14px; font-family: var(--f-disp); font-weight: 700; font-size: 15.5px; }
.flow__desc { margin-top: 8px; font-size: 12.5px; color: var(--c-text-muted); line-height: 1.7; }
/* 採用フロー（4ステップ）はPC時4カラムで中央揃え */
.flow--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 求人・取引先イメージ ---------- */
.job-scroller { display: flex; gap: 18px; overflow-x: auto; padding: 6px 4px 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.job-scroller::-webkit-scrollbar { height: 8px; }
.job-scroller::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 999px; }
.job-card { scroll-snap-align: start; flex: 0 0 290px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-soft); }
.job-card__tag { display: inline-block; font-size: 12px; color: var(--c-primary-deep); background: var(--c-primary-soft); border-radius: var(--radius-pill); padding: 4px 13px; }
.job-card__title { margin-top: 14px; font-family: var(--f-disp); font-weight: 700; font-size: 17px; line-height: 1.5; }
.job-card__meta { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--c-text-muted); }
.job-card__meta span { display: flex; gap: 8px; }
.job-card__meta b { color: var(--c-text); font-weight: 600; min-width: 4em; }
.partner-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.partner-chip { padding: 11px 20px; border: 1px solid var(--c-border); border-radius: var(--radius-pill); font-size: 13.5px; color: var(--c-text); background: #fff; box-shadow: var(--shadow-soft); }
.note-tiny { text-align: center; margin-top: 20px; font-size: 12.5px; color: var(--c-text-muted); }

/* ---------- CTA バンド ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--g-warm); color: #fff; padding: clamp(56px, 7vw, 84px) 0; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 10%, rgba(255,255,255,0.25), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band__title { font-family: var(--f-disp); font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.45; color: #fff; }
.cta-band__lead { margin: 16px auto 0; max-width: 44em; font-size: 15.5px; color: rgba(255,255,255,0.94); }
.cta-band__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- 代表メッセージ ---------- */
.message-block { max-width: 720px; margin: 0 auto; }
.message-block__body { font-size: 16px; line-height: 2.05; color: var(--c-text); }
.message-block__body p + p { margin-top: 1.3em; }
.message-block__sign { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--c-border, rgba(0,0,0,.08)); text-align: right; }
.message-block__sign-role { display: block; font-size: 13px; color: var(--c-text-muted); }
.message-block__sign-name { display: block; font-family: var(--f-disp); font-size: 22px; font-weight: 700; margin-top: 8px; }
/* PC版は中央揃え */
@media (min-width: 769px) {
  .message-block__body { text-align: center; }
  .message-block__sign { text-align: center; }
}

/* ---------- MVV（ミッション・ビジョン・バリュー） ---------- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { position: relative; overflow: hidden; padding: 38px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-border); box-shadow: var(--shadow-soft); }
.mvv-card__wm { position: absolute; top: -14px; right: 8px; font-family: var(--f-en); font-size: 92px; font-weight: 700; color: var(--c-primary-soft); line-height: 1; z-index: 0; }
.mvv-card__label { position: relative; font-family: var(--f-en); letter-spacing: 0.18em; color: var(--c-primary); font-size: 13px; font-weight: 600; }
.mvv-card__sub { position: relative; font-size: 12.5px; color: var(--c-text-muted); margin-top: 2px; }
.mvv-card__statement { position: relative; margin-top: 14px; font-family: var(--f-disp); font-size: 20px; font-weight: 700; line-height: 1.5; }
.mvv-card__desc { position: relative; margin-top: 12px; font-size: 14px; color: var(--c-text-muted); line-height: 1.85; }

/* ---------- 会社概要テーブル ---------- */
.company-table { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--c-border); }
.company-table dl { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--c-border); }
.company-table dt { padding: 22px 22px; font-weight: 600; font-size: 14px; color: var(--c-text); background: var(--c-bg-cream); letter-spacing: 0.04em; }
.company-table dd { padding: 22px 22px; font-size: 14.5px; color: var(--c-text); line-height: 1.9; }
.tbd { display: inline-block; color: var(--c-primary-deep); font-size: 12.5px; background: #fff6ef; border: 1px dashed var(--c-accent); border-radius: 4px; padding: 1px 9px; }

/* ---------- パンくず ---------- */
.crumb { font-size: 12.5px; color: var(--c-text-muted); padding: 16px 0; }
.crumb a:hover { color: var(--c-primary); }
.crumb span { margin: 0 6px; }

/* ---------- 採用：カルチャー／求める人物像 ---------- */
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.culture-card { padding: 30px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-border); box-shadow: var(--shadow-soft); }
.culture-card__icon { width: 50px; height: 50px; margin-bottom: 16px; display: grid; place-items: center; border-radius: 14px; background: var(--c-primary-soft); color: var(--c-primary); }
.culture-card__icon svg { width: 26px; height: 26px; }
.culture-card__title { font-family: var(--f-disp); font-size: 17px; font-weight: 700; }
.culture-card__desc { margin-top: 10px; font-size: 14px; color: var(--c-text-muted); line-height: 1.85; }

/* ---------- 採用：募集要項（ジョブディスクリプション） ---------- */
.jobpost { max-width: 900px; margin: 0 auto; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); background: #fff; }
.jobpost + .jobpost { margin-top: 28px; }
.jobpost__head { padding: 26px 30px; background: var(--c-primary-soft); }
.jobpost__tag { display: inline-block; font-size: 12px; color: #fff; background: var(--c-primary); border-radius: var(--radius-pill); padding: 4px 13px; margin-bottom: 10px; }
.jobpost__title { font-family: var(--f-disp); font-size: 21px; font-weight: 700; }
.jobpost__lead { margin-top: 8px; font-size: 14px; color: var(--c-text-muted); }
.jobpost__table dl { display: grid; grid-template-columns: 170px 1fr; border-bottom: 1px solid var(--c-border); }
.jobpost__table dl:last-child { border-bottom: none; }
.jobpost__table dt { padding: 18px 30px; font-weight: 600; font-size: 13.5px; color: var(--c-text); }
.jobpost__table dd { padding: 18px 30px; font-size: 14px; color: var(--c-text-muted); line-height: 1.85; }

/* ---------- お問い合わせ：種別の入口カード（ハブ） ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; padding: 34px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-border); box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.contact-card__ico { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: var(--c-primary-soft); color: var(--c-primary); margin-bottom: 18px; }
.contact-card__ico svg { width: 28px; height: 28px; }
.contact-card__title { font-family: var(--f-disp); font-size: 18px; font-weight: 700; }
.contact-card__desc { margin-top: 10px; font-size: 14px; color: var(--c-text-muted); line-height: 1.85; flex: 1; }
.contact-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--c-primary); font-weight: 600; font-size: 14px; transition: gap 0.2s; }
.contact-card:hover .contact-card__link { gap: 10px; }

/* ---------- お問い合わせ：フォーム上部のリード文 ---------- */
.form-lead { text-align: center; max-width: 640px; margin: 0 auto 32px; font-size: 14px; color: var(--c-text-muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- 規約・プライバシーポリシー ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: var(--f-disp); font-size: 19px; font-weight: 700; margin: 38px 0 12px; padding-left: 14px; border-left: 4px solid var(--c-primary); }
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 14.5px; color: var(--c-text); line-height: 1.95; margin-top: 10px; }
.legal ul { margin: 10px 0 0; padding-left: 1.3em; list-style: disc; }
.legal li { font-size: 14.5px; color: var(--c-text); line-height: 1.9; margin-bottom: 6px; }
.legal__meta { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--c-border); font-size: 13px; color: var(--c-text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hdr__burger { display: block; }
  .hdr__contact { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; padding: calc(var(--header-h) + 16px) 28px 28px;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 95;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15); overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--c-border); font-size: 15px; }
  .nav__sns { display: flex; gap: 16px; margin-top: 20px; }
  /* モバイルメニュー下部のお問い合わせCTA */
  .nav .nav__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; margin-top: 22px; padding: 15px 20px;
    border: none; border-radius: var(--radius-pill);
    background: var(--c-primary); color: #fff; font-weight: 600; font-size: 15px; letter-spacing: 0.08em;
  }
  .nav .nav__cta:hover { background: var(--c-primary-deep); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .ftr__inner { grid-template-columns: 1fr; gap: 32px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 60px; } /* mobile-cta の高さ分 */
  .news__head { flex-wrap: wrap; gap: 8px 12px; }
  .news__title { flex-basis: 100%; }
}

/* ---------- Responsive：Hitoas コンポーネント ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 38px; }
  .hero__media { max-width: 520px; }
  .reason-grid, .culture-grid, .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow__step:nth-child(3)::after { display: none; }
  /* 採用フロー（4ステップ）は中型画面で2×2に */
  .flow--4 { grid-template-columns: repeat(2, 1fr); }
  .flow--4 .flow__step:nth-child(2)::after { display: none; }
  .flow--4 .flow__step:nth-child(3)::after { display: block; }
}

@media (max-width: 768px) {
  .reason-grid, .culture-grid, .mvv-grid, .split, .checklist, .contact-cards { grid-template-columns: 1fr; }
  .split__media { order: 0 !important; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__step::after { display: none !important; }
  .form__row { grid-template-columns: 1fr; }
  .company-table dl, .jobpost__table dl { grid-template-columns: 1fr; }
  .company-table dt, .jobpost__table dt { background: var(--c-bg-cream); padding-bottom: 6px; }
  .company-table dd, .jobpost__table dd { padding-top: 10px; }
  .hero__badge { left: 8px; right: 8px; bottom: 12px; justify-content: center; }
}

@media (max-width: 520px) {
  .flow { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ---------- Accessibility：動きを抑える設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
  .hero__media.fade-in { transition-delay: 0s; }
}
