.history {
  text-align: center;
  display: flex;
  padding: 64px 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-direction: column;
  gap: 40px;
  margin: 100px;
  border-radius: 24px;
  border: 1px solid var(--title-text-dark-blue);
  background: #FFF;
}

.history table {
  text-align: left;
  vertical-align: top;
  overflow: hidden;
}

.history table tbody {
  vertical-align: baseline;
}

.history table tr th {
  width: 160px;
  color: var(--title-text-dark-blue);
  position: relative;
  text-align: left;
  align-content: flex-start;
  font-size: 32px;
  line-height: 32px;
}

.history table tr td {
  padding-bottom: 40px;
  padding-left: 44px;
}

.history table tr:last-child td {
  padding-bottom: 0;
}

.history table tr td dl {
  margin-bottom: 32px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.history table tr th:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--title-text-dark-blue);
  border-radius: 10px;
  position: absolute;
  top: 8px;
  right: -7px;
}

.history table tr td dl dd {
  padding-left: 40px;
  display: table-cell;
  line-height: 140%;
  margin-inline-start: 0px;
}

.history table tr th:before {
  content: " ";
  display: block;
  width: 1px;
  background: var(--title-text-dark-blue);
  height: 100%;
  position: absolute;
  top: 12px;
  right: 0px;
}

.history table tr:last-child th:before {
  content: none;
}

.history table tr td dl dd ul {
  list-style: none;
  padding: 0;
  margin-top: -32px;
}

.history table tr td dl dt {
  color: #000;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.history table tr td dl dd ul li {
  color: #000;
  line-height: 32px;
  letter-spacing: 0.8px;
  margin-left: 40px;
}

.history-images {
  display: flex;
  gap: 24px;
  /* 画像の間隔 */
  margin-top: 24px;
}

.history table tr td dl:last-child {
  margin-bottom: 0;
}

/* ========================================================================== */
/* @media：TB */
/* ========================================================================== */

@media (max-width: 1023px) {
  .history {
    padding: 40px 24px;
    margin: 64px;
  }

  .history-images {
    gap: 8px;
  }

  .history table tr th {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    width: 65px;
  }

  .history table tr td dl dt {
    line-height: 18px;
    letter-spacing: 0.64px;
  }

  .history table tr td dl dd ul li {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.56px;
    margin-left: 0;
  }

  .history table tr td dl dd ul {
    margin-top: 0;
  }

  .history table tr td dl dd {
    padding-left: 0;
  }

  .history table tr td {
    padding-left: 16px;
  }
}

/* ========================================================================== */
/* @media：SP */
/* ========================================================================== */

@media (max-width: 767px) {
  .history {
    padding: 40px 16px;
    margin: 40px 24px;
    ;
  }

  .history-images {
    flex-direction: column;
  }

  .history table tr:last-child th:before {
    content: " ";
  }
}

@media (max-width: 359px) {
  .history {
    margin: 40px 12px;
    padding: 40px 0px;
  }
}