/*===============================================================================
***アーカイブページ
================================================================================*/
/*===============================
* タームリスト
* =================================*/
.archives__terms{
	margin-bottom: var(--g-sec--lg);
}


/*===============================
* ループ
* =================================*/
.postList-wrap{
	position: relative;
	padding: var(--g-sec--lg) 0;
}
.postList-wrap::before{
	position: absolute;
	top: 0;
	left: calc( 50% - 50vw );
	z-index: -1;
	content: "";
	max-width: 100vw;
	width: 100vw;
	height: 100%;
	background-image: var(--bgi);
}
.front .postList{
	justify-content: center;
}
.postList{
}
/* メタ情報 */
.postList__meta{
	display: flex;
	align-items: center;
	gap: .66666em;
	margin-bottom: .75rem;
	font-size: .75rem;
}

/* カテゴリー */
.postList__category{
	min-width: 5em;
	padding: 0 .66666em;
	text-align: center;
	background: var(--c-dark);
	border-radius: var(--bd-r--xs);
	overflow: hidden;
	color: var(--c-light);
}


/*===============================================================================
***フロント
================================================================================*/
.frontPostList__item{
	display: flex;
	flex-direction: column;
	gap: .25rem 1.25rem;
}
@media (min-width: 960px){
	.frontPostList__item{
		flex-direction: row;
		align-items: center;
	}
}
.frontPostList__meta{
	font-family: var(--ff-gz);
}
.frontPostList__link{
	color: var(--c-dark);
	font-family: var(--ff-gs);
}


