/* 画像保存をしにくくする設定（不要なら削除OKここから） */
article a.imagelink,
article img.embeddedimage{
	pointer-events: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}
/* 画像保存をしにくくする設定（ここまで） */

/* テキストのコピーガード */
article, 
article * {
	-webkit-user-select: none;  /* Safari */
	-moz-user-select: none;     /* Firefox */
	-ms-user-select: none;      /* Internet Explorer/Edge */
	user-select: none;          /* 標準の構文 */
	
	/* オプション：テキストの選択を完全に防ぐ */
	cursor: default;
	
	/* テキストの選択時の色をグレーにする（視覚的フィードバック） */
	-webkit-touch-callout: none;
}