.Theme_Xblog{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
	padding-bottom: 60px;
  }

  .Theme_Xblog .post_item {
	background-color: #FFF;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}
.Theme_Xblog .post_imgbox img{
	width: 100%;
}

.Theme_Xblog svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: middle;
	margin-bottom: 2px;
}

.Theme_Xblog .post_box {
	padding: 30px 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.Theme_Xblog .post_startdate {
	margin-bottom: 6px;
	color: #666;
}
.Theme_Xblog .post_position{
	margin-bottom: 6px;
	color: #666;
}
.Theme_Xblog .post_position svg{
	width: 17px;
    height: 17px;
    margin-left: -2px;
    margin-right: 4px;
    margin-top: -3px;
}

.Theme_Xblog .post_title {
	margin-bottom: 20px;
	line-height: 1.1;
	padding-top: 5px;
}

.Theme_Xblog .post_title a,
.Theme_Xblog .post_title a:link,
.Theme_Xblog .post_title a:visited {
	color: #333333;
	font-size: 24px;
}

.Theme_Xblog .post_title a:hover {
	color: #da2e29;
}

.Theme_Xblog .post_summary {
	color: #555555;
	font-size: 16px;
	margin-bottom: 15px;
}

.Theme_Xblog .post_summary {}


.Theme_Xblog .list-btn {
	display: flex;
	width: 100%;
	margin-top: auto;
	border-top: 1px solid #e4e4ea;
	justify-content: space-between;
	padding: 15px 0 0;
	font-size: 16px;
	color: #717178;
	font-weight: 600;
	transition: all ease-in 300ms;
}

.Theme_Xblog .list-btn .sico {
	color: #da2e29;
}

.Theme_Xblog .list-btn:hover {
	color: #da2e29;
}

.Theme_Xblog .post_imgbox{
	position: relative;
	margin-bottom: 25px;
}
.Theme_Xblog .post_imgbox.no-date{
	margin-bottom: 0px;
}
.Theme_Xblog .image-date{
	position: absolute;
	right: 20px;
	bottom: -29px;
	background-color: #ffd800;
	width: 80px;
	height: 58px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	font-weight: 600;
	pointer-events: none;
}
.Theme_Xblog .image-date .day{
	font-size: 24px;
	color: #000000;
	padding-bottom: 3px;
}
.Theme_Xblog .image-date .month{
	font-size: 14px;
	color: #000000;
}


@media (max-width: 992px){
	.Theme_Xblog{
		padding-bottom: 50px;
	}
	
.Theme_Xblog{
	grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px){
	.Theme_Xblog{
		padding-bottom: 30px;
		grid-template-columns: repeat(1, 1fr);
	}

}

.Theme_Xblog .post_item{
	display: none;
}
.Theme_Xblog .post_item:nth-child(1),
.Theme_Xblog .post_item:nth-child(2),
.Theme_Xblog .post_item:nth-child(3),
.Theme_Xblog .post_item:nth-child(4),
.Theme_Xblog .post_item:nth-child(5),
.Theme_Xblog .post_item:nth-child(6){
	display: block;
}