/* 背景用の固定div */
.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg_katei_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_katei_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;
}
