.newsList .Img img {
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
}

.newsGroup {
  margin-bottom: 40px;
}
.newsGroup .newsDataBox {
  position: relative;
}
@media (max-width: 767px) {
  .newsGroup .newsDataBox {
    padding: 0 10px;
  }
}
.newsGroup .newsDataBox .slickBtnBox {
  position: absolute;
  top: 6vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% + 80px);
  z-index: 3;
}
@media (max-width: 1540px) {
  .newsGroup .newsDataBox .slickBtnBox {
    top: 7.5vw;
  }
}
@media (max-width: 1350px) {
  .newsGroup .newsDataBox .slickBtnBox {
    width: calc(100% + 60px);
  }
}
@media (max-width: 1023px) {
  .newsGroup .newsDataBox .slickBtnBox {
    width: calc(100% + 30px);
  }
}
@media (max-width: 767px) {
  .newsGroup .newsDataBox .slickBtnBox {
    top: 10.5vw;
    width: calc(100% + 20px);
  }
}
@media (max-width: 480px) {
  .newsGroup .newsDataBox .slickBtnBox {
    top: 23vw;
  }
}
.newsGroup .classTitle {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #202020;
  margin-bottom: 20px;
}

.newsList {
  margin: 0 -15px;
}
.newsList .newsItem {
  padding: 0 15px 30px;
}
.newsList .item {
  border: 1px solid #ccc;
  height: 100%;
}
.newsList .Img {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .newsList .Img:hover img {
    transform: scale(1.05);
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
}
.newsList .Txt {
  padding: 15px;
  overflow: hidden;
}
.newsList .Txt .title a {
  display: block;
  font-size: clamp(16px, 1.0417vw, 20px);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList .Txt .text {
  height: 60px;
  color: #000;
  font-size: clamp(14px, 0.8vw, 16px);
  padding-top: 10px;
}
.newsList .Txt .newsInfoBox {
  padding: 0 0 10px;
  color: #aaa;
}

.shareBox {
  float: right;
}
.shareBox .btn-fb {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.shareBox .back {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: rgb(174, 66, 51);
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae4233', endColorstr='#c44c4c', GradientType=0);
  /* IE6-9 */
  cursor: pointer;
}
@media (min-width: 1024px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}
