@charset "UTF-8";

/* =============================================================================
   クイックカラーQ 採用サイト
   設計方針（構成提案書 §5）
   - 見出し・本文ともゴシック体。明朝は使用しない
   - 本文16-17px。スマートフォンでも縮小しない
   - 余白は取りすぎない。情報密度は保つ
   - 上品・高級に寄せすぎず「安心して働けそう」を優先
   - モバイルファースト
============================================================================= */

/* -----------------------------------------------------------------------------
   1. 変数
----------------------------------------------------------------------------- */
:root {
  /* ベース */
  --bg:            #faf8f4;  /* アイボリー */
  --bg-alt:        #f0ebe3;  /* ベージュ（セクション交互） */
  --bg-white:      #ffffff;

  /* テキスト */
  --text:          #3a3733;  /* チャコールグレー（真っ黒にしない） */
  --text-heading:  #2e2a26;  /* ダークブラウン */
  --text-mute:     #6d6862;

  /* アクセント：スモーキーグリーン */
  --accent:        #7a8b7f;
  --accent-deep:   #5c6e62;  /* CTA・強調 */
  --accent-pale:   #e8ede9;

  /* 罫線 */
  --line:          #e0d9cf;
  --line-soft:     #ebe5db;

  /* 正社員／パートの識別色（背景で明確に分ける） */
  --full-bg:       #eef1ee;
  --part-bg:       #f6f2ea;

  /* レイアウト */
  --wrap:          1080px;
  --wrap-narrow:   760px;
  --radius:        10px;
  --header-h:      64px;

  /* 追従CTAの高さ。本文末尾の余白確保に使う */
  --fixcta-h:      74px;
}

/* -----------------------------------------------------------------------------
   2. リセット・ベース
----------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* アンカー遷移時に固定ヘッダーへ潜り込まないようにする */
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック",
               Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  /* 追従CTAに最後のコンテンツが隠れないための逃げ */
  padding-bottom: var(--fixcta-h);
  /* 日本語の折り返しを禁則処理に従わせる。
     「アクロスプラザ東／神奈川店」のような不自然な分割を減らす */
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a { color: var(--accent-deep); }

h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 .6em;
  /* 見出しもゴシック。明朝は使わない */
}

p { margin: 0 0 1.2em; }
ul { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

/* キーボード操作時のフォーカスを明示（アクセシビリティ） */
:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  /* margin-inline / padding-inline は一部の環境で効かないことがあるため
     左右を個別に指定する（画面端に文字が貼り付いて「切れて見える」のを防ぐ） */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: var(--wrap-narrow);
}

/* スクリーンリーダー専用テキスト */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------------
   3. ヘッダー
   ロゴは高彩度のため表示サイズを抑え、周囲に余白を取る（構成提案書 §5）
----------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  /* ロゴ周囲の余白 */
  padding: 4px 6px 4px 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.brand-tag {
  font-size: 11px;
  color: var(--text-mute);
}

/* ハンバーガー */
.menu-btn {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-white);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.menu-btn span {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text-heading);
  transform: translateX(-50%);
  transition: transform .2s, opacity .2s;
}

.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 27px; }

.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ナビ（スマホ：ドロワー） */
.gnav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.gnav.is-open { max-height: 70vh; overflow-y: auto; }

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

.gnav li { margin: 0; border-bottom: 1px solid var(--line-soft); }

.gnav a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

.gnav .nav-cta {
  margin-top: 12px;
  background: var(--accent-deep);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
}

.gnav li:last-child { border-bottom: 0; }

/* -----------------------------------------------------------------------------
   4. セクション共通
----------------------------------------------------------------------------- */
.section {
  padding: 52px 0;
}

.section-alt { background: var(--bg-alt); }
.section-white { background: var(--bg-white); }

.section-title {
  font-size: 22px;
  margin-bottom: 8px;
  /* 見出し左のアクセント罫 */
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}

.section-lead {
  color: var(--text-mute);
  margin-bottom: 28px;
  font-size: 15px;
}

/* -----------------------------------------------------------------------------
   5. ファーストビュー
----------------------------------------------------------------------------- */
.fv {
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
}

.fv-inner {
  /* 上下のみ指定する。padding のショートハンドで左右に 0 を書くと
     .container の左右余白（20px）を打ち消し、文字が画面端に貼り付いてしまう */
  padding-top: 34px;
  padding-bottom: 40px;
}

.fv-title {
  /* 画面幅に応じて 26〜30px の範囲で伸縮させる。
     iPhone SE（320px）でも端に貼り付かず、行が窮屈にならないようにする */
  font-size: clamp(26px, 7.6vw, 30px);
  line-height: 1.45;
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.fv-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* FV内の強調（カットなし・パーマなし）
   本サイトで最も重要な訴求点のため、色だけでなく下線でも示す */
.fv-sub strong {
  color: var(--text-heading);
  font-weight: 700;
  background: linear-gradient(transparent 62%, #d5e0d8 62%);
  padding: 0 2px;
}

.fv-shops {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 26px;
  font-size: 15px;
}

.fv-shops-head {
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.fv-shops ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv-shops li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 2px;
  /* 「アクロスプラザ東／神奈川店」のような分割を避け、
     店舗名がまとまって折り返るようにする */
  overflow-wrap: normal;
  word-break: keep-all;
}

.fv-shops li::before {
  content: "";
  position: absolute;
  left: 0; top: .75em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.fv-media {
  margin-bottom: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  /* 画像読み込み前に背景を敷き、レイアウトの跳ねを抑える */
  background: var(--bg-alt);
}

.fv-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* CTA群 */
.fv-cta {
  display: grid;
  gap: 10px;
}

.cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.75;
}

/* -----------------------------------------------------------------------------
   6. ボタン
----------------------------------------------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;          /* タップ領域を十分に取る */
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: opacity .15s, background-color .15s;
  line-height: 1.4;
}

.btn:hover { opacity: .88; }

/* 主要CTA（見学・相談） */
.btn-primary {
  background: var(--accent-deep);
  color: #fff;
}

/* 副次CTA（募集を見る） */
.btn-outline {
  background: var(--bg-white);
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

/* 応募CTA（条件確認後） */
.btn-apply {
  background: var(--text-heading);
  color: #fff;
}

.btn-block { width: 100%; }

/* -----------------------------------------------------------------------------
   7. SECTION 2：不安リスト
----------------------------------------------------------------------------- */
.worry-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 8px;
}

.worry-list li {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 16px 13px 42px;
  position: relative;
  margin: 0;
  font-size: 15px;
}

/* チェック記号（アイコン画像は使わず CSS で描く） */
.worry-list li::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(-45deg);
}

.worry-answer {
  background: var(--accent-pale);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.worry-answer p:last-child { margin-bottom: 0; }

.worry-answer .lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------
   8. SECTION 3：特徴カード
----------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--accent-deep);
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* 特に強調する項目 */
.feature-card.is-key {
  background: var(--accent-pale);
  border-color: var(--accent);
}

/* バッジ列（カットなし・18時営業終了 等） */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.badges li {
  margin: 0;
  background: var(--accent-deep);
  color: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
}

/* -----------------------------------------------------------------------------
   9. SECTION 4：仕事内容
----------------------------------------------------------------------------- */
.task-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  /* 補足文が入るため1項目あたり最低200pxを確保し、
     入らなければ列数を減らす（狭い画面では1列になる） */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}

.task-list li {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
}

.task-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
}

/* 各業務の中身がひと目で分かるよう、短い補足を添える */
.task-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   業務の流れ
   スタッフの担当とお客様の操作を色で分け、業務範囲を一目で判別できるようにする
----------------------------------------------------------------------------- */
.flow-title {
  font-size: 18px;
  margin: 32px 0 10px;
}

.flow-legend {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 13px;
}

.flow-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-mute);
}

/* 凡例の色見本 */
.flow-key::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex: none;
}

.flow-key-staff::before { background: var(--accent-deep); }
.flow-key-guest::before { background: #c9c2b6; }

.flow {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: flow;
}

.flow li {
  position: relative;
  margin: 0 0 8px;
  padding: 14px 16px 14px 52px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left-width: 4px;
}

/* 番号 */
.flow li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 14px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 次の項目へつながる縦線 */
.flow li::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 39px;
  bottom: -8px;
  width: 2px;
  background: var(--line);
}

.flow li:last-child::after { display: none; }

.flow-staff { border-left-color: var(--accent-deep); }
.flow-staff::before { background: var(--accent-deep); }

/* お客様の操作は彩度を落とし、スタッフの業務と区別する */
.flow-guest {
  border-left-color: #c9c2b6;
  background: var(--bg);
}

.flow-guest::before { background: #c9c2b6; }

.flow-step {
  display: block;
  font-weight: 700;
  color: var(--text-heading);
  font-size: 15.5px;
  line-height: 1.6;
}

.flow-desc {
  display: block;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.7;
  margin-top: 2px;
}

/* -----------------------------------------------------------------------------
   お問い合わせのあとの流れ
   業務フロー（.flow）と同じ番号付きの見せ方に揃える。
   別の体裁にすると、同じ「順を追う説明」だと分かりにくくなるため
----------------------------------------------------------------------------- */
.process {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: process;
}

.process li {
  position: relative;
  margin: 0 0 8px;
  padding: 16px 18px 16px 54px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 15px;
  top: 17px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 次の項目へつながる縦線 */
.process li::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 43px;
  bottom: -8px;
  width: 2px;
  background: var(--line);
}

.process li:last-child::after { display: none; }

.process-step {
  display: block;
  font-weight: 700;
  color: var(--text-heading);
  font-size: 16px;
  line-height: 1.6;
}

.process-desc {
  display: block;
  font-size: 14.5px;
  color: var(--text-mute);
  line-height: 1.8;
  margin-top: 3px;
}

/* 「見学＝応募」と受け取られると問い合わせ自体が起きないため、
   この一点だけは他と区別して目立たせる */
.process-note {
  background: var(--accent-pale);
  border-radius: var(--radius);
  padding: 18px;
}

.process-note h3 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--accent-deep);
}

.process-note p {
  margin: 0;
  font-size: 15px;
}

/* 業務範囲の補足（受付・会計なし／オートシャンプー） */
.task-note {
  background: var(--accent-pale);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
}

.task-note h3 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--accent-deep);
}

.task-note h3 + p { margin-bottom: 16px; }

.task-note p {
  margin: 0;
  font-size: 15px;
}

.task-note p:last-child { margin-bottom: 0; }

/* 仕事内容セクションの写真 */
.work-media {
  margin: 0 0 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}

.work-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* イメージ写真である旨の注記。
   実際の店舗の光景と誤認されないよう、写真に添えて表示する */
.work-media figcaption {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-mute);
  background: var(--bg-white);
  line-height: 1.6;
}

/* 「カット・パーマ・ブローはありません」の明示 */
.notice {
  background: var(--bg-white);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 24px;
}

/* 専門性についての記述（指示書4章：簡単な仕事と表現しすぎない） */
.pro-note {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.pro-note p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------------------
   10. SECTION 5：サポート
----------------------------------------------------------------------------- */
/* ブランクサポートの写真 */
.support-media {
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}

.support-media img {
  display: block;
  width: 100%;
  height: auto;
}

.support-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-list li {
  background: var(--bg-white);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 0;
}

.support-list h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.support-list p {
  margin: 0;
  font-size: 15px;
}

/* -----------------------------------------------------------------------------
   11. SECTION 6/7：正社員・パート
   背景色で明確に区別する（構成提案書 §2）
----------------------------------------------------------------------------- */
.job-section { padding: 52px 0; }
.job-full { background: var(--full-bg); }
.job-part { background: var(--part-bg); }

/* 雇用形態ラベル */
.job-label {
  display: inline-block;
  background: var(--accent-deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.job-part .job-label { background: var(--text-heading); }

/* 給与の見せ方 */
.salary {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 20px;
}

.salary + .salary { margin-top: -8px; }

.salary-shop {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 4px;
}

/* 店舗ごとの条件ブロック（正社員）
   2店舗の金額を横並びにすると差額が優劣として読まれるため、
   給与・勤務時間・その店舗だけの待遇をひとまとまりにして縦に積む */
.shop-terms {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 18px;
}

.shop-terms-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 6px;
}

/* ブロック内のテーブルは枠を持たない（親カードの枠と二重になるため） */
.shop-terms .spec-table {
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  margin: 14px 0 0;
  background: transparent;
}

.shop-terms .spec-table th { background: transparent; }

.shop-terms .spec-table th,
.shop-terms .spec-table td { padding: 11px 0; }

.shop-terms .spec-table tr:last-child th,
.shop-terms .spec-table tr:last-child td { padding-bottom: 0; }

/* 狭い画面では見出しと内容を縦に積む。
   「この店舗の待遇」のような長い見出しが列幅に収まらず、
   内容と隙間なく繋がって読めなくなるため */
@media (max-width: 599px) {
  .shop-terms .spec-table th,
  .shop-terms .spec-table td {
    display: block;
    width: auto;
    white-space: normal;
  }

  .shop-terms .spec-table th { padding: 11px 0 2px; }
  .shop-terms .spec-table td { padding: 0 0 11px; }
}

.salary-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

/* 金額と単位が分断されないよう、数字＋円をひとまとまりで折り返す */
.salary-amount .figure {
  display: inline-block;
  white-space: nowrap;
}

.salary-amount .unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mute);
}

/* 「月給」「時給」のラベルは小さく添える */
.salary-amount .kind {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-mute);
  margin-right: 4px;
}

.salary-note {
  font-size: 14px;
  color: var(--text-mute);
  margin: 6px 0 0;
}

/* 条件テーブル */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 15px;
}

.spec-table th,
.spec-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.spec-table th {
  width: 34%;
  font-weight: 700;
  color: var(--text-heading);
  background: var(--bg);
  white-space: nowrap;
}

/* 待遇リスト */
.perk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.perk-list li {
  margin: 0;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
}

.perk-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.job-cta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

/* -----------------------------------------------------------------------------
   12. SECTION 8：店舗カード
----------------------------------------------------------------------------- */
.shop-grid {
  display: grid;
  gap: 20px;
}

.shop-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.shop-media {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}

.shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-body { padding: 20px 18px; }

.shop-name {
  font-size: 18px;
  margin-bottom: 14px;
}

/* 店舗カードの写真は各店1枚に揃える（左右のカード高さを合わせるため） */

.shop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin-bottom: 16px;
}

.shop-table th,
.shop-table td {
  padding: 9px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.shop-table th {
  width: 84px;
  color: var(--text-mute);
  font-weight: 500;
  white-space: nowrap;
}

.shop-table tr:last-child th,
.shop-table tr:last-child td { border-bottom: 0; }

/* 営業時間・勤務時間は混同しやすいので強調 */
.shop-table .hours {
  font-weight: 700;
  color: var(--text-heading);
}

.shop-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.shop-cta .btn {
  min-height: 46px;
  font-size: 14px;
  padding: 8px 10px;
}

/* -----------------------------------------------------------------------------
   13. SECTION 9：FAQ（アコーディオン）
----------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 15px 46px 15px 16px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--text-heading);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.7;
}

/* 開閉記号（＋／−）を CSS で描画 */
.faq-q::before,
.faq-q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  background: var(--accent-deep);
  transition: transform .2s;
}

.faq-q::before {
  width: 13px; height: 2px;
  transform: translateY(-50%);
}

.faq-q::after {
  width: 2px; height: 13px;
  right: 23.5px;
  transform: translateY(-50%);
}

.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }

.faq-a {
  display: none;
  padding: 0 16px 16px;
  font-size: 15px;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  margin-top: -1px;
}

.faq-item.is-open .faq-a { display: block; }

.faq-a p:last-child { margin-bottom: 0; }

/* -----------------------------------------------------------------------------
   14. 追従CTA
----------------------------------------------------------------------------- */
.fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(6px);
  /* ファーストビューでは FV 内の CTA と重複するため隠しておき、
     スクロールして FV を抜けたら表示する（JS が is-visible を付ける） */
  transform: translateY(110%);
  transition: transform .2s ease;
}

.fixed-cta.is-visible { transform: translateY(0); }

/* JS が動かない場合は常に表示しておく（応募導線を失わないため）。
   main.js が読み込まれた時点で html から no-js を外す */
.no-js .fixed-cta { transform: translateY(0); }
.no-js .to-top { display: none; }

.fixed-cta .btn {
  min-height: 50px;
  /* 狭い画面でボタン文言が2行に折り返さないよう、わずかに詰める */
  font-size: 15px;
  letter-spacing: 0;
  padding-left: 12px;
  padding-right: 12px;
}

.fixed-cta-note {
  display: none;   /* スマホでは省略（構成提案書 原稿より） */
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  margin: 6px 0 0;
}

/* PC では補助リンクを併置 */
.fixed-cta-sub { display: none; }

/* -----------------------------------------------------------------------------
   15. フッター
----------------------------------------------------------------------------- */
.footer {
  background: var(--text-heading);
  color: #ded9d2;
  padding: 40px 0 32px;
  font-size: 14.5px;
}

.footer a { color: #ded9d2; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand .brand-logo {
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.footer-shops {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.footer-shop-name {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-shop p {
  margin: 0;
  line-height: 1.8;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-head {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-company {
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #a9a49c;
}

/* -----------------------------------------------------------------------------
   16. 下層ページ共通（contact / privacy）
----------------------------------------------------------------------------- */
.page-hero {
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.page-hero h1 {
  font-size: 24px;
  margin: 0;
}

.page-hero .page-desc {
  margin: 10px 0 0;
  color: var(--text-mute);
  font-size: 15px;
}

/* -----------------------------------------------------------------------------
   17. フォーム
----------------------------------------------------------------------------- */
.form-intro {
  background: var(--accent-pale);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.85;
}

.form-intro p { margin: 0; }

.field {
  margin-bottom: 26px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-size: 15.5px;
}

.req,
.opt {
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  padding: 2px 7px;
  flex: none;
}

.req { background: var(--accent-deep); color: #fff; }
.opt { background: var(--bg-alt); color: var(--text-mute); }

.field-help {
  font-size: 14px;
  color: var(--text-mute);
  margin: 0 0 8px;
  line-height: 1.7;
}

/* 入力欄 */
.input,
.textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;   /* iOS の自動ズーム防止のため 16px を下回らない */
  color: var(--text);
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  transition: border-color .15s;
}

.input:focus,
.textarea:focus {
  border-color: var(--accent-deep);
  outline: none;
}

.textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.8;
}

.input.is-error,
.textarea.is-error { border-color: #b4553f; }

/* ラジオ・チェックボックス */
.choice-list {
  display: grid;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
  font-size: 15.5px;
  line-height: 1.6;
}

.choice:hover { border-color: var(--accent); }

.choice input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: none;
  accent-color: var(--accent-deep);
}

.choice:has(input:checked) {
  border-color: var(--accent-deep);
  background: var(--accent-pale);
}

.choice.is-error { border-color: #b4553f; }

/* エラーメッセージ */
.error-msg {
  display: none;
  color: #a34a35;
  font-size: 14px;
  margin: 7px 0 0;
  line-height: 1.6;
}

.error-msg.is-visible { display: block; }

/* 送信エラーなどの全体表示 */
.form-alert {
  display: none;
  background: #f7ece8;
  border: 1.5px solid #d9b3a6;
  color: #8f3f2b;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 15px;
}

.form-alert.is-visible { display: block; }

/* ハニーポット（人間には見せない） */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* 同意 */
.consent {
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.consent .choice {
  border: 0;
  background: none;
  padding: 0;
}

.consent .choice:has(input:checked) { background: none; }

/* 送信ボタン群 */
.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
}

/* ステップ表示 */
.steps {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  font-size: 13px;
}

.steps li {
  flex: 1;
  margin: 0;
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--text-mute);
  line-height: 1.4;
}

.steps li.is-current {
  background: var(--accent-deep);
  color: #fff;
  font-weight: 700;
}

.steps li.is-done {
  background: var(--accent-pale);
  color: var(--accent-deep);
}

/* 確認画面 */
.confirm-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
  margin-bottom: 8px;
}

.confirm-table th,
.confirm-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.confirm-table tr:last-child th,
.confirm-table tr:last-child td { border-bottom: 0; }

.confirm-table th {
  width: 38%;
  background: var(--bg);
  font-weight: 700;
  color: var(--text-heading);
}

/* 改行を保持しつつ、長文の折り返しも効かせる */
.confirm-table td { white-space: pre-wrap; word-break: break-word; }

/* 完了画面 */
.done {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
}

.done h2 {
  font-size: 21px;
  margin-bottom: 14px;
}

.done p { font-size: 15.5px; }
.done p:last-child { margin-bottom: 0; }

.done-note {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14.5px;
  text-align: left;
  margin-top: 20px;
}

.done-note p:last-child { margin-bottom: 0; }

/* JS 無効時の案内 */
.nojs-note {
  background: #fdf6e8;
  border: 1.5px solid #e0cfa4;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 15px;
}

/* -----------------------------------------------------------------------------
   18. プライバシーポリシー
----------------------------------------------------------------------------- */
.policy { font-size: 15.5px; }

.policy h2 {
  font-size: 17px;
  margin: 32px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.policy h2:first-of-type { margin-top: 0; }

.policy-lead { margin-bottom: 28px; }

.policy ul { padding-left: 1.4em; }

.policy-contact {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  line-height: 1.9;
}

.policy-date {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-mute);
}

/* 戻る導線。
   同意チェックの途中でこのページを開く人がいるため、
   フッターまで進まなくても戻れる位置に置く */
.policy-back {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.policy-back .btn {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .policy-back .btn {
    display: inline-block;
    width: auto;
    min-width: 260px;
  }
}

/* -----------------------------------------------------------------------------
   19. 画像プレースホルダー
   実素材が入るまでの仮表示。差し替え時はこのクラスを外すだけでよい
----------------------------------------------------------------------------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-alt),
    var(--bg-alt) 12px,
    #e8e2d8 12px,
    #e8e2d8 24px
  );
  color: var(--text-mute);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  padding: 12px;
}

.ph-fv { aspect-ratio: 4 / 5; }
.ph-43 { aspect-ratio: 4 / 3; }

/* -----------------------------------------------------------------------------
   20. ページトップへ
----------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--fixcta-h) + 12px);
  z-index: 80;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  color: var(--text-heading);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.to-top.is-visible { display: flex; }

/* =============================================================================
   タブレット以上（768px〜）
============================================================================= */
@media (min-width: 768px) {
  body { font-size: 17px; }

  .section { padding: 68px 0; }
  .job-section { padding: 68px 0; }

  .section-title { font-size: 26px; }

  .fv-inner {
    /* 左右は .container の余白を維持する（ショートハンドで打ち消さない） */
    padding-top: 56px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
  }

  .fv-body { order: 1; }
  .fv-media { order: 2; margin-bottom: 0; }

  .fv-title { font-size: 40px; }
  .fv-sub { font-size: 18px; }

  .ph-fv { aspect-ratio: 4 / 3; }

  .fv-cta { grid-template-columns: 1fr 1fr; }
  /* 主要CTAは横幅いっぱいに置いて優先度を示す */
  .fv-cta .btn-primary { grid-column: 1 / -1; order: -1; }

  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* タブレット幅では2列。4列にすると1枚あたりが狭く、補足文が窮屈になる */
  .task-list { grid-template-columns: repeat(2, 1fr); }

  .support-list { grid-template-columns: repeat(2, 1fr); }

  /* 写真は本文に対して控えめな幅に留め、間延びさせない */
  .support-media {
    float: right;
    width: 42%;
    margin: 0 0 18px 24px;
  }

  /* float が次のセクションへはみ出さないようにする */
  .support-list::after {
    content: "";
    display: block;
    clear: both;
  }

  .work-media { max-width: 560px; }

  .shop-grid { grid-template-columns: 1fr 1fr; }

  .job-cta {
    grid-template-columns: repeat(2, minmax(0, 260px));
    justify-content: start;
  }

  .footer-shops { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* 店舗ごとの条件ブロックは、広い画面でも横に並べない。
     並べると2店舗の金額が同時に目に入り、差額が優劣として読まれるため */
  .shop-terms { padding: 24px 22px; }
  .shop-terms-name { font-size: 17px; }
}

/* =============================================================================
   PC（1024px〜）
   ヘッダーナビを横並びにし、追従CTAに補助リンクを併置する
============================================================================= */
@media (min-width: 1024px) {
  :root { --header-h: 72px; --fixcta-h: 78px; }

  .menu-btn { display: none; }

  .gnav {
    position: static;
    max-height: none;
    overflow: visible;
    border: 0;
    background: none;
  }

  .gnav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
  }

  .gnav li { border: 0; }

  .gnav a {
    padding: 8px 12px;
    font-size: 14.5px;
    border-radius: 6px;
  }

  .gnav a:hover { background: var(--bg-alt); }

  .gnav .nav-cta {
    margin: 0 0 0 8px;
    padding: 10px 20px;
  }

  .gnav .nav-cta:hover { background: var(--accent); }

  .brand-name { font-size: 16px; }
  .brand-logo { width: 44px; height: 44px; }

  /* 業務5項目。最後の1枚が孤立しないよう、まとまりのよい配置にする */
  .task-list { grid-template-columns: repeat(3, 1fr); }

  /* 業務の流れは10項目あり縦に長くなるため、2列に分けて視野に収める */
  .flow {
    columns: 2;
    column-gap: 16px;
  }

  .flow li {
    break-inside: avoid;      /* 項目が列をまたいで割れないようにする */
    -webkit-column-break-inside: avoid;
  }

  /* 列をまたぐ縦線は流れが分断されて見えるため消す */
  .flow li::after { display: none; }

  /* 追従CTA：主要ボタン＋補助リンク */
  .fixed-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
  }

  /* スマホ用の btn-block（width:100%）を打ち消す。
     打ち消さないとボタンが画面幅いっぱいに伸び、補助リンクがはみ出す */
  .fixed-cta .btn-primary.btn-block {
    width: auto;
    min-width: 300px;
    flex: none;
  }

  .fixed-cta-sub {
    display: flex;
    gap: 10px;
  }

  .fixed-cta-sub a {
    font-size: 14px;
    text-decoration: none;
    color: var(--accent-deep);
    border: 1px solid var(--accent-deep);
    border-radius: 8px;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .fixed-cta-sub a:hover { background: var(--accent-pale); }

  .fixed-cta-note {
    display: block;
    margin: 0;
    text-align: left;
    white-space: nowrap;
  }

  /* PC では画面占有を抑える */
  .fixed-cta { padding: 8px 16px; }
  .fixed-cta .btn { min-height: 46px; }

  .to-top { right: 20px; }
}

/* =============================================================================
   印刷
============================================================================= */
@media print {
  .header, .fixed-cta, .to-top, .footer { display: none; }
  body { padding-bottom: 0; background: #fff; }
}

/* =============================================================================
   アニメーション抑制の設定を尊重する
============================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
