@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	line-height: 1.5em;
	background-color: #FFF;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 0px;
	padding-left: 0px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
	margin-bottom: 0px;
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}

/* ~~ この固定幅コンテナが他のすべての div を囲みます。~~ */
.container {
	width: 892px;/* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 100%;
	background-color: #D3EDFB;
}

/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
.header {
	background-color: #FFF;
	height: 100px;
}
.sidebar1 {
	float: left;
	width: 171px;
	padding-bottom: 10px;
	background-color: #D7EAF9;
	margin: 0px;
	padding-top: 0px;
	height: 100%;
}
.content {
	width: 720px;
	float: left;
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
}
.sidebar2 {
	float: left;
	width: 720px;
	background-color: #D3EDFA;
	margin: 0px;
	padding: 0px;
	height: 120px;
}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ol { 
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リンク用の上部のボーダーを作成します。他のすべてのものは LI 上で下部のボーダーを使用して配置されます。 */
	margin-bottom: 15px; /* 下のコンテンツのナビゲーション間の間隔を作成します。 */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
ul.nav li {
	border-bottom: 1px solid #FFF; /* ボタンの区切り線を作成します。 */
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	display: block; /* アンカーにブロックプロパティを指定し、アンカーが含まれる LI 全体がアンカーになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。 */
	width: 110px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	height: 29px;
	text-decoration: none;
	background: #d3edfa;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	color: #FFF;
	vertical-align: middle;
	background-color: #66C1EE;
}

/* ~~ フッタースタイル ~~ */
.footer {
	position: relative; /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
	float: right;
	width: 720px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	background-color: #FFF;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* このクラスは、.footer が .container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (.container 内に) 配置できます。 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.header .toJsite {
	float: right;
	margin-top: 15px;
}
.header h1 {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 228px;
}
.header h2 {
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 224px;
}
.sidebar2 ul li {
	display: block;
	float: left;
	height: 120px;
	width: 120px;
}
.sidebar2 ul .outline {
	background-image: url(../../images_e/menu01Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.sidebar2 ul .vm {
	background-image: url(../../images_e/menu02Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.sidebar2 ul .kids {
	background-image: url(../../images_e/menu03Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.sidebar2 ul .peace {
	background-image: url(../../images_e/menu04Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.sidebar2 ul .data {
	background-image: url(../../images_e/menu05Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.sidebar2 ul .exbit {
	background-image: url(../../images_e/menu06Bk.gif);
	background-repeat: repeat;
	background-position: left top;
}
.content .topics {
	float: left;
	width: 480px;
	background-image: url(../../images/topicsTitle.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.content .information {
	float: right;
	width: 240px;
	background-image: url(../../images/inforTitle.gif);
	background-repeat: no-repeat;
	background-position: left top;
	font-size: 1.2em;
	line-height: 1.5em;
}
.content .information ul {
	margin-top: 35px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 25px;
	padding: 0px;
}
.content .topics dl {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 0px;
}
.content .topics .date {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	text-align: right;
	margin-top: 15px;
	margin-right: 10px;
}
.content .topics dl dt {
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	float: left;
	width: 14px;
}
.content .topics dl dd {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FF5D5B;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	font-size: 1.3em;
	line-height: 1.5em;
}
.content .information ul li {
	list-style-position: outside;
	list-style-image: url(../../images/greenArrowR.gif);
	list-style-type: none;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #00C8C5;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.content .information .kaigi {
	height: 30px;
	width: 240px;
	background-color: #00B7B4;
	padding: 0px;
	margin: 0px;
}
.content .information .kaigi p {
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 7px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	vertical-align: middle;
	padding: 0px;
}
.content .topics ul li img {
	margin: 0px;
	padding: 0px;
}
.container .footer .attention {
	display: block;
	float: right;
}
.container .footer .cp {
	float: left;
	margin-left: 10px;
}
.content .topics dl dd img {
	margin-right: 5px;
	margin-left: 5px;
}
.sidebar2 ul .vm #menubtn02, 
.sidebar2 ul .kids #menubtn03, 
.sidebar2 ul .peace #menubtn04, 
.sidebar2 ul .data #menubtn05, 
.sidebar2 ul .exbit #menubtn06 {
	margin-right: 5px;
	margin-left: 5px;
	margin-top: 3px;
}
.sidebar2 ul .outline .outlineBox img {
	margin-top: 4px;
	margin-left: 6px;
	padding: 0px;
}
.linkBox {
	display: block;
	text-align: right;
	clear: both;
}
.content .topics dl dd .left {
	float: left;
}
.content .topics dl dd .clr {
	clear: both;
	margin: 0px;
	padding: 0px;
	height: 1px;
}
.topics .request {
	width: 445px;
	margin-left: 25px;
	margin-top: 10px;
	color: #0000FF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.8em;
}
.topics .request2 {
	width: 445px;
	margin-left: 25px;
	margin-top: 10px;
	color: #FC3235;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.8em;
}
.content .sidebar2 #endbar {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.Pink {
	color: #FF00FF;
}
.Black {
	color: #000000;
}
