@charset "utf-8";

/*===================
news-topics
===================*/

/* アーカイブページ */

.news__catregory{
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 50px;
}
.news__catregory-item{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.07em;
    margin-right: 30px;
    
    position: relative;
}
.news__catregory-item:last-child{
    margin-right: 0;
}

.news__catregory-link{
    display: block;
    padding-left: 25px;
     color: #444444;
     font-size: 15px;
    font-weight: 600;
     font-family: "Noto Serif JP", serif;
     letter-spacing: 0.07em;
}
.news__catregory-item .btn__icon{
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #444444;
    border: 2px solid #444444;
    border-radius: 50px;
    transition: .2s;
}

.news__catregory-link.active{
    color: #a58b51;
}

.news__catregory-link:hover {
    color: #444444;
}
.news__catregory-link:hover .btn__icon{
    background-color: #fff;
}
.news__catregory-link.active .btn__icon{
     background-color: #a58b51;
      border: 2px solid #a58b51;
}

.news-topics__categoryWrap {
margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.news-topics__category1,
.news-topics__category2 {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  line-height: 1.75;
}
.news-topics__category1 p,
.news-topics__category2 p {
  color: #fff;
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  padding: 1px 12px;
  display: inline-flex;
  justify-content: center;
  border-radius: 5px;
  background-color: #ed9027;
}

.news-topics .btn {
  position: absolute;
  bottom: 100px;
  left: 40px;
}



/* .news__catregory-item a::before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #444444;
    display: inline-block;
    margin-right: 7px
} */

.news-topics__list{
    margin-bottom: 100px;
}
.news-topics__list--item{
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}
.news-topics__list--item:last-child{
    margin-bottom: 0;
}
.news-topics__list--item a{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.news-topics__list--item a:hover .news-topics__imgWrap{
    opacity: 0.7;
}

.news-topics__imgWrap{
    width: 333px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 18px;
}

.news-topics__textWrap{
    width: calc(100% - 333px);
    padding-left: 30px;
}
.information__title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}
.news-topics__textWrap .news-topics__date{
    font-size: 16px;
}
.information__text{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.07em;
}


/* シングルページ */
.singlePagination ul li a span img{
    display: none;
}


@media screen and (max-width:800px) {
    .news__catregory{
    padding-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

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

/* アーカイブページ */

.news-topics__list--item a{
    display: block;
}
.news-topics__imgWrap{
    width: 283px;
    max-width: 100%;
    height: 150px;
}
.news-topics__textWrap{
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
}
.information__title{
    font-size: 16px;
}
.information__text{
    font-size: 14px;
}

}

@media screen and (max-width: 500px) {
    .news__catregory{
        display: block;
    }
    .news__catregory-item{
        width: 100%;
        margin: 0 0 15px 0;
    }
}