.page-title span::after {
  content: "GREETING";
}

.history-main {
  width: 100%;
  aspect-ratio: 1120/300;
  position: relative;
  margin-bottom: 60px;
  z-index: 5;
}
.history-main::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 1120px;
  aspect-ratio: 1120/300;
  background-image: url(../image/company/history/main.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(20px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .history-main::after {
    width: 100%;
  }
}

.history-list {
  display: grid;
  grid-template-columns: 260px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .history-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.history-list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 97%;
  background-color: #9a0132;
  top: 1.5%;
  left: 17px;
}
@media screen and (max-width: 599px) {
  .history-list::before {
    top: 1%;
    height: 96%;
  }
}
.history-list dt {
  padding-left: 60px;
  position: relative;
}
.history-list dt::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #9a0132;
  position: absolute;
  left: 10px;
  top: 8px;
}
.history-list dt div {
  width: 200px;
  color: #9a0132;
  display: block;
  line-height: 29px;
  background-color: #f5f5f5;
  border-radius: 15px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: normal;
}
.history-list dt div span {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  padding-right: 10px;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .history-list dd {
    padding-left: 65px;
  }
}