/* CSS Document */
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #ec725a;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.newsList .newsItem {
  padding: 25px 15px;
  width: 33.3333333333%;
}
@media (max-width: 960px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 25px 0;
  }
}
.newsList .Img {
  width: 100%;
}
.newsList .Img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsList .Txt {
  overflow: hidden;
}
.newsList .Txt .title {
  padding-top: 5px;
  font-size: 20px;
  font-weight: bold;
}
.newsList .Txt .title a {
  display: inline-block;
  vertical-align: middle;
  color: #194990;
}
.newsList .Txt .title a:hover {
  color: #2d95ff;
}
.newsList .Txt .text {
  padding-top: 7px;
  font-size: 15px;
  color: #404040;
  line-height: 1.8;
}