section.news {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
section.news .year-select {
  position: relative;
  width: fit-content;
  margin-left: auto;
}
section.news .year-select:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 10px;
  height: 7px;
  background-color: var(--gray);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
section.news .year-select .year {
  width: 150px;
  border: 1px solid var(--light-gray);
  padding: 10px;
  line-height: 1;
  padding-right: 30px;
}
section.news ul.category-tab {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid var(--blue);
}
@media screen and (max-width: 767px) {
  section.news ul.category-tab {
    margin-top: 20px;
  }
}
section.news ul.category-tab li {
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--white);
  color: var(--gray);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s;
}
@media (hover) {
  section.news ul.category-tab li:hover {
    color: var(--blue);
  }
}
@media screen and (max-width: 767px) {
  section.news ul.category-tab li {
    width: 33.3333333333%;
    height: 50px;
  }
}
section.news ul.category-tab li.is-active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  pointer-events: none;
}
section.news ul.news-list li {
  border-bottom: 1px solid var(--light-gray);
}
section.news ul.news-list li a {
  padding: 30px 50px 30px 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a {
    gap: 5px 15px;
    flex-wrap: wrap;
    padding: 15px 30px 15px 0;
  }
}
section.news ul.news-list li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  background: url(/common/img/icn_arrow.svg) no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a:after {
    right: 0;
  }
}
@media (hover) {
  section.news ul.news-list li a:hover {
    background-color: var(--blue-hover);
  }
  section.news ul.news-list li a:hover .title {
    color: var(--blue);
  }
}
section.news ul.news-list li a .date {
  width: 105px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
}
section.news ul.news-list li a .category {
  font-size: 12px;
  width: 90px;
  height: 25px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.news ul.news-list li a .category.kessan {
  background-color: #ef6a6f;
}
section.news ul.news-list li a .category.kaiji {
  background-color: #67c67d;
}
section.news ul.news-list li a .category.yuho {
  background-color: #f58353;
}
section.news ul.news-list li a .category.doc {
  background-color: #49b4e7;
}
section.news ul.news-list li a .category.news {
  background-color: #886aae;
}
section.news ul.news-list li a .title {
  width: calc(100% - 215px);
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a .title {
    width: 100%;
  }
}
section.news ul.news-list li a[target=_blank] {
  position: relative;
}
section.news ul.news-list li a[target=_blank]:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 20px;
  background: url(/common/img/icn_blank.svg) no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a[target=_blank]:after {
    right: 0;
  }
}
section.news ul.news-list li a[href$=".pdf"] {
  position: relative;
}
section.news ul.news-list li a[href$=".pdf"]:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 20px;
  background: url(/common/img/icn_pdf.svg) no-repeat !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a[href$=".pdf"]:after {
    right: 0;
  }
}