/***** CSS変更 *****/
/*** メイン全体の枠の幅を1200pxから1280pxへ変更 ***/
/*** 右メニューをメニューの下へ配置 ***/
/*** 主コンテンツの幅を778pxから1058px、右のマージンを200pxから0pxへ変更 ***/
/*** テーブルの見出しセルの背景色を#333へ変更 ***/
/*** 脚注がすべて同一行で表示されるのを各行に表示されるように変更 ***/
 
/* メイン全体の枠 */
#container{
    min-width: 1280px;
    _width: 1280px;
}
 
 
/* ----- Contents ----- */
/* コンテンツの配置 */
 
#menubar2{
    float:left;
    clear:both;
}
 
 
/* ----- Center ----- */
 
#contents{
    margin: 0px 0px 0px 200px;
    min-width: 1058px;
}
 
#wikibody th, #menubar2 th, #menubar th
{
    background:#333;
}
 
 
/* ----- Main ----- */
 
.attach, .footnote{
    float:none;
}
 
 
/***** CSS追加 *****/
/* ブロックレベル要素をtableと同じように表示 */
.dtable {
	display: table;
	border-collapse: collapse;
}
 
.dtable_th {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
}
 
.dtable_td {
	display: table-cell;
}
 
.dtable_tr {
	display: table-row;
}
 
.dtable_caption {
	display: table-caption;
}
 
最終更新:2020年12月06日 15:26