/*print.css*/

/* 用紙サイズの指定（A4） */

@page {
    margin: 10mm;
    size: 210mm 297mm; /* A4縦サイズの場合 */
}

@media print {
  /* 全体設定 */
    body {
        -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
        width: 1360px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
        min-width: 100%;
        zoom: 0.8;
        position: relative;
    }
    /* 改ページをいれる場合 */
    
    /* 各セクションで改ページが行われるようにしています*/
/*
    section {
        page-break-before: always;
    }
*/
    section + section.new-none:not(:root) {
        page-break-before: avoid; /* 特定のセクションでは改ページを入れない場合の指定 */
    }
    .new-page {
        page-break-before: always; /* 特定の場所で改ページを入れたいときの指定 */
    }
    .sp {
        display: none!important;
    }
    header {
        position: absolute;
        display: none;
    }
    #pageTop {
        display: none!important;
    }
    
}


