    body { font-family: 'Noto Sans JP', sans-serif; }

    /* 背景画像 */
    .bg-custom {
      background-image: url('../img/bg-img.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .bg-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.2); /* 黒の透過 */
    }
    .bg-custom h1 {
      position: relative;
      z-index: 1; /* 背景画像の上にテキストを表示 */
      color: white;
    }
