@charset "UTF-8";
.timeline {
  position: relative;
  margin: 3em auto;
}
  /*---------------------左端の縦線（紺色）------------------- */
.timeline:before {
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  content: "";
  background-color: #010167;
  left: 30px;
}
@media only screen and (max-width: 768px) {
  .timeline:before {
    left: 0;
  }
}
  /*---------------------枠（グレー）------------------- */
.timeline .timeline_group {
  position: relative;
  padding-top: 55px;
}
@media only screen and (max-width: 768px) {
  .timeline .timeline_group {
    padding-top: 40px;
  }
}
  /*---------------------枠（グレー）と時間枠（紺色）の幅------------------- */
.timeline .timeline_group:not(:first-of-type) {
  margin-top: 1rem;
}
  /*---------------------時間枠（紺色）------------------- */
.timeline .time_hour {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 1.5rem;
color: #FFFFFF;
  background-color: #010167;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.timeline .timeline_item {
  margin-bottom: 1em;
  position: relative;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .timeline .timeline_item {
    padding-top: 60px;
    padding-left: 20px;
  }
}
.timeline .timeline_item:not(:last-of-type) {
  margin-bottom: 2em;
}
.timeline .timeline_item:before {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #F0EFF5;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .timeline .timeline_item:before {
    top: 90px;
  }
}
.timeline .desc {
  padding: 15px 1em;
  border: solid 20px #F0EFF5;
  /* border-top:solid 1px #FFDEDE; */
  border-radius: 2px;
  background-color: #fff;
  /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);*/
  font-size: 0.9em;
}
@media only screen and (max-width: 768px) {
  .timeline .desc {
    font-size: 0.8em;
  }
}