/*コンテンツのラッパーをセンタリング-サイズ変更系CSS適用時などに*/
.main_wrapper{
    margin:0 auto;
}

/*コンテンツラッパーを幅制限-視線移動を少なくする*/
.main_wrapper{
    max-width:1250px;
}

/*ヘッダーの背景色を透過*/
.main_wrapper  .wiki_title{
    background-color:transparent;
}

/*コンテンツのラッパーをメニューバーの背景色へ*/
.wiki_title{
    background-color:#f8f8f8;
}


/*メインコンテンツの背景を角丸に*/
#wikibody{
    border-radius: 16px;
}

/*メインコンテンツに枠線をつける*/
#wikibody{
    border: 1px solid #aaa;
}

/*メインコンテンツ下部の広告たちを背景色なしに*/
.main_wrapper #contents .atwiki_ads,.main_wrapper #contents #body_footer{
    background-color: transparent!important;
}