
.fixedBanner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width:74px;
  height:240px;
  margin: auto;
  z-index: 677;
}

.fixedBanner a {
  display: block;
  width: inherit;
  height: inherit;
}

.fixedBanner img {
  display: block;
  width: inherit;
  height: inherit;
  object-fit: cover;
}

img.fixed-banner_pc {
  display: block;

}

img.fixed-banner_sp {
  display: none;
}



@media screen and (max-width: 768px) {


  .fixedBanner {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18.6667vw;
    margin: auto;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(100%);
  }
  .fixedBanner._active {
    opacity: 1;
    transform: translateY(0);
  }
  .fixedBanner a {
    display: block;
    width: inherit;
    height: inherit;
  }
  .fixedBanner img {
    display: block;
    width: inherit;
    height: inherit;
    object-fit: cover;
  }
  img.fixed-banner_pc {
    display: none;
  }
  img.fixed-banner_sp {
    display: block;
  }



}
