body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  background: url("../img/bg_kigyou_b.jpg") top center no-repeat; /* ← パソコン用背景画像 */
  background-size: cover;
  background-attachment: fixed; /* ← 背景を固定する */
  position: relative;
}

/* スマホ用（幅768px以下）では背景画像を切り替える */
@media screen and (max-width: 768px) {
  body {
    background: url("../img/bg_kigyou_s.jpg") top center no-repeat; /* ← スマホ用背景画像 */
    background-size: cover;
	background-attachment: fixed; /* ← 背景を固定する */
  }
}

.about {
  --background-color: rgba(255, 255, 255,  0);
  width: 100%;
  min-height: 100vh;
  padding: 120px 0;
　background-attachment: fixed;
}

/* 採用情報　表の背景色を透明にする */
.no-bg th,
.no-bg td {
  background-color: transparent !important;
  color: white !important; /* 表の文字を白に */
}

/* 見出し背景も透明に */
.no-bg thead th {
  background-color: transparent !important;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9アスペクト比 → (9/16 * 100) */
  background: black;
  overflow: hidden;
}

.video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}