@charset "utf-8";
.news__wrapper {
  display: grid;
  grid-template-columns: repeat(12, [col-start] 1fr);
  gap: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1007px) {
  .news__wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and  (max-width: 768px){
  .news__wrapper {
    display: block;
    padding-right: 16px;
    padding-left: 16px;
  }
}
.news__catlist{
    grid-column: col-start 3 / span 8 ;
}
@media screen and  (max-width: 1365px){
  .news__catlist{
      grid-column: col-start 2 / span 10;
  }
}
@media screen and (min-width: 769px) and (max-width: 1007px) {
  .news__catlist{
      grid-column: col-start 1 / span 12;
  }
}
.news__box{
    grid-column: col-start 4 / span 6 ;
}
@media screen and  (max-width: 1365px){
  .news__box{
      grid-column: col-start 2 / span 10;
  }
}
@media screen and (min-width: 769px) and (max-width: 1007px) {
  .news__box{
      grid-column: col-start 1 / span 12;
  }
}
.news__catlist{
  padding-bottom: 4rem;
}
.news__catlist ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2rem;
  margin:1.5rem 0 3.5rem;
}
.news__catlist ul li{
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 300;
}
.news__catlist ul li a{
  display: inline-block;
  color:#626262;
}
.news__catlist ul li a.active{
  display: inline-block;
  background: #F08300;
  padding: 6px 12px 7px;
  border-radius: 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and  (max-width: 768px){
  .news__catlist{
    display: flex;
    overflow: scroll;
    padding-bottom: 0;
  }
  .news__catlist ul{
    display: flex;
    width: auto;
  }
  .news__catlist ul li{
    width: auto;
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 100%;
    font-weight: 400;
  }
  .news__catlist ul li a.active{
    font-size: 1.3rem;
    font-weight: 600;
  }
}
.news__box{
  border-top:solid 1px #CECECE;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
.news__unit {
  width: 100%;
  text-align: left;
  position: relative;
  border-bottom:solid 1px #CECECE;
  padding:0 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
@media screen and  (max-width: 768px){
  .news__unit {
    padding-bottom: 3rem;
  }
}
.news__title{
  font-size: 1.6rem;
  padding-bottom: 0.8rem;
}
.news__title a{
  display: flex;
  align-items: flex-start;
}
@media screen and  (max-width: 768px){
  .news__title a{
    display: block;
  }
}
.news__cap{
  display: flex;
  color: #696969;
  font-size: 1.4rem;
  line-height: 100%;
  font-weight: 300;
}
.news__cap a{
  color: #696969;
}
.news__date{
  padding-right: 1rem;
}
.news__unit .news__cat a{
  display: inline-block;
}
.news__cat a span{
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px 0px 2px 3px;
  border-top: 1.5px solid #F08300;
  border-right: 1.5px solid #F08300;
  transform: rotate(45deg);
}
.news__unit a div.news__title{
  font-size: 1.8rem;
  color:#222222;
  text-align: center;
}
.news__unit a div.news__title:hover{
  color:#F08300;
}
span.budge__new {
  display: flex;
  align-items: center;
  margin-right: 8px;
  padding-top: 4px;
}
span.budge__new span{
  display: inline-block;
  background: #F08300;
  color: #fff;
  padding: 4px 8px 5px;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
}
@media screen and  (max-width: 768px){
  span.budge__new {
    margin-bottom: 3px;
  }
}
a.pdf span.icon__pdf {
  width: 13px;
  height: 15px;
  display: inline-block;
  background: url(../images/pdf.svg) no-repeat right center;
  background-size: 13px 15px;
}
.news__title a.pdf span.icon__pdf{
  /* margin-top: 4px; */
  margin-left: 6px;
  position: relative;
  top: 2px;
}
@media screen and  (max-width: 768px){
  .news__unit a div.news__title{
    font-weight: 500;
  }
  .news__title a.pdf span.icon__pdf{
    top: 3px;
  }
  
}
.news__archive__select{
  padding-bottom: 2rem;
}
.news__archive__select select{
  position: relative;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    padding: 2rem 2.5rem;
}
.pulldown_box {
    position: relative;
    width: 33%;
    min-width: 250px;
    max-width: 300px;
    margin:0 auto;
    background: #fff;
    font-size:1.6rem;
    line-height: 100%;
    font-weight: 300;
    border:solid 1px #B9B9B9;
    border-radius: 4px;
}
.pulldown_box:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 25px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #F08300;
    border-left: 2px solid #F08300;
    pointer-events: none;
    transform: translateY(-50%) rotate(-135deg);
}
