.main-image {
  display: block;
  margin: 0 auto 3rem;
  width: 401px;
  height: 267px;
}
.section {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  gap: 4rem;
}
.section img {
  width: 449px;
  height: 280px;
  object-fit: contain;
}
.text-block {
  flex: 1 1 50%;
}
.text-block h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}
.text-block p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1rem;
}
.company-info {
  margin-top: 4rem;
  padding: 0 2%;
}
.company-info h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  text-align: left;
}
.company-info .subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2rem;
  text-align: left;
}
.company-table {
  width: 100%;
  border: 1px solid #fff;
  padding: 7rem;
  box-sizing: border-box;
}
.table-row {
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 5rem;
}
.table-row:last-child {
  border-bottom: none;
}
.cell {
  flex: 1;
  text-align: left;
  font-size: 1.4rem;
  color: #fff;
}
.cell.label {
  flex: 0 0 140px;
}
.cell.value {
  flex: 0 0 250px;
}
@media screen and (max-width: 430px) {
  .main-image {
    max-width: 100%;
    height: auto;
  }
  .section img {
    width: 100%;
    height: auto;
  }
  .table-row {
    flex-direction: column;
    padding: 1rem;
  }
  .cell {
    flex: unset;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
  .cell.label, .cell.value {
    flex: unset;
  }
  .company-table {
    padding: 1rem;
  }
  body {
    overflow-x: hidden;
  }
}