@charset "utf-8";
.news-wrap h1 {
  font-size: 76px;
  font-weight: 700;
  padding-bottom: 1rem;
}
.news-wrap h2 {
  font-size: 20px;
}
.news-wrap h3 {
  font-size: 18px;
}
.news-wrap {
  width: 100%;
}
.news-wrap .main-news-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.news-wrap .main-news-wrap a {
  border: 2px solid #000;
  border-radius: 2rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  text-align: center;
}
.news-wrap .main-news-wrap h1 {
  font-size: 64px;
  font-weight: 700;
}
.news-wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.news-wrap ul li img {
  width: 100%;
  margin-bottom: 1.4rem;
}
.news-wrap ul li h2 {
  padding-bottom: 1rem;
}
.news-wrap ul li h3 {
  font-size: 13px;
}
@media all and (max-width: 575px) {
  .news-wrap .main-news-wrap h1 {
    font-size: 46px;
    padding-bottom: 0;
  }
  .news-wrap .main-news-wrap a {
    font-size: 12px;
    width: 100px;
    height: 36px;
  }
  .news-wrap ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
