/* ============================================================
   IYASHIBI モデル部 — style.css
   v2.0 / モバイルファースト / 3モード対応 / フォールバック設計
   ============================================================ */

/* ── CSS変数 ── */
:root {
  --pink:       #E84A80;
  --pink-lt:    #FF6B9D;
  --pink-pale:  #FFF0F5;
  --pink-bg:    #FFF5F8;
  --rose:       #C8325A;
  --sky:        #87CEEB;
  --green:      #4CAF50;
  --orange:     #F57C00;
  --text:       #2A1F26;
  --text-sub:   #4A3C48;
  --text-muted: #7A6878;
  --border:     #FFCBD8;
  --border-lt:  #FFE8EF;
  --white:      #ffffff;
  --header-h:   60px;
  --bottom-h:   56px;
  --px:         16px;
  --radius:     12px;
  --radius-lg:  16px;
  --shadow:     0 4px 16px rgba(232,74,128,.10);
  --shadow-md:  0 8px 24px rgba(232,74,128,.14);
  --grad-bg:    linear-gradient(160deg,#FFF5F8 0%,#F9F0FF 100%);
  --grad-pink:  linear-gradient(135deg,#FF6B9D,#E84A80);
}

/* ── リセット ── */
*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }

/* ── body ── フォールバック: Googleフォント未読込でもシステムフォントで表示 */
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont,
               'Hiragino Sans', 'Hiragino Kaku Gothic ProN',
               'Yu Gothic', YuGothic, sans-serif;
  background: #FFF5F8;
  background: var(--grad-bg);
  color: #4A3C48;
  color: var(--text-sub);
  line-height: 1.75;
  font-size: 15px;
  padding-top: 60px;
  overflow-x: hidden;
}

/* ログイン時はボトムナビ分のpaddingを追加 */
body.has-bottom-nav {
  padding-bottom: calc(60px + 0px);
  padding-bottom: calc(var(--bottom-h) + 0px);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── タイポグラフィ ── */
h1,h2,h3,h4 { line-height: 1.3; color: #2A1F26; color: var(--text); }

.page-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 700;
}
.page-h1 span { color: var(--pink); display: block; }

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}
h2::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--grad-pink);
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
/* h2の下線が不要な箇所 */
h2.no-line::after { display: none; }

h3 { font-size: 16px; font-weight: 600; color: var(--pink); margin-bottom: 10px; }
h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
p  { font-size: 14px; line-height: 1.8; }

/* ══════════════════════════════════════════════════
   ヘッダー
══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #FFE8EF;
  border-bottom: 1px solid var(--border-lt);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  padding: 0 var(--px);
  gap: 8px;
}

/* 管理者モードのヘッダー */
.site-header--admin {
  background: rgba(42,18,30,.96);
  border-bottom-color: rgba(232,74,128,.3);
}

/* ロゴ */
.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #E84A80;
  color: var(--pink);
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: .3px;
}
.site-logo small {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  color: #FF6B9D;
  color: var(--pink-lt);
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 2px;
}
.site-header--admin .site-logo       { color: #fff; }
.site-header--admin .site-logo small { color: rgba(255,255,255,.55); }

/* ヘッダー右アクション */
.header-actions {
  display: flex !important;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  min-width: 0;
}

/* ニックネーム表示 */
.header-nick {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* LINEボタン（ヘッダー小） */
.btn-line-sm {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #00C300;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 20px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

/* ログインボタン（ヘッダー小） */
.btn-login-sm {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  border: 1.5px solid var(--border);
  padding: 5px 8px;
  border-radius: 20px;
  white-space: nowrap;
  background: #fff;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-login-sm--out {
  color: var(--text-muted);
  border-color: var(--border-lt);
}
.site-header--admin .btn-login-sm {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
  background: transparent;
}

/* ハンバーガー */
.hamburger {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  min-width: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
.hamburger span {
  display: block !important;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .24s ease, opacity .2s ease;
  transform-origin: center;
}
.site-header--admin .hamburger span { background: rgba(255,255,255,.85); }
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   ドロワーナビ
══════════════════════════════════════════════════ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(42,18,30,.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 998;
}
.nav-open .nav-overlay { display: block; }

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 82vw);
  height: 100vh;
  height: 100svh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(42,31,38,.12);
  transform: translateX(110%);
  transition: transform .26s cubic-bezier(.4,0,.2,1);
  z-index: 1002;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-top: calc(60px + 0px);
  padding-bottom: calc(80px + 0px);
}
.nav-open .site-nav { transform: translateX(0); }

.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 14px 20px 6px;
}

.nav-links { list-style: none; }
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border-lt);
  transition: background .12s, color .12s;
  text-decoration: none;
  position: relative;
}
.nav-links li a:active,
.nav-links li a.active {
  background: var(--pink-pale);
  color: var(--pink);
}
.nav-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }

/* ナビバッジ（未読数） */
.nav-badge {
  position: absolute;
  right: 16px;
  top: 50%; transform: translateY(-50%);
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ══════════════════════════════════════════════════
   ボトムナビ（ログイン時固定）
══════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  height: var(--bottom-h);

  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-lt);
  display: flex;
  align-items: stretch;
  z-index: 900;
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 8px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s;
  position: relative;
  padding: 4px 1px 3px;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.bottom-nav__icon {
  font-size: 18px;
  line-height: 1;
  position: relative;
  display: block;
}
.bottom-nav__item:active,
.bottom-nav__item.active { color: var(--pink); }

/* bottom-nav__icon は上で定義済み */

/* ボトムナビのバッジ */
.bottom-badge {
  position: absolute;
  top: -3px; right: -6px;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
}

/* 管理者ボトムナビ */
.bottom-nav--admin {
  background: rgba(42,18,30,.97);
  border-top-color: rgba(232,74,128,.25);
}
.bottom-nav--admin .bottom-nav__item       { color: rgba(255,255,255,.45); }
.bottom-nav--admin .bottom-nav__item.active { color: var(--pink-lt); }

/* ══════════════════════════════════════════════════
   フッター（ページ最下部）
══════════════════════════════════════════════════ */
.site-footer {
  background: #2A1F26;
  background: var(--text);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 28px 16px 16px;
  font-size: 12px;
  line-height: 1.9;
}
.site-footer a {
  color: #FF6B9D;
  color: var(--pink-lt);
  text-decoration: none;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
  margin-top: 10px;
  font-size: 11px;
}
/* 後方互換 */
footer {
  background: var(--text);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 28px 16px 16px;
  font-size: 12px;
}
footer a { color: var(--pink-lt); }

/* ══════════════════════════════════════════════════
   レイアウト
══════════════════════════════════════════════════ */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 16px;
  padding-left: var(--px);
  padding-right: 16px;
  padding-right: var(--px);
}
.section        { padding: 40px 16px; padding: 40px var(--px); }
.section-alt    { background: #fff; }
.section-light  { background: var(--pink-bg); }

/* ── ヒーロー ── */
.hero {
  min-height: calc(100vh - 60px);
  min-height: calc(100svh - 60px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 40px 16px;
  padding: 40px var(--px);
}
.hero-compact {
  padding: 24px 16px 0;
  padding: 24px var(--px) 0;
  text-align: center;
}
.hero-compact .eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--pink-lt);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-compact .hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-compact .hero-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.85;
}

/* ══════════════════════════════════════════════════
   ボタン
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: opacity .18s, transform .12s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); opacity: .85; }
.btn-primary  { background: var(--grad-pink); color: #fff; font-size: 14px; padding: 12px 26px; box-shadow: var(--shadow); }
.btn-line     { background: #00C300; color: #fff; font-size: 14px; padding: 12px 22px; }
.btn-outline  { background: #fff; color: var(--pink); border: 1.5px solid var(--border); font-size: 13px; padding: 10px 20px; }
.btn-mypage   { background: var(--pink-pale); color: var(--pink); border: 1.5px solid var(--border); font-size: 13px; padding: 10px 20px; }
.btn-full     { width: 100%; border-radius: var(--radius); }
.btn-next     { flex: 1; padding: 14px; background: var(--grad-pink); color: #fff; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-back     { flex: 1; padding: 14px; background: #F0E4EA; color: var(--text-sub); border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-submit   { flex: 1; padding: 14px; background: var(--grad-pink); color: #fff; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }

/* LINE固定ボタン（右下） */
.btn-line-fixed {
  position: fixed;
  bottom: 20px; right: 14px;
  z-index: 890;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #00C300;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,195,0,.35);
  text-decoration: none;
}
/* ボトムナビがある場合は位置を上げる */
body.has-bottom-nav .btn-line-fixed { bottom: 68px; }

/* 後方互換 */
.cta-button {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-pink); color: #fff; font-weight: 700; font-size: 14px;
  padding: 12px 26px; border-radius: 30px; border: none; cursor: pointer;
  font-family: inherit; box-shadow: var(--shadow);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════
   カード・コンテンツパーツ
══════════════════════════════════════════════════ */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
}
.concept-card {
  background: var(--pink-pale);
  padding: 16px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--pink);
  margin-bottom: 18px;
}
.concept-card h3 { color: var(--pink); margin-bottom: 6px; }
.concept-card p  { font-size: 13px; }

.target-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.target-item {
  background: #fff; padding: 12px 8px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  font-weight: 500; font-size: 13px; text-align: center;
}

.genre-block { margin-bottom: 28px; }
.genre-block h3 { border-bottom: 1px solid var(--border-lt); padding-bottom: 8px; margin-bottom: 12px; }
.genre-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.genre-item { background: #fff; padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow); }
.genre-item h4 { font-size: 13px; margin-bottom: 3px; }
.genre-item p  { font-size: 12px; color: var(--text-muted); }

.safety-rule {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; padding: 14px; border-radius: var(--radius);
  margin-bottom: 10px; box-shadow: var(--shadow);
}
.rule-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700; color: var(--green);
  line-height: 1; flex-shrink: 0; width: 26px; text-align: center;
}
.rule-text h4 { font-size: 13px; margin-bottom: 2px; }
.rule-text p  { font-size: 12px; color: var(--text-muted); }

.note-add {
  background: #E8F5E9; border: 1px solid #C8E6C9; color: #2E7D32;
  padding: 11px 14px; border-radius: var(--radius);
  text-align: center; font-weight: 500; font-size: 13px; margin-top: 12px;
}

.income-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); font-size: 12px;
}
.income-table th, .income-table td {
  padding: 11px 6px; text-align: center; border-bottom: 1px solid var(--border-lt);
}
.income-table th { background: var(--pink-pale); color: var(--pink); font-size: 11px; font-weight: 700; }
.income-table tr:last-child td { border-bottom: none; }
.income-table strong { color: var(--pink); }
.note-text { margin-top: 12px; font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.7; }

.flow-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.flow-step { flex: 1; min-width: 56px; max-width: 80px; text-align: center; position: relative; }
.flow-step:not(:last-child)::after {
  content: '›'; position: absolute; top: 11px; right: -6px;
  font-size: 14px; color: var(--pink); font-weight: 700;
}
.step-circle {
  width: 40px; height: 40px; background: var(--grad-pink); color: #fff;
  border-radius: 50%; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin: 0 auto 6px; box-shadow: var(--shadow);
}
.step-label { font-size: 10px; font-weight: 500; line-height: 1.4; color: var(--text-sub); }

.faq-box { background: #fff; border-radius: var(--radius); margin-bottom: 10px; box-shadow: var(--shadow); padding: 14px; }
.faq-q {
  font-weight: 700; color: var(--pink); font-size: 13px; line-height: 1.5;
  margin-bottom: 7px; display: block; border-bottom: 1px dashed var(--border-lt); padding-bottom: 7px;
}
.faq-a { color: var(--text-muted); font-size: 12px; line-height: 1.75; }

/* ── フォーム ── */
.form-wrapper {
  background: #fff; padding: 18px 14px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.form-item { margin-bottom: 14px; }
.form-item label {
  display: block; margin-bottom: 5px;
  font-weight: 600; color: var(--text); font-size: 13px;
}
.form-item input,
.form-item select,
.form-item textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; background: #fff; color: var(--text);
  -webkit-appearance: none; appearance: auto;
  transition: border-color .18s;
}
.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus { outline: none; border-color: var(--pink); }
.form-item input.error,
.form-item select.error { border-color: #D32F2F; }
.form-item textarea { resize: vertical; min-height: 72px; }
.field-error { font-size: 11px; color: #D32F2F; margin-top: 3px; display: none; }
.field-error.show { display: block; }

.check-list, .radio-list { display: flex; flex-direction: column; gap: 7px; }
.check-list label,
.radio-list label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-sub); cursor: pointer;
  padding: 10px 13px;
  border: 1.5px solid var(--border-lt); border-radius: var(--radius);
  font-weight: 400; transition: background .12s, border-color .12s;
}
.radio-list label:has(input:checked) {
  background: var(--pink-pale); border-color: var(--pink); color: var(--pink); font-weight: 600;
}
.check-list input[type="checkbox"],
.radio-list input[type="radio"] {
  width: 17px; height: 17px; accent-color: var(--pink); flex-shrink: 0; padding: 0; border: none;
}

/* ── ステッパー ── */
.stepper {
  display: flex; justify-content: center; align-items: center;
  max-width: 320px; margin: 18px auto 6px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: #F0E4EA; color: #C4A0B4;
  flex-shrink: 0; transition: background .25s, color .25s, box-shadow .25s;
}
.step-dot.active { background: var(--pink); color: #fff; box-shadow: 0 0 0 4px rgba(232,74,128,.18); }
.step-dot.done   { background: var(--green); color: #fff; }
.step-line { flex: 1; height: 2px; background: #F0E4EA; transition: background .25s; }
.step-line.done { background: var(--green); }
.step-labels {
  display: flex; justify-content: space-between;
  max-width: 320px; margin: 0 auto 18px;
}
.step-label-text { font-size: 9px; color: #C4A0B4; text-align: center; width: 32px; line-height: 1.3; }
.step-label-text.active { color: var(--pink); font-weight: 700; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step-desc  { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.form-nav   { display: flex; gap: 9px; margin-top: 14px; }

/* ── 完了画面 ── */
.complete-box { text-align: center; padding: 28px 14px; }
.complete-icon { font-size: 48px; margin-bottom: 14px; }
.complete-box p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

/* ── LINEボックス ── */
.line-box {
  background: var(--pink-pale); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 14px; text-align: center; margin-top: 18px;
}
.line-box p { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; line-height: 1.75; }

/* ── 案内バナー ── */
.shoot-banner {
  background: #fff; border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px; margin: 14px 0;
  font-size: 13px; color: var(--text-sub); line-height: 1.75;
  box-shadow: var(--shadow);
}
.shoot-banner strong { color: var(--pink); }

/* ── バッジ ── */
.badge { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 20px; vertical-align: middle; margin-left: 3px; }
.badge-pink  { background: var(--pink);  color: #fff; }
.badge-green { background: var(--green); color: #fff; }

/* ── スタッフボックス ── */
.staff-box { text-align: center; padding: 24px 14px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ══════════════════════════════════════════════════
   PC補完（640px以上）
══════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --px: 24px; }
  body  { font-size: 15px; }
  p     { font-size: 15px; }
  h3    { font-size: 17px; }
  .target-box { grid-template-columns: repeat(4,1fr); }
  .genre-grid { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
  .income-table th, .income-table td { font-size: 13px; padding: 13px 10px; }
  .faq-q  { font-size: 14px; }
  .faq-a  { font-size: 13px; }
  .site-logo { font-size: 20px; }
  .header-actions { gap: 8px; }
  .btn-line-sm, .btn-login-sm { font-size: 12px; padding: 6px 12px; }
}
@media (min-width: 1024px) {
  :root { --px: 32px; }
}
