@charset "utf-8";
/**
 * news.css
 **/

@media only screen and (max-width:1199px) {}
@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:565px) {}

/*--------------------------------------------------

 parts-arw-bdr-btn

--------------------------------------------------*/
#postArchiveList {
    border-bottom: 1px dotted #666;
    text-align: left;
    padding-top: 10px;
}
#postArchiveList li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    list-style-type: none;
    text-align: left;
    margin-bottom: 10px;
}
#postArchiveList li .date {
    display: block;
}
#postArchiveList li .post {
    width: 78%;
    display: block;
}
#postArchiveList li .post .new{
	color: red;
    font-size: 0.9em;
	padding-right: 1em;
}
/* ページネーション */
ul.pagination{
	margin-top:2em;
	display: flex;
	justify-content: space-around;
}
ul.pagination li{
	text-align: left;
}
@media only screen and (max-width:767px) {
	#postArchiveList li {
        flex-direction: column;
        margin-bottom: 15px;
    }
	#postArchiveList li .post{
		width: 100%;
	}
}