/* 🔒 テキスト選択禁止 */
body, img, p, h1, h2, h3, h4, h5, h6, a {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* 🖼️ 画像ドラッグ禁止 */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ✋ ピンチズーム許可 */
body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  overflow-x: hidden;
}
