.message_container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .message_container {
    display: block;
  }
}
.message_body {
  width: 45%;
}
@media only screen and (max-width: 640px) {
  .message_body {
    width: 100%;
  }
}
.message_body p {
  margin-bottom: 1.5em;
}
.message_name {
  text-align: right;
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .message_name {
    font-size: 3.75vw;
  }
}
.message_name span {
  margin-left: 0.75em;
  display: inline-block;
  font-size: 3.2rem;
}
@media only screen and (max-width: 640px) {
  .message_name span {
    font-size: 5.625vw;
  }
}
.message_image {
  width: 50%;
}
@media only screen and (max-width: 640px) {
  .message_image {
    width: 100%;
  }
}

.history_container {
  counter-reset: number 0;
}
.history_item {
  margin-bottom: 8rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .history_item {
    margin-bottom: 12.5vw;
    display: block;
  }
}
.history_item:nth-child(even) {
  flex-direction: row-reverse;
}
.history_title {
  margin-bottom: 1em;
  line-height: 1.3;
  font-size: 3.2rem;
}
@media only screen and (max-width: 640px) {
  .history_title {
    font-size: 5.625vw;
  }
}
.history_body {
  padding-top: 9.6rem;
  width: 47.5rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .history_body {
    padding-top: 15vw;
    width: 100%;
  }
}
.history_body::before {
  counter-increment: number 1;
  content: "0" counter(number);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  color: rgb(240, 236, 227);
  font-size: 8rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .history_body::before {
    font-size: 15vw;
  }
}
.history_image {
  width: 52rem;
}
@media only screen and (max-width: 640px) {
  .history_image {
    margin-top: 5.625vw;
    width: 100%;
  }
}

.overview_table {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  font-size: 2rem;
}
@media only screen and (max-width: 640px) {
  .overview_table {
    font-size: 3.75vw;
  }
}
.overview_table dl {
  padding-bottom: 1.5em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .overview_table dl {
    flex-direction: column;
  }
}
.overview_table dl dt {
  width: 10em;
}
@media only screen and (max-width: 640px) {
  .overview_table dl dt {
    width: 100%;
  }
}
.overview_table dl dd {
  width: calc(100% - 10em);
}
@media only screen and (max-width: 640px) {
  .overview_table dl dd {
    width: 100%;
  }
}/*# sourceMappingURL=company.css.map */