﻿/* CSS Document */
.newsList .Txt .textBox .title, .newsList .newsItem {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.titleBox {
  text-align: left;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.titleBox .decoTitle::before {
  left: 11px;
}

.newsInfoBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 16px;
}
@media (max-width: 375px) {
  .newsInfoBox {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
.newsInfoBox .dateBox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (max-width: 768px) {
  .newsInfoBox .dateBox {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media (max-width: 575px) {
  .newsInfoBox .dateBox {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.newsInfoBox .dateBox .year {
  position: absolute;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #2f2f2f;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.newsInfoBox .dateBox .month, .newsInfoBox .dateBox .date {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #2f2f2f;
}
.newsInfoBox .dateBox::before {
  position: absolute;
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #2b2b2b;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .newsInfoBox .dateBox::before {
    width: 36px;
  }
}
@media (max-width: 575px) {
  .newsInfoBox .dateBox::before {
    width: 30px;
  }
}
.newsInfoBox .classTitle {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #595959;
  background-color: #ededed;
  padding: 5px 16px;
}
@media (max-width: 575px) {
  .newsInfoBox .classTitle {
    font-size: 14px;
    padding: 5px 12px;
  }
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
}
@media (max-width: 1180px) {
  .newsList {
    row-gap: 16px;
  }
}
.newsList .newsItem {
  position: relative;
  width: calc(50% - 16px);
  padding: 35px 100px 35px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1399px) {
  .newsList .newsItem {
    padding: 35px 80px 35px 40px;
  }
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: calc(50% - 8px);
    padding: 30px 80px 30px 30px;
  }
}
@media (max-width: 1023px) {
  .newsList .newsItem {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .newsList .newsItem {
    padding: 20px 60px 20px 20px;
  }
}
@media (max-width: 480px) {
  .newsList .newsItem {
    padding: 16px;
  }
}
.newsList .newsItem::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #ee7600;
  position: absolute;
  right: 0;
  bottom: -1px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media (min-width: 1201px) {
  .newsList .newsItem:hover {
    -webkit-box-shadow: 0px 0px 17px 6px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 17px 6px rgba(0, 0, 0, 0.05);
  }
  .newsList .newsItem:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .newsList .newsItem:hover .title {
    color: #ee7600 !important;
  }
  .newsList .newsItem:hover .angleBox {
    -webkit-animation: aniSlideRight 1s linear infinite;
            animation: aniSlideRight 1s linear infinite;
    -webkit-animation-duration: reverse;
            animation-duration: reverse;
  }
}
.newsList .item {
  position: static;
  background-color: #fff;
  cursor: pointer;
}
.newsList .Img {
  width: 320px;
  display: block;
  position: absolute;
  right: 200px;
  top: -60px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9;
}
.newsList .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .newsList .Img {
    display: none;
  }
}
.newsList .Txt {
  position: relative;
}
.newsList .Txt .textBox {
  position: relative;
}
.newsList .Txt .textBox .title {
  font-size: 30px;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .newsList .Txt .textBox .title {
    font-size: 20px;
  }
}
.newsList .Txt .textBox .title.ellipsis {
  height: 45px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsList .Txt .textBox .title.ellipsis {
    height: 35px;
  }
}
@media (max-width: 375px) {
  .newsList .Txt .textBox .title {
    font-size: 19px;
  }
}
.newsList .Txt .textBox .text {
  font-size: 18px;
  line-height: 1.5;
  color: #4d4d4d;
}
.newsList .Txt .textBox .text.ellipsis {
  height: 55px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .newsList .Txt .textBox .text.ellipsis {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .newsList .Txt .textBox .text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .newsList .Txt .textBox .text {
    font-size: 15px;
  }
}
.newsList .angleBox {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  right: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .newsList .angleBox {
    right: 30px;
  }
}
@media (max-width: 768px) {
  .newsList .angleBox {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .newsList .angleBox {
    display: none;
  }
}
.newsList .angleBox .angle {
  position: relative;
  width: 10px;
  height: 10px;
  border: 4px solid #ee7600;
  border-bottom: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) skew(5deg, 5deg);
          transform: rotate(45deg) skew(5deg, 5deg);
  overflow: hidden;
  z-index: 1;
}
.newsList .angleBox .angle:first-child {
  opacity: 0.33;
}
.newsList .angleBox .angle:nth-child(2) {
  opacity: 0.66;
}
.newsList .angleBox .angle:nth-child(3) {
  opacity: 1;
}
.newsList .linkWrap {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.classNote {
  padding: 20px 35px;
}

.dateShareBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .dateShareBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin-bottom: 0;
  }
}
.dateShareBox .newsInfoBox {
  margin-bottom: 0;
}
@media (max-width: 375px) {
  .dateShareBox .newsInfoBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.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;
  }
}
/*# sourceMappingURL=news_knowledge.css.map */