.lty-header-img {
  position: relative;
}

/* 背景画像 */
.cvr-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* オーバーレイ（背景だけに乗る） */
.lty-header-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* ←ここ調整 */
  z-index: 2;
  pointer-events: none;
}

/* タイトル系はオーバーレイより前へ */
.lty-title-wrap,
.lty-title-wrap * {
  position: relative;
  z-index: 3;
}
/* ヘッダタイトルロゴだけabsolute指定*/
.pc-supporter-title.lty-title-wrap{position:absolute;
z-index:3;
}