/*
news
*/
.news__inner {
  width: 91.5%;
  max-width: 112rem;
  margin: 0 auto;
}

.news__newsListItem {
  border-top: 1px solid #5c5242;
}
.news__newsListItem:first-child {
  margin-top: -2.6rem;
}
@media (max-width: 768px) {
  .news__newsListItem:first-child {
    margin-top: -6.4vw;
  }
}
.news__newsListItem:last-child {
  border-bottom: 1px solid #5c5242;
}

.news__newsListDetail {
  padding: 2.6rem 0;
  word-break: break-all;
  display: grid;
  grid-template-columns: auto 81.7%;
  justify-content: space-between;
  gap: 0 1rem;
  position: relative;
}
.news__newsListDetail::before,
.news__newsListDetail::after {
  content: "";
  position: absolute;
  background: #5c5242;
  width: 2rem;
  height: 0.2rem;
  border-radius: 100px;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .news__newsListDetail::before,
  .news__newsListDetail::after {
    right: 0;
  }
}
.news__newsListDetail::after {
  transform: rotate(90deg);
}
.news__newsListDetail.active::after {
  display: none;
}
@media (max-width: 768px) {
  .news__newsListDetail {
    padding: 6.4vw 0 8.5333333333vw;
    grid-template-columns: 100%;
    justify-content: flex-start;
    gap: 2.1333333333vw 0;
    font-size: 4.2666666667vw;
  }
}
.news__newsListDetail.active .news__newsListTitle::after {
  display: none;
}

.news__newsListTitle {
  width: 88%;
}

.news__newsListText {
  padding-left: 18%;
  display: none;
}
@media (max-width: 768px) {
  .news__newsListText {
    padding: 0;
  }
}
.news__newsListText p {
  margin: 4.5rem 0;
}
.news__newsListText p a {
  text-decoration: underline;
}

.news__pagination {
  margin-top: 11.5rem;
  text-align: center;
}

.news__paginationList {
  display: flex;
  gap: 0 4rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .news__paginationList {
    gap: 0rem;
  }
}

.news__paginationListNumber {
  font-family: "futura-pt", sans-serif;
  color: #5c5242;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 2rem;
  max-width: 4rem;
  max-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.news__paginationListCurrent {
  background: #e5825e;
  color: #fff;
  border-radius: 50%;
}

.news__paginationListPrev,
.news__paginationListNext {
  border: 0.1rem solid #5c5242;
  border-radius: 50%;
  box-sizing: border-box;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__paginationListPrev:hover,
.news__paginationListNext:hover {
  background: #5c5242;
  color: #fff;
  opacity: 1;
}

.news__paginationListPrev {
  margin-right: 1rem;
}

.news__paginationListNext {
  margin-left: 1rem;
}

.news__paginationIcon {
  width: 1rem;
  display: block;
}
.news__paginationIcon svg {
  display: block;
  width: 100%;
} /*# sourceMappingURL=style.css.map */
