.works_section{
  padding-bottom: 100px;
}

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

.works_item_wrapper{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 80px;
}

.works_item{
  width: 33.333%;
  position: relative;
}

.works_item a{
  text-decoration: none;
  color: #fff;
}

.works_item_img_wrapper{
  width: 100%;
  position: relative;
}

.works_item_img_wrapper::before{
  content: "";
  display: block;
  padding-top: 100%;
}

.works_item_img_wrapper::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
}

.works_item:hover .works_item_img_wrapper::after{
  background: none;
  transition: 0.5s;
}

.works_item_img_wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.works_item_txt_wrapper{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 73%;
  text-align: left;
}

.works_item_title{
  font-size: 25px;
  margin: 0;
  font-family: 'yugothic_bold';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.works_item_info{
  font-size: 15px;
  margin: 15px 0;
}

.works_item_label{
  font-size: 13px;
  margin: 0;
  background: #fff;
  padding: 3px 15px;
  box-sizing: border-box;
  color: #000;
  display: inline-block;
}



@media(max-width: 670px){

  .works_section{
    padding-bottom: 50px;
  }

  .works_wrapper{
    margin-top: 50px;
  }

  .works_item_wrapper{
    margin-top: 50px;
  }

  .works_item{
    width: 50%;
  }

  .works_item_title{
    font-size: 15px;
  }

  .works_item_info{
    font-size: 12px;
    margin: 10px 0;
  }

  .works_item_label{
    font-size: 11px;
  }

}