@charset "UTF-8";

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

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

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

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

  /* 個別スタイル調整 */
  .header {
    width: 132rem;
    position: absolute !important;
    transform: translateY(0) !important;
  }
  .main {
    background: #fff0d8 !important;
  }
  .bg__main-line::before {
    content: none !important;
  }
  .home__header {
    display: none !important;
  }
  .js-bg__layer {
    display: none !important;
  }
}

