/* app.css の .pc-hide(min-width:768px) と .sp-hide(max-width:768px) が
   768px ちょうどの時に両方 display:none になり、04ポイントの画像が消えるバグの対処。
   768px は他のSP用スタイル(max-width:768px)と同じ扱いにするため、SP側画像を強制表示する。 */
@media screen and (width: 768px) {
  .c-cassette-point--pink .c-cassette-point__img img.pc-hide {
    display: inline !important;
  }
}
