.post_contents{
    counter-reset: post-contents-counter;
}

.post_contents .post_contents_title {
	font-weight: 600;
	padding: 5px 0;
	font-size: 20px;
	line-height: 28px;
	padding:0px 0 11px 0;
}
.post_contents .post_contents_link {
	color: #249AE9;
	cursor: pointer;
	background-color: transparent;
	text-decoration: none;
	font-size: 16px;
	line-height: 24px;
	padding:8px 0 8px 24px;
	position:relative;
}
.post_contents .post_contents_link::before{
	content: counter(post-contents-counter);
	counter-increment: post-contents-counter;
    width: auto;
    height: 24px;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    color: #249ae9;
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
}


a.postconts-showmore {
    color: rgba(0,0,0,.65);
    cursor: pointer;
    padding: 8px 0 8px 24px;
}

a.postconts-showmore svg,
a.postconts-showmore svg * {
    fill: #249ae9;
    background: none;
}
a.postconts-showmore:hover{
	color:#249ae9;
}

a.postconts-showmore.clicked svg{
    transform: rotate(
180deg);
}
