@charset "UTF-8";

#news{
  padding: 100px 0 200px;
}
#news .headline::after {
  content: "ニュース";
  display: block;
  color: #000;
  font-size: 1rem;
  margin-top: 25px;
}
#news .l-contents{
  display: flex;
  gap: 120px;
}
#news .l-contents .title{
  width: auto;
}
#news .l-contents .contents{
  font-size: 1rem;
  width: 100%;
}
#news .news-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
#news .news-item{
  padding: 1.5em 1.5em;
  border-bottom: 1px solid #DBDBDB;
}
#news .news-item:first-child{
  padding: 0 1.5em 1.5em;
}
#news .news-meta{
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1em;
  font-size: 0.9em;
  color: #676767;
}
#news .news-meta .category{
  position: relative;
  padding-left: 1em;
}
#news .news-meta .category::before{
  content: '/';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding-left: 2px;
}
#news .news-title{
  font-size: 1.2em;
  line-height: normal;
}
#news .news-item a{
  text-decoration: none;
  transition: all 0.2s ease;
}
#news .news-item a:hover{
  opacity: 0.6;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {

  #news .l-contents{
    display: block;
  }
  #news .l-contents .title{
    width: 100%;
    margin-bottom: 40px;
  }
  #news .l-contents .contents{
    width: 100%;
  }

  #news .news-item{
    padding: 1.5em 0;
    border-bottom: 1px solid #DBDBDB;
  }
  #news .news-item:first-child{
    padding: 0 0 1.5em;
  }

}