@charset "UTF-8";

/* history-catch-sec */
.ul-history {
  position: relative;
}
.ul-history li:not(:last-child) {
  margin-bottom: 2rem;
}
.ul-history::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 170px;
  background: #86bde7;
  height: 100%;
  width: 5px;
}
.dl-history {
  display: flex;
}
.dl-history dt {
  color: #005495;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
  width: 200px;
}
.dl-history dt .label {
  background: #005495;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  width: 100px;
  text-align: center;
  padding: .5rem 0;
}
.dl-history dt::before,
.dl-history dt::after {
  background: #005495;
  content: '';
  position: absolute;
}
.dl-history dt::before {
  top: 13px;
  right: 10px;
  height: 2px;
  width: 100px;
}
.dl-history dt::after {
  border-radius: 50%;
  top: 7px;
  right: 20px;
  height: 15px;
  width: 15px;
}
@media screen and (max-width: 767px) {
  .ul-history::before {
    top: 10px;
    left: 0;
  }
  .dl-history {
    flex-wrap: wrap;
  }
  .dl-history dt {
    font-size: 2rem;
    padding-left: 6rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  .dl-history dt::before {
    right: initial;
    left: 0;
    width: 50px;
  }
  .dl-history dt::after {
    right: initial;
    left: -5px;
  }
  .dl-history dd {
    padding-left: 2rem;
  }
}