.reportTableWrap {
  overflow: auto;
  white-space: nowrap;
}

.reportTable {
  width: 100%;
}
.reportTableRowHead {
  display: none;
}

.reportTableHead {
  border: 1px solid #c8c8c8;
  background-color: #f5f5f5;
  text-align: center;
  line-height: 1.1375;
  padding: 16px;
}

.reportTableRow {
  display: block;
}
.reportTableRow:not(:last-of-type) {
  margin: 0 0 40px;
}

.reportTableDetailNumber {
  display: none;
}

.reportTableDetailStation {
  display: flex;
  background-color: #DCF0FF;
  padding: 10px;
  margin: 0 0 20px;
}

.reportTableDetailStationNumber {
  margin: 0 20px 0 0;
}

.reportTableDetailSubWrap {
  display: block;
}

.reportSubTable {
  width: 100%;
  display: table;
}

.reportSubTableHead {
  border: 1px solid #c8c8c8;
  background-color: #f5f5f5;
  padding: 10px;
}
.reportSubTableHead:nth-of-type(2) {
  width: 21.33%;
}

.reportSubTableDetail {
  border: 1px solid #c8c8c8;
  padding: 10px;
  width: 45%;
}

.reportSubTableDetailNumber {
  border: 1px solid #c8c8c8;
  padding: 10px;
}

.pdfLinkList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pdfLink {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  width: fit-content;
  text-decoration: none;
  color: inherit;
  padding: 15px;
  border-radius: 7px;
}
.pdfLink::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url(../../images/pdf.svg);
  margin: 0 10px 0 0;
  flex-shrink: 0;
}

.reportWorkBtn {
  color: #fff;
  display: flex;
  align-items: center;
  background-color: #40A9F5;
  width: fit-content;
  text-decoration: none;
  padding: 15px;
  border-radius: 7px;
}

@media (min-width: 960px) {
  .reportTableRowHead {
    display: table-row;
  }
  .reportTableRow {
    display: table-row;
  }
  .reportTableRow:not(:last-of-type) {
    margin: 0;
  }
  .reportTableDetailNumber {
    border: 1px solid #c8c8c8;
    background-color: transparent;
    text-align: center;
    line-height: 1.1375;
    padding: 16px;
    text-align: center;
    display: table-cell;
  }
  .reportTableDetailNumber::before {
    display: none;
  }
  .reportTableDetailStation {
    border: 1px solid #c8c8c8;
    background-color: transparent;
    line-height: 1.1375;
    padding: 16px;
    display: table-cell;
  }
  .reportTableDetailStationNumber {
    display: none;
  }
  .reportTableDetailSubWrap {
    display: contents;
  }
  .reportSubTable {
    display: contents;
  }
  .reportSubTableBody {
    display: contents;
  }
  .reportSubTableRow {
    display: contents;
  }
  .reportSubTableHead {
    display: none;
  }
  .reportSubTableDetail {
    width: auto;
  }
  .reportSubTableDetailNumber {
    text-align: center;
  }
  .pdfLinkList {
    gap: 20px;
  }
  .pdfLink {
    padding: 15px 25px;
    border-radius: 10px;
  }
  .pdfLink::before {
    width: 25px;
    margin: 0 16px 0 0;
  }
  .reportWorkBtn {
    padding: 15px 35px;
    border-radius: 10px;
  }
}

/*# sourceMappingURL=report.css.map*/