.site-header {
  position: fixed;/*ヘッダーを固定*/
  z-index: 9999;/*一番前に表示されるように設定*/
  width: 100%;/*ヘッダーが横幅いっぱいになるように指定*/
}




img{
    /* PCの右クリック禁止 */
    pointer-events: none;
}

img{
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print {
    body { display: none }
}