@charset "UTF-8";
.news {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 80px;
  box-sizing: border-box;
}
.news_tit1 {
  color: #00768a;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-bottom: 30px;
}
.news_list1 {
  background-color: #e3e3e3;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.news_list1 .li1 {
  width: calc((100% - 40px) / 3);
}
.news_list1_link1 {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
}
.news_list1_link1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  a.news_list1_link1:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .news {
    width: 100%;
    padding: 40px 20px 60px;
  }
  .news_tit1 {
    font-size: 22px;
    padding-bottom: 20px;
  }
  .news_list1 {
    padding: 20px;
    gap: 10px;
  }
  .news_list1 .li1 {
    width: calc((100% - 10px) / 2);
  }
}
