@charset "UTF-8";
/**************** 印刷用のCSS ****************/
/* ブラウザのヘッダーフッターの非表示を試みたがうまくいかない(20181218) */
@media print {
	body {
        -webkit-print-color-adjust: exact; /*背景色印刷指定*/
	}
}
@page { size: landscape; }　/*A4 横向き　chromeでのみ適用を確認できました。*/
@page { size: 297mm 210mm;margin: 0mm; } /* A4サイズ指定 margin: 0mmは無効*/

/* 印刷用のCSS */
.print_pages{
	page-break-after: always;
	position: relative;
	/*counter-increment: page_count;*/
}

.print_pages:before{
  position: absolute;
  right: 0;
  top: 0;
  color: red;
  content: "取扱い注意";
}

.print_pages:after{
  position: absolute;
  right: 0;
  bottom: 0;
  /*content: counter(page_count) "ページ";*/
}

/*最後のページは改ページを入れない*/
.print_pages:last-child{
  page-break-after: auto;
}
