@charset "UTF-8";
#history .history-list{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#history .list-item dl{
  display: grid;
  grid-template-columns: 20rem 1fr;

  padding: 2rem 2rem;
  line-height: 1.4;
}
#history .list-item dl dt{
  font-size: 2rem;
  font-weight: 700;
}
#history .list-item dl dd{
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width : 1024px){
}
@media (max-width : 599px){
  #history .list-item dl{
    grid-template-columns: 10rem 1fr;
    padding: 2rem 0;
  }
}