#wrapper{
  background-color: #000;
}
.news{
  position: relative;
  background: url(/music/time_jazz/news/images/img_news_bg_pc.jpg) no-repeat;
  background-position: top center;
  padding: 80px 20px 120px;
}
.news__copyright{
  position: absolute;
  font-size: 1.6rem;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  width: fit-content;
  top: 285px;
  left: 20px;
  opacity: 0.7;
}
.news__wrap{
  width: 1200px;
  margin: 0 auto;
}
.news__title{
  font-size: 3.2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-top: 16px;
}
.news__title__img{
  width: 223px;
  margin: 0 auto;
}
.news-tab__list{
  display: flex;
  width: fit-content;
  max-width: 100%;
  overflow: auto;
  margin: 40px auto 0;
  gap: 20px;
}
.news-tab__list__item{
  padding-left: 20px;
  border-left: 1px solid #fff;
}
.news-tab__list__item:first-child{
  padding-left: 0;
  border-left: unset;
}
.news-tab__text{
  font-size: 1.6rem;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.news-tab__list__item.is-active .news-tab__text{
  color: #BEAC7D;
}
.news-list__box{
  margin: 40px auto 0;
  padding: 32px 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #D0BBA1;
  border-bottom: 1px solid #D0BBA1;
}
.news-list__list{
  display: none;
}
.news-list__list.is-active{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.news-list__list__item{
  width: 100%;
}
.news-list__date{
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
}
.news-list__text{
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
}
.news-list__textbox{
  display: flex;
  gap: 32px;
  width: fit-content;
}
.news-list__link{
  position: relative;
  display: flex;
  gap: 32px;
  width: fit-content;
}
.news-list__link::after{
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.news-list__link:hover::after{
  -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.news__button__box{
  margin: 40px auto 0;
  width: fit-content;
}
.news__button__link{
  position: relative;
  display: inline-block;
  width: 434px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #D0BBA1;
  padding: 10px 0;
  font-size: 2.0rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  color: #D0BBA1;
}
.news__button__link::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14.5px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #D0BBA1;
  border-right: 2px solid #D0BBA1;
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}


@media screen and (max-width: 767px){
  .news{
    background: url(/music/time_jazz/news/images/img_news_bg_sp.jpg) no-repeat;
    background-position: top center;
    padding: 80px 0 80px;
  }
  .news__copyright{
    font-size: 1.2rem;
  }
  .news__wrap{
    width: 100%;
  }
  .news__title{
    font-size: 2.4rem;
  }
  .news_title__img{
    width: 117px;
  }
  .news-tab__list{
    padding: 0 20px;
  }
  .news-list__box{
    padding: 32px 24px;
  }
  .news-list__date{
    font-size: 1.6rem;
  }
  .news-list__text{
    font-size: 1.6rem;
  }
  .news__button__link{
    width: 312px;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px){
  .news__button__link:hover{
    background-color: #D0BBA1;
    color: #000;
  }
  .news__button__link:hover::before{
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}