@media print {
  /* 基本設定 */
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    word-spacing: 1.1pt;
    letter-spacing: 0.2pt;
    font-family: sans-serif;
    color: #000;
    background: #fff;
  }
  /* リンクのURL表示を無効化 */
  a[href]:after {
    content: "" !important;
  }
  /* 画像サイズの調整 */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .print-hidden {
    display: none;
  }
}
