/* 用紙サイズの指定（A4） */
@page {
    margin: 10mm;
    size: 210mm 297mm; /* A4縦サイズの場合 */
}

@media print {
/* 全体設定 */
    body {
      -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
      width: 1190px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
      zoom: 0.8; /* なるべく多くのブラウザで切れないようにするため */
    }

    header {
        position: relative!important;
    }

    .__fadeIn {
        opacity: 1!important;
        transform: translate(0)!important;
    }

    .__imgIn:before {
        transform: scaleX(0)!important;
    }
    
    .__imgIn img {
        opacity: 1!important;
    }
}