.info_section{
  padding-bottom: 100px;
}

.info_wrapper{
  text-align: center;
  margin-top: 100px;
}

.info_item_wrapper{
  text-align: left;
  margin-top: 80px;
}

.info_item{
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #BDBDBD;
}

.info_item:last-child{
  border-bottom: 1px solid #bdbdbd;
}

.info_item_date{
  width: 18%;
  margin: 0;
}

.info_item_title{
  width: 82%;
  font-size: 15px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}

.info_item_title a{
  text-decoration: none;
  color: #000;
}

.info_item_title a:hover{
  text-decoration: underline;
}


@media(max-width: 670px){

  .info_section{
    padding-bottom: 50px;
  }

  .info_wrapper{
    margin-top: 50px;
  }

  .info_item_wrapper{
    margin-top: 50px;
  }

  .info_item{
    padding: 20px 0;
    display: block;
  }

  .info_item_date{
    width: 100%;
    margin-bottom: 5px;
  }

  .info_item_title{
    width: 100%;
  }

}