/* サイドバーの見出しをデザイン！ */

#side h3, #col3 h3, #side h4, #col3 h4 {
	border-left: solid 4px #5c5c5c;/* 左の線の太さと色*/
	border-bottom: dotted 2px #5c5c5c;/* 下の線の種類と太さと色*/
	font-size: 18px;/* 文字サイズは外観→カスタマイズから*/
	font-size: 1.8rem;
	font-weight: 700;
	color: #333;/* 文字の色 */
	margin: 4px 0 10px;/* 上 左右 下*/
	padding: 6px 10px; /* 上下 左右*/
}

/* タイトルの見出しをデザイン！ */


/* 個別投稿見出しh2 */
.post h2 {
border-left: solid 6px #5c5c5c;/* 左の線の太さと色*/
	border-bottom: dotted 3px #5c5c5c;/* 下の線の種類と太さと色*/
	font-size: 18px;/* 文字サイズは外観→カスタマイズから*/
	font-size: 2.0rem;
	font-weight: 700;
	color: #333;/* 文字の色 */
	margin: 40px 0 30px;/* 上 左右 下*/
	padding: 7px 10px; /* 上下 左右*/
}

/* 個別投稿見出しh3 */
.post h3{
	border-left: none;
	position: relative;
	padding: 3px 14px 2px; /* 上下 左右*/
	background-color: #f2c2c3;
  	border-radius: 10px;
	color:#333;
	box-shadow: 2px 2px 4px #888; /* シャドー*/
}
.post h3:after {
 	position: absolute;
	top: 100%;
	left: 12px;
	content: '';
	border: 10px solid transparent;
	border-top: 15px solid #f2c2c3;
}
.post h3:before {
	font-family: FontAwesome;
	content: "\f046";
	margin-right: 7px;
	color: #640125; /* アイコンの色 */
}


/* 人気記事JetPack表示カスタマイズ */

.widgets-list-layout .widgets-list-layout-blavatar {
    float: none !important;
    margin-right: 10px;
    width: 100px !important;
    max-width: 100px !important;
	  border-radius: 3px;
    height: 100px;

}
.widgets-list-layout li > a {
    display: inline-block;
    height: 100%;
}
.widgets-list-layout-links {
    float: none !important;
    overflow: hidden;
    width: auto !important;
}
.widgets-list-layout-links a{
    font-weight: bold;
    height: 100%;
    margin-top: 18px;
    padding-left: 110px;
    position: absolute;
    top: -10px;
}
.widgets-list-layout-links a:hover{
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.widget_top-posts ul {
    counter-reset: post-rank;
    margin: 0px;
}
.widget_top-posts ul li {
    list-style-type: none;
    min-height: 100px;
    padding-top: 10px !important;
    position: relative;
}
.widget_top-posts ul li:before {
    color: #eee;
    content: counter(post-rank, decimal);
    counter-increment: post-rank;
    font-size: 40px;
    position: absolute;
    bottom: -10px;
    right: 5px;
    z-index: 0;
}
.widget_top-posts ul li:after {
    content: "";
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 10px;
}
.widget_top-posts ul li:last-child:after {
    content: "";
    border: none;
}
.widget_top-posts ul li:hover{
    background-color: #f5f5f5;
    transition: all .3s ease-in-out;
}
.widget_top-posts ul li:hover:before{
    color: #fff;
    transition: all .3s ease-in-out;
}
