/*
Theme Name: Child
Template: twentytwelve
*/
 
@import url('../twentytwelve/style.css');


/* フォントと文字の大きさ、色 */
body {
font-family: "メイリオ", Meiryo, 
"Hiragino Kaku Gothic Pro",
"ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", 
"Lucida Sans Unicode", Arial, Verdana, sans-serif;
text-rendering: optimizeLegibility;
color: #333;  /* 文字色 */
font-size: 14px; /* 文字の大きさ */
}
 
body.custom-font-enabled {
font-family: "メイリオ", Meiryo,
"Hiragino Kaku Gothic Pro",
"ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande",
"Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

/* ウィジェットタイトル部分 */
.widget-area .widget h3  {
text-align:center;  /* タイトルの中央寄せ */
line-height: 20px; /* 高さ */
font-size: 15px; /* 文字の大きさ */
color: #fff; /* 文字色 */
background-color: #1F5E73; /* 背景色 */
border-radius: 3px; /* 角に丸みをつける */
padding: 2px 10px; /* 左と上下に余白 */
}

/* CSS　アフィリエイトのテキストリンクをインライン要素にする */
.d-inline > img {
       display: inline !important;
}


/*WordPress Popular Postsプラグイン*/
#popular-post ul.wpp-list li{
	border-bottom: #ccc 3px dotted;
}
#popular-post ul.wpp-list li:last-child{
	border-bottom: #fff 1px dotted;
}
#popular-post {
    counter-reset: wpp-ranking;
}

#popular-post ul li:before {
    color:#fff;
    content: counter(wpp-ranking, decimal);
    counter-increment: wpp-ranking;
    text-align:center;
    opacity:0.999;
　　font-size:11px;
    float:left;
    line-height:18px;
    width: 18px;
    height: 18px;
    background-color:#1F5E73;
    border-radius: 2px;
    -moz-border-radius: 2px;
}
#popular-post li img {
	float:left;
	margin-left:-18px;
}


/*画像を記事幅に合わせる*/
img{
max-width: 100% !important;
height: auto !important;
}

