@charset "utf-8";
body {
	font-size: 0.9rem;
	line-height: 1.5rem;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	color: #333;
	background-image: url(images/header-img_bk.gif);
	background-repeat: repeat-x;
}

/* ~~ エレメント / タグセレクター ~~ */
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 をネストして使用することもできます。 */
}

p, ol, ul {
	margin-top:0.5em;
	margin-bottom:0.5em;
}
ol, ul {
	padding-left:2em;
}

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: 960px;
	background: #FFF;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}

/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
.header {
	height: 330px;
}

/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを左ではなく右に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて左方向にする代わりに、すべて右方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/
.sidebar1 {
	float: left;
	width: 230px;
	/*background: #EADCAE;*/
	padding-bottom: 10px;
}
.content {
	padding-top: 10px;
	padding-right: 0;
	padding-left: 40px;
	padding-bottom: 10px;
	width: 690px;
	float: left;
}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リストのマーカーを削除します。 */
	border-top: 1px solid #666; /* リンク用の上部のボーダーを作成します。他のすべてのものは LI 上で下部のボーダーを使用して配置されます。 */
	margin-bottom: 15px; /* 下のコンテンツのナビゲーション間の間隔を作成します。 */
}
ul.nav li {
	border-bottom: 1px solid #666; /* ボタンの区切り線を作成します。 */
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	padding: 5px 5px 5px 15px;
	display: block; /* リンクにブロックプロパティを指定し、リンクが含まれる LI 全体がリンクになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。 */
	width: 210px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ フッター ~~ */
.footer {
	padding: 10px 0;
	background: #ffffff;
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both; /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
	text-align: center;
}

/* ~~ その他の 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;
}

#acMenu {
	padding-top: 10px;
	}

#acMenu dt{
	display: block;
	width: 230px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	cursor: pointer;
	padding-top: 5px;
	}

#acMenu a { 
display: block;
top: 0;
left: 0;
height:100%;
width: 100%;
	}
	
#acMenu dt.toppage {
	background-image : url(images/ico_index.gif);
	height: 50px;
	background-repeat: no-repeat;
	}
#acMenu dt.toppage:hover {
	background-image : url(images/ico_index.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}

#acMenu dt.greeting {
	background-image : url(images/ico_greetings.gif);
	height: 50px;
	background-repeat: no-repeat;
	}
#acMenu dt.greeting:hover {
	background-image : url(images/ico_greetings.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}	

#acMenu dt.guide {
	background-image : url(images/ico_announce.gif);
	height: 43px;
	background-repeat: no-repeat;
	}
#acMenu dt.guide:hover {
	background-image : url(images/ico_announce.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}	

#acMenu dd{
	width:230px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	display:none;
	margin-left: 0em;
	}

#acMenu dd.op{
	display: inherit;
	}

	
#acMenu dd.guide01{
	background-image : url(images/ico_syumoku.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.guide01:hover {
	background-image : url(images/ico_syumoku.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dd.guide02{
	background-image : url(images/ico_sankatetsuzuki.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.guide02:hover {
	background-image : url(images/ico_sankatetsuzuki.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dd.guide03{
	background-image : url(images/ico_takuzi.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.guide03:hover {
	background-image : url(images/ico_takuzi.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dd.guide04{
	background-image : url(images/ico_info_pdf.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.guide04:hover {
	background-image : url(images/ico_info_pdf.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}

#acMenu dt.entry {
	background-image : url(images/ico_entry_new.gif);
	height: 51px;
	background-repeat: no-repeat;
	}
	
#acMenu dt.entry:hover {
	background-image : url(images/ico_entry_new.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}	
#acMenu dd.entry01{
	background-image : url(images/ico_entry01.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.entry01:hover {
	background-image : url(images/ico_entry01.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dd.entry02{
	background-image : url(images/ico_entry02.gif);
	height: 37px;
	background-repeat: no-repeat;
	}
#acMenu dd.entry02:hover {
	background-image : url(images/ico_entry02.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dt.program {
	background-image : url(images/ico_program.gif);
	height: 51px;
	background-repeat: no-repeat;
	}
#acMenu dt.program:hover {
	background-image : url(images/ico_program.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dt.sponsor {
	background-image : url(images/ico_cosponsorship.gif);
	height: 51px;
	background-repeat: no-repeat;
	}
#acMenu dt.sponsor:hover {
	background-image : url(images/ico_cosponsorship.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}	
#acMenu dt.access {
	background-image : url(images/ico_traffic.gif);
	height: 42px;
	background-repeat: no-repeat;
	}
#acMenu dt.access:hover {
	background-image : url(images/ico_traffic.gif);
	background-position: -230px 0%;
	background-repeat: no-repeat;
	}
#acMenu dt.contact {
	background-image : url(images/ico_inquiry.gif);
	height: 42px;
	background-repeat: no-repeat;
	}
#acMenu dt.contact:hover {
	background-image : url(images/ico_inquiry.gif);
	background-position: -230px 0px;
	}
#acMenu dt.banner1 {
	background-image : url(images/ico_jsdp.gif);
	height: 59px;
	background-repeat: no-repeat;
	}
#acMenu dt.banner1:hover {
	background-image : url(images/ico_jsdp.gif);
	background-position: -230px 0px;
	}		

	#breadcrumbs p {
	margin: 0;
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	}

	.h1 {
	background: transparent url(images/title.png) no-repeat left center;
	margin: 0 0 30px;
	padding-top: 30px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
	font-size: x-large;
	height: 23px;
	}
	.h1 strong {
		font-weight:normal;
	}
	.h1 .marker {
		display:none;
	}

	h2.h2 {
		margin:0 0 20px 0;
		padding:4px 0 0 0;
		border:1px solid #B5B3B3;
		background-color:#eeeeee;
		font-size:medium;
		color:#197b3b;
	}
	h2.h2 strong {
		display:block;
		border-top:4px solid #165e3b;
		padding:0.125em 0.5em;
	}
	h2.h2 .marker {
		margin-right:0.5em;
		color:#197b3b;
	}
	.h3 {
		margin:20px 0 20px 0;
		padding:4px 0 0 0;
		font-size:medium;
		color:#197b3b;
		border-bottom:1px solid #197b3b;
	}
	.h3 strong {
	}
.red {color:#da3b2b;}
.gre{color:#197b3b;}


.right {text-align:right;}
	

	.information dt{
	color: #165e3b;
	font-weight: bold;
	font-size: 1.2rem;
}

	.information dd{
	margin-left: 0.5em;
}

.box {
	margin-top:1em;
	margin-bottom:1em;
	border:1px solid #197b3b;
	padding:0.25em 1em 0em 0em;
}

.box ol {
	margin-bottom:0em;
}

.box p{
	padding-left: 1em;
}
.margin {
	display:block;
	margin:0px;
	padding:3em 0px 0px;
	width:100%;
	height:0px;
	border:0px none;
	overflow:hidden;
}


.bordered_table {
	width:100%;
	border-collapse:collapse;
	margin:40px 0 0.5em 0;
	table-layout:auto;
	empty-cells:show;
	border-spacing:0px;
	border:1px solid black;
}
.bordered_table caption {
	margin:0px;
	padding:0.25em 0.5em;
	font-weight: bold;
	text-align: left;
	background-color: #FFFFFF;
}
.bordered_table th,.bordered_table td {
	padding:0.25em 0.5em;
	border:1px solid black;
}
.bordered_table th {
	background-color:#eeeeee;
}
.bordered_table td {
	background-color:white;
}
.bordered_table thead th {
	background-color:darkgray;
	color:white;
}

li.hishi {
	list-style: none;
	text-indent: -1em;
}
li.hishi:before { content:"◇"; }


body .red {color:#da3b2b;}
body .green {color:#339933;}
body .gray {color:#999999;}
body a.white {color:#f2f2f2;}
body a.white:hover {color:#ffffff;}
body .big {font-size:150%;}
body .small {font-size:75%;}


.btn {
  display: inline-block;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;
  font-weight: normal;
  font-family: sans-serif;
  color: #FFFFFF;
  font-size: 14px;
  background-color: #006BCF;
  background-image: -webkit-linear-gradient(top, #006ed4 0%, #197fdf 48%, #006BCF 49%, #006BCF 82%, #0079eb 100%);
  background-image: -moz-linear-gradient(top, #006ed4 0%, #197fdf 48%, #006BCF 49%, #006BCF 82%, #0079eb 100%);
  background-image: -o-linear-gradient(top, #006ed4 0%, #197fdf 48%, #006BCF 49%, #006BCF 82%, #0079eb 100%);
  background-image: linear-gradient(top, #006ed4 0%, #197fdf 48%, #006BCF 49%, #006BCF 82%, #0079eb 100%);
  border-color: hsl(209, 40%, 41%);
  -webkit-box-shadow: inset 0 0 1px 1px #1c92ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 0 1px 1px #1c92ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 1px 1px #1c92ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  -webkit-text-shadow: 1px 1px 1px #003669;
  -moz-text-shadow: 1px 1px 1px #003669;
  -o-text-shadow: 1px 1px 1px #003669;
  text-shadow: 1px 1px 1px #003669;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 12px 30px 12px 30px;
}

.btn strong {
  letter-spacing: 1px;
  font-size: 16px;
}

.btn:hover {
  color: #FFFFFF;
  background-color: #74b3ed;
  background-image: -webkit-linear-gradient(top, #0076e3 0%, #2087e6 48%, #0073de 49%, #0073de 82%, #0082fa 100%);
  background-image: -moz-linear-gradient(top, #0076e3 0%, #2087e6 48%, #0073de 49%, #0073de 82%, #0082fa 100%);
  background-image: -o-linear-gradient(top, #0076e3 0%, #2087e6 48%, #0073de 49%, #0073de 82%, #0082fa 100%);
  background-image: linear-gradient(top, #0076e3 0%, #2087e6 48%, #0073de 49%, #0073de 82%, #0082fa 100%);
  border-color: hsl(209, 41%, 44%);
  -webkit-box-shadow: inset 0 0 1px 1px #2697ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 0 1px 1px #2697ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 1px 1px #2697ff, 0 0 1px 3px rgba(0, 0, 0, 0.15);
  -webkit-text-shadow: 1px 1px 1px #003e78;
  -moz-text-shadow: 1px 1px 1px #003e78;
  -o-text-shadow: 1px 1px 1px #003e78;
  text-shadow: 1px 1px 1px #003e78;
}

.btn:active {
  color: #FFFFFF;
  background-color: #0063c0;
  background-image: -webkit-linear-gradient(top, #005eb6 0%, #006BCF 100%);
  background-image: -moz-linear-gradient(top, #005eb6 0%, #006BCF 100%);
  background-image: -o-linear-gradient(top, #005eb6 0%, #006BCF 100%);
  background-image: linear-gradient(top, #005eb6 0%, #006BCF 100%);
  padding: 13px 30px 11px 30px;
}



/* LEFT */
div.left,ol.left,ul.left,dl.left,table.left,blockquote.left,iframe.left,small.left,big.left,article.left,section.left {float:left;}
a.left,span.left,strong.left,em.left,img.left,object.left,input.left,button.left,textarea.left,figure.left {display:inline-block; float:left;}
h1.left,h2.left,h3.left,h4.left,h5.left,h6.left,p.left,li.left,dt.left,dd.left,figcaption.left,caption.left,td.left,th.left {text-align:left;}
/* right */
div.right,ol.right,ul.right,dl.right,table.right,blockquote.right,iframe.right,small.right,big.right,article.right,section.right {float:right;}
a.right,span.right,strong.right,em.right,img.right,object.right,input.right,button.right,textarea.right,figure.right {display:inline-block; float:right;}
h1.right,h2.right,h3.right,h4.right,h5.right,h6.right,p.right,li.right,dt.right,dd.right,figcaption.right,caption.right,td.right,th.right {text-align:right;}
/* center */
h1.center,h2.center,h3.center,h4.center,h5.center,h6.center,p.center,li.center,dt.center,dd.center,figcaption.center,caption.center,td.center,th.center,label.center {text-align:center;}

a.button,
input.button,
button.button,
span.button {
	display:inline-block;
	margin:2px;
	padding:0.5em 0.75em;
	background-color:#e9e9e9;
	background:linear-gradient(white, #e9e9e9);
	border:1px solid #d4d4d4;
	height:auto;
	font-size:0.875em;
	text-decoration:none;
	border-radius:0.5em;
}
span.button {
	display:inline-block;
	margin:2px;
	padding:0.25em 0.5em;
	background-color:#eeeeee;
	border:1px solid #999999;
	color:#999999;
	height:auto;
	font-size:0.875em;
	border-radius:0.5em;
}
a.button:hover,
input.button:hover,
button.button:hover {
	background-image:url(images/bg_meshedgrad.png);
	background-repeat:repeat-x;
}
.button strong {
	color:black;
}
.button img {vertical-align:0px;}
.large {font-size:1.25em; padding:0.5em 1.5em;}
a.button.large {
	font-size:1.25em;
	display:inline-block;
	padding:0.75em;
}
a.button.medium {
	font-size:medium;
}

table.footer-navigation {
	background-color: #f2f2f2;
	width: 960px;
	margin: 0 auto;
	border-collapse: collapse;
	border: none;
	text-align: left;

	}
table.footer-navigation th,
table.footer-navigation td {
		border:none;
	}
table.footer-navigation td {
		border-left: 1px solid #595758;
	}
table.footer-navigation a {
		color:#595758;
	}
table.footer-navigation a:hover {
		text-decoration:underline;
		color:#4B9B66;
	}
table.footer-navigation ul,
table.footer-navigation li {
		margin:0;
		padding:0;
		list-style-type:none;
		line-height:1;
	}
table.footer-navigation ul.lv2 {
		margin-top:1em;
		margin-bottom:0.5em;
	}
table.footer-navigation li.lv1 {
		margin-top:1em;
		margin-bottom:0.5em;
		margin-left:0.5em;
	}
table.footer-navigation li.lv2 {
		margin-bottom:0.5em;
		margin-left:3em;
		text-indent:-1.5em;
	}
table.footer-navigation strong.lv1 {
		display:block;
		margin-bottom:0.5em;
	}
table.footer-navigation strong {
		color:#197b3b;
	}
table.footer-navigation a:hover strong {
		color:#4B9B66;
	}
table.footer-navigation .marker {
		margin:0 0.5em 0 0;
		padding:0;
		color:#197b3b;
		font-family:'courier';
	}
table.footer-navigation .marker.disc {
	}
table.footer-navigation .marker.disc {
		display:inline-block;
		border:1px solid #197b3b;
		background-color:#197b3b;
		color:white;
		font-size:0.75em;
		text-align:center;
		border-radius:100%;
	}
.access_map{
	text-align: center;
}

.access_map img {
	border: thin solid #4E9642;
}

.ctn{
	text-align: center;}
	
	
.content li li{
	margin-left: -2.5em;
	padding-left: 0px;
	list-style-type: none;
}