/* カスタマイズ用CSS */
main {
  position: relative;
  z-index: 0;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../../image/back_ground.jpg") center / cover no-repeat;
  background-size: 1600px auto;       /* 画像のスケール調整 */
  background-attachment: fixed;      /* スクロールしても固定！ */
  opacity: 0.4;
  z-index: -1;
}

/* 新着情報ブロック全体の背景を変更 */
.ec-newsRole__news {
    background-color: #ffffff; /* 白背景に変更 */
    /* もし少し透過したい場合は下のように */
    /* background-color: rgba(255, 255, 255, 0.9); */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* 軽い影をつける */
}