/*reset css start*/
@media print {
 body{
  overflow-y: visible !important;
  overflow-x: visible !important;
 }
 .divMain{
  overflow-y: visible !important;
 }
 h1 {
    page-break-after: always;/* 直後で改ページさせる */
}

 h2 {
  page-break-before: always;/* 直前で改ページさせる */
 }
 header {
    display: list-item;/* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png);/* 表示させたい画像 */
    list-style-position: inside;/* マーカーの位置を内側に */
 }
}