.newssec{
  padding: 50px 0 18px;
}
.news_inner{
  max-width: 960px;
  padding: 0 25px;
  margin: 0 auto;
}
.news_box{
  background: #fff;
  border-radius: 20px;
  border: 2px solid #ab0a3d;
  padding: 14px 34px 30px 36px;
}
.news_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.news_header .news_ttl{
  background: none;
  border: none;
  color: #ab0a3d;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 3px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.news_header .news_archivelink{
  color: #ab0a3d;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-right: 45px;
  position: relative;
}
.news_header .news_archivelink::before{
  content: "";
  aspect-ratio: 1/1;
  background: url(../img/news_arrow.svg) no-repeat center / cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
}
.news_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news_list .news_list_item > a{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}
.news_list_info .cat{
  border-radius: 100px;
  border: 1px solid #ab0a3d;
  color: #ab0a3d;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
  min-width: 150px;
  text-align: center;
}
.news_list_info time{
  font-size: 15px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .newssec{
    padding: 30px 0 12px;
  }
  .news_inner{
    padding: 0 13px;
  }
  .news_box{
    padding: 20px 17px 26px ;
  }
  .news_header .news_ttl{
    font-size: 24px;
  }
  .news_header .news_archivelink{
    font-size: 18px;
    padding-right: 35px;
  }
  .news_header .news_archivelink::before {
    width: 24px;
  }
  .news_list .news_list_item > a {
    gap: 5px;
  }
  .news_list_info .cat{
    min-width: 130px;
  }
  .news_list_ttl{
    width: 100%;
  }
}