@charset "shift_jis";


/*基本設定
----------------------------------------------------------------------------------------
■テキスト色は「body」内の「color: #afada3;」で設定できます。
■文字サイズは「font」内の75%部分です。pxなどの指定にしたいなら、12pxとかにしましょう。
　尚、HP右側はここで設定したサイズの90%になるように設定されています。
----------------------------------------------------------------------------------------*/
body {
	color: #787878;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #FFFFFF url(images/bg.gif) repeat-x top;
	font: 75%/2 "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}

h1,h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
}

p {
	margin: 0.5em 15px 1em;
}



/*リンク設定
----------------------------------------------------------------------------------------
■aはリンクですよ〜という部分の設定。hoverはカーソルオーバー時の設定。
　下線を外したいなら、a項目内に「text-decoration: none;」を1行追加しましょう。
----------------------------------------------------------------------------------------*/
a {
	color: #818078;
}

a:hover {
	color: #454440;
}



/*コンテナー（HP枠の設定で特に変更不要）
----------------------------------------------------------------------------------------*/
#container {
	width: 730px;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}



/*ヘッダー（ロゴとh1タグのテキストが入っているトップ部分）
----------------------------------------------------------------------------------------
■#headerの「text-align: center;」で中央寄せにしています。左寄せにしたいならcenterでなくleftに。
■#header h1がh1タグの設定部分。文字サイズを変更したいなら9px部分を変える。
　文字間隔が広がって見えると思いますが、この設定は「letter-spacing: 0.5em;」部分です。
　1文字ずつ0.5文字分の余白を空けていってるという意味です。広げたくないなら1行丸ごと削除。
----------------------------------------------------------------------------------------*/
#header {
	text-align: center;
	height: 83px;
	padding-top: 20px;
}

#header h1 {
	font-size: 9px;
	font-weight: normal;
	line-height: 1em;
	letter-spacing: 0.5em;
	color: #b3acac;
}



/*メニュー
----------------------------------------------------------------------------------------*/
#menu {
	margin-left: 2px;
}

#menu li {
	display: inline;
}
#menu li, #menu-sub li {

	display: inline;
	float: left;
    line-height: 40px;
    height: 37px;
    font-size: 12px;

}

ul#menu a {

    color: #000000;     /*メニューの文字色*/
    text-decoration: none;
    display: block;
    width: 145px;
    text-align: center;
    background-image: url(images/menu.gif);  /*メニューの背景画像*/
    background-repeat: no-repeat;
    background-position: top;   /*メニューの背景画像の上半分を表示させる設定*/
    overflow: hidden;   /*オーバーした文字を非表示にする設定*/
    color: #FFFFFF; /*カーソルオーバー時の文字色*/

}

ul#menu a:hover {

    color: #000000;     /*メニューの文字色*/
    text-decoration: none;
    display: block;
    width: 145px;
    text-align: center;
    background-image: url(images/menu2.gif);  /*メニューの背景画像*/
    background-repeat: no-repeat;
    background-position: top;   /*メニューの背景画像の上半分を表示させる設定*/
    color: #FFFFFF; /*カーソルオーバー時の文字色*/

}



/*コンテンツ（HPの左右のコンテンツ背景を設定しています。ここは変更しない）
----------------------------------------------------------------------------------------*/
#contents {
	background: #FFFFFF url(images/contents_bg.gif);
}



/*メイン画像（HP枠との微調整部分。変更しない。）
----------------------------------------------------------------------------------------*/
#main-img {
	margin-left: 5px;
}



/*メインコンテンツ（左側コンテンツ。変更不要。）
----------------------------------------------------------------------------------------*/
#main {
	float: left;
	width: 450px;
	display: inline;
	margin-left: 12px;
	margin-bottom: 50px;
	margin-top: 20px;
}
#main h2.h2bg {
	height: 24px;
    line-height: 30px;
    color: #FFFFFF; /*h2タグの文字色*/
    font-size: 100%;
    background: #332F2F url(images/head.gif) no-repeat;   /*h2タグの背景画像*/
    background-repeat: no-repeat;
    padding-left: 20px; /*文字の左側に少し余白*/
    overflow: hidden;   /*背景画像から飛び出た文字を非表示にする*/

}

/* コラム
------------------------------------------------------------------*/
#colum {
    float: left;
    width: 200px;
    text-align: center;
}

.main_back_colum {
		margin-top:5px;
		padding: 10px 0 10px 0;
    width: 450px;
}

table.table_colum {
	margin-left:auto;
	margin-right:auto;
	width:450px;
padding:0;
	border:none;
}

tr.table_colum  {
margin:0;
padding:0;
}

td.table_colum  {
	padding:5px;
	margin:0;
	border:none;
	text-align:center;
}

ul#colum li {
		float:left;
		font-size:12px;
		height:38px;
		line-height:38px;
		margin-left:5px;
		margin-bottom: 5px;
		font-weight: bold;
}

ul#colum a {
		background-image:url(images/colum.gif);
		background-position:center top;
		background-repeat:no-repeat;
		display:block;
		overflow:hidden;
		text-align:center;
		text-decoration:none;
		width:200px;
		height:38px;
}

ul#colum a:hover {
    background-image:url(images/colum_over.gif);
    background-position:left bottom;
    background-repeat:no-repeat;
    width:200px;
    height:38px;
}

#new{
		margin:0;
		padding:10px 0 0 0;
}

#new dl,dt{
    margin-left: 20px;
}

#new dd{
    margin-left: 40px;
}



/*サブコンテンツ（右側コンテンツ。）
----------------------------------------------------------------------------------------
■#subの「font-size: 90%;」で、メインコンテンツより文字サイズが若干小さくなるよう設定しています。
　メインコンテンツと同じがいいなら1行丸ごと削除する。
■#sub h3　はサブコンテンツの見出し部分です。背景の白は「background: #FFFFFF;」で設定しています。
　中央寄せは「text-align: center;」で設定。文字間隔を「letter-spacing: 0.5em;」で少し広げています。
　枠のボーダーは「border: 1px dotted #d1d0c8;」部分。1pxの点線(dotted)を#d1d0c8の色で入れています。
　直線にしたいならdottedをsolidにする。
----------------------------------------------------------------------------------------*/
#sub {
	float: right;
	width: 231px;
	display: inline;
	margin-right: 13px;
	margin-bottom: 50px;
	margin-top: 20px;
	font-size: 90%;
}

#sub h3 {
	background: #e5d2be;
	text-align: center;
	letter-spacing: 0.5em;
	border: 1px dotted #d1d0c8;
	font-size: 100%;
	font-weight: normal;
	color:#666;
}

/*サイド
------------------------------------------------------------------*/
#menu_area h2 {
		font-size:12px;
    color: #ffffff;
    line-height: 30px;
		text-align:center;
    background: url(images/pickup_title.png) no-repeat left bottom;
		margin:10px 0 0 0;
		text-shadow:#bd465d 1px 1px;
}


.pickup_area {
    background: #ffffff;
		padding-top:5px;
		margin-top:5px;
		border:#DDDDDD 1px solid;
		text-align:center;
}


.pickup_title {
    background: #eeeeee;
    border: 1px dotted #cbc9c8;
    line-height: 1;
    margin: 5px;
    padding: 5px 10px;
    font-weight: bold;
	color:#666;
}

.pickup_text{
text-align:left;
padding: 0px 10px;
}


/*サイトマップ
------------------------------------------------------------------*/

#sitemap {
		padding-top:10px;
		padding-left:10px;
}

ul#sitemap li {
		padding:0 0 10px 0;
}


/*フッター（変更不要）
----------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	background: url(images/footer_bg.gif) no-repeat center;
	height: 45px;
	line-height: 1.5em;
	text-align: center;
	padding-top: 10px;
}



/*clearfix（変更しない）
----------------------------------------------------------------------------------------*/
#contents:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#contents { display: inline-block; }
/* Hides from IE-mac \*/
*html #contents { height: 1%; }
#contents { display: block; }
/* End hide from IE-mac */
