@charset "utf-8";
/* CSS Document */

.news-page {
    padding: 180px 0;
    background-color: #EFEFEF;
    font-size: 16px;
}

.news-page_list {
    margin-bottom: 46px;
}

.news-page_item {
    border-bottom: 1px solid #009251;
    padding: 30px 0;
}

.news-page_item .item_heading {
    display: flex;
    margin-bottom: 32px;
    align-items: center;
}

.news-page_item .item_heading .item_date {
    font-size: 18px;
    margin-right: 24px;
    background-color: #3776cb;
    color: #fff;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 6px 12px;
}
.news-page_item .item_heading .item_title {
    font-size: 22px;
    color: #009251;
    font-weight: bold;
}

.item_flex {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
    flex-direction: row-reverse;
}

.item_flex a {
    width: 45%;
    margin-left: 2%;
}

.item_flex p {
    width: 53%;
}

.policy_list li {
    margin-bottom: 14px;
}

.policy_list li .title {
    color: #009251;
    font-weight: bold;
    margin-bottom: 6px;
}

#gohome {
    display: flex;
    justify-content: flex-end;
}

#gohome a {
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #009251;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width:1024px) {
    .news-page_item .item_heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .news-page_item .item_heading .item_date {
        margin-right: 0;
        margin-bottom: 6px;
    }

    .news-page_item .item_heading .item_title {
        font-size: 18px;
    }

    
    .item_flex {
        flex-direction: column;
    }
    
    .item_flex a {
        width: 100%;
        margin-left: 0;
        margin-bottom: 18px;
    }

    .item_flex p {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .news-page {
        font-size: 14px;
    }

    .news-page_item .item_heading .item_title {
        font-size: 16px;
    }
}
