@charset "utf-8";

/* Common Setting
=========================================================================================================*/
/* サイト全体でテキスト選択とコンテキストメニュー動作を制限 */
body {
    -webkit-touch-callout: none; /* iOSでの長押しメニュー（画像保存など）を禁止 */
    -webkit-user-select: none;    /* Safari */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* IE10+ */
    user-select: none;            /* 標準プロパティ：テキスト選択を禁止 */
  }
  
  /* 画像に対して特に厳しく制限をかける場合 */
  img {
    pointer-events: none;         /* クリック、右クリック、ドラッグを一切無効化 */
  }
  @media print {
    body {
      display: none !important; /* 印刷時は中身をすべて非表示にする */
    }
  }