/* CSS Document */

/* ---------------------------------------------------------------- *
	全体に関わる設定 
 * ---------------------------------------------------------------- */
/* マージンをリセット */
html,body, div {
  margin: 0;
  padding: 0;
}

body {
/*
 * This Stylesheet was based on YUI Library's Fonts CSS.
 * > Copyright (c) 2007, Yahoo! Inc. All rights reserved.
 * > Code licensed under the BSD License:
 * > http://developer.yahoo.net/yui/license.txt
 * > http://developer.yahoo.com/yui/fonts/
 * Note: この部分の指定では、Yahoo! UI Library の Fonts CSS を利用して、各種ブラウザのフォントサイズの差をほぼなくす設定を行っています。ほとんどのモダンブラウザで、基本のフォントサイズを13pxと指定し、pixel単位で指定したときに IE でサイズが変更されない不具合を埋めるためにプロパティの先頭に*を付けるハック(ブラウザのバグを利用したinvalidなハック)を利用して IE7がsmall, IE5?6 が x-small を読み込むように設定することで、基本のフォントサイズがほぼ揃います。
 */
  font-size: 13px;
  *font-size: small;
  *font: x-small;
}

body {
	/* 必要ならば，本文のテキストに関する設定をしてください*/
  	font-family: Arial, "ヒラギノ角ゴ Pro W3", HiraKakuPro-W3, sans-serif;
	color: #333333;
	background: #CC9999;
}
 
p {
  /* 基本的なテキスト要素の行送りを設定してください*/
  line-height: 1.6;
}

ul, ol, dl {
  /* リスト関連要素の行送りを設定してください*/
  line-height: 1.3;
}

dt,dd {
	line-height: 1.5;
}
 
p {
  /* パラグラフの上下マージンを設定してください*/
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul, ol, dl {
  /* 箇条書きの上下マージンを設定してください*/
  margin-top: 0;
  margin-bottom: 0;
}

/* テキスト
----------------------------*/

h1 {
	/* 見出し 1 のジャンプ率を設定してください*/
  font-size: 145%;
	/* 見出し 1 の上下マージンを設定してください*/
  margin-top: 0;
	margin-bottom: 0.5em;
	line-height: 1.5em;
	text-align: left;
	padding-left: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #003366;
}


h2 {
	/* 見出し 2 のジャンプ率を設定してください */
  font-size: 125%;
	/* 見出し 2 の左端装飾用罫線の太さ・線種・色を設定してください */
	/* 見出し 2 の行送りを設定してください */
  line-height: 1.4;
	border: 1px solid #FFFFFF;
	padding: 0.3em 5px 0.3em 10px;
	margin: 0;
}

h3 {
	/* 見出し 3 のジャンプ率を設定してください */
  font-size: 125%;
	/* 見出し 3 の上下マージンを設定してください */
  margin-top: 0;
	margin-bottom: 0.5em;
	padding-top: 0.5em;
	padding-bottom: 0.2em;
	border-bottom: 1px solid #A60053;
}

h4 {
	/* 見出し 4 のジャンプ率を設定してください */
  font-size: 110%;
	/* 見出し 4 の上下マージンを設定してください */
  margin-top: 0;
	margin-bottom: 0;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	color: #000099;
}

h5 {
	/* 見出し 5 のジャンプ率を設定してください */
  font-size: 105%;
	/* 見出し 5 の上下マージンを設定してください */
  margin-top: 0.3em;
	margin-bottom: 0.2em;
	padding-left: 0.5em;
	border-left: 7px solid #CCCCCC;
}

h6 {
	/* 見出し 6 のジャンプ率を設定してください */
  font-size: 100%;
	/* 見出し 6 の上下マージンを設定してください */
  margin-top: 0;
	margin-bottom: 0;
	text-decoration: underline;
	line-height: 1.7em;
	color: #333333;
}

.hissu	{
	color: #FF0000;
	font-weight: bold;
}

#fontsmall	{
	font-size: 85%;
}

/* ---------------------------------------------------------------- *
	レイアウト
 * ---------------------------------------------------------------- */
.container {
	margin: 0px auto;
	width: 770px;
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}

#main .container	{
	background: #FFFFFF;
	padding-bottom: 15px;
}

#kojinjoho	{
	padding: 7px 10px;
	margin-right: 70px;
	margin-left: 70px;
	border: 1px solid #999999;
}

.kanryou	{
	margin-left: 40px;
	margin-right: 50px;
}

#header	{
	height:	75px;
	background: url(bgheader.gif) no-repeat bottom;
}

#footer	{
	height:	75px;
	background: url(bgfooter.gif) no-repeat center -1px;
}

#guide	{
	text-align: right;
	padding-right: 30px;
}

/* ---------------------------------------------------------------- *
	フォーム
 * ---------------------------------------------------------------- */
/* First, some basic resets, body styles, etc. */
fieldset, form, label, legend
{border: 0; margin: 0; outline: 0; padding: 0;
background: transparent; vertical-align: baseline;}

form	{
	padding: 5px 50px;
	margin: 20px;
}

fieldset {
	clear: both;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
}

legend {
	padding: 0;
}
* html legend {margin-left: -7px;} /* ie6 */
*+html legend {margin-left: -7px;} /* ie7 */

form ul	{
	list-style: none;
	margin: 0px;
	padding: 5px 0px;
}

form li	{
	padding: 3px 0;
	clear: both;
	margin: 1px 0px;
}

form label {
	float: left;
	width: 8.5em;
	padding-right: 10px;
	text-align: right;
	line-height: 1.7em;
}

form input,
form textarea	{
	border: 1px solid #999999;
	width: 300px;
	margin: 2px;
}

form input#feild06,
form select	{
	border: 1px solid #999999;
	margin: 2px;
	width: 6em;
}

form select#feild00	{
	border: 1px solid #999999;
	margin: 2px;
	width: 30em;
}


form input:focus,
form select:focus,
form textarea:focus {
	border:1px solid #3399CC;
	background:#e3f1f1;
}

#button-send	{
	margin-top: 5px;
}


