/*==================================================
section topNews_list
===================================*/
.topNews_list {
  background-color: #f0f0f0;
  padding-top: 6rem;
}

.topNews_list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.topNews_list__item {
  font-family: "OSwald", sans-serif;
  background: #1e669f;
  color: #fff;
  position: relative;
}

.topNews_list__item::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon_arrow_circle.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.topNews_list__item a {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .topNews_list__item a {
    flex-wrap: wrap;
  }
}

.topNews_list__category {
  background-color: #005293;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.09rem;
  padding: 1.5rem 3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .topNews_list__category {
    padding: 1.2rem 1rem;
    height: 100%;
  }
}

.topNews_list__time {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12rem;
  padding: 1.5rem 2rem;
  position: relative;
}

@media (max-width: 767px) {
  .topNews_list__time {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
}

.topNews_list__time::after {
  content: "";
  width: 1px;
  height: 12px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.topNews_list__text {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
}

@media (max-width: 767px) {
  .topNews_list__text {
    padding: 1rem 2rem;
    padding-left: 1rem;
  }
}

.topNews_list .btn {
  margin-top: 2rem;
}

.topNews_list .btn a {
  background: #f0f0f0;
}

/*==================================================
section topNews
===================================*/
.top_news {
  background-color: #003056;
  position: relative;
}

.top_news::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
}

.top_news::after {
  content: "";
  background: url(../img/top_news_bottom.png) no-repeat;
  background-size: contain;
  width: 22rem;
  height: 27rem;
  position: absolute;
  bottom: -5.75rem;
  left: 3rem;
  z-index: 1;
}

@media screen and (max-width: 1320px) {
  .top_news::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #003056;
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}

.top_news__wrapper {
  position: relative;
  padding: 4rem 0 13rem;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top_news__wrapper {
    padding: 4rem 0 10rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
}

.top_news__wrapper .splide__track {
  overflow: visible;
}

.top_news__wrapper .splide__pagination {
  display: none;
}

.top_news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
}

.top_news__head .section__title {
  text-align: left;
  margin: 0;
}

.top_news__slider {
  position: relative;
  z-index: 2;
}

.top_news__item {
  background-color: #fff;
}

.btn.top_news__btn {
  width: 18rem;
}

.btn.top_news__btn a {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

.btn.btn.top_news__btn a::after {
  width: 1rem;
  height: 0.3rem;
}

.top_news__image {
  position: relative;
}

.top_news__category {
  background-color: #005293;
  color: #fff;
  font-size: 1.2rem;
  width: fit-content;
  padding: 0.3rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
}

.top_news__title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  line-height: 1.6rem;
  padding: 1rem 0;
  border-bottom: solid 1px #003056;
  margin-bottom: 1rem;
}

.top_news__text {
  color: #797979;
  font-size: 1.4rem;
  letter-spacing: 0.02rem;
  line-height: 2.8rem;
}

/*==================================================
section topNews END
===================================*/
