main.news-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.news-list ul {
    list-style: none;
    padding: 0;
}
.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background-color 0.3s;
}

.news-link:hover {
    background-color: #f5f5f5;
}

.arrow-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #90c427;
    font-size: 12px;
}

.news-item {
    border-bottom: 1px solid #e5e5e5;
}

.news-item > div,
.news-link {
    display: block;
    padding: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.news-category {
    display: inline-block;
    padding: 2px 15px;
    font-size: 12px;
    color: #fff;
    background: #a8b917;
    border-radius: 2px;
}

.news-title {
    margin: 0;
    font-size: 16px;
}
.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #a8b917;
}

.news-item:last-child {
    border-bottom: none;
}

.news-summary {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-button {
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.page-button:hover {
    background: #a8b917;
    color: white;
}

.page-button.active {
    background: #a8b917;
    color: white;
    border-color: #a8b917;
}

.modSortMenu {
    display: flex;
    justify-content: left;
    margin: 60px auto 30px auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #dadada;
}

.modSortMenu__list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.modSortMenu__list__item {
    margin: 0 10px;
}

.modSortMenu__list__item a {
    font-weight: 700;
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.modSortMenu__list__item.is-active a,
.modSortMenu__list__item a:hover {
    color: #a8b917;
}

/* ソートメニューのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .modSortMenu {
        margin: 30px auto 20px auto;
    }

    .modSortMenu__list {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .modSortMenu__list__item {
        margin: 0;
        flex: 1 1 auto;
        min-width: 100px;
        text-align: center;
    }

    .modSortMenu__list__item a {
        padding: 8px 15px;
        display: block;
        white-space: nowrap;
    }
}

/* ニュースリストのレスポンシブ対応 */
@media screen and (max-width: 768px) {
    .arrow-icon {
        right: 5px;
        margin-left: 10px;
    }

    .news-title {
        padding-right: 25px; /* 矢印アイコンのためのスペース確保 */
    }

    .news-item > div,
    .news-link {
        padding: 15px;
    }
}