/*
* style.css
*
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700|Roboto:400,500,700,900&display=swap&subset=japanese");
.report-intro {
  margin-bottom: 8rem;
}
@media (min-width: 769px) {
  .report-intro {
    margin-bottom: 9.2rem;
  }
}

.report-latest {
  background-color: #fffae0;
}

.report-latest_container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.report-latest_header {
  margin-bottom: 3.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #f00;
}
@media (min-width: 769px) {
  .report-latest_header {
    padding-bottom: 1.4rem;
  }
}

.report-latest_heading {
  font-size: 2.2rem;
}
@media (min-width: 769px) {
  .report-latest_heading {
    font-size: 2.6rem;
  }
}

.report-latest_list {
  display: -ms-grid;
  display: grid;

  gap: 3.6rem 0;
}
@media (min-width: 769px) {
  .report-latest_list {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
  }
}

.report-latest_listItem_update {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.report-latest_listItem_img {
  border-bottom: 10px solid #f00;
}
.report-latest_listItem_img img {
  width: 100%;

  -o-object-fit: cover;

     object-fit: cover;
  aspect-ratio: 4 / 3;
}

.report-latest_listItem_content {
  margin-top: 1.8rem;
}

.report-latest_listItem_title {
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 769px) {
  .report-latest_listItem_title {
    font-size: 1.8rem;
  }
}

.report-latest_listItem_description {
  margin-top: 1rem;
  padding-left: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.57143;
}