#pageNews .newsAll {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 16%;
  position: relative;
  align-items: flex-start;
}
#pageNews .newsListCategory {
  position: sticky;
  top: 20px;
  left: 0;
}
#pageNews .newsListCategory .ttl {
  display: block;
  font-family: "Spectral", sans-serif;
  font-size: clamp(24px, 2.17vw, 26px);
  line-height: 1.5em;
  letter-spacing: 0em;
  font-weight: 600;
  margin-bottom: 24px;
}
#pageNews .newsListCategory .newsListCategoryLink {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#pageNews .newsListCategory .newsListCategoryLink .catName {
  color: #747474;
  font-size: 13px;
}
#pageNews .newsListWrap {
  width: 100%;
}
#pageNews .newsListArea {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#pageNews .newsListArea .newsList {
  top: 0;
  display: grid;
  grid-template-columns: 114px 1fr;
  align-items: center;
  gap: 24px;
}
#pageNews .newsListArea .newsList .newsListImg {
  width: 100%;
}
#pageNews .newsListArea .newsList .newsListImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 24px;
}
#pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsDate {
  font-size: 13px;
}
#pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories .catName {
  font-size: 13px;
  color: #747474;
}
#pageNews .newsListArea .newsList .newsListTxt .newsTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 1.6em;
  font-size: 16px;
  margin: 10px 0;
}
#pageNews .newsListArea .newsList .newsListTxt .more {
  display: block;
  font-family: "Spectral", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  #pageNews .newsAll {
    display: flex;
    gap: 50px;
    flex-direction: column;
  }
  #pageNews .newsListCategory {
    position: relative;
    top: 0;
    margin: auto;
  }
  #pageNews .newsListCategory .ttl {
    font-size: clamp(16px, 6.67vw, 26px);
    margin-bottom: 12px;
    text-align: center;
  }
  #pageNews .newsListCategory .newsListCategoryLink {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
  #pageNews .newsListCategory .newsListCategoryLink .catName {
    text-align: center;
    font-size: 13px;
  }
  #pageNews .newsListArea {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  #pageNews .newsListArea .newsList {
    display: grid;
    grid-template-columns: 114px 1fr;
    gap: 24px;
    align-items: center;
  }
  #pageNews .newsListArea .newsList .newsListImg {
    width: 100%;
  }
  #pageNews .newsListArea .newsList .newsListImg img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead {
    display: flex;
    flex-direction: column;
    gap: 0px 24px;
  }
  #pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsDate {
    font-size: 13px;
    line-height: 1.4em;
  }
  #pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #pageNews .newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories .catName {
    font-size: 13px;
    line-height: 1.4em;
    color: #747474;
  }
  #pageNews .newsListArea .newsList .newsListTxt .newsTitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-height: 1.6em;
    font-size: 16px;
    margin: 4px 0;
  }
  #pageNews .newsListArea .newsList .newsListTxt .more {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */