/* ============================================================
   NEXUS パーソナルトレーナー採用LP
   カラー値は既存サイト（n-group-inc.com）のCSS変数からの実測値
   ============================================================ */

:root {
  /* ダーク面 */
  --ink: #14231A;
  --ink-2: #1D3025;
  --ink-3: #1B2C21;
  --on-dark: #F6F2E7;
  --muted-dark: #A6B3A0;
  --soft-dark: #8A9785;
  --hair-dark: rgba(246, 242, 231, 0.12);
  --hair-dark-2: rgba(246, 242, 231, 0.22);

  /* ライト面 */
  --paper: #F6F2E7;
  --paper-2: #EDE7D6;
  --card: #FFFDF7;
  --line: #C4BBA1;
  --line-soft: #E0D9C6;
  --muted: #6A6350;
  --body: #3F4A40;

  /* アクセント */
  --accent: #3DBB2A;         /* ダーク面のCTA */
  --accent-hover: #4FD139;
  --accent-2: #9FE05A;       /* ダーク面の強調文字 */
  --accent-deep: #127D24;    /* ライト面のCTA・強調文字 */
  --accent-deep-hover: #16912A;
  --accent-pressed: #0D5E1B;

  --error: #B85434;
  --error-dark: #E2795A;

  --maxw: 430px;
  --pad: 20px;
  --bar-h: 68px;

  --f-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --f-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --f-num: Archivo, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-jp);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* 追従CTAバーの分だけ余白を確保 */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }

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

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.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;
}

/* ---------- 面 ---------- */
.s-dark { background: var(--ink); color: var(--on-dark); }
.s-light { background: var(--paper); color: var(--ink); }
.s-light-2 { background: var(--paper-2); color: var(--ink); }
section { padding-block: 58px 62px; }

/* ---------- 見出しユニット ---------- */
.eyebrow {
  font-family: var(--f-num);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 6px;
}
.s-dark .eyebrow { color: var(--accent-2); }

h2 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.55;
  margin: 0;
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}
.lede {
  word-break: auto-phrase;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.s-dark .lede { color: var(--muted-dark); }
.sec-head { margin-bottom: 30px; }

/* ---------- ボタン ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--f-jp);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn svg { flex: none; }

.btn-primary { background: var(--accent); color: var(--on-dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--on-dark); }
.btn-primary:active { background: var(--accent-deep); }

.btn-primary-light { background: var(--accent-deep); color: var(--paper); }
.btn-primary-light:hover { background: var(--accent-deep-hover); color: var(--paper); }
.btn-primary-light:active { background: var(--accent-pressed); }

.btn-ghost { border-color: var(--accent); color: var(--accent-2); background: transparent; }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

.btn-ghost-light { border-color: var(--accent-deep); color: var(--accent-deep); background: transparent; }
.btn-ghost-light:hover { background: rgba(18, 125, 36, .06); color: var(--accent-deep); }

/* ---------- ヘッダー ---------- */
.hdr {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hair-dark);
}
.logo {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--f-num); font-weight: 700; font-size: 15px;
  letter-spacing: 0.20em; color: var(--on-dark); text-decoration: none;
}
.hdr .btn {
  min-height: 44px; padding: 0 16px; font-size: 13px; border-radius: 6px;
}

/* ---------- ファーストビュー ---------- */
.hero { background: var(--ink); color: var(--on-dark); }
.hero-photo {
  height: 208px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--hair-dark);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot {
  border: 1px dashed rgba(246, 242, 231, .28);
  border-radius: 4px;
  padding: 14px 18px;
  display: grid;
  justify-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(246, 242, 231, .62);
  text-align: center;
}
.hero-body { padding-block: 22px 26px; display: grid; gap: 16px; }

.badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.badges li {
  font-size: 11px; font-weight: 500; padding: 5px 10px;
  border: 1px solid var(--hair-dark-2); border-radius: 100px;
}

h1 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
  word-break: auto-phrase;
  line-break: strict;
}
h1 .num { font-family: var(--f-num); font-weight: 700; color: var(--accent-2); }

.hero-sub { margin: 0; font-size: 13px; line-height: 1.95; color: var(--muted-dark); }
.hero-cta { display: grid; gap: 10px; }
.cta-note { margin: 0; text-align: center; font-size: 11px; color: var(--soft-dark); }

.award {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--hair-dark);
  font-size: 11px; line-height: 1.6; color: var(--muted-dark);
}

/* ---------- 定義リスト（募集の要点） ---------- */
.facts { margin: 0; border-top: 1px solid var(--line); }
.fact {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.fact dt { font-size: 12px; font-weight: 500; color: var(--muted); line-height: 1.7; }
.fact dd { word-break: auto-phrase; margin: 0; font-size: 15px; font-weight: 700; line-height: 1.7; }
.fact dd .n { font-family: var(--f-num); font-size: 17px; }
.fact .sub { display: block; font-size: 12px; font-weight: 400; line-height: 1.75; color: var(--muted); margin-top: 4px; }
.fact .hl { color: var(--accent-deep); }

/* ---------- 給与ステップ ---------- */
.steps { display: grid; gap: 26px; margin-bottom: 30px; }
.step { display: grid; gap: 8px; }
.step-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.step-no { font-family: var(--f-num); font-weight: 600; font-size: 11px; letter-spacing: .14em; color: var(--soft-dark); }
.step-when { font-size: 11px; color: var(--soft-dark); text-align: right; }
.step.is-top .step-no, .step.is-top .step-when { color: var(--accent-2); }
.meter { height: 6px; background: rgba(246,242,231,.10); border-radius: 3px; overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.step.is-top .meter i { background: var(--accent-2); }
.amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.amount .n { font-family: var(--f-num); font-weight: 700; font-size: 27px; line-height: 1.2; }
.amount .unit { font-size: 13px; font-weight: 700; }
.amount .lbl { font-size: 12px; color: var(--muted-dark); }
.step.is-top .amount .n, .step.is-top .amount .unit { color: var(--accent-2); }
.step p { margin: 0; font-size: 12px; line-height: 1.8; color: var(--muted-dark); }

.panel-outline {
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--ink-2);
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}
.panel-outline h3 { margin: 0; font-size: 12px; font-weight: 700; color: var(--accent-2); }
.panel-outline p { margin: 0; font-size: 12px; line-height: 1.85; color: var(--muted-dark); }
.note-dark { margin: 16px 0 0; font-size: 11px; line-height: 1.8; color: var(--soft-dark); }

/* ---------- 先輩カード ---------- */
.members { display: grid; gap: 18px; }
.member {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 18px;
  display: grid;
  gap: 14px;
}
.member-top { display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; }
.member-id { display: grid; gap: 7px; }
.member-name { font-size: 18px; font-weight: 700; line-height: 1.4; }
.member-name span { font-size: 12px; font-weight: 500; color: var(--muted); }
.chip {
  font-size: 11px; font-weight: 500; padding: 4px 9px;
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--muted); background: var(--paper);
  justify-self: start;
}
.member-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-block: 14px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat { display: grid; gap: 3px; }
.stat dt { font-size: 11px; font-weight: 500; color: var(--muted); }
.stat dd { margin: 0; font-family: var(--f-num); font-weight: 700; line-height: 1.15; font-size: 20px; }
.stat dd .u { font-family: var(--f-jp); font-size: 13px; }
.stat.is-pay dd { font-size: 28px; color: var(--accent-deep); }
.stat.is-pay dd .u { font-size: 14px; font-weight: 700; }
.member-cmt { margin: 0; font-size: 13px; line-height: 1.95; color: var(--body); }
.disclaimer { margin: 18px 0 22px; font-size: 11px; line-height: 1.8; color: var(--muted); }

/* ---------- 大きな数字（研修） ---------- */
.reasons { display: grid; gap: 20px; }
.reason { border-top: 2px solid var(--ink); padding-block: 18px 20px; display: grid; gap: 8px; }
.reason.is-hl { border-top-color: var(--accent-deep); }
.reason .fig { display: flex; align-items: baseline; gap: 6px; }
.reason .fig b { font-family: var(--f-num); font-weight: 700; font-size: 44px; line-height: 1; letter-spacing: -.02em; }
.reason .fig span { font-size: 16px; font-weight: 700; }
.reason.is-hl .fig b, .reason.is-hl .fig span { color: var(--accent-deep); }
.reason h3 { margin: 0; font-size: 15px; font-weight: 700; }
.reason p { margin: 0; font-size: 13px; line-height: 1.95; color: var(--body); }

/* ---------- タイムライン ---------- */
.timeline { display: grid; gap: 20px; margin-bottom: 24px; }
.tl-row { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.tl-time { font-family: var(--f-num); font-weight: 600; font-size: 14px; color: var(--accent-2); padding-top: 1px; }
.tl-body { padding-left: 16px; border-left: 2px solid var(--hair-dark-2); display: grid; gap: 3px; }
.tl-row:first-child .tl-body, .tl-row:last-child .tl-body { border-left-color: var(--accent); }
.tl-body b { font-size: 14px; font-weight: 700; }
.tl-body span { font-size: 12px; line-height: 1.8; color: var(--muted-dark); }

.shift { display: grid; gap: 12px; }
.shift-card { background: var(--ink-2); border-radius: 8px; padding: 16px 16px 18px; display: grid; gap: 8px; }
.shift-card.is-hl { border: 1px solid var(--accent); }
.shift-card h3 { margin: 0; font-size: 13px; font-weight: 700; display: flex; align-items: baseline; gap: 8px; }
.shift-card h3 i { font-family: var(--f-num); font-style: normal; font-weight: 700; color: var(--accent-2); }
.shift-card p { margin: 0; font-size: 12px; line-height: 1.9; color: var(--muted-dark); }

/* ---------- 待遇 ---------- */
.perks-hl { display: grid; gap: 10px; margin-bottom: 24px; }
.perk {
  border: 1px solid var(--accent-deep); border-radius: 8px; background: var(--card);
  padding: 16px 16px 18px; display: grid; gap: 6px;
}
.perk b { font-size: 16px; color: var(--accent-deep); }
.perk span { font-size: 12.5px; line-height: 1.85; color: var(--body); }

.perk-list {
  margin: 0 0 24px; padding: 20px 0 0; list-style: none;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px;
}
.perk-list li {
  display: grid; grid-template-columns: 15px 1fr; gap: 8px; align-items: start;
  font-size: 12.5px; line-height: 1.7; color: var(--body);
}

/* ---------- キャリア ---------- */
.path { display: grid; margin-block: 4px 26px; }
.path-step { display: flex; align-items: center; gap: 14px; padding-block: 4px; font-size: 16px; font-weight: 700; }
.path-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; }
.path-step:first-child .path-dot { background: var(--accent-2); }
.path-step.is-last { color: var(--accent-2); }
.path-step.is-last .path-dot { background: transparent; border: 2px solid var(--accent-2); }
.path-link { width: 1px; height: 26px; background: var(--hair-dark-2); margin-left: 4.5px; }
.career-body { margin: 0 0 26px; font-size: 13.5px; line-height: 2; color: #C7D2C2; }
.media-note { background: var(--ink-2); border-radius: 8px; padding: 16px 16px 18px; display: grid; gap: 7px; }
.media-note b { font-family: var(--f-num); font-size: 10px; letter-spacing: .16em; color: var(--soft-dark); font-weight: 600; }
.media-note p { margin: 0; font-size: 12.5px; line-height: 1.9; color: var(--muted-dark); }

/* ---------- 勤務地 ---------- */
.tabs {
  display: flex; gap: 7px; margin-bottom: 18px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; min-height: 44px; padding: 0 14px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--f-jp); font-size: 13px; font-weight: 700;
  white-space: nowrap; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--muted);
}
.tab .c { font-family: var(--f-num); font-weight: 600; font-size: 11px; opacity: .75; }
.tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.stores { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
.area-panel > .stores { border-top: 1px solid var(--line); }
.stores li {
  display: grid; grid-template-columns: 13px 1fr; gap: 7px; align-items: center;
  padding-block: 12px; border-bottom: 1px solid var(--line-soft);
  font-size: 13px; line-height: 1.5;
}
.more { margin-top: 16px; }
.more > summary {
  list-style: none; cursor: pointer;
  min-height: 48px; padding: 0 16px;
  border: 1px solid var(--accent-deep); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--accent-deep);
}
.more > summary::-webkit-details-marker { display: none; }
.more > summary .chev { transition: transform .18s; }
.more[open] > summary .chev { transform: rotate(180deg); }
.more[open] > summary { margin-bottom: 4px; }
.note-light { margin: 18px 0 0; font-size: 12px; line-height: 1.9; color: var(--muted); }

/* ---------- 選考フロー ---------- */
.flow { border-top: 1px solid var(--line); margin-bottom: 22px; }
.flow-step {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 12px;
  padding-block: 20px; border-bottom: 1px solid var(--line); align-items: start;
}
.flow-no { font-family: var(--f-num); font-weight: 700; font-size: 20px; line-height: 1.2; color: var(--accent-deep); }
.flow-body { display: grid; gap: 4px; }
.flow-body b { font-size: 15px; font-weight: 700; }
.flow-body span { font-size: 12.5px; line-height: 1.8; color: var(--body); }
.flow-days { font-family: var(--f-num); font-weight: 600; font-size: 11px; color: var(--muted); white-space: nowrap; padding-top: 4px; }
.flow-step.is-last .flow-days { color: var(--accent-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li {
  font-size: 11.5px; font-weight: 500; padding: 6px 11px;
  border: 1px solid var(--accent-deep); border-radius: 100px; color: var(--accent-deep);
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq > details { border-bottom: 1px solid var(--line); }
.faq > details[open] { background: var(--paper-2); }
.faq summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 18px 1fr 18px; gap: 10px; align-items: center;
  min-height: 60px; padding: 16px 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { font-family: var(--f-num); font-weight: 700; font-size: 14px; color: var(--accent-deep); }
.faq summary .t { font-size: 13.5px; font-weight: 700; line-height: 1.65; }
.faq summary .chev { transition: transform .18s; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details[open] summary .chev path { stroke: var(--accent-deep); }
.faq .a { display: grid; grid-template-columns: 18px 1fr; gap: 10px; padding: 0 14px 18px 12px; }
.faq .a b { font-family: var(--f-num); font-weight: 700; font-size: 14px; color: var(--muted); }
.faq .a p { margin: 0; font-size: 13px; line-height: 2; color: var(--body); }

/* ---------- 応募（クリーム面） ---------- */
.line-block {
  border: 1px solid var(--accent-deep); border-radius: 8px; background: var(--card);
  padding: 20px 18px; display: grid; gap: 12px; margin-bottom: 24px;
}
.line-block b { font-size: 16px; font-weight: 700; }
.line-block p { margin: 0; font-size: 12.5px; line-height: 1.9; color: var(--body); }

.or { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.or span { font-size: 11px; color: var(--muted); }

.form-slot {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  min-height: 520px;
}
.form-slot iframe { width: 100%; border: 0; display: block; }
.form-fallback {
  margin: 0; padding: 32px 20px; text-align: center;
  font-size: 13px; line-height: 1.95; color: var(--muted);
}
.consent { margin: 16px 0 0; font-size: 11.5px; line-height: 1.9; color: var(--muted); }

/* ---------- フッター ---------- */
.ftr { background: var(--ink); color: var(--on-dark); padding-block: 40px 28px; }
.ftr-inner { display: grid; gap: 22px; }
.ftr address { font-style: normal; display: grid; gap: 6px; }
.ftr address b { font-size: 13px; }
.ftr address span { font-size: 12px; line-height: 1.85; color: var(--muted-dark); }
.ftr-links { display: grid; gap: 2px; padding-top: 20px; border-top: 1px solid var(--hair-dark); }
.ftr-links a {
  font-size: 12.5px; color: var(--muted-dark); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  min-height: 44px;
}
.ftr-links a:hover { color: var(--accent-2); }
.copyright {
  margin: 0; padding-top: 16px; border-top: 1px solid var(--hair-dark);
  font-family: var(--f-num); font-size: 10.5px; letter-spacing: .06em; color: var(--soft-dark);
}

/* ---------- 追従CTAバー ---------- */
.bar {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  background: var(--ink-3);
  border-top: 1px solid rgba(246, 242, 231, .16);
  padding: 8px var(--pad) calc(8px + env(safe-area-inset-bottom, 0px));
  transition: transform .22s ease, opacity .22s ease;
}
.bar-inner { max-width: var(--maxw); margin-inline: auto; display: flex; gap: 10px; }
.bar .btn { flex: 6 1 0; min-height: 52px; font-size: 15px; padding-inline: 8px; }
.bar .btn.is-sub { flex: 4 1 0; }
.bar.is-off { transform: translateY(110%); opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .bar { transition: none; }
  .more > summary .chev, .faq summary .chev { transition: none; }
}

/* ---------- サンクスページ ---------- */
.thanks { min-height: 70vh; display: grid; align-content: start; gap: 22px; padding-block: 56px 48px; text-align: center; justify-items: center; }
.thanks h1 { font-size: 22px; }
.thanks p { margin: 0; font-size: 13.5px; line-height: 2.05; color: #C7D2C2; }
.thanks hr { width: 100%; height: 1px; background: var(--hair-dark); border: 0; margin: 0; }
.thanks .btn { width: 100%; }

/* ---------- 広い画面 ---------- */
@media (min-width: 700px) {
  body { background: var(--ink-2); }
  .page { max-width: 480px; margin-inline: auto; background: var(--paper); box-shadow: 0 0 60px rgba(0,0,0,.25); }
  /* ダーク面のページ（/thanks/）が上の .page に背景を奪われないように */
  .page.s-dark { background: var(--ink); }
  :root { --maxw: 440px; }
  .bar-inner { max-width: 440px; }
}


/* ---------- 引用バンド（息継ぎ用） ---------- */
.quote-band { padding-block: 76px 80px; }
.quote-band .wrap { display: grid; gap: 20px; }
.quote-rule { width: 40px; height: 2px; background: var(--accent-2); }
.quote {
  margin: 0;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 2.05;
  letter-spacing: .01em;
  color: var(--on-dark);
  word-break: auto-phrase;
}
.quote-sub { margin: 0; font-size: 13px; line-height: 1.9; color: var(--muted-dark); }

/* ---------- 写真バンド ----------
   実写真が用意できたら、index.html の該当コメントを
   このマークアップに差し替えるだけで入ります。 */


/* ---------- 写真スクリム ----------
   ストック写真の上に重ねる暗幕。目的は2つ。
   ①ブランドのダークグリーンに色調を寄せる
   ②人物を「風景の一部」として見せ、自社スタッフの紹介と誤読させない
   実写真（NEXUS提供）に差し替えたら .is-light を足して薄くする。 */
.scrim { position: relative; overflow: hidden; background: var(--ink); isolation: isolate; }
.scrim > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.38) contrast(1.06) brightness(.66);
}
.scrim::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(20, 35, 26, .52);
  mix-blend-mode: multiply;
}
.scrim.is-light > img { filter: grayscale(.1) contrast(1.02) brightness(.92); }
.scrim.is-light::after { background: rgba(20, 35, 26, .18); }

/* 写真バンドは全幅。キャプションは付けない
   （ストック写真に自社施設の説明を付けると事実と異なるため） */
.band { margin: 0; }
.band.scrim > img { height: 260px; }
