/* =====================================================================
   セクション見出し
   ===================================================================== */

.section { padding: 20px 16px; }
.section--band { background: var(--bg-band); }
.section--gray { background: var(--bg); }

.shead { position: relative; margin-bottom: 4px; padding-top: 8px; }
.shead--c { text-align: center; }

.shead__wm {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--blue);
  opacity: .09;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.section__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange-deep);
  letter-spacing: .1em;
  margin: 0 0 4px;
}

.shead--c .section__eyebrow { justify-content: center; }

.section__eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section__title {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 6px;
  letter-spacing: .01em;
  text-wrap: pretty;
  color: var(--navy);
}

.section__title .hl { color: var(--blue); }

.shead--c .section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.shead--c .section__title > span {
  display: inline-block;
  text-align: center;
}

.section__lead {
  position: relative;
  z-index: 1;
  font-size: 12.5px;
  color: var(--ink-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}

.center { text-align: center; }

.btn--sm { padding: 11px 16px; font-size: 13.5px; }
