/* スマホ2カラム */
@media only screen and (max-width: 480px) {
  .archives-list.card-list .post-list {
    width: calc(50% - .5em);
  }
  .archives-list.card-list a {
    padding: .5em;
  }
  .archives-list.card-list a .eyecatch {
    margin: -.5em -.5em .5em;
  }

  /*投稿タイトルのフォントサイズを調整*/
  .archives-list.card-list a .entry-title {
    font-size: 85%;
  }
}

/* プロフィールリンク */
.pf_button a {
    background: #d34e4e;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto 40px;
    max-width: 250px;
    padding: 10px 25px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	  text-decoration: none;
}
.pf_button a:before {
    content: "\f201";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #ffffff;
}
.pf_button a:hover {
    background: #606060;
    color: #FFF;
}
/*　WordPress Popular Posts　*/
ul.wpp-list {
	margin-top: -0.75em !important;
}
/* ビュー数を消す　*/
ul.wpp-list .wpp-meta {
	display: none;
}
ul.wpp-list .wpp-post-title {
	color: var(--main-text-color) !important;
	text-decoration: none !important;
}
ul.wpp-list li {
    list-style: none;
    position: relative;
    margin: 0;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    border-bottom:1px dotted rgba(125,125,125,0.2) !important;
    transition: .3s ease-in-out;
}
ul.wpp-list li:hover .wpp-post-title,
ul.wpp-list li:hover .wpp-thumbnail,
ul.wpp-list li:hover::before {
    opacity: 0.7;
    transform: translate(0,-2px) !important;
}
ul.wpp-list li:last-child{
	border-bottom:none !important;
}
/* サムネールを成形する　*/
@media only screen and (max-width: 980px) {
	.wpp-thumbnail{
		margin: 0 0.7em 0 0 !important;
		width:100%;
		max-width:110px;
	}
	
}
@media only screen and (min-width: 981px) {
	.wpp-thumbnail{
		margin-right: 10px !important;
		margin-left: 0 !important;
		width:100%;
		max-width:100px;
	}
}

@media only screen and (max-width: 400px) {
	.wpp-thumbnail{
		margin: 0 0.7em 0 0 !important;
		width:calc(100% - 0.7em);
	}
}
@media only screen and (min-width: 981px) {
	.wpp-post-title {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		margin-left: 0 !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-right: 1.2em;
		position: relative;
		min-height: 62px;
	}
}
/* タイトル部を成形する　*/
@media only screen and (max-width: 980px) {
	.wpp-post-title {
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		margin-left: 0 !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-right: 1.2em;
		position: relative;
		min-height: 70px;
	}
}
@media only screen and (max-width: 400px) {
	.wpp-post-title {
		min-height: 62px;
	}
}
.wpp-post-title::after {
    font-family: var(--stk-font-awesome-free,"Font Awesome 5 Free");
    font-weight: 900;
    content: "\f105";
    position: absolute;
    right: 6px;
    line-height: 1;
    font-size: 1em;
    top: 50%;
    margin-top: -0.5em;
    transition: .15s ease-in-out;
    color: var(--main-link-color);
}

ul.wpp-list li a::before {
    content: none !important;
    
}
ul.wpp-list li {
	position: relative;
}
ul.wpp-list li::before {
    counter-increment: number;
    content: counter(number);
    background-color: var(--label-bg) !important;
    color: var(--main-ttl-color);
    margin-right: 0px;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 75%;
    border-radius: 0 !important;
    font-weight: bold;
    display: block;
    text-align: center;
    position: absolute;
    left: 0 !important;
    top: 1.3em !important;
    z-index: 1;
    transition: .3s ease-in-out;
}