@charset "utf-8";
/* CSS Document */

@media only screen and (min-width: 769px) {
  .img_pc {
    display: block;
  }
  .img_mobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .img_pc {
    display: none;
  }
  .img_mobile {
    display: block;
  }
}