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

.titleBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.titleBox .title {
  position: relative;
  display: inline-flex;
  color: #00007E;
  font-size: clamp(30px, 1.875vw, 36px);
  font-weight: 400;
  padding-left: 17px;
}
.titleBox .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fa0001;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.newsList .newsItem {
  width: 25%;
  padding: 0 5px 30px;
}
@media (max-width: 1280px) {
  .newsList .newsItem {
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .newsList .item:hover .Img img {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
.newsList .Img {
  width: 100%;
  background-color: #000;
  overflow: hidden;
}
.newsList .Img img {
  will-change: transform;
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsList .Txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 15px;
  overflow: hidden;
}
.newsList .Txt .title a {
  display: block;
  font-size: clamp(18px, 1.0417vw, 20px);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList .Txt .text {
  color: #000;
  font-size: clamp(14px, 0.8333vw, 16px);
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsList .btnBox {
  margin: auto auto 0;
  padding-top: 20px;
}

.albumList {
  margin: 0 -20px;
}
.albumList .albumItem {
  cursor: pointer;
  padding: 0 20px;
}
.albumList .albumItem img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
@media (max-width: 1180px) {
  .albumList {
    margin: 0 -15px;
  }
  .albumList .albumItem {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .albumList {
    margin: 0 -8px;
  }
  .albumList .albumItem {
    padding: 0 8px;
  }
}

.sideDataArea .sideDataList {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.sideDataArea .sideDataList .slick-track {
  margin-left: 0;
}
.sideDataArea .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 1181px) {
  .sideDataArea .item:hover .Img img {
    transform: scale(1.05);
    opacity: 0.8 !important;
  }
}
.sideDataArea .Img {
  width: 100%;
  background-color: #000;
  overflow: hidden;
}
.sideDataArea .Img a {
  display: block;
}
.sideDataArea .Img img {
  will-change: transform;
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.sideDataArea .Txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 15px;
  overflow: hidden;
}
.sideDataArea .Txt .title a {
  display: block;
  font-size: clamp(18px, 1.0417vw, 20px);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sideDataArea .Txt .text {
  max-height: none;
  color: #000;
  font-size: clamp(14px, 0.8333vw, 16px);
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}