/* CSS Document */
.newsList .Img img, .newsList .Img a::before {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.newsInfoBox {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox {
  padding-right: 10px;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  padding: 7px 10px;
}

.classNote {
  padding-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}
.classNote img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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 .Img a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
@media (min-width: 1201px) {
  .newsList .Img a:hover::before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border-color: #b19365;
  }
  .newsList .Img a:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.newsList .Img a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin: auto;
  display: block;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  border: 2px solid transparent;
  pointer-events: none;
}
.newsList .Img img {
  display: block;
  width: 100%;
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  padding: 15px;
  letter-spacing: 1px;
}
.newsList .Txt .title a {
  display: block;
  font-size: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsList .Txt .text {
  height: 77px;
  color: #666;
  font-size: 15px;
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.newsList .Txt .btnBox {
  margin-top: 15px;
}

.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: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
  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: 1201px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}