@charset "shift_jis";


/*基本設定
----------------------------------------------------------------------------------------
■テキスト色は「body」内の「color: #afada3;」で設定できます。
■文字サイズは「font」内の75%部分です。pxなどの指定にしたいなら、12pxとかにしましょう。
　尚、HP右側はここで設定したサイズの90%になるように設定されています。
----------------------------------------------------------------------------------------*/
body {
	color: #666666;
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 25px;
	background-color: #FFFFFF;
	background-image: url(images/bg.gif);
	background-repeat: repeat-x;
	background-position: top;
}



/*リンク設定
----------------------------------------------------------------------------------------
■aはリンクですよ〜という部分の設定。hoverはカーソルオーバー時の設定。
　下線を外したいなら、a項目内に「text-decoration: none;」を1行追加しましょう。
----------------------------------------------------------------------------------------*/
a {
	color: #FF0099;
	text-decoration: none;
}

a:hover {
	color: #454440;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
}




/*コンテナー（HP枠の設定で特に変更不要）
----------------------------------------------------------------------------------------*/
#container {
	width: 730px;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	font-size: 12px;
	color: #333333;
	margin-bottom: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#contents {
}




/*ヘッダー（ロゴとh1タグのテキストが入っているトップ部分）
----------------------------------------------------------------------------------------
■#headerの「text-align: center;」で中央寄せにしています。左寄せにしたいならcenterでなくleftに。
■#header h1がh1タグの設定部分。文字サイズを変更したいなら9px部分を変える。
　文字間隔が広がって見えると思いますが、この設定は「letter-spacing: 0.5em;」部分です。
　1文字ずつ0.5文字分の余白を空けていってるという意味です。広げたくないなら1行丸ごと削除。
----------------------------------------------------------------------------------------*/
#header {
	text-align: center;
	background-image: url(images/logo1.gif);
	background-repeat: no-repeat;
	background-position: center;
	margin: 0px;
	height: 83px;
	padding: 0px;
}

#header h1 {
	font-size: 9px;
	font-weight: normal;
	line-height: 1em;
	letter-spacing: 0.5em;
	color: #d1cfc3;
	margin: 0px;
	padding: 0px;
}
#navi {
	margin: 0px;
	padding: 0px;
	width: 730px;
}
#navi ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}




/*メニュー（変更しない）
----------------------------------------------------------------------------------------*/

#navi li {
	display: inline;
	margin: 0px;
	padding: 0px;
	float: left;
}



/*コンテンツ（HPの左右のコンテンツ背景を設定しています。ここは変更しない）
----------------------------------------------------------------------------------------*/
#contents {
	clear: both;
	background-color: #FFFFFF;
	background-image: 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 p {
	margin: 0px;
	text-indent: 1em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#main h2 {
	font-size: 14px;
	color: #FF33FF;
	text-decoration: none;
	text-align: center;
}
#main dl {
	border: 1px dotted #FF66FF;
	margin-top: 5px;
	margin-right: 30px;
	margin-bottom: 0px;
	margin-left: 50px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#main dt {
	margin: 0px;
	padding: 0px;
}
#main dd {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
}
#main .right {
	margin: 0px;
	padding: 0px;
	text-align: right;
}
#main .jikanwari {
	width: 200px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
	text-align: center;
}
#main .jikanwari td {
	border: 1px solid #FF99FF;
	font-size: 12px;
}
#main .table2 {
	width: 400px;
	margin-left: 20px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#main .photo {
	padding-top: 5px;
	padding-right: 3px;
	padding-bottom: 5px;
	padding-left: 0px;
}

#contents .table2 td {
	border: 1px solid #FF99FF;
	text-align: center;
	padding: 2px;
	font-size: 12px;
}
#main .table2 .left {
	text-align: left;
}










/*サブコンテンツ（右側コンテンツ。）
----------------------------------------------------------------------------------------
■#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;
	padding: 0px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 5px;
}


#sub h3 {
	background: #FFFFFF;
	border: 1px dotted #d1d0c8;
	font-size: 100%;
	font-weight: normal;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#sub dl {
	padding: 0px;
	border: 3px double #999999;
	width: 100%;
	margin: 0px;
}
#sub dt {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#sub dd {
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 30px;
}




/*フッター（変更不要）
----------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	background: url(images/footer_bg.gif) no-repeat center;
	height: 30px;
	line-height: 1.5em;
	text-align: center;
	padding-top: 10px;
	font-size: 10px;
}
