/* 2026-06-10 claude-fable-5 セッションターン数：1 */
/* fukumoto-group リニューアルテーマ デザインシステム
   コンセプト: 「地域に根差す、あたたかさと信頼」 */

:root {
  --c-bg: #faf7f2;
  --c-bg-alt: #f2eae0;
  --c-ink: #322b23;
  --c-ink-soft: #6b5d4f;
  --c-line: #e2d8c8;
  --c-accent: #d97b29;
  --c-gold: #b98a3c;
  --c-white: #fff;
  /* 事業アクセント色 */
  --c-acu: #2e7d6b;
  --c-nurs: #c96a32;
  --c-disa: #4a7ab5;
  --c-agri: #6f9442;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --shadow-1: 0 2px 10px rgba(60, 45, 25, .07);
  --shadow-2: 0 14px 36px rgba(60, 45, 25, .13);
  --radius: 16px;
  --header-h: 72px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

/* ---------- 共通レイアウト ---------- */
.inner { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.inner--narrow { max-width: 860px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--c-bg-alt); }

.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .en {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.sec-head .ja {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.4;
}
.sec-head .lead { margin-top: 18px; color: var(--c-ink-soft); max-width: 680px; }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--c-ink);
  color: var(--c-white);
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-1);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform .3s; }
.btn:hover { background: var(--c-accent); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-ink); box-shadow: none; }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); }
.btn--accent { background: var(--c-accent); }
.btn--accent:hover { background: var(--c-ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }

/* ---------- タグ ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 6px; }
.tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-ink-soft);
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); background: rgba(250, 247, 242, .94); }
.header-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.gnav { display: none; }
.header-cta { display: none; }
@media (min-width: 1024px) {
  .gnav { display: block; }
  .gnav ul { display: flex; gap: clamp(10px, 1.6vw, 26px); }
  .gnav a {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 2px;
    position: relative;
    white-space: nowrap;
  }
  .gnav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .gnav a:hover::after { transform: scaleX(1); }
  .header-cta { display: inline-flex; padding: 11px 24px; font-size: 14px; }
}

/* ハンバーガー / ドロワー */
.menu-btn {
  width: 48px; height: 48px;
  border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center; gap: 0;
  z-index: 120; position: relative;
}
.menu-btn span {
  display: block; width: 26px; height: 2px;
  background: var(--c-ink); margin: 3.5px 0;
  transition: transform .35s, opacity .25s;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.drawer {
  /* 2026-06-10 claude-fable-5 セッションターン数：1 ヘッダー(z100)より下にしてドロワー展開中もロゴを見せる */
  position: fixed; inset: 0; z-index: 95;
  background: var(--c-bg);
  padding: calc(var(--header-h) + 24px) 28px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer ul li { border-bottom: 1px solid var(--c-line); }
.drawer ul a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; font-weight: 600; font-size: 16px;
}
.drawer ul a svg { width: 14px; height: 14px; fill: var(--c-accent); }
.drawer .drawer-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.drawer .drawer-tel { text-align: center; font-family: var(--font-serif); font-size: 24px; letter-spacing: .06em; }
.drawer .drawer-tel small { display: block; font-size: 12px; color: var(--c-ink-soft); letter-spacing: .2em; }

/* ---------- ヒーロー（トップ） ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30, 22, 12, .62) 0%, rgba(30, 22, 12, .08) 45%, rgba(30, 22, 12, .18) 100%);
}
.hero .hero-copy {
  position: relative; z-index: 2;
  color: var(--c-white);
  padding: 0 24px clamp(72px, 12vh, 130px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 5.6vw, 58px);
  line-height: 1.55;
  letter-spacing: .08em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero .hero-sub {
  margin-top: 16px;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .14em;
  opacity: .92;
}
.hero .scroll-sign {
  position: absolute; right: 26px; bottom: 0; z-index: 2;
  color: var(--c-white);
  font-size: 10px; letter-spacing: .3em;
  writing-mode: vertical-rl;
  padding-bottom: 86px;
}
.hero .scroll-sign::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 1px; height: 72px;
  background: rgba(255, 255, 255, .85);
  animation: scrollline 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollline { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ヒーロー下お知らせバー */
.hero-news {
  position: relative; z-index: 3;
  margin: -34px auto 0;
  max-width: 760px;
  padding: 0 20px;
}
.hero-news a {
  display: flex; align-items: center; gap: 14px;
  background: var(--c-white);
  border-radius: 999px;
  padding: 14px 26px;
  box-shadow: var(--shadow-2);
  font-size: 14px;
  transition: transform .3s;
}
.hero-news a:hover { transform: translateY(-2px); }
.hero-news time { color: var(--c-ink-soft); font-size: 13px; flex-shrink: 0; }
.hero-news .badge {
  flex-shrink: 0;
  font-size: 11.5px; font-weight: 600;
  background: var(--c-bg-alt); color: var(--c-gold);
  padding: 3px 12px; border-radius: 999px;
}
.hero-news p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-news svg { width: 15px; height: 15px; fill: var(--c-accent); margin-left: auto; flex-shrink: 0; }

/* ---------- 下層ページヒーロー ---------- */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  height: clamp(240px, 34vw, 420px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(34, 25, 14, .66) 8%, rgba(34, 25, 14, .18) 70%);
}
.page-hero .inner { position: relative; z-index: 2; width: 100%; color: var(--c-white); }
.page-hero .en {
  display: block;
  font-family: var(--font-serif);
  letter-spacing: .26em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #f3d8b3;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.4vw, 44px);
  font-weight: 600;
  letter-spacing: .1em;
}
.page-hero--plain {
  background: linear-gradient(120deg, #5d4f3f, #8a7355);
}

/* パンくず */
.breadcrumb { padding: 14px 0; font-size: 12.5px; color: var(--c-ink-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--c-line); }
.breadcrumb a:hover { color: var(--c-accent); }

/* ---------- 理念 3カード ---------- */
.philosophy-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.philosophy-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s, box-shadow .35s;
}
.philosophy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.philosophy-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.philosophy-card .body { padding: 26px 26px 30px; }
.philosophy-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
}
.philosophy-card p { font-size: 14.5px; color: var(--c-ink-soft); }

/* ---------- 事業カード（トップ） ---------- */
.biz-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .biz-grid { grid-template-columns: 1fr 1fr; } }
.biz-card {
  --biz: var(--c-accent);
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.biz-card.is-acu { --biz: var(--c-acu); }
.biz-card.is-nurs { --biz: var(--c-nurs); }
.biz-card.is-disa { --biz: var(--c-disa); }
.biz-card.is-agri { --biz: var(--c-agri); }
.biz-card .photo { position: relative; overflow: hidden; }
.biz-card .photo img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; transition: transform .6s; }
.biz-card:hover .photo img { transform: scale(1.05); }
.biz-card .photo .en {
  position: absolute; left: 18px; bottom: 14px;
  color: var(--c-white);
  font-family: var(--font-serif);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}
.biz-card .photo::after {
  content: '';
  position: absolute; inset: auto 0 0;
  height: 5px;
  background: var(--biz);
}
.biz-card .body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.biz-card h3 { font-family: var(--font-serif); font-size: 23px; color: var(--biz); margin-bottom: 14px; }
.biz-card .facilities { font-size: 14px; color: var(--c-ink-soft); flex: 1; }
.biz-card .facilities li { padding-left: 1em; position: relative; }
.biz-card .facilities li::before { content: ''; position: absolute; left: 0; top: .85em; width: 6px; height: 6px; border-radius: 50%; background: var(--biz); }
.biz-card .facilities li small { color: var(--c-ink-soft); }
.biz-card .more {
  margin-top: 20px;
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--biz);
}
.biz-card .more svg { width: 15px; height: 15px; fill: currentColor; transition: transform .3s; }
.biz-card:hover .more svg { transform: translateX(4px); }

/* ---------- 汎用バナーカード（概要/採用/問合せ） ---------- */
.banner-card {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-1);
  transition: transform .35s, box-shadow .35s;
}
.banner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
@media (min-width: 768px) { .banner-card { grid-template-columns: 5fr 4fr; align-items: center; } }
.banner-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 8; }
.banner-card .body { padding: 30px; }
.banner-card h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 8px; }
.banner-card p { color: var(--c-ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.banner-grid { display: grid; gap: 26px; }

/* ---------- 事業ページ：施設セクション ---------- */
.facility { padding: clamp(56px, 8vw, 96px) 0; }
.facility + .facility { border-top: 1px solid var(--c-line); }
.facility-head { display: grid; gap: 28px; align-items: center; margin-bottom: 40px; }
@media (min-width: 900px) {
  .facility-head { grid-template-columns: 11fr 9fr; }
  .facility-head.is-flip .photo { order: 2; }
}
.facility-head .photo img { border-radius: var(--radius); box-shadow: var(--shadow-2); width: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.facility-head .label .cat {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--c-white);
  background: var(--facility-c, var(--c-accent));
  border-radius: 999px;
  padding: 5px 18px;
  margin-bottom: 14px;
}
.facility-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(25px, 3.4vw, 36px);
  font-weight: 600;
  line-height: 1.5;
}
.facility-head .desc { margin-top: 16px; color: var(--c-ink-soft); font-size: 15px; }

/* スタッフ */
.staff-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); margin-bottom: 48px; }
.staff-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  text-align: center;
}
.staff-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
/* 2026-06-10 claude-fable-5 セッションターン数：1 横長プレースホルダ画像は切り抜かず収める */
.staff-card img[src*="coming-soon"] { object-fit: contain; background: var(--c-bg-alt); padding: 26px; }
.staff-card .body { padding: 20px 18px 24px; }
.staff-card .role { font-size: 11.5px; letter-spacing: .14em; color: var(--facility-c, var(--c-accent)); font-weight: 700; }
.staff-card h4 { font-family: var(--font-serif); font-size: 19px; margin: 6px 0 10px; }
.staff-card h4 small { font-size: 11px; color: var(--c-ink-soft); font-weight: 400; margin-left: 4px; }
.staff-card p { font-size: 13px; color: var(--c-ink-soft); text-align: left; }

/* 店舗情報カード */
.info-card {
  display: grid;
  gap: 0;
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
@media (min-width: 900px) { .info-card { grid-template-columns: 1fr 1fr; } }
.info-card .slider { position: relative; min-height: 260px; }
.info-card .slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.info-card .slider img.is-active { opacity: 1; }
.info-card .slider img:first-child { position: relative; }
.info-card dl { padding: 30px 32px; }
.info-card dl > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px 0;
  font-size: 14.5px;
}
.info-card dl > div + div { border-top: 1px dashed var(--c-line); }
.info-card dt { font-weight: 700; color: var(--facility-c, var(--c-accent)); font-size: 13px; padding-top: 2px; letter-spacing: .08em; }
.info-card dd a { text-decoration: underline; text-underline-offset: 3px; }
.info-card dd a:hover { color: var(--c-accent); }
.info-card .name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; }

/* グループホームカード */
.gh-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.gh-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.gh-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gh-card .noimg {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background: var(--c-bg-alt);
  color: var(--c-ink-soft);
  font-size: 12.5px; letter-spacing: .2em;
}
.gh-card .body { padding: 18px 20px 22px; }
.gh-card h4 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 8px; color: var(--c-disa); }
.gh-card table { width: 100%; font-size: 13px; border-collapse: collapse; }
.gh-card th { text-align: left; color: var(--c-ink-soft); font-weight: 600; padding: 4px 10px 4px 0; white-space: nowrap; vertical-align: top; }
.gh-card td { padding: 4px 0; }
.gh-note {
  margin-top: 22px;
  background: var(--c-white);
  border-left: 4px solid var(--c-disa);
  border-radius: 8px;
  padding: 16px 22px;
  font-size: 14px;
  box-shadow: var(--shadow-1);
}

/* 外部サイトバナー */
.ext-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .ext-grid { grid-template-columns: repeat(3, 1fr); } }
.ext-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.ext-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.ext-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.ext-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ext-card h4 { font-family: var(--font-serif); font-size: 18px; }
.ext-card p { font-size: 13.5px; color: var(--c-ink-soft); flex: 1; }
.ext-card .more { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--c-accent); }
.ext-card .more svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- 沿革タイムライン ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 34px; }
.timeline::before {
  content: '';
  position: absolute; left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--c-line);
}
.timeline li { position: relative; padding: 0 0 34px; }
.timeline li::before {
  content: '';
  position: absolute; left: -31px; top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 3px solid var(--c-gold);
}
.timeline li.is-corp::before { background: var(--c-accent); border-color: var(--c-accent); }
.timeline .year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-ink);
}
.timeline .year small { font-size: 12.5px; color: var(--c-ink-soft); margin-left: 8px; font-weight: 400; }
.timeline p { font-size: 14.5px; color: var(--c-ink-soft); margin-top: 4px; }
.timeline li.is-corp .year { color: var(--c-accent); }
.timeline li.is-corp p { font-weight: 600; color: var(--c-ink); }

/* ---------- 会社（グループ概要） ---------- */
.company-block + .company-block { margin-top: clamp(56px, 7vw, 88px); }
.company-block > h3 {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.6vw, 27px);
  padding: 14px 24px;
  background: var(--c-white);
  border-left: 5px solid var(--c-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  margin-bottom: 30px;
}
.overview-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.overview-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.overview-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.overview-card .body { padding: 20px 22px 24px; }
.overview-card h4 { font-family: var(--font-serif); font-size: 17.5px; margin-bottom: 8px; }
.overview-card p { font-size: 13px; color: var(--c-ink-soft); }

/* ---------- お知らせ ---------- */
.news-list { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.news-list a {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  background: var(--c-white);
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: var(--shadow-1);
  transition: transform .3s, box-shadow .3s;
}
.news-list a:hover { transform: translateX(4px); box-shadow: var(--shadow-2); }
.news-list time { font-size: 13.5px; color: var(--c-ink-soft); }
.news-list .badge { font-size: 11.5px; font-weight: 600; background: var(--c-bg-alt); color: var(--c-gold); padding: 3px 12px; border-radius: 999px; }
.news-list p { width: 100%; font-weight: 600; }
@media (min-width: 768px) { .news-list p { width: auto; flex: 1; } }

.article { max-width: 780px; margin: 0 auto; background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow-1); padding: clamp(28px, 5vw, 56px); }
.article .meta { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.article h1 { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 30px); line-height: 1.6; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 2px solid var(--c-line); }
.article .content p { margin-bottom: 1.2em; }

/* ---------- フォーム ---------- */
.form-card { max-width: 780px; margin: 0 auto; background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow-1); padding: clamp(28px, 5vw, 56px); }
.form-row { margin-bottom: 26px; }
.form-row > label, .form-row > .label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14.5px;
  margin-bottom: 10px;
}
.req, .opt {
  font-size: 10.5px; font-weight: 700;
  padding: 2px 10px; border-radius: 4px;
  color: var(--c-white); letter-spacing: .1em;
}
.req { background: var(--c-accent); }
.opt { background: #b6a98a; }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"], .form-row select, .form-row textarea {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-bg);
  transition: border-color .3s, box-shadow .3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(217, 123, 41, .15);
}
.form-row textarea { min-height: 170px; resize: vertical; }
.form-agree { text-align: center; font-size: 14px; margin: 30px 0 22px; }
.form-agree a { text-decoration: underline; text-underline-offset: 3px; color: var(--c-accent); }
.form-agree input { width: 16px; height: 16px; accent-color: var(--c-accent); margin-right: 8px; vertical-align: -2px; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 260px; justify-content: center; border: 0; cursor: pointer; font: inherit; font-weight: 600; }

/* 連絡先パネル */
.contact-aside {
  max-width: 780px; margin: 28px auto 0;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
}
.contact-aside .tel {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: .04em;
  font-weight: 600;
}
.contact-aside .tel a { color: inherit; }
.contact-aside small { color: var(--c-ink-soft); display: block; margin-top: 4px; }

/* ---------- 採用 ---------- */
.recruit-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.recruit-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.recruit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.recruit-card img { aspect-ratio: 4 / 3; object-fit: cover; object-position: top; width: 100%; }
.recruit-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.recruit-card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; color: var(--c-accent); }
.recruit-card h4 { font-family: var(--font-serif); font-size: 18.5px; margin: 6px 0 14px; flex: 1; }
.recruit-card .more { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--c-accent); }
.recruit-card .more svg { width: 14px; height: 14px; fill: currentColor; }
.recruit-visual { max-width: 880px; margin: 0 auto; }
.recruit-visual img { border-radius: var(--radius); box-shadow: var(--shadow-2); width: 100%; }

/* ---------- CTA帯 ---------- */
.cta-band {
  background: linear-gradient(120deg, #54452f, #7c603b 55%, #9b7a44);
  color: var(--c-white);
  text-align: center;
  padding: clamp(56px, 8vw, 90px) 20px;
}
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(22px, 3.4vw, 32px); margin-bottom: 10px; }
.cta-band p { opacity: .85; font-size: 14.5px; margin-bottom: 28px; }
.cta-band .tel { font-family: var(--font-serif); font-size: clamp(28px, 4.6vw, 40px); letter-spacing: .05em; display: block; margin-bottom: 18px; }
.cta-band .tel a { color: inherit; }
.cta-band .btn { background: var(--c-white); color: var(--c-ink); }
.cta-band .btn:hover { background: var(--c-accent); color: var(--c-white); }

/* ---------- フッター ---------- */
.site-footer { background: #2b251d; color: #d8cfc2; padding: clamp(48px, 7vw, 80px) 0 0; font-size: 14px; }
.footer-grid { display: grid; gap: 40px; padding-bottom: 48px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 4fr 3fr 3fr 3fr; } }
.site-footer .brand img { height: 48px; background: var(--c-white); border-radius: 10px; padding: 6px; }
.site-footer .brand span { color: var(--c-white); }
.site-footer .f-tel { margin-top: 18px; font-family: var(--font-serif); font-size: 26px; color: var(--c-white); }
.site-footer .f-tel small { display: block; font-size: 11.5px; letter-spacing: .2em; color: #a89a87; }
.site-footer h4 {
  color: var(--c-white);
  font-size: 13px; letter-spacing: .18em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4135;
}
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { transition: color .3s; font-size: 13.5px; }
.site-footer ul a:hover { color: var(--c-accent); }
.site-footer ul a .ext { font-size: 10px; color: #a89a87; margin-left: 5px; }
.footer-bottom {
  border-top: 1px solid #4a4135;
  padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: #a89a87;
}
.footer-bottom a:hover { color: var(--c-accent); }

/* ページトップ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none;
  transition: opacity .35s, background .3s;
}
.to-top.is-show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--c-accent); }
.to-top svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- スクロールリビール ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .scroll-sign::after { animation: none; }
}

/* 404 */
.notfound { text-align: center; padding: clamp(80px, 14vw, 160px) 20px; }
.notfound .code { font-family: var(--font-serif); font-size: clamp(64px, 10vw, 110px); color: var(--c-gold); line-height: 1; }
.notfound p { margin: 18px 0 30px; color: var(--c-ink-soft); }

/* プライバシー */
.policy-block { background: var(--c-white); border-radius: var(--radius); box-shadow: var(--shadow-1); padding: clamp(26px, 4vw, 44px); margin-bottom: 24px; }
.policy-block .num { font-family: var(--font-serif); color: var(--c-gold); font-size: 14px; letter-spacing: .2em; }
.policy-block h3 { font-family: var(--font-serif); font-size: 20px; margin: 6px 0 14px; }
.policy-block p { font-size: 14.5px; color: var(--c-ink-soft); margin-bottom: .8em; }

/* 2026-06-10 claude-fable-5 セッションターン数：12 */
/* ---------- MW WP Form（WP実環境のフォーム出力）用スタイル ---------- */
.mwform-wrap table { width: 100%; border-collapse: collapse; }
.mwform-wrap tr { display: block; margin-bottom: 22px; }
.mwform-wrap th, .mwform-wrap td { display: block; text-align: left; padding: 0; border: 0; background: none; width: auto; }
.mwform-wrap th { font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.mwform-wrap th span { font-size: 11px; color: var(--c-accent); margin-left: 6px; }
.mwform-wrap input[type="text"], .mwform-wrap input[type="tel"], .mwform-wrap input[type="email"], .mwform-wrap input[type="url"], .mwform-wrap select, .mwform-wrap textarea {
  width: 100%;
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: var(--c-bg);
  transition: border-color .3s, box-shadow .3s;
}
.mwform-wrap input:focus, .mwform-wrap select:focus, .mwform-wrap textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(217, 123, 41, .15);
}
.mwform-wrap textarea { min-height: 170px; resize: vertical; }
.mwform-wrap .error { display: block; color: #c0392b; font-size: 12.5px; margin-top: 5px; }
.mwform-wrap input[type="submit"], .mwform-wrap button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 230px;
  font-weight: 600; font-size: 15px;
  padding: 15px 34px; margin: 8px 6px 0;
  border: 0; border-radius: 999px; cursor: pointer;
  background: var(--c-accent); color: var(--c-white);
  box-shadow: var(--shadow-1);
  transition: background .3s, transform .3s;
}
.mwform-wrap input[type="submit"]:hover { background: var(--c-ink); transform: translateY(-2px); }
.mwform-wrap input[name="submitBack"], .mwform-wrap input[value="戻る"] { background: transparent; color: var(--c-ink); border: 1.5px solid var(--c-ink); box-shadow: none; }
.mwform-wrap .mw_wp_form { text-align: left; }

/* 2026-06-10 claude-fable-5 セッションターン数：24 */
/* ---------- アクセスマップ（旧サイトから移植したGoogleマップ埋め込み） ---------- */
.info-card .map { grid-column: 1 / -1; height: 300px; border-top: 1px solid var(--c-line); }
.info-card .map iframe { width: 100%; height: 100%; border: 0; display: block; }
