@charset "UTF-8";
@media print {
    @page {
        size: A4 portrait; /* 横向きの方が1024pxの再現性は高いですが、縦(portrait)でも動作します */
        margin: 8mm; 
    }

    /* 2. html, body の幅を強制固定 */
    html, body {
        width: 1480px !important;
        min-width: 1480px !important;
        overflow: visible !important;
        /* 背景色や画像を出したい場合 */
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }






    /* 5. 印刷に不要な要素の非表示 */
    .header_sub_top, .l-header, .l-footer, .c-page-top, .u-hide-at-print {
        display: none !important;
    }
}