@charset "utf-8";

html, body {
    touch-action: manipulation; /* zoomは許可、スワイプ制限 */
    overscroll-behavior: contain; /* スクロール暴走防止 */
  }
  iframe {
    touch-action: auto; /* iframe内部のピンチズーム許可 */
  }

.dsp_sp {
    display: none;
}
@media screen and (max-width: 1024px) {
    .dsp_pc {
        display: none !important;
    }
    .dsp_sp {
        display: block !important;
    }
}