.banner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  background: #f2f3f6;
  margin-bottom: 20px;
  pointer-events: none;
}
.banner.active{
  pointer-events: inherit;
}
.banner_img.pc {
  aspect-ratio: 1920/200;
  height: 200px;
}
.banner_img.mo {
  width: 100%;
  aspect-ratio: 390/140;
  display: none;
}

@media (max-width: 1299px) {
  .banner_img.pc {
    height: 180px;
  }
}
@media (max-width: 1199px) {
  .banner_img.pc {
    height: 142px;
  }
}

@media (max-width: 991px) {
  .banner_img.pc {
    display: none;
  }
  .banner_img.mo {
    display: block;
  }
}