
@page {
  size: A4 portrait; /* 横の場合はlandscape */
  margin: 0mm;
}


@media print{
  .non_print{
    display: none
  }

  body {
    width: 210mm; /* 用紙の横幅を改めて指定 Chrome用 */
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    line-height: 1.5em;
    background-color: rgba(255, 255, 255 ,0);
  }

  .invoice {
    width: 100%;
    margin: 0;
  }

  .invoice_viewer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
  }

 



}

