/* ニュースページレイアウト */
#contents.news {
    padding: 20px;
    box-sizing: border-box;
}

#c_left_container {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

#c_left {
    width: 70%;
    float: left;
    margin-top: 14px;
}

#c_left_b {
    padding: 14px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #FFF;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
}

#c_right {
    float: right;
    padding-top: 14px;
    width: 28%;
}

.underbar02 {
    height: 1px;
    margin-top: 14px;
    margin-bottom: 14px;
    background-color: #ccc;
}

.tt {
    font-size: 12px;
}

.tt_name {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
}

#information {
    overflow: hidden;
}

/* ニュース一覧ページ */
.news_list {
    margin: 20px 0;
}

.news_item {
    padding: 20px 0;
}

.news_date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news_title a:hover {
    color: #000;
}

.news_excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

/* ニュース詳細ページ */
.news_detail {
    padding: 20px 0;
}

.news_meta {
    margin: 20px 0;
}

.news_meta .news_date {
    font-size: 14px;
    color: #666;
}

.news_content {
    line-height: 1.8;
    margin: 20px 0;
}

.news_thumbnail {
    margin: 20px 0;
}

.news_thumbnail img {
    max-width: 100%;
    height: auto;
}

.news_body {
    margin-top: 20px;
}

.news_nav {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 20px;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.nav_prev,
.nav_next {
    width: 48%;
}

.nav_prev a,
.nav_next a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav_prev a:hover,
.nav_next a:hover {
    color: #000;
}

.nav_next {
    text-align: right;
}

.back_to_list {
    margin: 20px 0;
    text-align: center;
}

.back_to_list a {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.back_to_list a:hover {
    background: #f5f5f5;
}

/* ページネーション */
.pagination {
    padding: 40px 20px;
    text-align: center;
    clear: both;
}

.pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
    min-width: 40px;
    text-align: center;
}

.pagination .current {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination a:hover {
    background: #f5f5f5;
}
