.pageNum {
  font-weight: bold;
}

.pageName {
  font-size: 12px;
}

nput {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 24px;
}

.orderInputBox {
  flex: 1;
  flex-basis: 100%;
}

.orderInputBox.wide {
  display: flex;
  gap: 16px;
  align-items: center;
}

.inputArea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.inputArea .inputTitle01 {
  background-color: #2d333c;
  color: #ffffff;
  padding: 8px;
  margin-bottom: 12px;
}

.inputArea .inputItemList input:disabled {
  border-color: #b6b6b6;
}

.inputItemList input {
  margin-top: 4px;
}

.inputItemList {
  flex-direction: inherit;
  margin-top: 0;
}

select {
  width: 100%;
}

.inputTitle01 {
  font-weight: bold;
  margin-bottom: 4px;
}

.inputItemArea {
  margin-bottom: 4px;
}

.inputItemArea input {
  font-size: 14px;
}

.itemTitle {
  width: 600px;
}

.itemNum {
  width: 100px;
}

.startCheckList {
  display: flex;
  gap: 24px;
}

.registButton {
  width: 200px;
  height: 40px;
}

.orderList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.orderList li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  flex-basis: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  color: #5f6368;
  padding: 8px 16px;
}

.orderList li:nth-child(odd) {
  background-color: #ebecee;
}

.orderList li.orderListHeader {
  background-color: #2d333c;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.orderListCheck {
  width: 100%;
}

.orderListNum {
  width: 60px;
}

.mokujiNum {
  width: 100%;
  font-size: 14px;
  padding: 2px 8px;
}

.orderListTitle {
  width: calc(100% - 545px);
}

.mokujiTitle {
  width: 100%;
  font-size: 14px;
  padding: 2px 8px;
}

.orderListName {
  width: 450px;
}

.mokujiName {
  width: 100%;
  font-size: 14px;
  padding: 2px 8px;
}

.copyArea {
  width: 100%;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .inputArea {
    display: flex;
    flex-direction: column;
  }

  .registButton {
    width: 100%;
  }

  .orderList {
    width: 100%;
  }

  .orderInput {
    width: 100%;
  }

  .itemTitle {
    width: calc(100% - 108px);
  }

  .orderInputBox.wide {
    align-items: baseline;
    gap: 4px 8px;
  }

  .inputMenu {
    flex-shrink: 0;
  }

  .startCheckList {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .copyButton {
    width: 100%;
    margin-top: 32px;
  }

  .copoyWrapper {
    width: 100%;
  }

  .orderListHeader {
    display: flex;
  }

  .orderListHeader .orderListTitle, .orderListHeader .orderListName {
    width: auto;
  }

  .orderListTitle {
    width: 100%;
  }

  .orderListName {
    width: 100%;
  }
}