@charset "utf-8";

.history-container .history-inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 10vh;
}
.history-container .transparent {
  font-size: 0;
  color: transparent;
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5em;
  /* align-items: center; */
  /* background-color: skyblue; */
  margin-bottom: 7vh;
}

.history-content .history-date {
  /* flex: 1; */
  width: 20%;
  font-size: 30px;
  border-top: 3px solid #2165cb;
  font-weight: bold;
  color: #2165cb;
  /* padding-top: 12px; */
}

.history-content .history-text {
  /* flex: 2; */
  width: 75%;
  /* padding-top: 12px; */
  border-top: 2px solid #ccc;
  font-size: 18px;
}

.history-content .history-text p:last-child {
  border-bottom: 0;
}
.history-content .history-text .month {
  display: inline-block;
  font-weight: bold;
  padding: 0 1em 0 0.5em;
  font-size: 22px;
  /* color: #2165cb; */
}

.history-info-content {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  padding: 1em 0;
  border-bottom: 1px solid #ddd;
}

.history-info-content:last-child {
  border-bottom: 2px solid #ccc;
}

.history-info-content .month {
  max-width: 60px;
}

.history-info-content .history-info {
  width: calc(100% - 60px);
  padding-top: 0.2em;
}

.history-info-content .history-info li {
  padding-bottom: 0.5em;
  color: #333;
  padding-left: 1em;
  position: relative;
}

.history-info-content .history-info li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #2165cb;
  display: inline-block;
  position: absolute;
  left: 5px;
  border-radius: 50%;
  top: 40%;
  transform: translateY(-50%);
}

.history-info-content .history-info li.two-line::before {
  top: 15px;
}

@media (max-width: 650px) {
  .history-container .history-inner {
    max-width: initial;
  }

  .history-content .history-date {
    font-size: 20px;
  }
  .history-content .history-text .month {
    font-size: 16px;
  }
  .history-content .history-text {
    font-size: 14px;
    padding-top: 0;
  }
  .history-content .history-text .month {
    display: block;
    padding: 0 0 0.5em 0;
  }

  .history-info-content {
    justify-content: space-between;
    padding: 0.5em 0;
  }

  .history-info-content .history-info {
    width: 82%;
  }
}
