@charset "UTF-8";


/*----------------------------------------
活動レポート：一覧ページ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #report_txt {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 50px;
  }
  #report_archive_ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #report_archive_ul:after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 31.5%;
    max-width: 380px;
  }
  #report_archive_ul li {
    flex-shrink: 0;
    width: 31.5%;
    max-width: 380px;
    margin: 0 0 80px;
  }
  #report_archive_ul li a div {
    margin: 0 0 12px;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 1/1;
  }
  #report_archive_ul li a time {
    display: block;
    color: #666666;
    font-size: 0.875rem;
    line-height: 1;
    margin: 0 0 12px;
  }
  #report_archive_ul li a p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  #report_txt {
    font-size: 0.875rem;
    line-height: 1.8;
    margin: 0 0 25px;
  }
  #report_archive_ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 35px;
    margin: 0 0 40px;
  }
  #report_archive_ul li {
    width: 100%;
  }
  #report_archive_ul li a div {
    margin: 0 0 9px;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 1/1;
  }
  #report_archive_ul li a time {
    display: block;
    color: #666666;
    font-size: 0.75rem;
    line-height: 1;
    margin: 0 0 6px;
  }
  #report_archive_ul li a p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

#report_archive_ul li a {
  color: #000000;
  display: block;
  width: 100%;
  height: 100%;
}
#report_archive_ul li a div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}
#report_archive_ul li a:hover {
  color: #000000;
  text-decoration: none;
}
#report_archive_ul li a:hover div img {
  transform: scale(1.05, 1.05);
  transition: transform 0.2s;
}
#report_archive_ul li a:hover p {
  text-decoration: underline;
}


/*----------------------------------------
活動レポート：記事ページ
----------------------------------------*/
#report_post_wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #report_post_ttl {
    font-weight: 500;
    font-size: 2.125rem;
    line-height: 1.35;
    margin: 0 0 30px;
  }
  .back_link {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  #report_post_ttl {
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 1.65;
  }
  .back_link {
    margin-top: 20px;
  }
}

