
.p-reports div.report_item{
  width: 30%;
  margin-right: 5%;
  padding: 0;
}
.p-reports div.report_item:nth-child(3n){
  margin-right: 0;
}
.p-reports div.report_item a{
  color: #000;
}
.report_item_img{
  width: 100%;
  position: relative;
}
.report_item_img::before{
  content: "";
  display: block;
  padding-top: calc(1/2*100%);
}
.report_item_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.report_item_inner{
  margin-top: 30px;
}
.report_item_title{
  font-weight: 500;
  font-size: 1.2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.report_item_txt{
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}


@media(max-width: 750px){
  
  .p-reports{
    display: block;
  }
  .p-reports div.report_item{
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .p-reports div.report_item:last-child{
    margin-bottom: 0;
  }
  .report_item_inner{
    margin-top: 15px;
  }
  .report_item_txt{
    margin-top: 5px;
  }
  .report_item_title{
    font-size: 1.5em;
  }
  .report_item_txt{
    font-size: 1.2em;
  }

}