/* CSS Document */
.newsList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.newsList .newsItem {
  width: calc(33.3333333333% - 50px);
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .item {
  position: relative;
}
@media (min-width: 1181px) {
  .newsList .item:hover .Img img {
    transform: scale(1.1);
  }
  .newsList .item:hover .Txt .title {
    color: #ff7800;
  }
}
.newsList .Img {
  overflow: hidden;
}
.newsList .Img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
  transition: all 0.5s;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  transition: all 0.5s;
}
.newsList .Txt {
  position: absolute;
  left: 40px;
  bottom: 30px;
  font-weight: 500;
}
.newsList .Txt .title {
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.15px;
}
.newsList .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.sideDataArea .item {
  position: relative;
}
@media (min-width: 1181px) {
  .sideDataArea .item:hover .Img img {
    transform: scale(1.1);
  }
  .sideDataArea .item:hover .Txt .title {
    color: #ff7800;
  }
}
.sideDataArea .Img {
  overflow: hidden;
}
.sideDataArea .Img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  pointer-events: none;
  transition: all 0.5s;
}
.sideDataArea .Img img {
  transition: all 0.5s;
}
.sideDataArea .Txt {
  position: absolute;
  left: 40px;
  bottom: 30px;
  font-weight: 500;
}
.sideDataArea .Txt .title {
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.15px;
}
.sideDataArea .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
