/* =========================================================
   KOKAGE / DARUMA  design tokens
   白基調・アクセントは黄緑・木のぬくもり
   ========================================================= */
:root {
  /* 黄緑（ロゴの葉の色） */
  --accent: #7cb342;
  --accent-deep: #557f28;   /* 白背景で文字・ボタンに使える濃さ（AA） */
  --accent-soft: #edf5e2;
  --accent-tint: #f7fbf2;

  /* 木 */
  --wood: #b4926c;
  --wood-deep: #7a5c3e;
  --wood-soft: #f4ede3;
  --wood-tint: #faf7f2;

  /* 文字 */
  --ink: #23271f;
  --ink-mid: #4b5245;
  --ink-soft: #6b7364;

  /* 面・線 */
  --paper: #ffffff;
  --paper-soft: #fbfaf7;
  --line: #e7e5de;
  --line-soft: #f0eee8;

  --shadow-sm: 0 1px 2px rgba(35, 39, 31, 0.04);
  --shadow: 0 18px 48px -24px rgba(35, 39, 31, 0.22);
  --radius: 20px;
  --radius-lg: 28px;

  /* 余白リズム */
  --section-y: clamp(72px, 10vw, 136px);
  --gap: clamp(20px, 2.4vw, 32px);
}

*,
*::before,
*::after { box-sizing: border-box; }

/* 高齢の方にも読みやすいベースサイズ（17px → 18px） */
html {
  font-size: 106.25%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 900px) {
  html { font-size: 112.5%; }
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
    "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "palt" 1;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: 0.02em;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
}

img,
svg { max-width: 100%; }

img { display: block; height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 700;
}

/* グリッド／フレックス子要素が中身に押し広げられないように */
.container,
.hero-grid > *,
.card-grid > *,
.brand-grid > *,
.recruit-inner > *,
.split > *,
.info-grid > *,
.form-row > *,
.stat-strip .item,
.footer-top > *,
.footer-nav > * { min-width: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

section { padding: var(--section-y) 0; }

.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  vertical-align: -0.16em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ---------- 共通の見出し ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin: 0 0 14px;
}

.section-head { margin-bottom: clamp(40px, 5vw, 68px); }

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.005em;
}

.section-lead {
  margin: 18px 0 0;
  color: var(--ink-mid);
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  max-width: 640px;
}

.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* 面の色ちがい */
.band-soft { background: var(--paper-soft); }
.band-green { background: var(--accent-tint); }

/* 木のぬくもりを出す帯（木目はごく薄く） */
.band-wood {
  background: var(--wood-tint);
  position: relative;
  overflow: hidden;
}

.band-wood::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-linear-gradient(
    92deg,
    rgba(180, 146, 108, 0.07) 0px,
    rgba(180, 146, 108, 0) 3px,
    rgba(180, 146, 108, 0) 11px,
    rgba(180, 146, 108, 0.05) 14px,
    rgba(180, 146, 108, 0) 19px,
    rgba(180, 146, 108, 0) 34px
  );
}

.band-wood > * { position: relative; }

.hr-leaf {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
}

.btn-primary:hover { background: #476b21; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

.btn-ghost {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.btn-ghost:hover::after { transform: rotate(45deg) translate(2px, -2px); }

.btn-sm { padding: 11px 22px; font-size: 0.92rem; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 0;
}

.brand img { width: 38px; height: 38px; flex-shrink: 0; }

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.brand-sub {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent-deep); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, top 0.2s;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}


.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 20px;
}

.mobile-nav > .container > ul > li > a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.mobile-nav .btn { margin-top: 20px; width: 100%; }

/* サービス階層（モバイル） */
.mobile-nav details {
  border-bottom: 1px solid var(--line-soft);
}

.mobile-nav details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 4px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.mobile-nav details summary::-webkit-details-marker { display: none; }

.mobile-nav details summary::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.mobile-nav details[open] summary::after { transform: rotate(-135deg); }

.mobile-sub-list {
  list-style: none;
  margin: 0;
  padding: 0 0 14px;
}

.mobile-sub-list li + li { margin-top: 2px; }

.mobile-sub-list a {
  display: block;
  padding: 10px 4px 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  border-radius: 10px;
}

.mobile-sub-list a:hover { color: var(--accent-deep); }

.mobile-sub-list a[aria-current="page"] {
  color: var(--accent-deep);
  background: var(--accent-soft);
  font-weight: 700;
}

/* サービス階層（デスクトップ ドロップダウン） */
.nav-item { position: relative; }

/* invisible bridge so the pointer can travel from trigger to menu without closing it */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-trigger .icon {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}

.nav-item:hover .dropdown-trigger .icon,
.nav-item:focus-within .dropdown-trigger .icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 250px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 50;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu { display: block; }

.dropdown-menu li + li { margin-top: 2px; }

.nav-links .dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 0;
}

.nav-links .dropdown-menu a span {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.nav-links .dropdown-menu a:hover,
.nav-links .dropdown-menu a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.nav-links .dropdown-menu a[aria-current="page"] span { color: var(--accent-deep); }

.nav-item.current > .dropdown-trigger { color: var(--accent-deep); }

@media (max-width: 1080px) {
  .nav-links,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.open { display: block; }
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 112px);
  background:
    radial-gradient(ellipse 70% 60% at 78% 8%, rgba(124, 179, 66, 0.13), transparent 70%),
    radial-gradient(ellipse 60% 50% at 6% 92%, rgba(180, 146, 108, 0.12), transparent 70%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.42;
  letter-spacing: -0.005em;
  margin: 0 0 26px;
  font-weight: 700;
}

.hero h1 .accent { color: var(--accent-deep); }

.hero-lead {
  color: var(--ink-mid);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  max-width: 30em;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 28px 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.hero-visual {
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #ffffff 0%, var(--accent-tint) 60%, var(--wood-tint) 100%);
  border: 1px solid var(--line-soft);
}

.hero-visual img {
  width: min(100%, 260px);
}

/* =========================================================
   数字ストリップ
   ========================================================= */
.stat-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-soft);
  padding: clamp(28px, 4vw, 44px) 0;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 48px);
  text-align: center;
}

.stat-strip .item + .item { border-left: 1px solid var(--line); }

.stat-strip .num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1.3;
}

.stat-strip .label {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* =========================================================
   カードグリッド（サービス一覧など）
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(124, 179, 66, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 24px;
}

.service-icon .icon { width: 27px; height: 27px; }

.service-card .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.service-card p {
  margin: 0 0 24px;
  color: var(--ink-mid);
  font-size: 0.98rem;
}

.service-card .btn-ghost { margin-top: auto; }

/* =========================================================
   2ブランド（東京・こかげ／新潟・だるま）
   ========================================================= */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
}

.brand-card .area {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--wood-deep);
  background: var(--wood-soft);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.brand-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}

.brand-card .romaji {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.brand-card p { margin: 0 0 20px; color: var(--ink-mid); font-size: 0.98rem; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 14px;
}

.chip.muted { color: var(--ink-soft); background: var(--line-soft); }

.note-line {
  margin: 24px 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* =========================================================
   選ばれる理由 / 特徴
   ========================================================= */
.reason-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}

.reason-card .num {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

.reason-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.reason-card p { margin: 0; color: var(--ink-mid); font-size: 0.95rem; }

/* 相談のきっかけ */
.consult-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
}

.consult-card .mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.consult-card h3 { margin: 0 0 6px; font-size: 1.02rem; font-weight: 700; }
.consult-card p { margin: 0; color: var(--ink-mid); font-size: 0.92rem; }

/* =========================================================
   採用セクション
   ========================================================= */
.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.recruit .section-title { margin-bottom: 0; }

.recruit-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.recruit-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(180, 146, 108, 0.22);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.96rem;
}

.recruit-points .icon {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  color: var(--accent-deep);
}

.recruit-points b { display: block; }
.recruit-points span { color: var(--ink-mid); font-size: 0.9rem; }

/* =========================================================
   法人概要
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}

.rep-card {
  background: linear-gradient(170deg, #fff, var(--accent-tint));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
}

.rep-card .role { font-size: 0.84rem; color: var(--ink-soft); }
.rep-card .name { font-size: clamp(1.5rem, 3vw, 1.95rem); font-weight: 700; margin: 2px 0 12px; }

.rep-card .cert {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
  border: 1px solid rgba(85, 127, 40, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 22px;
}

.rep-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.rep-list li { display: flex; gap: 10px; align-items: flex-start; }
.rep-list .icon { width: 19px; height: 19px; margin-top: 6px; color: var(--accent-deep); }
.rep-list span { min-width: 0; overflow-wrap: anywhere; }
.rep-list a { text-decoration: none; font-weight: 600; }

.org-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.org-table th,
.org-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
}

.org-table th {
  width: 34%;
  max-width: 160px;
  color: var(--ink-soft);
  font-weight: 700;
}

.license-list {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.license-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 0.88rem;
}

.license-item .name { font-weight: 700; }
.license-item .num { color: var(--ink-soft); }

/* =========================================================
   アクセス
   ========================================================= */
.access-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.access-card iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

.access-card .body { padding: clamp(24px, 3vw, 32px); }

.access-card .badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 13px;
  margin-bottom: 14px;
}

.access-card h3 { margin: 0 0 14px; font-size: 1.08rem; }

.access-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 6px 12px;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.access-card dt { font-weight: 700; color: var(--ink); }
.access-card dd { margin: 0; overflow-wrap: anywhere; }

.hours-banner {
  margin-top: var(--gap);
  background: var(--wood-tint);
  border: 1px solid rgba(180, 146, 108, 0.24);
  border-radius: var(--radius);
  padding: 22px clamp(22px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hours-banner .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.96rem;
}

.hours-banner .icon { color: var(--wood-deep); width: 20px; height: 20px; }
.hours-banner .muted { font-weight: 500; color: var(--ink-mid); }

/* =========================================================
   お問い合わせ
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.2vw, 36px);
}

.contact-info h3 { margin: 0 0 22px; font-size: 1.05rem; }

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.contact-line:last-child { margin-bottom: 0; }

.contact-line .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-line .ic .icon { width: 19px; height: 19px; }
.contact-line > div { min-width: 0; overflow-wrap: anywhere; }
.contact-line a { text-decoration: none; font-weight: 700; }
.contact-line .muted { color: var(--ink-soft); font-size: 0.84rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.2vw, 36px);
  display: grid;
  gap: 20px;
}

.contact-form > * { min-width: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.req { color: #c2410c; font-size: 0.8rem; margin-left: 4px; }

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--paper-soft);
  color: var(--ink);
}

select {
  -webkit-appearance: none;
  appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7364' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
  background: #fff;
}

textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: 0.82rem; color: var(--ink-soft); margin: 12px 0 0; }

.form-status { font-size: 0.9rem; font-weight: 700; min-height: 22px; margin: 6px 0 0; }
.form-status.success { color: var(--accent-deep); }

/* =========================================================
   下層ページ用
   ========================================================= */
.page-hero {
  padding: clamp(36px, 5vw, 64px) 0 clamp(44px, 6vw, 76px);
  background:
    radial-gradient(ellipse 60% 70% at 88% 0%, rgba(124, 179, 66, 0.12), transparent 70%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb li + li::before { content: "／"; margin-right: 8px; color: var(--line); }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 20px;
}

.page-hero .lead {
  color: var(--ink-mid);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  max-width: 34em;
  margin: 0;
}

.page-hero .service-icon { margin-bottom: 22px; }

/* 箇条書き（特徴・対象者・サービス内容） */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23557f28' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
    center / 13px no-repeat;
}

.check-list.two-col { grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card h3 .icon { width: 21px; height: 21px; color: var(--accent-deep); }
.content-card p { margin: 0; color: var(--ink-mid); font-size: 0.95rem; }

.content-card ul {
  margin: 12px 0 0;
  padding-left: 1.3em;
  color: var(--ink-mid);
  font-size: 0.95rem;
}

.content-card li { margin-bottom: 4px; }

/* ご利用までの流れ */
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  counter-increment: flow;
  padding: 0 0 36px 74px;
}

.flow-list li:last-child { padding-bottom: 0; }

.flow-list li::before {
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--accent);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23.5px;
  top: 54px;
  bottom: 6px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--accent), rgba(124, 179, 66, 0.25));
}

.flow-list h3 { margin: 8px 0 8px; font-size: 1.08rem; }
.flow-list p { margin: 0; color: var(--ink-mid); font-size: 0.95rem; }

/* よくある質問 */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 0.86rem;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(-135deg); }

.faq-answer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0 clamp(20px, 2.6vw, 28px) 24px;
  color: var(--ink-mid);
  font-size: 0.96rem;
}

.faq-answer::before {
  content: "A";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wood-soft);
  color: var(--wood-deep);
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 10px; }

/* 下部CTA帯 */
.cta-band { text-align: center; }

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 16px;
}

.cta-band p {
  color: var(--ink-mid);
  margin: 0 auto 32px;
  max-width: 34em;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band .tel {
  display: block;
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* 他サービスへの導線 */
.other-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.other-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  transition: border-color 0.2s;
}

.other-link:hover { border-color: var(--accent); }
.other-link .icon { width: 22px; height: 22px; color: var(--accent-deep); }

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 76px) 0 28px;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.footer-brand { max-width: 320px; }

.footer-brand .brand { margin-bottom: 14px; }

.footer-brand p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; }

.footer-nav { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }

.footer-nav h3 {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 700;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-nav a { text-decoration: none; color: var(--ink-mid); }
.footer-nav a:hover { color: var(--accent-deep); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* =========================================================
   モバイル固定CTA
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  z-index: 200;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.mobile-cta .call { background: var(--accent-deep); color: #fff; }
/* accent-deep on accent-soft falls just under 4.5:1; darken text only here to keep AA contrast */
.mobile-cta .form { background: var(--accent-soft); color: #3f5f1e; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1024px) {
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .other-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { width: min(100%, 240px); }
  .split { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .recruit-inner { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 760px) {
  .card-grid,
  .card-grid.cols-3,
  .card-grid.cols-4,
  .brand-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .other-services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr; gap: 20px; }
  .stat-strip .item + .item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .access-card dl { grid-template-columns: 1fr; gap: 2px; }
  .access-card dd { margin-bottom: 8px; }
  .org-table th { width: 40%; }
  .flow-list li { padding-left: 60px; }
  .flow-list li::before { width: 42px; height: 42px; font-size: 0.98rem; }
  .flow-list li:not(:last-child)::after { left: 20.5px; top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
