#_news {
  padding-bottom: 100px;
}
#_news .sec-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-bottom: 50px;
}
#_news .sec-category {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  height: fit-content;
}
#_news .sec-category .cat{
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 2;
  color: var(--c-accent);
  border-radius: 100px;
  border: 1px solid var(--c-accent);
  min-width: 90px;
  padding: 0 16px;
}
#_news .sec-category .cat.current{
  background: var(--c-accent);
  color: #fff;
  pointer-events: none;
}
#_news .sec-select {
  position: relative;
  display: inline-block;
  width: fit-content;
}
#_news .sec-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 30px 10px 12px;
/*   padding: 10px 30px; */
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ff-en);
  letter-spacing: .05em;
  color: #4B5563;
  border: 1px solid #F3F3F3;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  min-width: 109px;
	text-align: center;
}
#_news .sec-select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--c-main);
  border-right: 1px solid var(--c-main);
  transform: rotate(45deg);
}
#_news .sec-list {
  margin-bottom: 103px;
}
#_news .sec-list .item {
  display: block;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid #F3F3F3;
}
#_news .sec-list li:first-child {
  border-top: 1px solid #F3F3F3;
}
#_news .sec-list .item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F2F2F2 0%, #EBEBEB 100% );
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
  top: 0;
  left: 0;
}
#_news .sec-list .item:hover::before {
  opacity: 1;
}
#_news .sec-list .top {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
#_news .sec-list .date {
  color: #6B7280;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--ff-en);
  letter-spacing: .05em;
}
#_news .sec-list .cat {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.66;
  color: var(--c-accent);
  border-radius: 100px;
  border: 1px solid var(--c-accent);
  padding: 0 8px;
}
#_news .sec-list .title {
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1.2;
}
/* TAB */
@media screen and (max-width: 1024px) {
  #_news {
    padding-bottom: 80px;
  }
  #_news .sec-box {
    margin-bottom: 42px;
  }
  #_news .sec-category {
    gap: 13px 6px;
  }
  #_news .sec-category .cat{
    font-size: 13px;
    min-width: 82px;
  }
  #_news .sec-select select {
    padding: 8px 25px 8px 10px;
/*     padding: 8px 25px; */
    font-size: 15px;
    min-width: 95px;
  }
  #_news .sec-select::after {
    right: 10px;
    top: 15px;
    width: 5px;
    height: 5px;
  }
  #_news .sec-list {
    margin-bottom: 80px;
  }
  #_news .sec-list .item {
    padding: 18px 0;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #_news {
    padding-bottom: 60px;
  }
  #_news .sec-box {
    margin-bottom: 35px;
  }
  #_news .sec-category {
    gap: 6px 10px;
  }
  #_news .sec-category .cat{
    font-size: 12px;
    min-width: 75px;
  }
  #_news .sec-select select {
    padding: 6px 20px 6px 8px;
/*     padding: 6px 20px; */
    font-size: 14px;
    border-radius: 3px;
    min-width: 80px;
  }
  #_news .sec-select::after {
    right: 8px;
    top: 14px;
    width: 4px;
    height: 4px;
  }
  #_news .sec-list {
    margin-bottom: 60px;
  }
  #_news .sec-list .item {
    padding: 16px 0;
  }
}