/* 印刷時のスタイル */
@media print {
  @page {
    size: A4;
    margin: 10mm;
    /* ヘッダー（日付、タイトル）を非表示 */
    margin-top: 0;
    margin-header: 0;
    /* フッター（URL、ページ番号）を非表示 */
    margin-bottom: 0;
    margin-footer: 0;
  }

  /* ブラウザの印刷ヘッダー・フッターを非表示 */
  html {
    -webkit-print-color-adjust: exact;
    background-color: white !important;
  }

  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-color: white !important;
  }

  .print-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background-color: white !important;
  }

  .page-break {
    page-break-after: always;
    background-color: white !important;
  }

  .no-print {
    display: none !important;
  }

  /* ページタイトルの上部マージン */
  h1 {
    margin-top: 15mm !important;
  }

  /* すべてのボックスの背景色を白に */
  div,
  section,
  article,
  aside,
  header,
  footer,
  nav,
  main {
    background-color: white !important;
  }
}

/* Chrome、Safari、Edgeの印刷ヘッダー・フッターを非表示 */
@page {
  size: A4;
  margin: 10mm;
}

@page :first {
  margin-top: 0;
}

@page :left {
  margin-left: 0;
}

@page :right {
  margin-right: 0;
}
