.message {
  margin-top: -72px;
  @media screen and (max-width: 750px){
    margin-top: -8.3vw;
  }
}
.message__inner {
  max-width: 860px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    margin: 0 20px;
  }
}
.title-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .en {
    font-family: var(--font-en);
    font-weight: bold;
    font-size: 40px;
    color: var(--color-blue);
    line-height: 1.3;
    @media screen and (max-width: 750px){
      font-size: 26px;
    }
  } 
  .ja {
    font-size: 30px;
    font-weight: 900;
    color: var(--color-text-black);
    @media screen and (max-width: 750px){
      font-size: 19px;
    }
  }
}
.messageHeader {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column-reverse;
  }
}
.messageHeader__left {
  margin-top: 300px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    margin-top: -60px;
  }
}
.messageHeader__right {
  width: 550px;
  position: relative;
  z-index: 1;
  @media screen and (max-width: 750px){
    width: calc(100% - 50px);
    margin-left: 70px;
    margin-right: -20px;
  }
}
.messageHeader__subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-top: 0.8em;
  color: var(--color-blue);
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.message__text {
  margin-top: 60px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.message__name {
  margin-top: 1em;
  font-size: 18px;
  text-align: right;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
  .large {
    font-size: 21px;
    margin-left: 1em;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
}
.overview {
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 50px;
  }
}
.overview__inner {
  max-width: 640px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 0 20px;
  }
}
.overview__table {
  width: 100%;
  margin-top: 48px;
  font-size: 15px;
  @media screen and (max-width: 750px){
    display: block;
    margin-top: 20px;
    font-size: 13px;
    tbody,
    tr,
    th,
    td {
      display: block;
      width: 100%;
    }
  }
  tr {
    border-bottom: 1px solid var(--color-blue);
    @media screen and (max-width: 750px){
      padding-bottom: 10px;
      margin-bottom: 10px;
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
  th {
    padding: 10px 0px 10px 16px;
    width: 150px;
    @media screen and (max-width: 750px){
      padding: 0 0 0 10px;
      width: 100%;
    }
  }
  td {
    padding: 10px 0;
    @media screen and (max-width: 750px) {
      padding: 0 0 0 10px;
    }
  }
}
.license {
  margin-top: 120px;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.license__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
.license__list {
  font-size: 15px;
  margin-top: 2em;
  @media screen and (max-width: 750px){
    font-size: 13px;
    margin-left: 1em;
  }
}
.license__left {
  margin-top: 170px;
  @media screen and (max-width: 750px){
    margin-top: -40px;
  }
}
.license__right {
  width: 550px;
  @media screen and (max-width: 750px){
    width: calc(100% - 50px);
    margin-left: 70px;
    margin-right: -20px;
  }
}