.operation-status {
  width: 100vw;
  /* margin-top: -40px; */
  margin-bottom: 48px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px 16px;
  background-color: #F5F5F5;
}
.operation-status__inner {
  max-width: 980px;
  margin: 0 auto;
}
.operation-status__content {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.operation-status__header {
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background-color: #EFF6FF;
}
.operation-status__header-title {
  position: relative;
  padding-left: 40px;
  font-size: clamp(18px, 1.563vw, 20px);
  font-weight: bold;
}
.operation-status__header-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-image: url(../img/icon-calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.operation-status__table-wrap {
  overflow-x: auto;
}
.operation-status__table {
  min-width: 980px;
  background-color: #fff;
  border: none;
  border-radius: 0 0 8px 8px;
  font-size: clamp(13px, 1.17vw, 15px);
  line-height: 1.8;

}
.operation-status__table tr.border-top {
  border-top: 1px solid #E5E5E5;
}
.operation-status__table th,
.operation-status__table td {
  border-bottom: none;
  border-right: none;
}
.operation-status__table th {
  padding: clamp(6px, 0.781vw, 10px) 16px;
  background-color: #F4F0F0;
  font-weight: bold;
}
.operation-status__table td {
  padding: clamp(6px, 0.625vw, 8px) 16px;
}
.operation-status__table td:nth-child(5) {
  max-width: 240px;
}
.operation-status__table span.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: #F4F0F0;
  font-size: clamp(12px, 0.59vw, 13px);
}
.operation-status__table span.status.canceled {
  background-color: #FFEBEB;
  font-size: #991B1B;
}
.operation-status__table span.status.operation {
  background-color: #E0FCE0;
  font-size: #166534;
}
.operation-status__table-note {
  display: none;
}
@media (max-width: 768px) {
  .operation-status__table {
    /* min-width: 910px; */
    min-width: 760px;
  }

  

  .operation-status__table th.sticky-col,
  .operation-status__table td.sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    padding-left: 16px;
    background-color: #dcdada;
  }
  .operation-status__table td.sticky-col {
    background-color: #f4f3f3;
  }
  .operation-status__table th:nth-child(2),
  .operation-status__table td:nth-child(2) {
    left: 130px;
    
  }
  .operation-status__table th:not(.sticky-col),
  .operation-status__table td:not(.sticky-col) {
    padding-left: 6px;
    padding-right: 6px;
  }

  .operation-status__table th:nth-child(1) {
    width: 130px;
  }
  .operation-status__table th:nth-child(2) {
    width: 230px;
    padding-left: 16px;
  }
  .operation-status__table td:nth-child(2) {
    padding-left: 8px;
  }
  .operation-status__table th:nth-child(3) {
    width: 100px;
  }
  .operation-status__table th:nth-child(4) {
    width: 100px;
  }
  .operation-status__table th:nth-child(5) {
    width: 200px;
  }

  .operation-status__table-note {
    display: block;
    margin-top: 8px;
  }
}

/* 20241225追加 */
.operation-status {
  scroll-margin-top: 80px; /* ヘッダーの高さに応じて調整してください */
}