.processingImgBox {
  text-align: center;
  padding: 7rem 0;
  box-sizing: border-box;
  max-width: 800px;
  margin: 0 auto;
}
.processingImgBox img {
  width: 100%;
}
.processingList {
  display: flex;
  gap: 2rem;
}
.processingList .processingListLi {
  width: calc(100% / 3);
  border: 1px solid transparent;
  border-image: var(--grade);
  border-image-slice: 1;
  padding: 2rem 3rem;
  box-sizing: border-box;
}
.processingList .processingListLi .processingTitle {
  font-size: var(--fz24);
  font-weight: 500;
  color: var(--pointColor3);
  margin-bottom: 1.5rem;
  text-align: center;
}
.processingList .processingListLi .processingContentList li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  position: relative;
}
.processingList .processingListLi .processingContentList li i {
  color: var(--pointColor2);
}

.processingList .processingListLi .processingContentDisc {
  background: rgba(0, 78, 162, 0.2);
  font-weight: 500;
  font-size: var(--fz18);
  color: var(--pointColor3);
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
  margin-top: 2rem;
}
.flowArea {
  margin-top: 6rem;
}
.processingTable {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
.tableHeader {
  width: 100%;
  background-color: var(--pointColor3);
  color: #fff;
  font-weight: 500;
  font-size: var(--fz20);
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  text-align: center;
}
.tableArea {
  margin-top: 7rem;
}
.tableBg tr:nth-of-type(1) {
  background: var(--pointColor3);
  background-color: var(--pointColor3);
  color: #fff;
  font-weight: 500;
  font-size: var(--fz20);
}
.tableBg tr {
  background: rgba(0, 78, 162, 0.1);
}
.processingTable thead th,
.processingTable tbody td {
  vertical-align: middle;
  padding: 1rem;
  box-sizing: border-box;
}
.processingTable tr {
  border-bottom: 1px solid #e5e5e5;
}
.flowList {
  display: flex;
  gap: 2rem;
  padding: 7rem 0;
}
.flowList li {
  position: relative;
  width: calc(100% / 5);
  background: rgba(0, 78, 162, 0.1);
  padding: 5rem 2rem 2rem;
  box-sizing: border-box;
}
.flowList li .step {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--pointColor3);
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: var(--fz16);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.1;
}
.flowList li .step span {
  font-size: var(--fz24);
  display: block;
}
.flowList li .flowTitle {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--pointColor3);
  font-size: var(--fz20);
  font-weight: 600;
}
.flowList li .flowImg {
  text-align: center;
}
.flowList li .flowImg img {
  width: 100%;
}
@media screen and (max-width: 940px) {
  .flowList {
    flex-wrap: wrap;
    justify-content: center;
  }
  .flowList li {
    width: calc(100% / 3 - 2rem);
    margin-bottom: 4rem;
  }
  .flowList li .flowImg img {
    max-width: 130px;
  }
  .flowList li:nth-of-type(2) .flowImg img {
    max-width: 160px;
  }
}

@media screen and (max-width: 768px) {
  .processingList {
    flex-wrap: wrap;
  }
  .processingList .processingListLi {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .flowList li {
    width: 100%;
    padding: 3.5rem 2rem 2rem;
  }
  .flowList li .flowTitle {
    font-size: var(--fz24);
  }
}
@media screen and (max-width: 480px) {
  .flowList li .step {
    width: 55px;
    height: 55px;
  }
}
