@charset "UTF-8";


/*== custom-post
======================================================================*/
.custom-post {
	padding: 0 20px;
	margin: 60px auto;
	max-width: 1300px;
}

.custom-post__title {
	font-size: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.custom-post__item{
	border-top: 1px solid #ccc;
}

.custom-post__item:first-child{
	border-top: none;
}

.custom-post__item a{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 25px 0 15px;
}

.custom-post__item-date{
	font-size: 14px;
	min-width: 120px;
}

.custom-post__item-category{
	color: #fff;
	font-size: 14px;
	text-align: center;
	min-width: 120px;
	background: #1955A6;
	padding: 2px 10px;
	margin-right: 5px;
	display: inline-block;
}

.custom-post__item-title{
	line-height: 1.4;
	width: 100%;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (min-width:1024px) {
	.custom-post__item a{
		flex-wrap: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.custom-post__item-date{
		margin-right: 20px
	}

	.custom-post__item-category{
		margin-right: 30px;
	}

	.custom-post__item-title{
		width: auto;
		margin: 0;
	}
}