/* お知らせ一覧ページ シンプルリストデザイン
-------------------------------------------*/
/* お知らせ一覧ページ全体を中央寄せにする */
.post-type-archive-information #main-contents {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.post-type-archive-information .cps-post-box {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 20px 0 0 0;
    margin: 80px 0 150px;
}

/* entry-headerを中央寄せにするための設定 */
.post-type-archive-information .entry-header {
    text-align: center;
}

/* ページタイトル */
.page-title-simple-list {
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    letter-spacing: 0.1em;
}

/* お知らせリスト全体 */
.news-list-container {
    max-width: 960px;   
    margin-left: auto; 
    margin-right: auto;
    padding-left: 15px; 
    padding-right: 15px;
    margin-bottom: 40px;
}

/* お知らせ各行 */
.news-list-item {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

/* 日付 */
.news-list-date {
    font-weight: 700;
    font-size: 16px;
    color: #434960;
    margin-right: 25px;
    width: 110px;
    flex-shrink: 0;
}

/* タイトル */
.news-list-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.news-list-title a {
    color: #394d65;
    text-decoration: none;
}

.news-list-title a:hover {
    text-decoration: underline;
}

/* --- スマホ表示への対応 --- */
@media screen and (max-width: 600px) {
    .page-title-simple-list {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 5px;
    }

    .news-list-date {
        margin-bottom: 8px;
        width: auto;
    }

    .news-list-title {
        font-size: 15px;
    }
}