@charset "Utf-8";
.overall-design__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overall-design__image img {
  width: 100%;
  height: 100%;
}
.overall-design__image--pc {
  display: none;
}
.overall-design__image--sp {
  display: none;
}
@media (max-width: 830px) {
  .overall-design__image {
    display: none;
  }
  .overall-design__image--pc,
  .overall-design__image--sp {
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .overall-design__image--pc img,
  .overall-design__image--sp img {
    width: 100%;
    height: 100%;
  }
}
