/* CSS Document */
.newsList .Txt .title, .newsList .imgBox .moreBtn, .newsList .item {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsList {
  position: relative;
}
.newsList .newsItem {
  position: relative;
}
.newsList .newsItem + .newsItem {
  margin-top: 32px;
}
.newsList .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  background-color: #fff;
  border: 1px solid #dcd9d2;
  padding: 20px;
}
@media (max-width: 768px) {
  .newsList .item {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
@media (max-width: 575px) {
  .newsList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
@media (min-width: 1181px) {
  .newsList .item:hover:has(.linkWrap) .imgBox .moreBtn {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .newsList .item:hover:has(.linkWrap) .Txt .title {
    color: #aba299;
  }
}
.newsList .imgBox {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 320px;
}
@media (max-width: 991px) {
  .newsList .imgBox {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .newsList .imgBox {
    width: 260px;
  }
}
@media (max-width: 575px) {
  .newsList .imgBox {
    width: 100%;
  }
}
.newsList .imgBox .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .imgBox .moreBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  width: 124px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
}
.newsList .imgBox .moreBtn span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #aba299;
}
.newsList .imgBox .moreBtn svg {
  display: block;
  width: 32px;
  height: auto;
  aspect-ratio: 80/11;
  color: #aba299;
}
.newsList .Txt {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.newsList .Txt .title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .newsList .Txt .title {
    font-size: 18px;
  }
}
.newsList .Txt .text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #808080;
  height: 51px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .newsList .Txt .text {
    font-size: 14px;
    height: 47px;
  }
}
.newsList .newsInfoBox {
  margin-top: 16px;
}
.newsList .linkWrap {
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contentBox .newsInfoBox {
  position: relative;
}
.contentBox .newsInfoBox .dateBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.contentBox .newsInfoBox .dateBox svg {
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  color: #aba299;
}
@media (max-width: 1180px) {
  .contentBox .newsInfoBox .dateBox svg {
    width: 14px;
  }
}
.contentBox .newsInfoBox .dateBox .date {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  color: #aba299;
}
@media (max-width: 1180px) {
  .contentBox .newsInfoBox .dateBox .date {
    font-size: 18px;
  }
}
.contentBox.ins {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .contentBox.ins {
    padding-bottom: 60px;
  }
}
.contentBox.ins .newsInfoBox {
  margin-bottom: 16px;
}
@media (max-width: 1180px) {
  .contentBox.ins .newsInfoBox {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=news.css.map */