@font-face {
  font-family: "Helvetica";
  src: url("../font/Helvetica.ttf") format("truetype");
}
#history .history_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36rem;
}
@media screen and (max-width: 767px) {
  #history .history_content {
    gap: 25rem;
  }
}
#history .history_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40rem;
  padding-inline: 30rem;
  padding-bottom: 35rem;
  border-bottom: max(1px, 1rem) solid #EFEAEA;
}
@media screen and (max-width: 767px) {
  #history .history_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7rem;
    padding-inline: 10rem 0;
    padding-bottom: 21rem;
  }
}
#history .history__year {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(140px, 180rem);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #history .history__year {
    width: 100%;
    line-height: 1.4285714286;
  }
}
#history .history__text {
  line-height: 2;
}