/* 
 post
----------------------------------------------------------- */ 

/* レイアウト */
.p-post-wrap{
	display:flex;
	gap: 5%;
	flex-wrap:wrap;
}
.p-post-wrap__main{
	width:70%;
}
.p-post-wrap__side {
	width: 25%;
}
.post__body{
	padding-bottom: 0 !important;
}

/* 投稿一覧 list */
.p-post-title{
	font-size: 1em;
	margin-bottom: 20px;
	position: relative;
	padding-left: 20px;
}
.p-post-title::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background-color: var(--font-color);
}
.p-post-list__item{
	background-color: var(--bg-gray);
	border-left: 6px solid #393939;
	margin-bottom: 20px;
	position: relative;
	transition: background-color var(--trans-base), border-left var(--trans-base);
}
.p-post-list__link{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
}
.p-post-list__img{
	width:30%;
}
.p-post-list__img img{
	width:100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}
.p-post-list__main{
	width: 100%;
}
.p-post-list__title{
	font-size:var(--fontsize-20);
	background: none;
	padding-left: 0;
	text-align: justify;
	margin-bottom: 10px;
}
.p-post-list__text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: var(--gray-color);
	font-size: var(--fontsize-15);
	line-height: 1.5;
	font-weight: 300;
	font-family: var(--font-sans);
}
.p-archive .c-meta{
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--border-black);
}
@media (hover: hover) {
	.p-post-list__item:hover{
		background-color: transparent;
		border-left: 6px solid var(--font-color);
	}
}

/* single page */
.p-single__title {
	font-size:var(--fontsize-22);
	line-height: 1.5;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	text-align: justify;
}
.p-single .c-meta{
	margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width:767px) {
	
	/* レイアウト */
	.p-post-wrap__main{
		width: 100%;
		margin: 0;
	}
	.p-post-wrap__side {
		width: 100%;
		margin-top: 40px;
	}
	
}
@media screen and (max-width:480px) {

	/* list */
	.p-post-list__img {
		width: 100%;
		margin: 0 auto 15px;
	}
	.p-post-list__main {
		width: 100%;
	}
}