@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.wrapper {
  max-width: 2000px;
  overflow: hidden;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.upper_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.company_logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.company_logo h1 {
  font-size: 2rem;
}

.txt_box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #6974b7;
  padding: 2rem 4rem;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .txt_box {
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
  }
}
.txt_box p {
  font-size: 1.8rem;
}

.table {
  border: none !important;
  margin-top: 4rem;
}

.table th {
  padding: 25px;
  vertical-align: middle;
  background: 0 0 !important;
  border-top: none !important;
  border-bottom: 2px solid #6974b7;
  font-size: 1.8rem;
  font-weight: bold;
}

.table:not(.th_auto) th {
  width: 14em;
}

.table td {
  padding: 25px 25px 25px 40px;
  background: 0 0 !important;
  border-top: none !important;
  border-bottom: 2px solid #c6c6c6;
  font-size: 1.8rem;
}

@media print, screen and (max-width: 767px) {
  .table th {
    padding: 15px;
  }
  .table td {
    padding: 15px;
  }
  .table.mb {
    border: none !important;
  }
  .table.mb td,
  .table.mb th {
    display: block;
    width: auto;
  }
  .table.mb th {
    padding: 20px 0 10px !important;
    border: none !important;
  }
  .table.mb td {
    padding: 0 0 20px !important;
  }
}
@media screen and (max-width: 575px) {
  .table th {
    padding: 20px;
    font-size: 1.6rem;
  }
  .table td {
    font-size: 1.6rem;
  }
  .table td span {
    font-size: 1.6rem;
  }
}
.display_ad {
  padding-left: 1em;
  margin-bottom: -1px;
}
@media screen and (max-width: 575px) {
  .display_ad {
    padding-left: 1.25em;
  }
}
.display_ad li {
  list-style-type: disc;
  margin-bottom: 1em;
}
.display_ad li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .display_ad li {
    margin-bottom: 0.5em;
  }
}

/* 個別印刷設定
------------------------------------------------------------------*/
@media print {
  @page {
    size: A4;
    margin: 15mm;
  }
  body {
    width: 100%; /* A4の幅に合わせる */
    max-width: 210mm; /* A4の幅に合わせる */
    zoom: 0.9;
    margin: 0 auto;
  }
  .container,
  .container-fluid {
    width: 100%; /* フルサイズ表示 */
    max-width: 210mm; /* A4の幅に合わせる */
  }
  /* 改ページをいれる場合 */
  section {
    page-break-before: always; /* 各セクションで改ページが行われるようにしています */
  }
  section + section.new-none:not(:root) {
    page-break-before: avoid; /* 特定のセクションでは改ページを入れない場合の指定 */
  }
  .new-page {
    page-break-before: always; /* 特定の場所で改ページを入れたいときの指定 */
  }
  header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .wrapper {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    background-image: block !important;
    box-shadow: none !important;
  }
}/*# sourceMappingURL=style.css.map */