/* 用紙サイズの指定（A4） */
@page {
  margin: 10mm;

  size: 210mm 297mm; /* A4縦サイズの場合 */
}
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
  }

  .animFadeUp {
    opacity: 1 !important;
    transform: translate(0px, 0px) !important;

    rotate: none !important;
    scale: none !important;
    translate: none !important;
  }

  /* 個別スタイル調整 */
  .header {
    height: auto !important;
    min-height: 80.0rem;
  }
}

