/* ============================================================
   さんらいず 採用LP - style.css
   Design direction: efila寄り配色 / 白＋クリーム＋暖色オレンジ＋ティール
   Ref: 01_structure/design-direction.md（HEXはゲート①で確定）
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Colors */
  --c-base:        #FFFFFF; /* 基調・白 */
  --c-secondary:   #FBF7F1; /* 温かみのあるクリーム背景 */
  --c-accent:      #EF8A3C; /* プライマリ（親しみ・CTA・暖色オレンジ） */
  --c-accent-h:    #DE7826; /* accent hover */
  --c-sub:         #3FA1A0; /* サブアクセント（信頼・安心・ティール） */
  --c-sub-h:       #34817F; /* sub hover */
  --c-line:        #EBE3D8; /* 淡い罫線・境界（暖色系） */
  --c-text:        #3A3330; /* 本文・見出し（温かみのある濃色） */
  --c-text-mid:    #7A7167; /* キャプション・補助テキスト */
  --c-white:       #FFFFFF;

  /* Typography */
  --ff-round: "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif; /* 見出し=丸ゴシック */
  --ff-sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;           /* 本文 */

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 12px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 920px;
  --header-h: 78px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-base);
  line-height: 1.85;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-round);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.45;
  margin: 0;
}

/* section anchor offset（固定ヘッダー分） */
section[id] { scroll-margin-top: var(--header-h); }

.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }

/* スマホ時のみ有効な改行 */
.br-sp { display: none; }
@media (max-width: 600px) { .br-sp { display: inline; } }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 16px; min-width: 240px; }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 6px 16px rgba(239, 138, 60, 0.28);
}
.btn--primary:hover { background: var(--c-accent-h); transform: translateY(-2px); }

.btn--ghost {
  background: var(--c-white);
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--ghost:hover { background: var(--c-accent); color: var(--c-white); transform: translateY(-2px); }

/* ---------- 4. Placeholder（写真差し替え前） ---------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, #efe9e0 0 12px, #e9e2d7 12px 24px);
  border: 2px dashed #cbbfae;
  border-radius: 20px;
  color: var(--c-text-mid);
  text-align: center;
}
.ph__label { font-family: var(--ff-round); font-weight: 700; letter-spacing: 0.12em; font-size: 16px; }
.ph__label small { display: inline-block; margin-top: var(--space-2); font-size: 12px; letter-spacing: 0.04em; font-weight: 500; line-height: 1.6; }
.ph--fv { aspect-ratio: 4 / 5; width: 100%; }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.2) blur(6px);
  z-index: 100;
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 14px rgba(58, 51, 48, 0.08); }
.site-header__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.site-header__logo { flex: 0 0 auto; }
.site-header__logo img { height: 56px; width: auto; }
.site-header__nav { margin-left: auto; }
.site-header__nav-list { display: flex; gap: 28px; }
.site-header__nav-list a {
  font-family: var(--ff-round);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  padding: var(--space-2) 0;
  position: relative;
  transition: color 0.2s ease;
}
.site-header__nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-accent); transform: scaleX(0);
  transition: transform 0.2s ease;
}
.site-header__nav-list a:hover { color: var(--c-accent); }
.site-header__nav-list a:hover::after { transform: scaleX(1); }
.site-header__cta { flex: 0 0 auto; }
.site-header__menu-toggle { display: none; }

/* mobile header */
@media (max-width: 900px) {
  :root { --header-h: 60px; }
  .site-header__logo img { height: 54px; }
  .site-header__cta { display: none; }
  .site-header__menu-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; flex: 0 0 auto; margin-left: auto;
  }
  .site-header__menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--c-text);
    margin: 0 auto; transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-line);
    padding: var(--space-4) var(--space-5) var(--space-6);
    margin: 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 20px rgba(58, 51, 48, 0.08);
  }
  .site-header__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-header__nav-list { flex-direction: column; gap: 0; }
  .site-header__nav-list li { border-bottom: 1px solid var(--c-line); }
  .site-header__nav-list a { display: block; padding: var(--space-4) 0; font-size: 16px; }
}

/* ---------- 6. FV (full-bleed hero) ---------- */
.fv--hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 82vh, 780px);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--c-secondary);
}
.fv__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  z-index: 0;
}
.fv__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(251, 247, 241, 0.90) 0%,
    rgba(251, 247, 241, 0.70) 45%,
    rgba(251, 247, 241, 0.55) 100%);
}
.fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-7) var(--space-5);
}
.fv__copy { min-width: 0; max-width: 600px; }
/* 地域・業種・事業所名を h1 に含めるためのラッパー（見た目は従来のピル表示のまま） */
.fv__lead-row { display: block; font-size: 0; line-height: 0; } /* h1の行送りを継承させない（見た目を従来のpと同一に保つ） */
.fv__lead {
  display: inline-block;
  max-width: 100%;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-sub);
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-4);
  padding: 6px 14px;
  background: rgba(63, 161, 160, 0.1);
  border-radius: 16px;
  line-height: 1.6;
}
.fv__catch {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-5);
}
.fv__catch-sub {
  display: block;
  margin-top: var(--space-3);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--c-accent);
}
.fv__sub {
  font-size: 16px;
  color: var(--c-text);
  margin: 0 0 var(--space-6);
  max-width: 34em;
}
.fv__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.fv__badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 4px 12px rgba(58, 51, 48, 0.05);
}
.fv__badge-num { font-family: var(--ff-round); font-weight: 800; font-size: 16px; color: var(--c-text); }
.fv__badge-label { font-size: 12px; color: var(--c-text-mid); font-weight: 500; }
.fv__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.fv__note { margin: var(--space-4) 0 0; font-size: 14px; color: var(--c-text-mid); }
.fv__tel { font-family: var(--ff-round); font-weight: 800; font-size: 18px; color: var(--c-sub); letter-spacing: 0.02em; text-decoration: underline;  }
.fv__access { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); margin: var(--space-3) 0 0; padding: 0; }
.fv__access-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--c-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--c-line); border-radius: 999px;
  padding: 6px 14px; box-shadow: 0 2px 12px rgba(58, 51, 48, 0.06);
}
.fv__access-store { font-family: var(--ff-round); font-weight: 800; font-size: 13px; color: var(--c-sub); }
@media (min-width: 769px) {
  /* PC：写真を右パネルに寄せ、画像の左端をマスクでフェード＝クリーム地に自然に溶け込ませる */
  .fv__bg-img {
    width: 64%;
    left: auto;
    right: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.6) 26%, #000 46%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.6) 26%, #000 46%);
  }
  .fv__scrim { background: none; }
  .fv__copy { max-width: 560px; }
}

@media (max-width: 768px) {
  /* スマホ：FV背景写真の表示位置を少し左寄りに */
  .fv__bg-img { object-position: 40% center; }
  /* スマホ：FV下部（お電話案内）が写真に重なって読みにくいので、白い下地チップで可読性を確保 */
  .fv__note {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: var(--space-4) auto 0;
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(58, 51, 48, 0.08);
  }
  .fv__access { justify-content: center; }
}

@media (max-width: 600px) {
  .btn--lg { width: 100%; }
  .fv__note { text-align: center; }
  .fv__sub { font-size: 14px; }
}

/* ---------- 7. セクション共通見出し ---------- */
.section-head { text-align: center; margin-bottom: var(--space-8); }
.section-head__lead {
  font-family: var(--ff-round); font-weight: 700; font-size: 14px;
  letter-spacing: 0.24em; color: var(--c-accent); margin: 0 0 var(--space-2);
}
.section-head__title { font-size: clamp(24px, 4vw, 34px); font-weight: 800; line-height: 1.4; }
.section-head__accent { color: var(--c-accent); }

/* ---------- 8. 働く3つの理由 (#reasons) ---------- */
.reasons { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-base); }
.reasons__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-5); }
.reasons__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.reason-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 51, 48, 0.06);
}
.reason-card__media { position: relative; aspect-ratio: 16 / 9; background: var(--c-secondary); }
.reason-card__photo { width: 100%; height: 100%; object-fit: cover; }
.reason-card__num {
  position: absolute; top: 12px; left: 12px;
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-accent); color: var(--c-white);
  font-family: var(--ff-round); font-weight: 800; font-size: 18px; line-height: 1;
  box-shadow: 0 6px 14px rgba(58, 51, 48, 0.18);
}
.reason-card__content { padding: 24px 16px; }
.reason-card__tag {
  font-family: var(--ff-round); font-weight: 700; font-size: 14px;
  color: var(--c-accent); margin: 0 0 var(--space-2);
}
.reason-card__title { font-size: 20px; font-weight: 800; line-height: 1.5; margin: 0 0 var(--space-3); }
.reason-card__body { font-size: 16px; color: var(--c-text-mid); line-height: 1.9; margin: 0; }

@media (min-width: 768px) {
  .reasons__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  .reason-card__body { font-size: 14px; }
}

/* ---------- 9. 一日の流れ (#flow) ---------- */
.flow { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-secondary); }
.flow__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--space-5); }
.flow__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.flow__photo {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 20px; box-shadow: 0 14px 34px rgba(58, 51, 48, 0.14);
}
.flow__list { position: relative; }
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 20px;
  padding-bottom: 28px;
}
.flow__item:last-child { padding-bottom: 0; }
.flow__marker { position: relative; }
.flow__marker::before { /* 縦ライン */
  content: ""; position: absolute; left: 9px; top: 6px; bottom: -28px;
  width: 2px; background: var(--c-line);
}
.flow__item:last-child .flow__marker::before { display: none; }
.flow__marker::after { /* ドット */
  content: ""; position: absolute; left: 3px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-accent); box-shadow: 0 0 0 4px rgba(239, 138, 60, 0.14);
}
.flow__time {
  display: block; font-family: var(--ff-round); font-weight: 800;
  font-size: 16px; color: var(--c-accent); line-height: 1.4;
}
.flow__act {
  margin: 2px 0 0; font-family: var(--ff-round); font-weight: 700;
  font-size: 18px; color: var(--c-text); line-height: 1.5;
}
@media (min-width: 860px) {
  .flow__grid { grid-template-columns: auto 440px; justify-content: center; gap: 56px; align-items: start; }
}
@media (max-width: 859px) {
  /* スマホ：写真をセクション全体の背景に（スクリムで可読性確保） */
  .flow {
    background:
      linear-gradient(rgba(251, 247, 241, 0.88), rgba(251, 247, 241, 0.88)),
      url('../assets/flow/flow.webp') center / cover no-repeat;
  }
  .flow__visual { display: none; }
}

/* ---------- 10. スタッフの声 (#voice) ---------- */
.voice { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-base); }
.voice__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-5); }
.voice__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.voice-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(58, 51, 48, 0.06);
  overflow: hidden;
}
.voice-card__mark {
  position: absolute; top: 8px; right: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px; line-height: 1; color: rgba(239, 138, 60, 0.16);
  pointer-events: none;
}
.voice-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.voice-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; flex: 0 0 auto;
  border: 3px solid var(--c-white);
  box-shadow: 0 2px 10px rgba(58, 51, 48, 0.14), 0 0 0 1px var(--c-line);
  background: var(--c-secondary);
}
.voice-card__meta { min-width: 0; }
.voice-card__role { font-family: var(--ff-round); font-weight: 800; font-size: 18px; color: var(--c-text); margin: 0; line-height: 1.35; }
.voice-card__age {
  display: inline-block; margin-left: 8px;
  font-family: var(--ff-base); font-weight: 700; font-size: 12px;
  color: var(--c-accent); background: var(--c-secondary);
  padding: 2px 8px; border-radius: 999px; vertical-align: middle;
}
.voice-card__topic { font-size: 14px; font-weight: 500; color: var(--c-accent); margin: 4px 0 0; }
.voice-card__body { font-size: 16px; color: var(--c-text-mid); line-height: 1.9; margin: 0; }

@media (min-width: 768px) {
  .voice__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  /* トピックが1行/2行でも本文開始位置を揃える（2行分を確保） */
  .voice-card__topic { line-height: 1.5; min-height: 3em; }
}
@media (max-width: 600px) {
  .voice-card__body { font-size: 14px; }
}

/* ---------- 11. 募集要項 (#requirements) ---------- */
.requirements { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-secondary); }
.requirements__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-5); }
.req-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.req-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(58, 51, 48, 0.06);
}
.req-card__type {
  display: inline-block;
  font-family: var(--ff-round); font-weight: 800; font-size: 16px;
  color: var(--c-white); background: var(--c-accent);
  padding: 7px 20px; border-radius: 999px;
}
.req-card--part .req-card__type { background: var(--c-sub); }

.req-card__salary { margin: 20px 0 0; padding-bottom: 20px; border-bottom: 1px solid var(--c-line); }
.req-card__salary-label { display: block; font-size: 14px; font-weight: 500; color: var(--c-text-mid); }
.req-card__salary-num { display: block; font-family: var(--ff-round); font-weight: 800; font-size: 24px; color: var(--c-accent); margin-top: 4px; }
.req-card--part .req-card__salary-num { color: var(--c-sub); }
.req-card__salary-note { display: block; font-size: 12px; color: var(--c-text-mid); margin-top: 4px; }

.req-list { margin: 0; }
.req-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--c-line); align-items: baseline; }
.req-row:last-child { border-bottom: none; padding-bottom: 0; }
.req-row dt { font-family: var(--ff-round); font-weight: 700; font-size: 16px; color: var(--c-text); }
.req-row dd { margin: 0; font-size: 16px; color: var(--c-text-mid); line-height: 1.85; }

.req-must {
  margin-top: 24px;
  background: rgba(239, 138, 60, 0.06);
  border: 1px solid rgba(239, 138, 60, 0.22);
  border-radius: 20px;
  padding: 28px 28px;
}
.req-must__title { font-family: var(--ff-round); font-weight: 800; font-size: 20px; color: var(--c-text); margin: 0 0 16px; }
.req-must__list { display: grid; gap: 12px; }
.req-must__list li { position: relative; padding-left: 20px; font-size: 16px; color: var(--c-text); line-height: 1.7; }
.req-must__list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent);
}
.req-must__quals { display: inline-block; margin-top: 4px; font-size: 14px; color: var(--c-text-mid); }
.req-must__note { font-size: 14px; color: var(--c-text-mid); line-height: 1.8; margin: 16px 0 0; }

@media (min-width: 800px) {
  .req-grid { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
}
@media (max-width: 799px) {
  /* 1カラム時は高さ揃え不要のため給与注記（正社員※・バイト空行）を非表示 */
  .req-card__salary-note { display: none; }
  /* 1カラム時はラベル→値を縦並びに */
  .req-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  .req-row dt { font-size: 14px; }
  .req-row dd { font-size: 14px; }
  .req-must__title { font-size: 18px; }
  .req-card__salary-num { font-size: 22px; }
  .req-must__list li { font-size: 14px; }
  .req-must__note { font-size: 12px; }
}

/* ---------- 12. アクセス・見学案内 (#access) ---------- */
.access { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-base); }
.access__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-5); }
.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "list" "map" "aside";
  gap: 12px;
}
.access__list { grid-area: list; margin: 0; }
.access__map { grid-area: map; }
.access__aside {
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
  background: var(--c-secondary);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 40px 32px;
}
.access__area {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--ff-round); font-weight: 700; font-size: 16px; color: var(--c-text);
  margin: 0 0 14px;
}
.access__area-label {
  font-size: 13px; color: var(--c-white); background: var(--c-accent);
  border-radius: 999px; padding: 5px 14px; line-height: 1.4;
}
.access__row { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--c-line); align-items: baseline; }
.access__row:first-child { padding-top: 0; }
.access__row--tel { align-items: center; }
.access__row dt { font-family: var(--ff-round); font-weight: 700; font-size: 16px; color: var(--c-text); }
.access__row dd { margin: 0; font-size: 16px; color: var(--c-text-mid); line-height: 1.8; }
.access__tel { font-family: var(--ff-round); font-weight: 800; font-size: 22px; color: var(--c-sub); letter-spacing: 0.02em; text-decoration: underline; }

.access__note { font-size: 16px; color: var(--c-text-mid); line-height: 1.9; margin: 0 0 24px; }
.access__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.access__map { display: flex; flex-direction: column; }
.access__map-label { font-family: var(--ff-round); font-weight: 700; font-size: 16px; color: var(--c-text); margin: 0 0 8px; }
.access__map-frame { flex: 1 1 auto; min-height: 340px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(58, 51, 48, 0.08); }
.access__map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (min-width: 860px) {
  .access__grid {
    grid-template-columns: 1fr 1.1fr;
    grid-template-areas: "list map" "aside map";
    gap: 16px 48px;
  }
  .access__map-label { display: none; }
}
@media (max-width: 859px) {
  /* 地図↔見学欄の間隔は元の32pxに（grid gap 12px + margin 20px） */
  .access__aside { margin-top: 20px; }
}
@media (max-width: 600px) {
  .access__row dt { font-size: 14px; }
  .access__row dd { font-size: 14px; }
  .access__note { font-size: 14px; }
  .access__ctas .btn { width: 100%; }
  .access__tel { font-size: 20px; }
  .access__aside { padding: 32px 20px; }
  .access__area { font-size: 14px; }
}

/* 2事業所（秋川店・東あきる店）店舗カード */
.access__intro { text-align: center; font-size: 16px; color: var(--c-text-mid); margin: 0 0 32px; }
.access__stores { display: grid; grid-template-columns: 1fr; gap: 48px; margin: 0 0 32px; }
.access__store { min-width: 0; }
.access__store-name {
  font-family: var(--ff-round); font-weight: 800; font-size: 20px; color: var(--c-text);
  margin: 0 0 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.access__store-badge {
  font-family: var(--ff-round); font-weight: 700; font-size: 12px; color: var(--c-white);
  background: var(--c-accent); border-radius: 999px; padding: 4px 12px; line-height: 1.5;
}
.access__store .access__list { margin: 0 0 16px; }
.access__store .access__map-frame { min-height: 0; height: 360px; }
.access__store .access__map-frame iframe { min-height: 0; height: 100%; }
@media (min-width: 860px) {
  .access__stores { grid-template-columns: 1fr 1fr; gap: 64px; }
}
@media (max-width: 600px) {
  .access__intro { font-size: 14px; }
  .access__store-name { font-size: 18px; }
}

/* ---------- 13. エントリー（見学・応募）(#entry) ---------- */
.entry { padding: clamp(64px, 10vw, 100px) 0; background: var(--c-secondary); }
.entry__inner { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 var(--space-5); }
.entry__lead { text-align: center; font-size: 16px; color: var(--c-text-mid); line-height: 1.9; margin: 0 0 40px; }
.entry__tel { font-family: var(--ff-round); font-weight: 800; color: var(--c-sub); text-decoration: underline; white-space: nowrap; }

.entry-form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 14px 40px rgba(58, 51, 48, 0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.form-row:first-child { padding-top: 0; }
.form-label {
  font-family: var(--ff-round); font-weight: 700; font-size: 16px;
  color: var(--c-text); padding-top: 12px; line-height: 1.5;
}
.form-label__note { font-family: var(--ff-sans); font-weight: 400; font-size: 12px; color: var(--c-text-mid); }
.form-req {
  display: inline-block; margin-left: 6px; vertical-align: middle;
  font-family: var(--ff-sans); font-weight: 700; font-size: 11px;
  color: var(--c-white); background: var(--c-accent);
  padding: 2px 8px; border-radius: 999px; letter-spacing: 0.02em;
}
.form-field { min-width: 0; }
.form-control {
  width: 100%;
  font-family: var(--ff-sans); font-size: 16px; color: var(--c-text);
  background: var(--c-secondary);
  border: 1px solid var(--c-line); border-radius: 12px;
  padding: 12px 14px; line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none; appearance: none;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23EF8A3C' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
/* 未選択（プレースホルダ）時は淡色、選択肢は通常色 */
select.form-control:invalid { color: #bbafa0; }
select.form-control option { color: var(--c-text); }
.form-control::placeholder { color: #bbafa0; }
.form-control:focus {
  outline: none; background: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(239, 138, 60, 0.16);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-field--choices { display: flex; flex-wrap: wrap; gap: 10px 20px; padding-top: 8px; }
.form-choice {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; color: var(--c-text); cursor: pointer; line-height: 1.5;
}

/* カスタムラジオ／チェックボックス（塗りが縁からはみ出さないよう内側描画） */
.form-choice input,
.form-consent__label input {
  -webkit-appearance: none; appearance: none; margin: 0;
  width: 20px; height: 20px; flex: 0 0 auto; position: relative; cursor: pointer;
  background: var(--c-white); border: 2px solid #cbbfae;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-choice input[type="radio"] { border-radius: 50%; }
.form-choice input[type="checkbox"],
.form-consent__label input[type="checkbox"] { border-radius: 6px; }

.form-choice input:focus-visible,
.form-consent__label input:focus-visible {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(239, 138, 60, 0.18);
}

/* ラジオ：選択時は内側に一回り小さいドット */
.form-choice input[type="radio"]:checked { border-color: var(--c-accent); }
.form-choice input[type="radio"]:checked::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--c-accent);
}

/* チェックボックス：選択時は塗り＋白いチェック */
.form-choice input[type="checkbox"]:checked,
.form-consent__label input[type="checkbox"]:checked {
  background: var(--c-accent); border-color: var(--c-accent);
}
.form-choice input[type="checkbox"]:checked::after,
.form-consent__label input[type="checkbox"]:checked::after {
  content: ""; position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px; height: 10px;
  border: solid var(--c-white); border-width: 0 2px 2px 0;
}

.form-consent { margin: 24px 0 4px; text-align: center; }
.form-consent__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; color: var(--c-text); cursor: pointer;
}
.form-consent__link {
  color: var(--c-sub); text-decoration: underline; cursor: pointer;
  font: inherit; padding: 0; background: none; border: none;
}
.form-consent__link:hover { color: var(--c-sub-h); }
.form-consent__note {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 14px; color: var(--c-text-mid); margin: 8px 0 0;
}

/* インラインバリデーションのエラー表示 */
.form-error {
  margin: 8px 0 0; color: #d64545; font-size: 13px; font-weight: 600; line-height: 1.6;
}
.form-field--choices .form-error { flex-basis: 100%; width: 100%; }
.form-consent .form-error { text-align: center; }
.form-field.has-error .form-control {
  border-color: #d64545; background: #fdf5f5;
}
.form-field.has-error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.14);
}

.entry-form__submit { margin-top: 28px; text-align: center; }
.entry-form__submit .btn { min-width: 280px; }
.entry-form__hint { font-size: 14px; color: var(--c-text-mid); margin: 14px 0 0; }

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .form-label { padding-top: 0; font-size: 15px; }
  .form-field--choices { padding-top: 0; }
  .entry-form__submit .btn { width: 100%; min-width: 0; }
}
@media (max-width: 600px) {
  .entry__lead { font-size: 14px; }
}

/* ---------- 14. フッター ---------- */
.site-footer { background: var(--c-text); color: rgba(255, 255, 255, 0.82); }
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto; padding: clamp(48px, 8vw, 72px) var(--space-5) 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px;
}
.site-footer__brand, .site-footer__nav, .site-footer__contact { min-width: 0; }
.site-footer__tagline, .site-footer__contact-addr { overflow-wrap: anywhere; }
.site-footer__logo {
  display: block; width: auto; height: 60px; background: var(--c-white);
  border-radius: 12px; padding: 8px 14px; box-sizing: content-box;
}
.site-footer__tagline { margin: 20px 0 0; font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, 0.72); }

.site-footer__nav-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-footer__nav-list a {
  color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 15px;
  font-family: var(--ff-round); font-weight: 500; transition: color 0.2s ease;
}
.site-footer__nav-list a:hover { color: var(--c-accent); }

.site-footer__contact-name { margin: 0 0 12px; font-family: var(--ff-round); font-weight: 700; font-size: 16px; color: var(--c-white); }
.site-footer__contact-addr { margin: 0 0 14px; font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, 0.72); }
.site-footer__contact-tel { margin: 0 0 22px; display: flex; align-items: baseline; gap: 10px; }
.site-footer__contact-tel span {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 4px; padding: 1px 6px;
}
.site-footer__contact-tel a {
  font-family: var(--ff-round); font-weight: 800; font-size: 22px; color: var(--c-white);
  text-decoration: underline; letter-spacing: 0.02em;
}
.site-footer__cta { display: inline-flex; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px var(--space-5);
}
.site-footer__privacy {
  font: inherit; font-size: 12px; color: rgba(255, 255, 255, 0.72);
  background: none; border: none; padding: 0; cursor: pointer; text-decoration: underline;
  font-family: var(--ff-round);
}
.site-footer__privacy:hover { color: var(--c-accent); }
.site-footer__copy {
  margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.55); text-align: center;
}

/* ---------- 15. モーダル（個人情報の取り扱い）---------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(58, 51, 48, 0.55); backdrop-filter: blur(2px);
  animation: overlayIn 0.22s ease;
}
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 640px; max-height: 86vh;
  background: var(--c-white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(58, 51, 48, 0.28);
  display: flex; flex-direction: column;
  animation: modalIn 0.22s ease;
}
/* 閉じるアニメーション */
.modal.is-closing .modal__overlay { animation: overlayOut 0.2s ease forwards; }
.modal.is-closing .modal__dialog { animation: modalOut 0.2s ease forwards; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes modalOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(12px); } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes overlayOut { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .modal__dialog, .modal__overlay,
  .modal.is-closing .modal__dialog, .modal.is-closing .modal__overlay { animation: none; }
}
.modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; font-size: 26px; line-height: 1;
  color: var(--c-text-mid); background: var(--c-secondary);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, color 0.2s ease;
}
.modal__close:hover { background: var(--c-line); color: var(--c-text); }
.modal__body { overflow-y: auto; padding: clamp(28px, 5vw, 44px); -webkit-overflow-scrolling: touch; }
.modal__title { font-size: 22px; color: var(--c-text); margin: 0 0 16px; padding-right: 32px; }
.modal__lead { font-size: 15px; color: var(--c-text-mid); line-height: 1.9; margin: 0 0 20px; }
.modal__h3 { font-size: 16px; color: var(--c-text); margin: 22px 0 6px; }
.modal__body p { font-size: 14px; color: var(--c-text-mid); line-height: 1.9; margin: 0; }
.modal__list { margin: 6px 0 0; padding-left: 1.2em; list-style: disc; }
.modal__list li { font-size: 14px; color: var(--c-text-mid); line-height: 1.9; }
.modal__date { margin-top: 24px !important; font-size: 13px; color: var(--c-text-mid); }
body.modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .modal__title { font-size: 20px; }
}

@media (max-width: 860px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
