/* CSS Document */
.newsList .item > .Img img, .newsList .item > .Img::before, .newsList .item, .newsBox {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.mainArea {
  padding-bottom: 60px;
}

.topTagBox {
  position: relative;
  padding: 0;
  margin-bottom: 45px;
}
@media (max-width: 1200px) {
  .topTagBox {
    margin-bottom: 35px;
  }
}
.topTagBox .tagCurrent {
  position: relative;
  cursor: pointer;
  z-index: 2;
  font-size: 17px;
  border-radius: 25px;
  padding: 10.5px 50px 10.5px 20px;
  color: #333333;
  background-color: #fff;
  border: 1px solid #c5c5c5;
}
.topTagBox .tagCurrent::before {
  content: "\f107";
  color: #fff;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1201px) {
  .topTagBox .tagCurrent {
    display: none;
  }
}
@media (min-width: 1201px) {
  .topTagBox .tagList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
  }
  .topTagBox .tagList .tagItem {
    margin-bottom: 0;
  }
  .topTagBox .tagList a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 150px;
    height: 44px;
    border-radius: 22px;
    font-size: 17px;
    padding: 6px 20px;
    margin: 10px;
    color: #333333;
    border: 1px solid #c5c5c5;
    background-color: #fff;
  }
  .topTagBox .tagList a:hover, .topTagBox .tagList a.current {
    color: #fff;
    background-color: #0c2e4a;
    border-color: #0c2e4a;
  }
}
@media (max-width: 1200px) {
  .topTagBox .tagList {
    display: none;
    overflow: hidden;
    position: absolute;
    top: calc(100% - 25px);
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 25px;
    border-radius: 0 0 25px 25px;
    background-color: #fff;
    border-left: 1px solid #c5c5c5;
    border-right: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
  }
  .topTagBox .tagList.open {
    display: block;
  }
  .topTagBox .tagList .tagItem {
    display: block;
    margin-bottom: 0;
  }
  .topTagBox .tagList .tagItem:not(:last-child) a {
    border-bottom: 1px solid #c5c5c5;
  }
  .topTagBox .tagList a {
    display: block;
    font-size: 14px;
    padding: 13.5px 15px;
    border: 0;
    background-color: #fff;
  }
  .topTagBox .tagList a.current {
    color: #0c2e4a;
  }
}

.classNote {
  margin-bottom: 20px;
}
.classNote .title {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  color: #333333;
}
.classNote .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #0c2e4a;
}
.classNote .text {
  font-size: 17px;
  letter-spacing: 1.05px;
  line-height: 1.8;
  color: #666666;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding: 0 15px;
}
@media (max-width: 1366px) {
  .newsInfoBox {
    padding: 0 10px;
  }
}
.newsInfoBox .dateBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsInfoBox .dateBox .day {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #000;
}
@media (max-width: 1366px) {
  .newsInfoBox .dateBox .day {
    font-size: 30px;
  }
}
.newsInfoBox .dateBox .right {
  position: relative;
  margin-left: 8px;
}
.newsInfoBox .dateBox .month,
.newsInfoBox .dateBox .year {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #666666;
}
@media (max-width: 1366px) {
  .newsInfoBox .dateBox .month,
  .newsInfoBox .dateBox .year {
    font-size: 12px;
  }
}

.newsBox.ajaxDisabled {
  opacity: 0.15;
  pointer-events: none;
}

.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 30px;
}
@media (max-width: 1180px) {
  .newsList {
    row-gap: 36px;
  }
}
.newsList .newsItem {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 860px) {
  .newsList .newsItem {
    width: calc(50% - 18px);
  }
}
@media (max-width: 575px) {
  .newsList .newsItem {
    width: 100%;
  }
}
.newsList .newsItem.noLink .item .Img a:hover {
  cursor: default;
}
.newsList .newsItem.noLink .item .Txt > .title a:hover {
  cursor: default;
  color: #333333;
}
.newsList .newsItem.noLink .item .Txt > .more .link:hover {
  cursor: default;
}
.newsList .newsItem.noLink .item .Txt > .more .link:hover .title {
  color: #666666;
}
.newsList .newsItem.noLink .item .Txt > .more .link:hover .icon path {
  fill: #939393;
}
.newsList .newsItem.hover:not(.noLink) .item .Img .mask {
  opacity: 1;
}
.newsList .newsItem.hover:not(.noLink) .item .Img .more {
  opacity: 1;
}
.newsList .newsItem.hover:not(.noLink) .item .Img img {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.newsList .newsItem.hover:not(.noLink) .item .Txt .title a {
  color: #0c2e4a;
}
.newsList .newsItem.hover:not(.noLink) .item .Txt .more {
  color: #0c2e4a;
}
.newsList .newsItem.hover:not(.noLink) .item .Txt .more .title,
.newsList .newsItem.hover:not(.noLink) .item .Txt .more a {
  color: #0c2e4a;
}
.newsList .newsItem.hover:not(.noLink) .item .Txt .more .icon path {
  fill: #0c2e4a;
}
.newsList .item {
  position: relative;
  padding: 15px;
  border-radius: 14px;
}
@media (max-width: 1180px) {
  .newsList .item {
    padding: 0;
  }
}
@media (min-width: 1201px) {
  .newsList .item:hover {
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .newsList .item:hover .Img::before {
    opacity: 1;
  }
  .newsList .item:hover .Txt .title a {
    color: #0c2e4a;
  }
}
.newsList .item > .Img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.newsList .item > .Img::before {
  content: "";
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
}
.newsList .item > .Img img {
  display: block;
  width: 100%;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  object-fit: cover;
  height: 300px;
}
.newsList .Txt .topBox {
  padding: 26px 15px 20px;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 30px;
}
@media (max-width: 1366px) {
  .newsList .Txt .topBox {
    padding: 15px 10px;
    margin-bottom: 20px;
  }
}
.newsList .Txt .classTitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: normal;
  color: #0c2e4a;
  margin-bottom: 10px;
}
.newsList .Txt .title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: normal;
  color: #000000;
}
@media (max-width: 1366px) {
  .newsList .Txt .title {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .newsList .Txt .title {
    font-size: 16px;
  }
}
.newsList .Txt .title a {
  display: inline-block;
}
.newsList .Txt .title.ellipsis {
  /*height: 60px;*/
  overflow: hidden;
}
@media (max-width: 1366px) {
  .newsList .Txt .title.ellipsis {
    /*height: 55px;*/
  }
}
@media (max-width: 991px) {
  .newsList .Txt .title.ellipsis {
    /*height: 53px;*/
  }
}
.newsList .Txt .text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: normal;
  color: #666666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 70px;
  margin-top: 8px;
}
@media (max-width: 1366px) {
  .newsList .Txt .text {
    font-size: 14px;
    height: 65px;
  }
}
@media (max-width: 768px) {
  .newsList .Txt .text {
    font-size: 13px;
    height: 62px;
  }
}
.newsList .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pageBox .pageList.number {
  padding-top: 37px;
  padding-bottom: 0;
}

.mainArea.ins {
  overflow: hidden;
}
.mainArea.ins .infoBox > .newsInfoBox {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.mainArea.ins .bread {
  padding: 8px 0;
  border-bottom: 0;
}
.mainArea.ins .bread .wrap {
  padding: 0;
}
@media (max-width: 768px) {
  .mainArea.ins .bread {
    display: block;
  }
}
.mainArea.ins .topInfoBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mainArea.ins .topInfoBox::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #f4f4f4;
}
.mainArea.ins .infoBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
}
.mainArea.ins .textEditorBox {
  padding-top: 40px;
}

.articleTitle {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #333333;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 1399px) {
  .articleTitle {
    font-size: 26px;
  }
}
@media (max-width: 1180px) {
  .articleTitle {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .articleTitle {
    font-size: 22px;
  }
}

.albumBox {
  width: 69.3333333333%;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .albumBox {
    width: 100%;
    padding-left: 0;
    padding-top: 25px;
  }
}
.albumBox img {
  display: block;
  width: 100%;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 20px;
}
.albumBox .bottomBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 30px 4px;
}
@media (max-width: 1200px) {
  .albumBox .bottomBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 7px 0;
  }
}
.albumBox .marked {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 22px;
  color: #aaaaaa;
}
@media (max-width: 1200px) {
  .albumBox .marked {
    display: none;
  }
}
.albumBox .numberBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #aaaaaa;
}
.albumBox .numberBox .line {
  margin: 0 15px;
}
.albumBox .arrowBox {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  z-index: 1;
  margin: 0 -5px;
}
.albumBox .arrowBox .arrow {
  margin: 0 5px;
}
@media (max-width: 1200px) {
  .albumBox .arrowBox {
    display: none;
  }
}

.backBtn {
  padding-top: 30px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .backBtn {
    padding-bottom: 60px;
  }
}
.backBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 290px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  font-size: 16px;
  margin: 0 auto;
  color: #fff;
  background-color: #0c2e4a;
}
@media (min-width: 1201px) {
  .backBtn a:hover {
    background-color: #333333;
  }
}
/*# sourceMappingURL=news.css.map */