.news {
  position: relative;
  width: 92vw;
  margin-left: auto;
  margin-right: auto;
}

.news-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-top: 50px;
  border-top: 2px solid #08287F;
}

.news-title {
  width: 84vw;
  margin-right: auto;
  margin-left: auto;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 84vw;
  margin-right: auto;
  margin-left: auto;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5.33333vw;
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #CCCCCC;
}

#top_news .news-item:first-child {
  padding-top: 0;
}

.news-item-info {
  width: 68vw;
}

.news-item-info::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #08287F;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-item-header {
  display: flex;
}

.news-item-date {
  margin-top: 0;
  line-height: 1.45;
}

.news-item-categories {
  display: flex;
  gap: 8px;
  border-left: solid 1px #08287F;
  padding-left: 10px;
  margin-left: 10px;
}

.news-item-categories span {
  margin-top: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.45;
}

.news .btn {
  margin-right: auto;
  margin-left: auto;
}

#news-release .news-wrap {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

#news-release .news-archive {
  padding-bottom: 50px;
  border-bottom: 2px solid #08287F;
}

#news-release .news-archive-inner:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}

#news-release .news-archive-box {
  position: relative;
  display: flex;
  gap: 10px;
  width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
  margin-left: -8vw;
  padding: 0 8vw;
}

#news-release .news-archive-box::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#news-release .news-archive-box::-webkit-scrollbar-thumb {
  width: 0;
  height: 0;
}

#news-release .news-archive-box::-webkit-scrollbar-track {
  width: 0;
  height: 0;
}

#news-release .news-archive-box .btn-check {
  white-space: nowrap;
}

#news-release .news-archive-box .btn-check-text-ENG {
  font-size: 13px;
}

#news-release .news-content {
  width: 100%;
}

#news-release .news-content:not(:last-child) {
  margin-bottom: 50px;
}

#news-release .news-content .report-notfound {
  padding-top: 50px;
  padding-bottom: 80px;
  font-size: 13px;
  line-height: 23px / 13px;
  font-weight: 700;
  color: #08287F;
}

#news-release .news-content .pager {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .news {
    width: 84%;
  }

  .news-inner {
    flex-direction: row;
    gap: 4.7619%;
  }

  .news-title {
    width: 168px;
    margin-right: 0;
    margin-left: 0;
  }

  .news-content {
    width: calc(100% - 168px - 56 / 1176 * 100%);
    margin-right: 0;
    margin-left: 0;
  }

  .news-item {
    gap: 4.41176%;
  }

  .news-item-info {
    width: calc(100% - 70px - 42 / 952 * 100%);
  }

  .news-item-categories {
    padding-left: 20px;
    margin-left: 20px;
  }

  #news-release .news-archive-inner:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  #news-release .news-archive-box {
    margin-left: -3px;
    padding: 3px;
  }

  #news-release .news-content:not(:last-child) {
    margin-bottom: 80px;
  }

  #news-release .news-content .report-notfound {
    padding-bottom: 210px;
    font-size: 18px;
    line-height: 32px / 18px;
  }

  #news-release .news-content .pager {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767.8px) {
  .news-title h2 {
    display: flex;
    gap: 0.25em;
  }
}

@media (hover: hover) {
  .news-item:hover .news-item-info::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .news-item:hover .news-item-info::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
  }
}