@charset "shift-jis";

html {
	margin: 0;
	padding: 0;
	height:100%;
}

body {
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	height:100%;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #42413C;
	text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #6E6C64;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}

/* ~~ この固定幅コンテナが他の div を囲みます。~~ */
.container {
	overflow: hidden;  
	height: auto;  
	width: 100%;
 /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}

/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
#header {
	width: 880px;
	height:80px;
	margin-right: auto;
	margin-left: auto;
	position:relative;
}
#ttl{
	position:absolute;
	font-size: small;
	left:0px;
	top:5px;
	width:30em;
}

#logo{
	position:absolute;
	left:0px;
	top:2em;
}

#tel{
	position:absolute;
	right:0;
	top:1px;
	width:230px;
}

#headlink{
	position:absolute;
	right:0;
	bottom:5px;
	text-decoration: none;
	font-weight: bold;

}
.main {
	width:1208px;
	margin-right: auto;
	margin-left: auto;
	clear:both;
	padding:0;
	overflow: auto;
	background: url(/common/img/bg.jpg) no-repeat #fff;

}



.bg-l {
	padding:0;
	width:164px;
	float: left;  
}

.bg-c {
	float: left;  
	width: 880px;
	margin-right: auto;
	margin-left: auto;
	padding:0;
	min-height:650px;

	background:#fff;
}

.bg-r {
	padding:0;
	float: left;  
	width:164px;

}

#flashContent{
	padding: 0 5px;
}


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

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

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

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

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

*/


#sidebar {
	float: left;
	width: 194px;
	padding-left: 5px;
}
.content {
	padding: 0px 25px 30px 10px;
	width: 645px;
	float: right;
}

/*ナビゲーション*/

#global-nav{
	width: 100%;
	background: url(/common/img/menu_bg.jpg) repeat-x;
	padding:0;
}



#global-nav ul{
	list-style:none;
	margin: 0 auto;
	padding: 0;
	height:64px;
	width: 880px;
}


#global-nav li{
	list-style:none;
	float:left;
	margin: 0;
	padding: 0;
}




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

.content h1{
}

.content h2{
	border-left: 10px double #457AB0;
	font-size: large;
	color: #457AB0;
	font-weight: bold;
	padding-left: 10px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.content h3{
	font-size: medium;
	color: #457AB0;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}
.mar-l-20{
	margin-left: 20px;
}
.mar-b-10{
	margin-bottom:10px;
	}



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

.nav li.current {
	background: #ECF5FF;
	color: #666;
}


/* ~~ フッター ~~ */
.footer {
	padding: 10px 0;
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both;
	border-top: 6px solid #006CB6;
}

.footer-wrap {
	width: 880px;
	margin: auto;
}
.footerlink {
	text-align: left;
	font-size:small;
	float:left;
	margin-bottom: 15px;

}

.copyright {
	width: 440px;
	text-align: right;
	font-size:small;
	float:right;
	margin-bottom: 15px;
}

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


#flash{
	margin-bottom: 10px;
	border: 1px solid #eee;
	padding: 5px;
	width: 630px;
}


.link01 {
	background: url(/common/img/arrow01.gif) no-repeat left;
	padding-left: 20px;
	margin-left: 15px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	font-size: small;
}

/* ~~ 表 ~~ */

.table01 {
	padding: 10px;
}

.table01 a {
	color: #c75f3e;
	font-weight: bold;
}


.tbl {
	padding: 20px;
}

.table600 {
	width: 600px;
	padding: 0;
}
.table250 {
	width: 250px;
	padding: 0;
}

.table01 th {
	color: #4f6b72;
	border: 1px solid #C1DAD7;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: left;
	padding: 6px 6px 6px 12px;
	background: url(/common/img/bg_header.jpg) no-repeat;
	background-color: #c9e7e9;
	font-size: small;
	font-weight: bold;
}

.table01 td {
	border-right: 1px solid #C1DAD7;
	border-bottom: 1px solid #C1DAD7;
	background: #fff;
	padding: 6px 6px 6px 12px;
	color: #4f6b72;
	font-size: small;
}

.table01 ol {
	list-style: decimal inside;
	text-indent: -2em;
	margin-left: 2em;
}
.table01 dt {
	font-weight: bold;
}

.table01 .first {
	border-top: 1px solid #C1DAD7;
}
.table01 .left {
	border-left: 1px solid #C1DAD7;
}

.txt {
	font-size: small;
	padding-top: 20px;
	background: #FFF;
}

.table02 {
	width: 250px;
}

.spec {
	float: left;
}

.gray{
	background: #CCC;
}

.left250{
	float: left;
	width: 350px;
	padding-top: 20px;
	padding-left: 15px;
	font-size: medium;
}

.right250{
	float: right;
	width: 250px;
	padding-top: 20px;
	padding-right: 15px;
	font-size: medium;
}

#top-content{
	float: left;
	width: 600px;
	margin-left: 10px;
}

#ad{
	float: right;
	width: 190px;
	margin-right: 15px;
	margin-bottom: 20px;
}

#ad img{
	margin-top: 20px;
}

.news{
	margin-top: 20px;
	width: 635px;
	margin-left: 10px;
}
.news iframe{
	margin-left:5px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	padding: 0;
}

.news a{
	margin-bottom: 15px;
}

.btn{
	margin-top: 20px;
	width: 650px;
}
.btn img{
	margin-left: 10px;
}

.link{
	padding-top: 20px;
}

.link li{
	background: url(/common/img/arrow02.gif) no-repeat left center;
	padding-left: 15px;
	margin-bottom: 10px;
	font-size: medium;
}

.link a{
	color: #1F49FF;
	font-weight: bold;
	text-decoration: underline;
}

#accordion{
	padding: 10px;
}

#accordion h3{
	background: #eee;
	border: 1px solid #CCC;
	padding: 10px;
	font-weight: bold;
}
#accordion ol{
	padding-top: 10px;
}

#accordion li{
	margin-bottom: 10px;
	margin-left: 10px;
	list-style: decimal;
	
}

#accordion ol a{
	color: #1F49FF;
	font-weight: bold;
	text-decoration: underline;
}


#charge .table01{
	border-left: 1px solid #C1DAD7;
	width: 520px;
	margin-top: 15px;
	margin-left: 15px;
}

#busstop img{
	border: 1px solid #CCC;
	margin-top: 15px;
	margin-left: 15px;
	padding: 5px;
}

div#map {
	border: 2px outset gray;
	margin: 15px;
}

#accordion h3{
	background: #eee;
	border: 1px solid #CCC;
	padding: 10px;
	font-weight: bold;
}

.banner{
	margin-top: 5px;
	margin-bottom: 10px;
}

.contact p{
	margin-left: 15px;
	font-size: medium;
}
.contact img{
	margin-top: 5px;
	margin-bottom: 5px;
}

.tbl th{
	padding: 10px;
	border-bottom: 1px solid #bbb;
}
.tbl td{
	padding: 10px;
	border-bottom: 1px solid #bbb;
}

.txt li{
	margin-top:5px;
	}
.name{
	text-align: right;
	}

.blue{
	color: #3300cc;
	}

