@charset "shift_jis";



body {
	font-size: 80%;
	line-height: 2;
	color: #000000;
	background-image: url(../images/bg.gif);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-color: #EEEEEE;
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
}

input,textarea,select {
	font-size: 1em;
}

form {
	margin: 0px;
}



/*リンク設定（全般）
---------------------------------------------------------------------------*/
a {
	color: #0000ff;
}

a:hover {
	color: #41cee2;
	text-decoration: none;
}



/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	text-align: left;
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}



/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	background-color: #FFFFFF;
}



/*ヘッダー（サイトロゴなどが入っているHP最上部のブロック）
---------------------------------------------------------------------------*/
#header {
	height: 84px;
	width: 100%;
	position: relative;
}

/*h1タグ設定*/
#header h1 {
	font-size: 10px;	/*文字サイズ*/
	line-height: 20px;
	font-weight: normal;
	color: #41cee2;		/*文字色*/
	position: absolute;
	left: 8px;			/*ヘッダーに対して左から8pxの位置に配置*/
	top: 0px;			/*ヘッダーに対して上から0pxの位置に配置*/
	z-index:1;			/*ロゴに重なった時にこちらが上に表示されるように*/
}

/*サイト名ロゴ画像*/
#header #logo {
	position: absolute;
	top: 10px;			/*ヘッダーに対して上から10pxの位置に配置*/
	left: 0px;			/*ヘッダーに対して左から0pxの位置に配置*/
}

/*階層
------------------------------------------------------------------*/
#kai {
	clear: both;
	margin:0px 0px 5px 15px;
}

/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 650px;
	padding-top: 20px;
	padding-bottom: 50px;
	display: inline;
	margin-right: 16px;
}

/*トップページだけメインコンテンツ上の余白をゼロにする設定*/
#toppage #main {
	padding-top: 0;
}

/*段落タグの余白設定*/
#main p {
	padding: 0px 0px 0px 2px;
}

/*h2タグ設定（基本カラー）*/
#main h2 {
	font-size: 100%;
	font-weight: normal;
	line-height: 30px;
	padding-left: 30px;
	color: #000000;							/*文字色*/
	background-color: #41cee2;				/*背景色*/
	background-image: url(../images/h2bg1.gif);/*ハートの背景画像*/
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
	background-position: left center;		/*背景画像を左側、上下中央に配置*/
	margin:0px 0px 10px 0px;
}

/*h2タグ設定（アクセントカラー）*/
#main h2.h2bg2 {
	background-color: #000000;				/*背景色*/
	background-image: url(../images/h2bg2.gif);/*ハートの背景画像*/
	background-repeat: no-repeat;
	background-position: left center;
}

/*h2タグ設定（基本カラー）*/
#main h3 {
	font-size: 100%;
	line-height: 30px;
	padding-left: 2px;
	color: #127e7b;							/*文字色*/
	margin:10px 0px 0px 0px;
}

/*h2タグ設定（基本カラー）*/
#main h4 {
	font-size: 100%;
	line-height: 30px;
	padding-left: 2px;
	color: #2ba24f;							/*文字色*/
	margin:10px 0px 0px 0px;
}

#main li {
	font-size: 100%;
	padding-left: 2px;
}

#main a {
	color: #0000ff;	/*メニューの文字色*/
	font-weight: bold;
}


/*サイドコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#side {
	float: left;
	width: 200px;
	padding-top: 5px;
	padding-bottom: 50px;
	display: inline;
	margin-left: 16px;
}

/*h4見出しタグ設定*/
#side h2 {
	font-size: 100%;
	color: #1a93a4;		/*文字色*/
	border-bottom: 3px double #1a93a4;	/*下線の設定*/
	text-align: center;
}

/*段落タグの余白設定*/
#side p {
	padding-top: 0.5em;
	padding-bottom: 1em;
}



/*サイドメニュー
---------------------------------------------------------------------------*/
ul.sidemenu {
	margin-top: 1px;
	margin-bottom: 1em;
}

ul.sidemenu li {
	margin-bottom: 1px;
}

ul.sidemenu a {
	color: #000000;				/*文字色*/
	text-decoration: none;		/*リンクの下線を消す*/
	background-color: #41cee2;	/*背景色*/
	display: block;
	width: 198px;
	text-align: center;			/*センタリング*/
	border: 1px solid #41cee2;	/*背景色と同じにしてあるので分かりませんがこの色を変えると枠線が出ます*/
	padding-top: 5px;
	padding-bottom: 5px;
}

ul.sidemenu a:hover {
	color: #41cee2;				/*カーソルオーバー時の文字色*/
	background-color: #FFFFFF;	/*背景色*/
	border: 1px solid #41cee2;	/*枠線設定*/
}



/*フッター（コピーライトなど入っているHP最下部ブロック）
---------------------------------------------------------------------------*/
#footer {
	font-size: 11px;		/*文字サイズ*/
	line-height: 1.4;		/*行間*/
	text-align: center;		/*センタリング*/
	clear: both;
	width: 100%;
	border-top: 1px solid #EEEEEE;	/*上に入れているライン*/
	padding-top: 10px;
	padding-bottom: 10px;
}



/*------------- カウンタ-------------*/
.count {
display: none;
}



/*------------- Hr　　区切り線-------------*/

hr {
         color: #00cccc;
         height: 1px;
         text-align: center;
         margin:10px 0px 10px 0px;
      }

/*判定
---------------------------------------------------------------------------*/
.tai1 {
	background: #edfefe;	
	line-height: 40px;
}
.tai2 {
	background: #ffffff;	
	line-height: 40px;
}

/*-------------------- テーブル--------------------*/
.tb1 table {
width: 500px;
border: 1px #000000;
border-collapse: collapse;
}

.td1 {
width:430px;
font-size:90%;
border-top: 1px #000000 solid;
border-right: 1px #000000 solid;
border-bottom: 1px #000000 dashed;/*下線点線*/
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td1-1 {
width:430px;
font-size:90%;
border: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td1-2 {
width:430px;
font-size:90%;
border-top: 1px #000000 dashed;/*上線点線*/
border-right: 1px #000000 solid;
border-bottom: 1px #000000 dashed;/*下線点線*/
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td1-3 {
width:430px;
font-size:90%;
border-top: 1px #000000 dashed;/*上線点線*/
border-right: 1px #000000 solid;
border-bottom: 1px #000000 solid;
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td2 {
width: 70px;
font-size:90%;
border-top: 1px #000000 solid;
border-right: 1px #000000 solid;
border-bottom: 1px #000000 dashed;/*下線点線*/
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td2-1 {
width: 70px;
font-size:90%;
border: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td2-2 {
width: 70px;
font-size:90%;
border-top: 1px #000000 dashed;/*上線点線*/
border-right: 1px #000000 solid;
border-bottom: 1px #000000 dashed;/*下線点線*/
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td2-3 {
width: 70px;
font-size:90%;
border-top: 1px #000000 dashed;/*上線点線*/
border-right: 1px #000000 solid;
border-bottom: 1px #000000 solid;
border-left: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td3 {
width: 70px;
font-size:90%;
border: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td4 {
width: 280px;
font-size:90%;
border: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}
.td5 {
width: 140px;
font-size:90%;
border: 1px #000000 solid;
padding: 5px 0px 5px 5px;
}

/*------------- 税金情報-------------*/
.tax {
	font-size: 100%;
	font-weight: normal;
	line-height: 30px;
	padding-left: 30px;
	color: #000000;							/*文字色*/
	background-color: #41cee2;				/*背景色*/
	background-image: url(images/h2bg1.gif);/*ハートの背景画像*/
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
	background-position: left center;		/*背景画像を左側、上下中央に配置*/
	margin:100px 0px 0px 0px;
}
