/* CSS Document */
.newsList .item::before {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  min-width: 110px;
  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;
  gap: 10px;
}
@media (max-width: 1180px) {
  .newsInfoBox {
    min-width: 80px;
  }
}
.newsInfoBox .dateBox, .newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 0;
}
.newsInfoBox .classTitle {
  background: #000000;
  border-radius: 99px;
  color: #fff;
  padding: 5px 10px;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.newsList .newsInfoBox {
  border-right: 1px solid #c0c0c0;
  padding-right: 20px;
  padding-bottom: 10px;
}
.newsList .newsInfoBox .dateBox {
  text-align: center;
  color: #000000;
  font-weight: 600;
}
.newsList .newsInfoBox .dateBox .date {
  font-size: 50px;
}
@media (max-width: 1180px) {
  .newsList .newsInfoBox .dateBox .date {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .newsList .newsInfoBox .dateBox .date {
    font-size: 32px;
  }
}
.newsList .newsInfoBox .dateBox .year {
  font-size: 18px;
}
@media (max-width: 1180px) {
  .newsList .newsInfoBox .dateBox .year {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .newsList .newsInfoBox .dateBox .year {
    font-size: 14px;
  }
}
.newsList .newsItem {
  width: 100%;
  margin-bottom: 5px;
}
.newsList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0px;
  background: transparent;
  position: relative;
  border-bottom: 1px solid #c0c0c0;
}
.newsList .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (min-width: 1181px) {
  .newsList .item:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .newsList .item:hover .arrows path {
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
}
.newsList .linkWrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.newsList .Img {
  width: 100%;
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  padding: 0 60px 0 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsList .Txt {
    padding: 0 50px 0 20px;
  }
}
@media (max-width: 480px) {
  .newsList .Txt {
    padding: 0 0 0 15px;
  }
}
.newsList .Txt .topBox {
  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-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.newsList .Txt .topBox .eventDate {
  color: #888888;
}
.newsList .Txt .title a {
  display: block;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .newsList .Txt .title a {
    font-size: 18px;
  }
}
.newsList .Txt .text {
  height: 60px;
  color: #888888;
  font-size: 15px;
  padding-top: 10px;
}
@media (max-width: 1180px) {
  .newsList .Txt .text {
    font-size: 15px;
  }
}
.newsList .Txt .arrows {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 33px;
  height: 16px;
}
.newsList .Txt .arrows path {
  fill: #000000;
  fill-opacity: 0;
  -webkit-animation: arrowsGradual 1.5s infinite linear;
          animation: arrowsGradual 1.5s infinite linear;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.newsList .Txt .arrows path:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.newsList .Txt .arrows path:nth-of-type(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.newsList .Txt .arrows path:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media (max-width: 480px) {
  .newsList .Txt .arrows {
    display: none;
  }
}

.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: 1181px) {
  .shareBox .back:hover {
    background: #398cb1;
  }
}