/*
ここに独自の CSS を追加することができます。

詳しくは上のヘルプアイコンをクリックしてください。
*/

.single_thumbnail{
display: none;
}

h3{
margin-top: -2px;
}
/*目次デザインの変更設定*/
/* TOC 目次 */
#toc_container{
 margin-top:8px!important; /* 目次の上のスペースの幅*/
 margin-bottom:35px!important; /* 目次の下のスペースの幅*/
 border-radius: 0px!important; /*角を丸める場合は設定*/
 font-size: 10px!important; /*目次内の文字の大きさ*/
 padding-right: 20px!important; /*右端から20pxはなす */
 padding-left: 20px!important; /*左端から20pxはなす */
 background-color: #fff!important; /*目次ボックスの背景色*/
 border:0px solid #4A4A4A!important; /*ボックスの外枠の設定*/
}
 
#toc_container .toc_title{
margin-top:-16px!important;
 font-size: 16px!important; /*目次タイトルの文字の大きさ*/
 color: #4A4A4A!important; /*目次タイトルの文字の色*/
 text-align: center!important;  /*目次タイトルを中央に配置*/
	background-color:#fff!important; 
}
 
/*目次タイトルの前のファイルみたいな記号を入れる設定*/
#toc_container .toc_title:before{
 content: "\f0f6"!important;
 font-family: FontAwesome!important;
 padding-right: 6px!important;
 color: #8A8A8A!important;
}
 
#toc_container .toc_toggle a{
 color: #7A7A7A!important; /*目次タイトルの横の閉じるマークの色*/
}
 
#toc_container ul{
 counter-reset:number!important; /*目次番号が増えるよう設定*/
 list-style:none; /*目次番号以外の記号は表示させない*/
}
 
#toc_container ul li{
 line-height: 1.25em!important; /*項目の高さ*/
 margin-bottom: 0.6em!important; /*項目間の幅*/
 margin-left:0px; /*目次の各項目の始まりを左端から離す*/
	font-size: 18px!important;
}
 
#toc_container ul li:before{
 font-weight: bold;
 color: #069;
 padding-right:18px; /*数字と目次項目の幅を広げたいときはここを調整*/
 margin-left:-30px;
}
 
#toc_container ul li a{
 font-weight: bold!important; /*目次項目の文字を太字に*/
 color: #069!important; /*目次項目の文字の色*/
}
 
#toc_container ul ul{
 margin-top: 0.5em!important; /*2レベル目の項目の上スペース幅の設定*/
}
 
#toc_container ul ul li{
 line-height: 1.25em!important; /*2レベル目の項目の高さ*/
 margin-bottom: 0.5em!important; /*2レベル目の項目の下の幅*/
}
#toc_container ul ul li:before{
 content: "\f0da"!important; /*三角マークを入れる*/
 font-family: FontAwesome;
 padding-right: 6px!important;
 margin-left:0px!important;
 color: #CCC!important;
 margin-left:-65px!important; /*2レベル目を左からどこに配置するのか*/
}
 
#toc_container ul ul li a{
 color: #3D3D3D!important; /*2レベル目の項目の文字色*/
 font-weight: normal!important; /*2レベル目の項目の文字は太字にしない*/
 padding-right:6px!important; /*2レベル目の項目を右端から離す*/
}