@charset "UTF-8";
/* ==================
* TOPページ
* 
* ================== */
/* ==================
* fv_block
* ================== */
.fv_block {
  background: var(--bg-image) rgba(255, 255, 255, 0) no-repeat top 50% left 50%/cover;
  aspect-ratio: 16/9;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.fv_block::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.fv_block > .inner {
  text-align: center;
  font-weight: bold;
  position: relative;
}
.fv_block > .inner .head {
  font-size: 100qw;
}

/* end fv_block */