@charset "UTF-8";

/* =========================================================
   株式会社桜井土建 ご提案専用サンプル
   モチーフ：コンクリートの灰 × 鉄紺 × 保安のオレンジ
   見出しは明朝（社章の書体に合わせる）／本文はゴシック18px
   ========================================================= */

:root {
  color-scheme: only light;
  --paper: #f4f3f0;
  --white: #ffffff;
  --ink: #1a1f24;
  --ink-soft: #4a545d;
  --steel: #2c3a45;
  --steel-deep: #1b262e;
  --line: #dcd8d1;
  --line-soft: #e9e6e0;
  --accent: #c25a1c;
  --accent-soft: #fbeee4;
  --shadow:
    0 1px 2px rgba(26, 31, 36, 0.06), 0 10px 28px rgba(26, 31, 36, 0.07);
  --radius: 3px;
  /* 文字サイズ（03_レビューゲートの18px仕様＝正本） */
  --fs-body: 18px; /* 本文・説明文・表・リスト */
  --fs-h3: 24px; /* 小見出し */
  --fs-h4: 20px; /* カード見出しの下限 */
  --fs-label: 15px; /* キャプション・ラベル */
  --fs-note: 14px; /* 注記（これより小さくしない） */
  --font:
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP",
    "Meiryo", system-ui, sans-serif;
  --font-mincho:
    "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP",
    "MS PMincho", serif;
  --font-num: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1.2em;
}

.inner {
  width: min(1080px, 92%);
  margin-inline: auto;
}

/* ---------- ご提案専用の注釈 ---------- */
.proposal-note {
  background: var(--steel-deep);
  color: #e7e4de;
  font-size: 15px;
  line-height: 1.7;
  padding: 12px 0;
}

.proposal-note p {
  margin: 0;
}

.proposal-note .line1 {
  margin-bottom: 6px;
}

.proposal-note strong {
  color: #ffffff;
}

.proposal-note .line2 {
  color: #b9c2c9;
}

.proposal-note a {
  color: #ffd9bf;
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none;
  color: var(--ink);
}

.brand-name {
  display: block;
  font-family: var(--font-mincho);
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.brand-sub {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tel {
  text-decoration: none;
  text-align: right;
  line-height: 1.3;
}

.tel-label {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
}

.tel-num {
  display: block;
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.02em;
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: var(--fs-body);
  cursor: pointer;
}

.menu-icon {
  display: block;
  width: 20px;
}

.menu-icon span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--steel);
}

.gnav {
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

.gnav ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.gnav a:hover {
  color: var(--accent);
}

/* ---------- 第一画面 ----------
   画面のちょうど1枚分に収める。
   --top-h（上の注釈＋ヘッダー）と --bottom-h（スマホの電話バー）はJSが実測して入れる。
   高さは固定せず min-height にする（縦の短い画面で中身があふれないため） */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--top-h, 210px) - var(--bottom-h, 0px));
  min-height: calc(100svh - var(--top-h, 210px) - var(--bottom-h, 0px));
  background: linear-gradient(180deg, #edeae4 0%, #e4e0d9 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero.has-photo {
  background: var(--steel-deep);
}

/* 写真を敷いたときは、紙のような点の質感は重ねない */
.hero.has-photo::before {
  display: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      100deg,
      rgba(16, 23, 29, 0.92) 0%,
      rgba(16, 23, 29, 0.82) 42%,
      rgba(16, 23, 29, 0.4) 78%,
      rgba(16, 23, 29, 0.3) 100%
    ),
    url("img/hero.jpg");
  background-size: cover;
  background-position: 62% center;
}

.hero.has-photo .hero-eyebrow {
  color: #cdd4d9;
}

.hero.has-photo .hero-title,
.hero.has-photo .hero-lead {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(10, 16, 20, 0.55);
}

.hero.has-photo .hero-eyebrow {
  text-shadow: 0 2px 10px rgba(10, 16, 20, 0.5);
}

.hero.has-photo .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-credit {
  position: absolute;
  right: 14px;
  bottom: 22px;
  margin: 0;
  font-size: var(--fs-note);
  color: rgba(255, 255, 255, 0.75);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(26, 31, 36, 0.06) 1px,
    transparent 1px
  );
  background-size: 5px 5px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1080px, 92%);
  padding: 72px 0 84px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-mincho);
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero-lead {
  max-width: 40em;
  margin: 0 0 30px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary .btn-sub {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-ghost {
  border: 1px solid var(--steel);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.7);
}

.hero-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: var(--steel-deep);
  background-image: repeating-linear-gradient(
    90deg,
    #f0efe9 0 60px,
    transparent 60px 120px
  );
  background-size: 120px 4px;
  background-repeat: repeat-x;
  background-position: 0 5px;
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.section:nth-of-type(even) {
  background: var(--white);
}

.sec-eyebrow {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.sec-title {
  margin: 0 0 20px;
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4.4vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.sec-lead {
  max-width: 40em;
  font-size: 18px;
}

.sub-title {
  margin: 44px 0 16px;
  font-family: var(--font-mincho);
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding-left: 14px;
  border-left: 4px solid var(--steel);
}

.note {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- 施工の配置図 ---------- */
.map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.map-figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 4px;
}

.section:nth-of-type(even) .map-figure {
  background: var(--paper);
}

#workMap {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.rings circle {
  fill: none;
  stroke: rgba(44, 58, 69, 0.45);
  stroke-width: 2;
  stroke-dasharray: 9 9;
}

.ring-labels text {
  fill: var(--steel);
  font-size: 26px;
  font-family: var(--font-num);
  text-anchor: middle;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 6;
  stroke-linejoin: round;
}

.pin {
  cursor: pointer;
}

.pin-head circle {
  fill: var(--steel-deep);
  stroke: #ffffff;
  stroke-width: 3;
}

.pin-hit {
  fill: transparent;
}

.pin-dot {
  fill: var(--white);
  stroke: var(--steel);
  stroke-width: 3;
}

.pin-num {
  fill: var(--steel);
  font-family: var(--font-num);
  font-size: 27px;
  font-weight: 700;
  text-anchor: middle;
  pointer-events: none;
}

.pin-town {
  fill: var(--ink);
  font-size: 26px;
  text-anchor: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 6;
  stroke-linejoin: round;
}

.pin-head .pin-town {
  fill: var(--steel-deep);
  font-weight: 700;
}

.pin-town-active {
  fill: var(--accent);
  font-size: 28px;
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 7;
  stroke-linejoin: round;
}

.pin-work:hover .pin-dot,
.pin-work:focus .pin-dot {
  fill: var(--accent-soft);
}

.pin-work.is-active .pin-dot {
  fill: var(--accent);
  stroke: var(--accent);
}

.pin-work.is-active .pin-num {
  fill: #ffffff;
}

.pin-work:focus {
  outline: none;
}

.pin-work:focus .pin-dot {
  stroke-width: 5;
}

.map-note {
  margin: 10px 2px 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.map-panel {
  position: sticky;
  top: 130px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--steel);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 220px;
}

.section:nth-of-type(even) .map-panel {
  background: var(--paper);
}

.map-panel-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--fs-body);
}

.panel-year {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--accent);
}

.panel-title {
  margin: 0 0 16px;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
}

.panel-list {
  margin: 0;
  font-size: var(--fs-body);
}

.panel-list dt {
  color: var(--ink-soft);
  font-size: 15px;
}

.panel-list dd {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-list dd:last-child {
  border-bottom: none;
}

/* ---------- 表 ---------- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.section:nth-of-type(even) .table-scroll {
  background: var(--paper);
}

.works-table,
.job-table,
.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
}

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

.works-table thead th {
  background: #e9e6e0;
  font-size: 15px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.works-table tbody tr {
  cursor: pointer;
}

.works-table tbody tr:hover {
  background: var(--accent-soft);
}

.works-table tbody tr.is-active {
  background: var(--accent-soft);
  box-shadow: inset 4px 0 0 var(--accent);
}

.cell-year {
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: var(--fs-label);
}

.cell-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  font-family: var(--font-num);
  font-size: 15px;
  color: var(--steel);
}

.cell-route {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- 事業内容 ---------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 14px;
  margin: 24px 0 16px;
  padding: 0;
  list-style: none;
}

.service-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.service-list .jp {
  display: block;
  font-size: 20px;
  font-family: var(--font-mincho);
  letter-spacing: 0.04em;
}

.service-list .en {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- 会社の姿勢 ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.section:nth-of-type(even) .card {
  background: var(--paper);
}

.card h3 {
  margin: 0 0 14px;
  font-family: var(--font-mincho);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.social-grid h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--steel);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.cert-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.section:nth-of-type(even) .cert-item {
  background: var(--paper);
}

.cert-name {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 21px;
  letter-spacing: 0.03em;
}

.cert-no {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- 採用 ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.steps li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
}

.step-no {
  margin: 0 0 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--steel);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
}

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

.job-table,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section:nth-of-type(even) .job-table,
.section:nth-of-type(even) .company-table {
  background: var(--paper);
}

.job-table th,
.company-table th {
  width: 200px;
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  background: #e9e6e0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-body);
  font-weight: 600;
}

.job-table td,
.company-table td {
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}

.job-table tr:last-child th,
.job-table tr:last-child td,
.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}

.voice blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.voice .q {
  margin: 0 0 2px;
  font-size: 15px;
  color: var(--ink-soft);
}

.voice .a {
  margin: 0 0 16px;
  font-size: 19px;
  font-family: var(--font-mincho);
}

/* ---------- お問い合わせ ---------- */
.contact-box {
  margin-top: 20px;
  padding: 32px 24px;
  background: var(--steel-deep);
  color: #eceae5;
  border-radius: var(--radius);
  text-align: center;
}

.contact-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.contact-tel .lbl {
  font-size: var(--fs-label);
  color: #b9c2c9;
}

.contact-tel .num {
  font-family: var(--font-num);
  font-size: clamp(34px, 6vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.contact-fax,
.contact-addr {
  margin: 8px 0 0;
  font-size: var(--fs-body);
  color: #cdd4d9;
}

/* ---------- フッター ---------- */
.footer {
  background: #141c22;
  color: #c8cfd4;
  padding: 36px 0 96px;
  font-size: var(--fs-body);
}

.foot-brand {
  margin: 0 0 6px;
  color: #ffffff;
}

.foot-copy {
  margin: 0 0 18px;
  font-size: 15px;
  color: #93a0a8;
}

.foot-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #93a0a8;
}

/* ---------- 下部固定の電話 ---------- */
.tel-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--accent);
  box-shadow: 0 -2px 10px rgba(26, 31, 36, 0.2);
}

.tel-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 8px;
  color: #ffffff;
  text-decoration: none;
}

.tel-bar-label {
  font-size: var(--fs-body);
}

.tel-bar-num {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 700;
}

/* =========================================================
   タブレット・スマートフォン
   ========================================================= */
@media (max-width: 900px) {
  .map-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-panel {
    position: static;
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: inline-flex;
  }

  .gnav {
    display: none;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav ul {
    flex-direction: column;
    gap: 0;
  }

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

  .gnav a {
    padding: 16px 4px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .tel {
    display: none;
  }

  .tel-bar {
    display: block;
  }

  .hero-inner {
    padding: 44px 0 60px;
  }

  .section {
    padding: 52px 0;
  }

  .job-table,
  .company-table,
  .job-table tbody,
  .company-table tbody,
  .job-table tr,
  .company-table tr,
  .job-table th,
  .company-table th,
  .job-table td,
  .company-table td {
    display: block;
    width: auto;
  }

  .job-table th,
  .company-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .job-table td,
  .company-table td {
    padding-top: 8px;
  }

  .works-table {
    font-size: var(--fs-body);
  }

  .works-table th,
  .works-table td {
    padding: 12px 12px;
  }
}

.panel-hint {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink-soft);
}

/* 施工事例の表は、スマホでは1件ずつのカードに切り替える
   （4列のまま縮めると「河川除 草」のように文字が折れて読めないため） */
@media (max-width: 780px) {
  .table-scroll {
    overflow-x: visible;
    border: none;
    background: none;
  }

  .works-table thead {
    display: none;
  }

  .works-table,
  .works-table tbody,
  .works-table tr,
  .works-table td {
    display: block;
    width: auto;
  }

  .works-table tr {
    margin-bottom: 12px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .section:nth-of-type(even) .works-table tr {
    background: var(--paper);
  }

  .works-table td {
    padding: 0;
    border-bottom: none;
  }

  .works-table .cell-year {
    margin-bottom: 4px;
  }

  .works-table .cell-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .works-table td[data-label] {
    display: flex;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--line-soft);
    font-size: var(--fs-body);
  }

  .works-table td[data-label]::before {
    content: attr(data-label);
    flex: none;
    width: 4.5em;
    color: var(--ink-soft);
    font-size: 15px;
  }
}

/* ---------- 看板に掲げている品目・職種 ---------- */
.sign-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sign-list li {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: var(--fs-body);
}

.sign-list li.is-mark {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: #8f3f10;
}

.sign-lead {
  max-width: 40em;
  font-size: var(--fs-body);
}
