.category-box {
    max-width: 1200px;
}
.news-contents {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 100px 0;
}
.news-contents li {
    /* width: 30%; */
    padding: 0 .8em;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.news-link {
    justify-content: space-evenly;
    align-items: flex-start;
}
.news-link {
    color: #333;
}
.news-thum {
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
}
.news-thum img {
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}

/* ボタン矢印 */
.btn-box {
    justify-content: center;
    align-items: center;
}

.btn-arrow {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    transform:translateX(0px) ;
    transition: .3s;
    background-color: #63BAAB;
    border-radius: 50%;
}

.btn-arrow::before,
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 36%;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #fcfcfc;
  transform-origin: calc(100% - 1.5px) 50%;
}

.btn-arrow::before {
  transform: rotate(45deg);
}

.btn-arrow::after {
  transform: rotate(-45deg);
}
.news-link:hover .btn-arrow{
    transition: .3s;
    transform:translateX(7px) ;
}
.news-link:hover .news-thum img {
    transform: scale(1.1);
    transition: .3s;
}
/* あしらい */
#news .airplane_t::before {
    content: "";
    width: 30%;
    height: 90px;
    max-width: 360px;
    max-height: 91px;
    position: absolute;
    top: -9%;
    left: 0px;
    background-image: url(../img/airplane.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/* ページネーション */
.news-pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.news-pagination .page-numbers {
    display: inline-block;
    /* margin-right: 10px; */
    padding: 10px 20px;
}
.page-numbers, .prev, .next {
    color: #333;
}
.page-numbers:hover {
    color: #FF8339;
    transition: .2s;
}
.current {
    color: #FF8339;
}
.page-numbers.current {
    color: #fcfcfc;
    border-radius: 50%;
    /* border: #63BAAB solid 1px; */
    background: #FF8339;
}
.news-pagination span {
    margin-top: 0;
    font-size: 1em;
    line-height: 2em;
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
    .news-contents {
        grid-template-columns: 1fr;
    }
    .news-contents li {
        width: 100%;
        /* grid-template-columns: 1fr; */
        padding: 0;
    }
    #news .airplane_t::before {
        top: -4%;
        left: 0px;
    }
    #news .airplane_r::after {
        bottom: 0px;
        right: 0;
    }
}