.flow .flow-list {
  padding: 5rem 1.5rem 3rem 14rem;
  counter-increment: section;
  position: relative;
}

.flow .flow-list:last-child {
  padding-bottom: 0.5rem;
}

.flow .flow-list::before {
  content:"";
  width: 1px;
  height: 100%;
  background-color: #209244;
  position: absolute;
  top: 100px;
  left:/*0*/ 53px;
}

.flow .flow-list::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 0.5rem;
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 40px auto, cover;
}

.flow .flow-list:nth-of-type(1)::after {
  background-image:
  url("https://gigaplus.makeshop.jp/TOASUBASE/assets/images/guide/person.png"),
  linear-gradient(to right, #14431C, #33A947);
}

.flow .flow-list:nth-of-type(2)::after {
  background-image:
  url("https://gigaplus.makeshop.jp/TOASUBASE/assets/images/guide/cart.png"),
  linear-gradient(to right, #14431C, #33A947);
}

.flow .flow-list:nth-of-type(3)::after {
  background-image:
  url("https://gigaplus.makeshop.jp/TOASUBASE/assets/images/guide/attendance.png"),
  linear-gradient(to right, #14431C, #33A947);
}

.flow .flow-list:nth-of-type(4)::after {
  background-image:
  url("https://gigaplus.makeshop.jp/TOASUBASE/assets/images/guide/pc.png"),
  linear-gradient(to right, #14431C, #33A947);
}

.flow .flow-list:last-of-type::before {
  content: none;
}

.sub-flow-title {
  display: inline-block;
  color: #ffffff;
  background-color: #209244;
  padding: 0 0.8rem;
  margin-right: 1rem;
  border-radius: 4px;
  align-items: center;
  justify-items: center;
}

.flow-text {
  margin-bottom: 1.5rem;
}

.user-guide-wrapper {
  display: flex;
  gap: 20px;
}

.user-guide-wrapper img {
  width: 300px;
  height: max-content;
}


.table01.invoice-table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 15px;
}


.table01.invoice-table01 col.col-label {
  width: 8%;
}

.col-corporate {
  width: 46%;
}

.col-myself {
  width: 46%;
}


.table01.invoice-table01 th,
.table01.invoice-table01 td {
  text-align: left;
  background: transparent;
}



.table01.invoice-table01 .invoice-head {
  font-size: 1.8rem;
  line-height: 1.5;
  justify-items: center;
  align-content:center;
}

.invoice-head-inner {
  display: flex;
  gap: 5px;
  align-items: center;
  text-align: left;
}

.invoice-head img
{
  display: block;
  width: auto;
  height: 45px;
  margin-right: 0.5rem;
}

.table01.invoice-table01 .invoice-label {
  background: #b8ab6e;
  text-align: center;
  vertical-align: middle;
  padding: 10px 4px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  word-break: break-all;
}

.table01.invoice-table01 .invoice-body {
  background: #f3f0e8;
  padding: 20px;
}

.table01.invoice-table01 .invoice-body-center {
  text-align: center;
}




/* SP */
@media (max-width: 768px) {
   
  .flow .flow-list {
    padding: 3rem 1.5rem 3rem 8rem;
  }
  
  .flow .flow-list::before {
    top: 60px;
    left: 35px;
  }

  .flow .flow-list::after {
    width: 60px;
    height: 60px;
    background-size: 25px auto, cover;
  }
  
  .user-guide-wrapper {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .user-guide-wrapper img {
    width: 200px;
  }
  
  .table01.invoice-table01 {
    border-spacing: 15px;
    border: unset;
  }
  
  .table01.invoice-table01 .invoice-head {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
  
  .table01.invoice-table01 .invoice-label {
    font-size: 1.4rem;
  }
  
}