/* 背景用の固定div */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_kigyou_b.webp") top center no-repeat; /* PC用背景画像 */
  background-size: cover;
  z-index: -1;
}

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

.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アスペクト比をつくる */
  background: black;
  overflow: hidden;
}

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

 /*--------------------------------------------------------------
# 採用　見出し
--------------------------------------------------------------*/
.title.box-style {
  background-color: #a9a9a9;
  padding: 10px 10px; /* 上下に6px、左右に10px広げる */
  border-left: 5px solid #00B36B;
  font-size: 1.4em;
}

.recruit-block {
  margin-bottom: 20px;
}

.number-font {
  font-family: "Noto Sans JP", monospace; /* 数字だけ別フォント */
}

 /*--------------------------------------------------------------
# 採用　社員紹介
--------------------------------------------------------------*/
/* 大きなタイトル */
.section-title {
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 3px solid #FFFFFF;
  margin-bottom: 30px;
}

/* 小見出し */
.sub-title {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 5px;     /* 上を小さく */
  margin-bottom: 10px; /* 下を大きく */
  padding-bottom: 5px;         /* 下線と文字の余白 */
  border-bottom: 2px solid #F4F38D;  /* 下線 */
}

/* 本文 */
.text-start {
  font-weight: normal;
  line-height: 1.8;
  margin-bottom: 20px;
}