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

.outerWrap {
  overflow-x: clip;
}

.newsInfoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;
}
.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;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1023px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  height: 100%;
}
.newsList .Img {
  width: 100%;
  overflow: hidden;
}
.newsList .Img:not(:has(img)) {
  aspect-ratio: 740/480;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .newsList .Img:hover img {
    transform: scale(1.05);
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
}
.newsList .Txt {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
  overflow: hidden;
}
.newsList .Txt .title {
  margin-top: auto;
  height: 60px;
}
.newsList .Txt .title a {
  display: block;
  font-size: clamp(16px, 1.0417vw, 20px);
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsList .Txt .text {
  height: 60px;
  color: #000;
  font-size: clamp(14px, 0.8vw, 16px);
  padding-top: 10px;
}
.newsList .Txt .newsInfoBox {
  padding: 20px 0 0;
}

.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;
  }
}

.newsBox {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .newsBox {
    flex-direction: column-reverse;
  }
}
.newsBox .left {
  width: 60%;
}
@media (max-width: 1023px) {
  .newsBox .left {
    width: 100%;
  }
}
.newsBox .right {
  width: 40%;
}
@media (min-width: 1024px) {
  .newsBox .right {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    padding-left: 20px;
  }
}
@media (max-width: 1023px) {
  .newsBox .right {
    width: 100%;
  }
}
.newsBox .right .Img {
  width: 100%;
  overflow: hidden;
}
.newsBox .right .Img:not(:has(img)) {
  aspect-ratio: 740/480;
}
.newsBox .right .Img img {
  width: 100%;
  height: auto;
  display: block;
}
