/***** 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追加 *****/
/* 縦書き */
.tategaki {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	width: 100%;
	line-height: 1.5;
}
 
 
/* floatプロパティで段組レイアウト作成 */
.block01 {
	float: left;
}
 
最終更新:2021年08月07日 14:49