@charset "shift_jis";


/*
----------------------------------------------------------------------------------------*/
body {
	color: #87847c;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #FFFFFF url(images/bg.gif) repeat-x top;
	font: 116%/1.6 "メイリオ","ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}

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

ul{
	list-style-type: none;
}

img {
	border: none;
}

p {
	margin: 0.7em 15px 0.5em; letter-spacing: 0.1em;
}

h2 { margin-top: 5px;
	font-size: 23px;
	
	letter-spacing: 0.2em;
}

.bfont {font-weight: bold;}

/*リンク設定
----------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------*/
a {
	color: #9c8772;
}

a:hover {
	color: #776656;
}



/*コンテナー
----------------------------------------------------------------------------------------*/
#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: #d1cfc3;
}



/*メニュー（変更しない）
----------------------------------------------------------------------------------------*/
#menu li {
	display: inline;
}



/*コンテンツ（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;
}



/*サブコンテンツ（右側コンテンツ。）
----------------------------------------------------------------------------------------
■#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: #FFFFFF;
	text-align: center;
	letter-spacing: 0.5em;
	border: 1px dotted #d1d0c8;
	font-size: 100%;
	font-weight: bold;
}

.kanzin {
	background: #FFFFFF;
	text-align: center;
	letter-spacing: 0.5em;
	border: 1px dotted #d1d0c8;
	font-size: 100%;
	font-weight: bold;
}
.kanzincon {

	
	
		font-weight: normal;
}
/*フッター（変更不要）
----------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	background: url(images/footer70059.gif) no-repeat center;
	height: 49px;
	line-height: 1.9em;
	text-align: center;
　padding-top: 15px;　font-size: 93%;

}

#footer a {
	color: #727068;
}

#footer a:hover {
	color: #827f75;
}




/*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 */
