/* ------------------------------------------------------------
// event
------------------------------------------------------------ */
h4 {
  margin-block: 80px 40px;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h4 {
    margin-block: 60px 30px;
  }
}
h4:nth-of-type(1) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  h4:nth-of-type(1) {
    margin-top: 40px;
  }
}
h4.open-company {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  h4.open-company {
    margin-bottom: 25px;
  }
}
h4 span {
  color: #0092e6;
}

h5 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .flow-list {
    gap: 24px;
    margin-top: 15px;
  }
}
.flow-list-item p {
  font-size: 15px;
}
.flow-list-item p.flow-title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow-list-item p.flow-title {
    margin-bottom: 8px;
  }
}
.flow-list-item p a {
  color: #0092e6;
  text-decoration: underline;
}

.table-wrap {
  overflow-x: auto;
}
.table-wrap table {
  width: 100%;
  margin: 60px 0 0;
}
.table-wrap table th,
.table-wrap table td {
  padding: 20px 30px;
}
.table-wrap table thead {
  background-color: #f0f6f7;
  text-align: left;
}
.table-wrap table thead tr th {
  font-size: 16px;
  font-weight: 700;
  color: #0b1c26;
  border-right: solid 1px #dddddd;
  white-space: nowrap;
  width: 25%;
}
.table-wrap table thead tr th:last-child {
  border-right: none;
}
.table-wrap table tbody tr td {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  white-space: nowrap;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.table-wrap table tbody tr td:last-child {
  border-right: none;
}

h5 + .line {
  margin: 0 auto 30px;
}