body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

/* 印刷時: ヘッダー・ナビ等を非表示にし、伝票のみ出力 */
@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
  .print-sheet {
    box-shadow: none !important;
    margin: 0 !important;
    /* ブラウザの印刷ダイアログは@pageのmarginを無視することがあるため、
       余白はこちらのpaddingで確保する(印刷設定の余白は「なし」を推奨) */
    padding: 10mm !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100%;
  }
  .doc-table thead {
    display: table-header-group;
  }
  .doc-table tfoot {
    display: table-footer-group;
  }
  .doc-table tr {
    page-break-inside: avoid;
  }
  @page {
    size: A4;
    margin: 0;
  }
}

.print-sheet {
  max-width: 800px;
}

/* 帳票用の美しい罫線スタイル */
.doc-table {
  border-collapse: collapse;
  width: 100%;
}
.doc-table th,
.doc-table td {
  border: 1px solid #4d6657; /* brand-700 */
}
.doc-table thead th {
  background-color: #e4ebe6; /* brand-100 */
  color: #2e3e35; /* brand-900 */
  font-weight: 600;
}
.doc-table tfoot td {
  border-top: 3px double #2e3e35;
  border-bottom: 3px double #2e3e35;
}
.doc-outline {
  border: 2px solid #4d6657;
}
