/* ==========================================================================
   eyelashsalonCHEMIR 共通スタイル
   cv-hp-creationスキル references/css-template.css をベースに、
   フェーズ3で決定した配色(アイボリー×くすみブルー)に差し替え。
   ========================================================================== */

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  color: var(--body);
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.01em;
  padding-bottom: 64px; /* 下部固定CTAバー分 */
}
h1, h2, h3 {
  font-family: "Hiragino Mincho ProN", "HiraMinProN-W6", "游明朝", "Yu Mincho", "YuMincho", serif;
  color: var(--ink);
  margin: 0;
  font-weight: 700;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --accent: #5C7E94;
  --accent-deep: #3E5B70;
  --accent-tint: #E7EEF1;
  --accent-line: #C4D5DC;
  --ink: #3D4A52;
  --body: #5A6266;
  --body-soft: #82898C;
  --line: #DEE3E4;
  --bg-soft: #F5F3F0;
  --bg-deep: #4C7186;
  --bg-deep-text: #FBFCFB;

  --cta: #06C755;       /* LINE公式ブランドグリーン */
  --cta-hover: #05a648;

  --icon-phone: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V20a1 1 0 01-1 1C10.61 21 3 13.39 3 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.21 2.2z"/></svg>');
  --icon-chat: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C6.48 3 2 6.94 2 11.8c0 2.77 1.47 5.24 3.77 6.87-.13.98-.5 2.36-1.42 3.6-.15.2 0 .48.26.44 2.02-.34 3.7-1.2 4.8-1.87A12.4 12.4 0 0012 20.6c5.52 0 10-3.94 10-8.8S17.52 3 12 3z"/></svg>');
  --icon-pin: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C7.86 2 4.5 5.36 4.5 9.5c0 5.63 6.54 11.6 7.05 12.06.26.24.65.24.9 0 .51-.46 7.05-6.43 7.05-12.06C19.5 5.36 16.14 2 12 2zm0 10.5a3 3 0 110-6 3 3 0 010 6z"/></svg>');
  --icon-clock: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm.75 5v5.4l4.2 2.5-.75 1.23-4.95-2.98V7h1.5z"/></svg>');
  --icon-eye: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5C6.5 5 2 12 2 12s4.5 7 10 7 10-7 10-7-4.5-7-10-7zm0 11.5A4.5 4.5 0 1112 7.5a4.5 4.5 0 010 9zm0-7a2.5 2.5 0 100 5 2.5 2.5 0 000-5z"/></svg>');
}

section { width: 100%; padding: 4rem 1.25rem; }
.inner { max-width: 640px; margin: 0 auto; }
.bg-soft { background: var(--bg-soft); }
.bg-white { background: #FFFFFF; }
.bg-deep { background: var(--bg-deep); color: var(--bg-deep-text); }
.bg-deep h2, .bg-deep h3 { color: var(--bg-deep-text); }
.bg-deep .eyebrow { color: var(--accent-tint); }
.bg-deep p, .bg-deep li { color: var(--bg-deep-text); opacity: 0.9; }
.bg-deep .lede { color: var(--bg-deep-text); border-left-color: var(--bg-deep-text); }
.bg-deep .headline::after { background: var(--bg-deep-text); }

.eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--accent-deep); margin-bottom: 0.75rem;
}

.headline {
  display: block; font-size: clamp(1.35rem, 5vw, 1.75rem); line-height: 1.6;
  margin-bottom: 1.75rem; padding-bottom: 0.9rem; position: relative;
}
.headline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 2.75rem; height: 2px; background: var(--accent);
}
.lede {
  font-size: 1.0625rem; font-weight: 700; color: var(--ink);
  margin-bottom: 1.5rem; padding-left: 1rem; border-left: 3px solid var(--accent-line);
}
.copy p + p { margin-top: 1.5em; }
.kw { color: var(--accent-deep); font-weight: 700; }

/* ---------- サイトヘッダー ---------- */
.site-header { background: var(--bg-deep); padding: 0.7rem 1rem; }
.site-header .inner { display: flex; align-items: center; justify-content: space-between; max-width: 720px; }
.site-header .brand-link { color: #fff; font-weight: 700; font-size: 0.95rem; font-family: "Hiragino Mincho ProN", serif; }
.site-header .brand-link small { display: block; font-weight: 400; font-size: 0.66rem; color: var(--accent-line); font-family: sans-serif; letter-spacing: 0.02em; }
.site-nav-toggle { background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.08em; }
.site-nav { display: none; background: var(--bg-deep); padding: 0.5rem 1rem 1rem; }
.site-nav.open { display: block; }
.site-nav .nav-group { margin-top: 0.85rem; }
.site-nav .nav-group-title { color: var(--accent-line); font-size: 0.7rem; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.site-nav a { display: block; color: var(--bg-deep-text); font-size: 0.875rem; padding: 0.5rem 0.2rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.site-nav a.current { color: var(--accent); font-weight: 700; }

/* ---------- パンくず/下層ヒーロー ---------- */
.breadcrumb { font-size: 0.75rem; color: var(--body-soft); padding: 0.9rem 1.25rem 0; max-width: 640px; margin: 0 auto; }
.breadcrumb a { color: var(--body-soft); text-decoration: underline; }
.page-hero { padding: 1.75rem 1.25rem 2.25rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.5rem, 5.5vw, 2rem); line-height: 1.6; margin-bottom: 0.75rem; }
.page-hero .lead { color: var(--body-soft); font-size: 0.95rem; }

/* ---------- FV ---------- */
.fv { padding-top: 0; }
.fv-bar { background: var(--bg-deep); color: var(--bg-deep-text); text-align: center; padding: 0.9rem 1rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em; }
.fv-body { padding: 2.5rem 1.25rem 2.75rem; text-align: center; background: var(--bg-soft); }
.fv-photo { max-width: 480px; margin: 0 auto 1.75rem; border-radius: 20px; overflow: hidden; box-shadow: 0 14px 34px rgba(61,74,82,0.18); }
.fv-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.fv-eyebrow { font-size: 0.8125rem; font-weight: 700; color: var(--accent-deep); letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.fv h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); line-height: 1.6; margin-bottom: 1.1rem; }
.fv .sub { color: var(--body); font-size: 0.95rem; margin-bottom: 1.75rem; }
.fv-facts { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.9rem; }
.fv-fact { background: #fff; border: 1px solid var(--accent-line); border-radius: 999px; padding: 0.5rem 1.05rem; font-size: 0.8125rem; color: var(--ink); font-weight: 700; }

.quicknav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 0.5rem; }
.quicknav a {
  background: var(--accent); border: 1px solid var(--accent); border-radius: 999px;
  padding: 0.5rem 1.15rem; font-size: 0.78rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform .12s ease, box-shadow .12s ease;
}
.quicknav a::after { content: " ›"; }
.quicknav a:active { transform: translateY(1px) scale(0.97); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }

/* ---------- 特典 ---------- */
.tokuten-box { background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: 16px; padding: 1.6rem 1.4rem; margin: 0 auto; max-width: 560px; }
.tokuten-box .badge { display: inline-block; background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.32rem 0.9rem; border-radius: 999px; margin-bottom: 1rem; letter-spacing: 0.04em; }
.tokuten-list { list-style: none; margin: 0; padding: 0; }
.tokuten-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9375rem; color: var(--ink); font-weight: 700; padding: 0.6rem 0; border-bottom: 1px dashed var(--accent-line); }
.tokuten-list li:last-child { border-bottom: none; }
.tokuten-list li .num { flex-shrink: 0; width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent-deep); font-family: "Hiragino Mincho ProN", serif; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.tokuten-list li .label { flex: 1; min-width: 0; word-break: keep-all; overflow-wrap: break-word; }
.microcopy { font-size: 0.8125rem; color: var(--body-soft); margin-top: 0.9rem; text-align: center; }

/* ---------- CTA ---------- */
.cta-wrap { text-align: center; margin-top: 2rem; }
.cta-row { display: flex; flex-direction: column; gap: 0.75rem; max-width: 380px; margin: 0 auto; }
.btn-cta { display: flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.95rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.975rem; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-cta::before { content: ""; display: inline-block; width: 18px; height: 18px; flex-shrink: 0; background-color: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.btn-line { background: var(--cta); color: #fff; }
.btn-line::before { -webkit-mask-image: var(--icon-chat); mask-image: var(--icon-chat); }
.btn-tel { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
.btn-tel::before { -webkit-mask-image: var(--icon-phone); mask-image: var(--icon-phone); }
.btn-cta small { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.8; }

/* ---------- 共感/リスト ---------- */
ul.trouble-list, ul.benefit-list, ul.foryou-list { list-style: none; margin: 0; padding: 0; }
ul.trouble-list li, ul.foryou-list li { position: relative; padding: 0.75rem 0 0.75rem 1.5rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
ul.trouble-list li::before, ul.foryou-list li::before { content: ""; position: absolute; left: 0; top: 1.1em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.bg-deep ul.trouble-list li, .bg-deep ul.foryou-list li { border-bottom-color: rgba(255,255,255,0.15); }
ul.benefit-list li { padding: 0.8rem 0 0.8rem 1.1rem; border-left: 2px solid var(--accent); margin-bottom: 0.8rem; font-size: 0.95rem; background: var(--bg-soft); }

/* ---------- 解決策/ステップ ---------- */
.solution-step { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.solution-step:last-child { border-bottom: none; }
.solution-step .n { flex-shrink: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent-deep); font-family: "Hiragino Mincho ProN", serif; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.solution-step h3 { font-size: 1.0625rem; margin-bottom: 0.4rem; }
.solution-step p { font-size: 0.9rem; color: var(--body); }

/* ---------- お客様の声 ---------- */
.voice-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.voice-card .stars { color: var(--accent-deep); letter-spacing: 0.1em; margin-bottom: 0.6rem; font-size: 0.95rem; }
.voice-card p { font-size: 0.9rem; color: var(--body); }
.voice-card p + p { margin-top: 0.9em; }
.voice-card .voice-meta { margin-top: 0.9rem; font-size: 0.78rem; color: var(--body-soft); }

/* ---------- 差別化 ---------- */
.reason-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.reason-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.25rem; }
.reason-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.reason-card p { font-size: 0.875rem; color: var(--body-soft); }
.reason-card:first-child { background: var(--accent-tint); border: 1px solid var(--accent-line); padding: 1.5rem 1.4rem; }
.reason-card:first-child h3 { font-size: 1.125rem; }
.reason-card:first-child p { color: var(--body); }

/* ---------- 似合わせ診断ステップ(独自コンテンツ) ---------- */
.diag-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.diag-card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.25rem; }
.diag-card .step-num { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; background: var(--accent); color: #fff; font-family: "Hiragino Mincho ProN", serif; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.diag-card h3 { font-size: 0.9375rem; margin-bottom: 0.3rem; }
.diag-card p { font-size: 0.8125rem; color: var(--body-soft); min-width: 0; }

/* ---------- スタッフ ---------- */
.staff-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem; }
.staff-card { text-align: center; width: 130px; }
.staff-card .avatar { width: 92px; height: 92px; border-radius: 50%; background: var(--bg-soft); border: 2px solid var(--accent-line); margin: 0 auto 0.7rem; display: flex; align-items: center; justify-content: center; font-family: "Hiragino Mincho ProN", serif; font-size: 1.6rem; color: var(--accent-deep); font-weight: 700; box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.staff-card .name { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.staff-card .role { font-size: 0.75rem; color: var(--body-soft); }
.staff-card .avatar.photo { padding: 0; overflow: hidden; }
.staff-card .avatar.photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-detail { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.staff-detail .head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1rem; }
.staff-detail .avatar { width: 76px; height: 76px; flex-shrink: 0; }

/* ---------- メニュー/料金 ---------- */
.menu-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.35rem; margin-bottom: 1.1rem; box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.menu-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.menu-card h3 a { color: var(--ink); }
.menu-card p { font-size: 0.875rem; color: var(--body); margin-bottom: 0.6rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.7rem; font-weight: 700; background: var(--bg-soft); color: var(--accent-deep); border: 1px solid var(--accent-line); border-radius: 999px; padding: 0.28rem 0.75rem; }
.card-link { display: inline-block; margin-top: 0.7rem; font-size: 0.8125rem; font-weight: 700; color: var(--accent-deep); }
.card-link::after { content: " ›"; }

table.price-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
table.price-table th, table.price-table td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); text-align: left; }
table.price-table th { color: var(--ink); font-size: 0.8125rem; }
table.price-table td.num { color: var(--accent-deep); font-weight: 700; white-space: nowrap; }
.price-section-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 2.25rem 0 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.price-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.price-note { font-size: 0.78rem; color: var(--body-soft); margin-top: 0.6rem; }

/* ---------- セットメニュー(フックで分ける) ---------- */
.hook-block { margin-bottom: 2rem; }
.hook-block .hook-title { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1rem; }
.hook-block .hook-title .hook-icon { flex-shrink: 0; width: 20px; height: 20px; background-color: var(--accent); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.hook-block .hook-title h3 { font-size: 1.0625rem; }
.set-card { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--accent-tint); border: 1px solid var(--accent-line); border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 0.75rem; }
.set-card .set-name { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.set-card .set-name .sub { display: block; font-size: 0.75rem; font-weight: 400; color: var(--body-soft); margin-top: 0.2rem; }
.set-card .set-price { text-align: right; white-space: nowrap; }
.set-card .set-price .num { font-size: 1.25rem; font-weight: 700; color: var(--accent-deep); font-variant-numeric: tabular-nums; }
.set-card .set-price .orig { display: block; font-size: 0.72rem; color: var(--body-soft); text-decoration: line-through; }

/* ---------- ギャラリー ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.gallery-grid img { border-radius: 14px; aspect-ratio: 1/1; object-fit: cover; box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.gallery-grid figcaption { font-size: 0.72rem; color: var(--body-soft); margin-top: 0.4rem; text-align: center; }
figure.gallery-photo img { border-radius: 16px; box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
.gallery-pending { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 14px; padding: 2rem 1.25rem; text-align: center; color: var(--body-soft); font-size: 0.875rem; }

/* ---------- ビフォーアフター(自然な比率のまま並べる、Before/Afterラベルを切り取らない) ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-bottom: 0.5rem; }
.ba-grid figure { margin: 0; }
.ba-grid img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,0.1); display: block; }
.ba-grid figcaption { font-size: 0.72rem; color: var(--body-soft); margin-top: 0.4rem; text-align: center; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq-item .q { font-weight: 700; color: var(--ink); font-size: 0.9375rem; margin-bottom: 0.5rem; display: flex; gap: 0.6rem; }
.faq-item .q::before { content: "Q"; color: var(--accent); font-family: "Hiragino Mincho ProN", serif; }
.faq-item .a { font-size: 0.875rem; color: var(--body); display: flex; gap: 0.6rem; }
.faq-item .a::before { content: "A"; color: var(--accent-deep); font-weight: 700; font-family: "Hiragino Mincho ProN", serif; }

/* ---------- 店舗情報テーブル ---------- */
.info-table { width: 100%; font-size: 0.9rem; }
.info-table tr td { padding: 0.5rem 0; vertical-align: top; border-bottom: 1px solid var(--line); }
.info-table tr td:first-child { color: var(--body-soft); width: 6.5em; font-weight: 700; }
.map-embed { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); margin-top: 1.25rem; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.access-steps { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.access-steps li { padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.875rem; color: var(--body); }

/* ---------- 関連ページリンク ---------- */
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.related-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.95rem; text-align: center; font-size: 0.8125rem; font-weight: 700; color: var(--ink); }

/* ---------- フッター固定バー ---------- */
.fixed-bar { position: fixed; left: 0; right: 0; bottom: 0; display: flex; z-index: 50; box-shadow: 0 -2px 10px rgba(0,0,0,0.12); }
.fixed-bar a { flex: 1; text-align: center; padding: 0.85rem 0.5rem; font-weight: 700; font-size: 0.82rem; display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.fixed-bar a::before { content: ""; display: block; width: 18px; height: 18px; background-color: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.fixed-bar .fb-tel { background: var(--bg-deep); color: #fff; }
.fixed-bar .fb-tel::before { -webkit-mask-image: var(--icon-phone); mask-image: var(--icon-phone); }
.fixed-bar .fb-line { background: var(--cta); color: #fff; }
.fixed-bar .fb-line::before { -webkit-mask-image: var(--icon-chat); mask-image: var(--icon-chat); }

footer.site-footer { background: var(--bg-deep); color: var(--accent-tint); padding: 2.5rem 1.25rem 3rem; font-size: 0.8rem; }
footer.site-footer .inner { max-width: 640px; margin: 0 auto; }
footer.site-footer .brand { color: #fff; font-weight: 700; margin-bottom: 0.75rem; font-size: 0.9375rem; font-family: "Hiragino Mincho ProN", serif; }
footer.site-footer .foot-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 1.25rem 0; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
footer.site-footer .foot-links a { color: var(--accent-line); font-size: 0.78rem; }
footer.site-footer .copyright { color: var(--body-soft); font-size: 0.72rem; margin-top: 1rem; }

@media (min-width: 640px) {
  .staff-row { gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
