@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELL child theme for 株式会社 西日本青果
    Version: 2.0.0
    Author: add9
    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ========================================
   0. デザイントークン (:root)
   ======================================== */
:root {
  --accent: #2E6B45;        /* リーフグリーン（アクセント） */
  --cream: #F4F1E8;         /* ページ背景 */
  --panel: #EDEEE3;         /* 帯セクション背景 */
  --card: #FCFBF7;          /* カード背景 */
  --text: #33291F;          /* 基本テキスト（ダークブラウン） */
  --text-soft: #5C5346;     /* 本文 */
  --text-mute: #857C6C;     /* 補足 */
  --text-faint: #9A917F;    /* 注記 */
  --line: #E2DCCB;          /* 境界線 */
  --line-2: #E8E2D2;        /* カード境界 */
  --line-3: #DAD3C0;        /* 区切り線（濃） */
  --line-4: #C9C0AA;        /* アウトラインボタン境界 */
  --dark: #33291F;          /* 濃背景 */
  --footer-bg: #2A2017;     /* フッター背景 */
  --maxw: 1280px;
  --pad: clamp(18px, 4vw, 48px);

  --font-base: 'Zen Kaku Gothic New', sans-serif;
  --font-disp: 'Zen Maru Gothic', sans-serif;
  --font-en: 'Jost', sans-serif;
}

/* ========================================
   1. ベース・リセット
   ======================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-base);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

/* 親テーマSWELLのコンテンツ幅制限を無効化（フルワイド出力のため） */
#content,
.l-content,
.l-mainArea { max-width: none !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }

/* セクション共通レイアウト */
.a9-wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* 矢印（Jost） */
.a9-arrow { font-family: var(--font-en); }

/* アイブロウ（— Label） */
.a9-eyebrow { display: flex; align-items: center; gap: 12px; }
.a9-eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent); flex: none; }
.a9-eyebrow span,
.a9-eyebrow__txt {
  font-family: var(--font-en); font-size: 12px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
}
.a9-eyebrow--plain::before { display: none; }

/* 見出し */
.a9-h2 {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 1.4; letter-spacing: .03em;
  color: var(--text); margin: 0;
}

/* ボタン */
.a9-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 15px 30px; font-size: 14.5px; letter-spacing: .05em; border-radius: 2px;
  transition: opacity .2s ease, border-color .2s ease, background .2s ease;
}
.a9-btn:hover { opacity: .88; }
.a9-btn--lg { padding: 16px 32px; font-size: 15px; }
.a9-btn--outline { background: none; color: var(--text); border: 1px solid var(--line-4); }
.a9-btn--outline:hover { opacity: 1; border-color: var(--text); }
.a9-btn--light { background: var(--cream); color: var(--accent); }
.a9-btn--light:hover { opacity: .9; }

/* フェードイン */
.js-fadeIn { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js-fadeIn.is-visible { opacity: 1; transform: none; }

@keyframes a9MenuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes a9FadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========================================
   2. ヘッダー
   ======================================== */
.a9-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: background;
}
.a9-header.is-scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 14px rgba(51,41,31,0.07);
}
.a9-header__inner {
  width: 100%; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.a9-header__logo { display: flex; align-items: center; }
.a9-header__logo img { height: 26px; width: auto; }

.a9-gnav {
  display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px);
  flex-wrap: wrap; justify-content: flex-end;
}
.a9-gnav__item {
  position: relative; padding: 8px 2px; font-size: 14px; letter-spacing: .04em;
  color: var(--text); white-space: nowrap; transition: color .2s ease;
}
.a9-gnav__item:hover { color: var(--accent); }
.a9-gnav__item.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent);
}
.a9-gnav__cta {
  margin-left: 6px; background: var(--accent); color: #fff;
  padding: 11px 20px; font-size: 13.5px; letter-spacing: .04em; border-radius: 2px;
  white-space: nowrap; transition: opacity .2s ease;
}
.a9-gnav__cta:hover { opacity: .88; }

/* ハンバーガー（SP用、デフォルト非表示） */
.a9-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; background: none; border: none; padding: 0;
}
.a9-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ========================================
   2-b. SPメニュー
   ======================================== */
.a9-spmenu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(244,241,232,0.98);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, visibility .28s ease;
}
.a9-spmenu.is-open { opacity: 1; visibility: visible; pointer-events: auto; animation: a9FadeIn .28s ease both; }
.a9-spmenu__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--pad); }
.a9-spmenu__logo { height: 24px; width: auto; }
.a9-spmenu__close { width: 44px; height: 44px; background: none; border: none; font-size: 24px; line-height: 1; color: var(--text); display: flex; align-items: center; justify-content: center; }
.a9-spmenu__nav {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 2px;
  padding: 0 clamp(24px, 7vw, 48px) 10vh; animation: a9MenuIn .32s ease both;
}
.a9-spmenu__nav a {
  text-align: left; border-bottom: 1px solid var(--line); padding: 18px 2px;
  font-family: var(--font-disp); font-size: 19px; color: var(--text);
}
.a9-spmenu__cta {
  margin-top: 24px; background: var(--accent); color: #fff; text-align: center;
  padding: 16px; font-size: 16px; border-radius: 2px; letter-spacing: .05em; border-bottom: none !important;
}

/* ========================================
   3. TOP — ヒーロー（フルワイド・フェードスライダー）
   ======================================== */
.a9-hero { position: relative; width: 100%; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.a9-hero__slider { position: absolute; inset: 0; z-index: 0; }
.a9-hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease; will-change: opacity;
  transform: scale(1.04);
}
.a9-hero__slide.is-active { opacity: 1; }
.a9-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,8vw,104px) var(--pad); }
/* テキストを包むフロストガラスのブロック（透過白＋ぼかし） */
.a9-hero__panel {
  position: relative;
  max-width: 720px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  padding: clamp(30px,4vw,52px);
  box-shadow: 0 24px 60px rgba(51,41,31,0.14);
}
.a9-hero__eyebrow { margin-bottom: 26px; }
.a9-hero__title {
  font-family: var(--font-disp); font-weight: 600; font-size: clamp(34px,5vw,60px);
  line-height: 1.42; letter-spacing: .02em; color: var(--text); margin: 0 0 28px;
}
.a9-hero__lead { font-size: clamp(15px,1.1vw,17px); line-height: 2.1; color: var(--text-soft); max-width: 30em; margin: 0 0 36px; }
.a9-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.a9-hero__btns .a9-btn { padding: 16px 30px; font-size: 15px; }

/* ========================================
   4. TOP — 挨拶バンド
   ======================================== */
.a9-greeting { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.a9-greeting__inner { max-width: 980px; margin: 0 auto; padding: clamp(56px,7vw,104px) var(--pad); text-align: center; }
.a9-greeting__label { font-family: var(--font-en); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin: 0 0 22px; }
.a9-greeting__txt { font-family: var(--font-disp); font-size: clamp(22px,2.6vw,32px); line-height: 1.8; letter-spacing: .04em; color: var(--text); margin: 0; }
.a9-greeting__btn { margin-top: 38px; }

/* ========================================
   5. TOP — 3つの柱（カードグリッド）
   ======================================== */
.a9-pillars { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,120px) var(--pad); }
.a9-pillars__head { margin-bottom: 48px; }
.a9-pillars__head .a9-eyebrow { margin-bottom: 16px; }
.a9-pillars__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.a9-pillar { background: var(--card); border: 1px solid var(--line-2); padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; }
.a9-pillar__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.a9-pillar__no { font-family: var(--font-en); font-size: 13px; letter-spacing: .18em; color: var(--accent); }
.a9-pillar__jp { font-family: var(--font-disp); font-size: 15px; color: var(--text-mute); }
.a9-pillar__img { width: 100%; height: 160px; object-fit: cover; border-radius: 3px; margin-bottom: 24px; }
.a9-pillar__title { font-family: var(--font-disp); font-weight: 600; font-size: 19px; line-height: 1.6; color: var(--text); margin: 0 0 14px; }
.a9-pillar__body { font-size: 14.5px; line-height: 1.95; color: var(--text-soft); margin: 0; }
.a9-pillars__btn { margin-top: clamp(36px,4vw,52px); }

/* ========================================
   6. TOP — 取扱商品ティーザー（グリーン帯）
   ======================================== */
.a9-prodteaser { background: var(--accent); color: var(--cream); }
.a9-prodteaser__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,110px) var(--pad); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px,5vw,72px); align-items: center; }
.a9-prodteaser__label { font-family: var(--font-en); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: rgba(244,241,232,.7); }
.a9-prodteaser__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(26px,3.4vw,40px); line-height: 1.45; letter-spacing: .03em; margin: 18px 0 22px; }
.a9-prodteaser__lead { font-size: 15px; line-height: 2.05; color: rgba(244,241,232,.82); max-width: 28em; margin: 0 0 34px; }
.a9-chips { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.a9-chip { border: 1px solid rgba(244,241,232,.4); color: var(--cream); padding: 9px 16px; border-radius: 100px; font-size: 13.5px; letter-spacing: .03em; }

/* ========================================
   7. 旬の食品案内 — カードグリッド共通
   ======================================== */
.a9-seasonal-teaser { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,120px) var(--pad); }
.a9-seasonal-teaser__head { margin-bottom: 40px; }
.a9-seasonal-teaser__head .a9-eyebrow { margin-bottom: 16px; }

.a9-postgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.a9-postgrid--lg { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.a9-postcard {
  display: flex; flex-direction: column; text-align: left;
  background: var(--card); border: 1px solid var(--line-2); overflow: hidden;
  color: inherit; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.a9-postcard:hover { border-color: var(--line-4); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(51,41,31,.07); }
.a9-postcard__img { width: 100%; height: 190px; object-fit: cover; }
.a9-postgrid--lg .a9-postcard__img { height: 200px; }
.a9-postcard__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.a9-postgrid--lg .a9-postcard__body { padding: 24px 26px 28px; }
.a9-postcard__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.a9-postcard__title { font-family: var(--font-disp); font-weight: 600; font-size: 17px; line-height: 1.6; color: var(--text); margin: 0 0 10px; }
.a9-postgrid--lg .a9-postcard__title { font-size: 18px; margin-bottom: 12px; }
.a9-postcard__excerpt { font-size: 13.5px; line-height: 1.85; color: #776E60; margin: 0; }
.a9-postgrid--lg .a9-postcard__excerpt { line-height: 1.9; margin-bottom: 18px; flex: 1; }
.a9-postcard__foot { font-size: 12.5px; color: var(--text-mute); letter-spacing: .04em; }

.a9-season-badge { color: #fff; font-size: 11px; letter-spacing: .08em; padding: 4px 10px; border-radius: 2px; white-space: nowrap; }
.a9-cat-en { font-family: var(--font-en); font-size: 11px; letter-spacing: .16em; color: var(--accent); }
.a9-post-date { font-family: var(--font-en); font-size: 12px; letter-spacing: .06em; color: var(--text-mute); }
.a9-post-date--auto { margin-left: auto; }
.a9-seasonal-teaser__btn { margin-top: clamp(36px,4vw,52px); }

/* ========================================
   8. TOP — 会社スナップショット
   ======================================== */
.a9-snapshot { background: var(--panel); border-top: 1px solid var(--line); }
.a9-snapshot__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,96px) var(--pad); }
.a9-snapshot__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.a9-stat__num { font-family: var(--font-en); font-size: clamp(32px,4vw,52px); color: var(--accent); line-height: 1; }
.a9-stat__num small { font-size: .45em; }
.a9-stat__label { font-size: 13px; color: var(--text-mute); margin-top: 8px; letter-spacing: .06em; }
.a9-snapshot__btn { text-align: center; margin-top: 48px; }

/* ========================================
   9. 固定ページ — ページヒーロー
   ======================================== */
.a9-pagehero { position: relative; overflow: hidden; background: var(--card); border-bottom: 1px solid var(--line); }
.a9-pagehero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: .12; }
.a9-pagehero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,8vw,96px) var(--pad); min-height: clamp(210px,26vw,290px); display: flex; flex-direction: column; justify-content: center; }
.a9-pagehero__en { font-family: var(--font-en); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin: 0; }
.a9-pagehero__title { font-family: var(--font-disp); font-weight: 700; font-size: clamp(30px,4.4vw,48px); line-height: 1.4; letter-spacing: .03em; color: var(--text); margin: 18px 0 0; }
.a9-pagehero__sub { font-size: clamp(15px,1.1vw,17px); line-height: 1.95; color: var(--text-soft); max-width: 36em; margin: 16px 0 0; }

/* ========================================
   10. 私たちの考え方
   ======================================== */
.a9-philo-intro { max-width: 880px; margin: 0 auto; padding: clamp(56px,7vw,104px) var(--pad); }
.a9-philo-intro__lead { font-family: var(--font-disp); font-size: clamp(19px,2vw,24px); line-height: 1.95; letter-spacing: .03em; color: var(--text); margin: 0 0 36px; }
.a9-philo-intro__body { font-size: clamp(15px,1.1vw,16.5px); line-height: 2.2; color: var(--text-soft); margin: 0; }

.a9-pillars-rows { background: var(--panel); border-top: 1px solid var(--line); }
.a9-pillars-rows__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,120px) var(--pad); }
.a9-pillars-rows__head { margin-bottom: 50px; }
.a9-pillars-rows__head .a9-eyebrow { margin-bottom: 16px; }
.a9-prow { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px,4vw,64px); align-items: center; padding: clamp(32px,4vw,52px) 0; border-top: 1px solid var(--line-3); }
.a9-prow__img { width: 100%; height: clamp(220px,22vw,300px); object-fit: cover; border-radius: 4px; }
.a9-prow__meta { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.a9-prow__no { font-family: var(--font-en); font-size: clamp(28px,3vw,40px); color: var(--accent); line-height: 1; }
.a9-prow__en { font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; color: var(--text-mute); }
.a9-prow__jp { font-family: var(--font-disp); font-size: 18px; color: var(--text); }
.a9-prow__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(20px,2vw,26px); line-height: 1.6; color: var(--text); margin: 0 0 16px; }
.a9-prow__body { font-size: 15px; line-height: 2.05; color: var(--text-soft); margin: 0; }
.a9-philo-cta { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,6vw,88px) var(--pad); text-align: center; }

/* ========================================
   11. 取扱商品
   ======================================== */
.a9-products { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad); display: flex; flex-direction: column; gap: clamp(40px,5vw,64px); }
.a9-prod-cat { display: grid; grid-template-columns: minmax(0, 260px) 1fr; gap: clamp(24px,4vw,56px); }
.a9-prod-cat + .a9-prod-cat { border-top: 1px solid var(--line); padding-top: clamp(40px,5vw,64px); }
.a9-prod-cat__en { font-family: var(--font-en); font-size: clamp(22px,2.4vw,30px); letter-spacing: .14em; color: var(--accent); }
.a9-prod-cat__jp { font-family: var(--font-disp); font-size: 22px; color: var(--text); margin-top: 6px; }
.a9-prod-cat__img { width: clamp(150px, 55%, 180px); aspect-ratio: 1; height: auto; object-fit: cover; border-radius: 50%; margin-top: 18px; }
.a9-prod-cat__body { padding-top: 6px; }
.a9-chips--light { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.a9-chip--light { background: var(--card); border: 1px solid var(--line-2); color: var(--text); padding: 11px 18px; border-radius: 2px; font-size: 14.5px; }
.a9-prod-cat__desc { font-size: 14.5px; line-height: 2.05; color: var(--text-soft); margin: 20px 0 0; max-width: 46em; }
.a9-prod-cat__note { font-size: 13.5px; color: var(--text-mute); margin: 14px 0 0; }

.a9-delivery { background: var(--accent); color: var(--cream); }
.a9-delivery__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,100px) var(--pad); }
.a9-delivery__label { font-family: var(--font-en); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: rgba(244,241,232,.7); }
.a9-delivery__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(24px,3vw,36px); line-height: 1.4; letter-spacing: .03em; margin: 16px 0 40px; }
.a9-delivery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.a9-delivery__card { border: 1px solid rgba(244,241,232,.35); padding: clamp(26px,3vw,38px); }
.a9-delivery__card-ttl { font-family: var(--font-disp); font-size: 22px; margin-bottom: 14px; }
.a9-delivery__card p { font-size: 15px; line-height: 1.95; color: rgba(244,241,232,.85); margin: 0; }
.a9-delivery__note { font-size: 13.5px; color: rgba(244,241,232,.7); margin: 24px 0 0; }

/* ========================================
   12. 旬の食品案内 — 一覧 / 詳細
   ======================================== */
.a9-seasonal-archive { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad); }
.a9-empty { text-align: center; color: var(--text-mute); padding: 60px 0; font-size: 15px; }

.a9-article { max-width: 820px; margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad); }
.a9-article__back { background: none; border: none; font-family: var(--font-en); font-size: 13px; letter-spacing: .1em; color: var(--text-mute); padding: 0; margin-bottom: 34px; display: inline-block; }
.a9-article__back:hover { color: var(--text); }
.a9-article__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.a9-article__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(24px,3.2vw,38px); line-height: 1.55; letter-spacing: .02em; color: var(--text); margin: 0 0 20px; }
.a9-article__sub { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--text-mute); border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 32px; }
.a9-article__hero { width: 100%; height: clamp(240px,32vw,420px); object-fit: cover; border-radius: 4px; margin-bottom: 36px; }
.a9-article__body { color: #4F473B; }
.a9-article__body p { font-size: clamp(15px,1.1vw,16.5px); line-height: 2.15; color: #4F473B; margin: 0 0 24px; }
.a9-article__body h2 { font-family: var(--font-disp); font-weight: 600; font-size: clamp(20px,2.4vw,26px); color: var(--text); margin: 40px 0 16px; }
.a9-article__body h3 { font-family: var(--font-disp); font-weight: 600; font-size: 18px; color: var(--text); margin: 32px 0 12px; }
.a9-article__body a { color: var(--accent); text-decoration: underline; }
.a9-article__body ul, .a9-article__body ol { margin: 0 0 24px; padding-left: 1.4em; }
.a9-article__body li { margin-bottom: 8px; line-height: 1.95; }
.a9-article__body img { border-radius: 4px; margin: 8px 0 24px; }
.a9-article__note { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-faint); }

/* ========================================
   13. 会社概要
   ======================================== */
.a9-info { max-width: 920px; margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad); }
.a9-info__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(20px,2.2vw,26px); color: var(--text); margin: 0 0 12px; }
.a9-info__date { font-size: 12px; color: var(--text-faint); margin-bottom: 24px; letter-spacing: .06em; }
.a9-info__row { display: grid; grid-template-columns: minmax(120px, 180px) 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.a9-info__k { font-size: 14px; color: var(--text-mute); letter-spacing: .04em; }
.a9-info__v { font-size: 15px; line-height: 1.8; color: var(--text); }

.a9-history { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.a9-history__inner { max-width: 920px; margin: 0 auto; padding: clamp(56px,7vw,100px) var(--pad); }
.a9-history__head { margin-bottom: 44px; }
.a9-history__head .a9-eyebrow { margin-bottom: 16px; }
.a9-history__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(24px,3vw,34px); color: var(--text); margin: 0; }
.a9-hrow { display: grid; grid-template-columns: minmax(120px, 170px) 1fr; gap: clamp(16px,3vw,40px); padding: 22px 0; border-top: 1px solid var(--line-3); }
.a9-hrow__era { font-family: var(--font-disp); font-size: 17px; color: var(--text); }
.a9-hrow__y { font-family: var(--font-en); font-size: 13px; letter-spacing: .1em; color: var(--accent); margin-top: 2px; }
.a9-hrow__t { font-size: 14.5px; line-height: 1.95; color: var(--text-soft); margin: 0; align-self: center; }

.a9-access { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,100px) var(--pad); }
.a9-access__head { margin-bottom: 36px; }
.a9-access__head .a9-eyebrow { margin-bottom: 16px; }
.a9-access__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(24px,3vw,34px); color: var(--text); margin: 0; }
.a9-access__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px,4vw,48px); align-items: stretch; }
.a9-access__klabel { font-size: 13px; color: var(--text-mute); margin-bottom: 6px; letter-spacing: .06em; }
.a9-access__addr { font-family: var(--font-disp); font-size: clamp(17px,1.6vw,20px); line-height: 1.8; color: var(--text); margin: 0 0 8px; }
.a9-access__addr-sub { font-size: 14.5px; line-height: 1.85; color: var(--text-soft); margin: 0 0 28px; }
.a9-access__contact { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--text); margin-bottom: 28px; }
.a9-access__contact span { color: var(--text-mute); letter-spacing: .06em; margin-right: 10px; }

/* 概略図マップ */
.a9-map { position: relative; min-height: 340px; background: #E6EEE8; border: 1px solid #D7E0D6; border-radius: 4px; overflow: hidden; }
.a9-map__sea { position: absolute; top: 0; left: 0; right: 0; height: 34%; background: #CFE0E8; }
.a9-map__road-h1 { position: absolute; top: 30%; left: 0; right: 0; height: 11px; background: #CDBFA0; }
.a9-map__road-h2 { position: absolute; top: 64%; left: 0; right: 0; height: 9px; background: #CDBFA0; }
.a9-map__road-v { position: absolute; top: 0; left: 30%; width: 9px; bottom: 0; background: #CDBFA0; }
.a9-map__lbl-sea { position: absolute; top: 24%; left: 5%; color: #7C93A0; font-size: 11px; letter-spacing: .1em; }
.a9-map__block1 { position: absolute; top: 33%; left: 42%; width: 120px; height: 64px; background: #fff; border: 1px solid #C7CFC6; border-radius: 2px; }
.a9-map__block2 { position: absolute; top: 46%; left: 60%; width: 90px; height: 80px; background: #fff; border: 1px solid #C7CFC6; border-radius: 2px; }
.a9-map__lbl-town { position: absolute; bottom: 6%; left: 8%; color: #8A9384; font-size: 11px; letter-spacing: .08em; }
.a9-map__lbl-hwy { position: absolute; top: 69%; right: 6%; color: #8A9384; font-size: 11px; letter-spacing: .08em; }
.a9-map__pin { position: absolute; top: 45%; left: 44%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; }
.a9-map__pin-label { background: var(--dark); color: var(--cream); font-size: 12px; letter-spacing: .06em; padding: 6px 12px; border-radius: 3px; white-space: nowrap; }
.a9-map__pin-tip { width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--dark); }
.a9-map__pin-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; margin-top: -2px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.a9-map__credit { position: absolute; bottom: 8px; right: 10px; font-size: 10px; color: #9AA79C; letter-spacing: .06em; }

/* リーフレットDL */
.a9-leaflet { background: var(--dark); color: var(--cream); }
.a9-leaflet__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,96px) var(--pad); }
.a9-leaflet__label { font-family: var(--font-en); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: rgba(244,241,232,.6); }
.a9-leaflet__title { font-family: var(--font-disp); font-weight: 600; font-size: clamp(22px,2.6vw,32px); line-height: 1.4; margin: 16px 0 12px; }
.a9-leaflet__lead { font-size: 14.5px; line-height: 1.9; color: rgba(244,241,232,.8); margin: 0 0 36px; max-width: 34em; }
.a9-leaflet__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.a9-dl-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: rgba(244,241,232,.06); border: 1px solid rgba(244,241,232,.25); padding: 24px 26px; border-radius: 3px; color: var(--cream); transition: background .2s ease; }
.a9-dl-card:hover { background: rgba(244,241,232,.12); }
.a9-dl-card__ttl { font-family: var(--font-disp); font-size: 17px; }
.a9-dl-card__sub { font-size: 12.5px; color: rgba(244,241,232,.6); margin-top: 4px; }
.a9-dl-card__pdf { font-family: var(--font-en); font-size: 13px; letter-spacing: .12em; white-space: nowrap; }

/* ========================================
   14. 求人・採用
   ======================================== */
.a9-careers { max-width: 880px; margin: 0 auto; padding: clamp(56px,8vw,104px) var(--pad); text-align: center; }
.a9-careers__badge { display: inline-block; background: var(--panel); border: 1px solid var(--line); border-radius: 100px; padding: 8px 22px; font-size: 13px; letter-spacing: .1em; color: var(--text-mute); margin-bottom: 32px; }
.a9-careers__txt { font-size: clamp(15px,1.2vw,17px); line-height: 2.1; color: var(--text-soft); margin: 0 auto 40px; max-width: 30em; }

/* ========================================
   15. お問い合わせ
   ======================================== */
.a9-contact { max-width: 760px; margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad); display: flex; flex-direction: column; gap: clamp(40px,5vw,56px); }
.a9-contact__h2 { font-family: var(--font-disp); font-weight: 700; font-size: clamp(20px,2.4vw,26px); color: var(--text); margin: 0 0 10px; }
.a9-contact__lead { font-size: 14.5px; line-height: 1.9; color: var(--text-soft); margin: 0 0 24px; }
.a9-contact__methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.a9-contact-card { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--line-2); border-radius: 10px; padding: 20px 22px; color: var(--text); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.a9-contact-card:hover { border-color: var(--accent); box-shadow: 0 6px 18px rgba(51,41,31,.08); transform: translateY(-2px); }
.a9-contact-card__icon { flex: none; width: 46px; height: 46px; border-radius: 50%; background: #EAF0E6; color: var(--accent); display: flex; align-items: center; justify-content: center; }
.a9-contact-card__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.a9-contact-card__label { font-family: var(--font-en); font-size: 11px; letter-spacing: .16em; color: var(--text-mute); }
.a9-contact-card__val { font-family: var(--font-disp); font-weight: 700; font-size: 20px; color: var(--accent); line-height: 1.2; white-space: nowrap; }
.a9-contact-card__val--mail { font-size: 16px; line-height: 1.3; white-space: normal; word-break: break-all; }
.a9-contact-card__note { font-size: 11.5px; color: var(--text-faint); }
.a9-contact__extra { margin-top: 16px; background: var(--panel); border-radius: 10px; padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.a9-contact__extra-row { display: flex; align-items: baseline; gap: 14px; }
.a9-contact__extra-k { flex: none; font-family: var(--font-en); font-size: 11px; letter-spacing: .16em; color: var(--text-mute); width: 56px; }
.a9-contact__extra-v { font-family: var(--font-disp); font-size: 16px; color: var(--text); }
.a9-contact__extra-v--addr { font-family: var(--font-base); font-size: 14px; line-height: 1.8; }

.a9-form-box { background: var(--card); border: 1px solid var(--line-2); padding: clamp(28px,3.5vw,44px); border-radius: 4px; }
.a9-form-box__h2 { font-family: var(--font-disp); font-weight: 700; font-size: clamp(20px,2.4vw,26px); color: var(--text); margin: 0 0 8px; }
.a9-form-box__lead { font-size: 14px; line-height: 1.85; color: var(--text-soft); margin: 0 0 24px; }
.a9-req { color: #C0432E; }
.a9-form { display: flex; flex-direction: column; gap: 18px; }
.a9-form label { display: block; }
.a9-form__label { display: block; font-size: 13px; color: var(--text-soft); margin-bottom: 7px; }
.a9-form input, .a9-form select, .a9-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid #D8D0BD; border-radius: 2px;
  font-size: 15px; font-family: inherit; background: #fff; color: var(--text);
}
.a9-form textarea { resize: vertical; }
.a9-form__submit { margin-top: 6px; background: var(--accent); color: #fff; border: none; padding: 16px; font-size: 15px; letter-spacing: .08em; border-radius: 2px; transition: opacity .2s ease; }
.a9-form__submit:hover { opacity: .88; }
.a9-form-thanks { text-align: center; padding: 30px 0; }
.a9-form-thanks__ttl { font-family: var(--font-disp); font-size: 22px; color: var(--accent); margin-bottom: 14px; }
.a9-form-thanks p { font-size: 14.5px; line-height: 1.9; color: var(--text-soft); margin: 0; }
.a9-form-thanks small { font-size: 12.5px; color: var(--text-faint); }
.is-hidden { display: none !important; }

/* プライバシーポリシー */
.a9-privacy { background: var(--panel); border-top: 1px solid var(--line); }
.a9-privacy__inner { max-width: 920px; margin: 0 auto; padding: clamp(56px,7vw,100px) var(--pad); }
.a9-privacy__head { margin-bottom: 22px; }
.a9-privacy__head .a9-eyebrow { margin-bottom: 16px; }
.a9-privacy__title { font-family: var(--font-disp); font-weight: 700; font-size: clamp(24px,3vw,34px); color: var(--text); margin: 0; }
.a9-privacy__intro { font-size: 15px; line-height: 2.05; color: var(--text-soft); margin: 0 0 40px; }
.a9-privacy__list { display: flex; flex-direction: column; gap: 32px; }
.a9-privacy__h3 { font-family: var(--font-disp); font-weight: 500; font-size: 17px; color: var(--text); margin: 0 0 10px; }
.a9-privacy__list p { font-size: 14.5px; line-height: 1.95; color: var(--text-soft); margin: 0; }
.a9-privacy__date { font-size: 13px; color: var(--text-faint); margin: 40px 0 0; letter-spacing: .04em; }

/* ========================================
   16. フッター
   ======================================== */
.a9-footer { background: var(--footer-bg); color: #D8CFBF; }
.a9-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,6vw,80px) var(--pad); }
.a9-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; align-items: start; }
.a9-footer__logo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.a9-footer__addr { font-size: 13.5px; line-height: 1.9; color: #A89D8A; margin: 20px 0 0; }
.a9-footer__tel { font-family: var(--font-en); font-size: 13px; letter-spacing: .08em; color: #A89D8A; margin: 14px 0 0; }
.a9-footer__nav { display: flex; flex-direction: column; gap: 12px; }
.a9-footer__nav a { font-size: 14px; color: #D8CFBF; transition: color .2s ease; }
.a9-footer__nav a:hover { color: #fff; }
.a9-footer__bottom { margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid #3D3225; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.a9-footer__slogan { font-family: var(--font-en); font-size: 13px; letter-spacing: .06em; color: #8C8170; }
.a9-footer__copy { font-family: var(--font-en); font-size: 12px; letter-spacing: .06em; color: #6F6555; }

/* トップへ戻る */
.a9-to-top {
  position: fixed; right: clamp(16px,3vw,32px); bottom: clamp(16px,3vw,32px); z-index: 70;
  width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--accent); color: #fff;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, filter .2s ease;
  box-shadow: 0 8px 22px rgba(51,41,31,0.24);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}
.a9-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.a9-to-top:hover { filter: brightness(1.08); }

/* ========================================
   17. レスポンシブ
   ======================================== */
@media (max-width: 880px) {
  .a9-gnav { display: none; }
  .a9-hamburger { display: flex; }
  .a9-prod-cat { grid-template-columns: 1fr; }
  .a9-prod-cat__img { width: clamp(140px, 40%, 170px); }
}
@media (max-width: 600px) {
  .a9-info__row { grid-template-columns: 1fr; gap: 6px; }
  .a9-hrow { grid-template-columns: 1fr; gap: 8px; }
  .a9-history__inner .a9-hrow__t { align-self: start; }
}
