/*** 印刷範囲設定 ***/


.main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail_area {
  margin-top: 20px;
}

.detail_box_sheet{
  background-color: var(--bs-white);
  border: solid 1px var(--color5);
  font-size: 14px;
  padding: 2.5rem;
  margin-bottom: 1rem;
  width: 720px !important;
}

.detail_box_sheet .table-contents td{
  line-height: 20px !important;
  /* padding: 0.25rem 0.25rem; */
}


/* 印刷 */
@media print {
  body {
    width: 210mm;
    min-width: auto !important
  }
  .menu-title-area, .back_area {
    display: none !important;
  }

  .detail_box_sheet{
    background-color: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
    /* width: 100% !important; */
  }
}

/* 用紙サイズ */

/* ①A4サイズ縦 */
@page {
  size: A4;
}
