@charset "UTF-8";

body {
  overflow: hidden;
}

.bnr_fst {
  position: fixed;
  max-width: 100vw !important;
  width: 100% !important;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  scale: none;
  box-sizing: border-box;
}

.bnr_fst a {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 430px) {
  .bnr_fst a {
    display: block;
    width: 85% !important;
    height: 85vw !important;
    box-sizing: border-box;
  }

  .bnr_fst a img {
    max-width: 85vw;
    max-height: 85vw;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    object-fit: cover;
    /* 画像の比率が崩れないようにする */
  }
}