@charset "UTF-8";
/********************************************************************************

page-news.css　お知らせ アーカイブページ用css

********************************************************************************/
/*************************************************/
/*
/* お知らせ アーカイブページ
/*
**************************************************/
#page-news .archive-news {

}
/* リスト */
#page-news .archive-news .news-list {
}
/* カテゴリー一覧 */
#page-news .archive-news .news-categories {
    margin-bottom: 40px;
}
#page-news .archive-news .news-categories ul {
    display: flex;
    flex-wrap: wrap;
}
#page-news .archive-news .news-categories ul li {
    padding: 0px 16px;
}
#page-news .archive-news .news-categories ul li:first-child {
    padding-left: 0;
}
#page-news .archive-news .news-categories ul li a {
    color: #403321;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 100%;
}
#page-news .archive-news .news-categories ul li.current a {
    font-weight: bold;
    color: #f06000;
}
#page-news .archive-news .news-categories ul li a:hover {
    color: #f06000;
    text-decoration: underline;
}
/* 投稿記事 */
#page-news .archive-news .news-list .news-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 20px;
}
#page-news .archive-news .news-list .news-item:last-child {
    border-bottom: none;
}
/* 日付 */
#page-news .archive-news .news-list .news-item .news-date {
    color: #888;
    font-size: 14px;
    line-height: 100%;
}
/* カテゴリー */
#page-news .archive-news .news-list .news-item .news-category {
    color: #403321;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    line-height: 100%;
}
#page-news .archive-news .news-list .news-item .news-category span {
    display: inline-block;
    padding: 2px 8px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 1px #403321;
}
/* タイトル */
#page-news .archive-news .news-list .news-item h2.news-title {
    width: 100%;
    font-size: 18px;
    margin: 0!important;
    line-height: 1.4;
}
#page-news .archive-news .news-list .news-item h2.news-title:after {
    content: none;
}
/* ページネーション */
#page-news .archive-news .pagination {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
#page-news .archive-news .pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
#page-news .archive-news .pagination .page-numbers.current {
    color: #fff;
    font-weight: bold;
    background-color: #f39800;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
#page-news .archive-news .pagination a.page-numbers {
    padding: 10px 20px;
    background-color: #fff;
    color: #f39800;
    border: 1px solid #f39800;
    border-radius: 5px;
    text-decoration: none;
}
#page-news .archive-news .pagination a.next.page-numbers,
#page-news .archive-news .pagination a.prev.page-numbers {
    /* background-color: #f39800; */
    color: #f39800;
}
/* 投稿がない場合 */
#page-news .no-posts {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}
#page-news .no-posts p {
    font-size: 16px;
    margin: 0;
}



/*************************************************/
/*
/* お知らせ 個別ページ
/*
**************************************************/
.news-single {
}
.news-single .entry-header-single {
}
/* 日付 */
.news-single .entry-meta {
    color: #666;
    font-size: 14px;
}
/* カテゴリー */
.news-single .entry-category a {
    color: #666;
    text-decoration: none;
}
.news-single .entry-category a:hover {
    text-decoration: underline;
}
/* サムネイル */
.news-single .entry-thumbnail {
    margin: 20px 0;
    text-align: center;
}
.news-single .entry-thumbnail img {
    width: 100%;
    height: auto;
}
/* 本文 */
.news-single .entry-content {
    margin: 30px 0;
}
.news-single .entry-content p {
}
/* フッター */
.news-single .entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
/* ナビゲーション */
.news-single .entry-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.news-single .nav-previous,
.news-single .nav-next {
    flex: 1;
}
.news-single .nav-next {
    text-align: right;
}
/* ナビゲーションリンク */
.news-single .entry-navigation a {

}
.news-single .entry-navigation a:hover {
}

.news-single .back-to-archive {
    text-align: center;
    margin-top: 20px;
}
.news-single .back-to-archive a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fc9d29;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.news-single .back-to-archive a:hover {
    /* background-color: #005a87; */
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-title {
        font-size: 16px;
    }
    
    .news-single .entry-title {
        font-size: 20px;
    }
    
    .news-single .entry-navigation {
        flex-direction: row;
        justify-content: space-between;
    }
    
}

