@charset "utf-8";

/*------------------------------------------------------------------------------

CSS Information

URL:		http://pgd.jp/cgi/pgdmailform/pgdmailform.cgi
File name:	style.css
Summary:	base styles
Auther:		Akira Motojima / PGD WORKS

Order of desctiption

__Default_style_set
__container				(div#container)
__header				(div#header)
__contents				(div#contents)
__main					(div#main)
__footer				(div#footer)

------------------------------------------------------------------------------*/

/*--------------------------------------

__Default_style_set

--------------------------------------*/

* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
}

html {
	
	font-size:10px;
	
	/* スクロールバーの強制表示 */
	overflow-y: scroll; /* CSS3 */
	margin-bottom: 1px; height:100%; /* CSS3非対応ブラウザ用 */
	
	/* スクロールバーの色 html/body両方に設定が必要 */
	/* scrollbar-base-color: #FFFFFF; */
	
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0px; /* 複数の異なるブラウザの初期設定値に対応するため、body エレメントのマージンと余白を 0 にすることをお勧めします */
	padding: 0px;
	color: #000000;
    font-size: 1.6em;
	background-image: url(images/back.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #87951b;
}

img { border-width: 0px;}

th td { vertical-align: top;}

/*
a:link{
	color: #444444;
}
a:visited{
	color: #444444;
}
a:hover{
	color: #444444;
}
a:active {
	color: #444444;
}
*/


/*--------------------------------------

__container

--------------------------------------*/

#container {
	width: 760px;
	margin: 0px auto 0;
	background-color: #FFFFFF;
}


/*--------------------------------------

__header

--------------------------------------*/

#header {
	height: 80px;
	padding: 5px;
	text-align: center;
	border-style: solid;
	border-width: 0px 0px 0px 0px;
	border-color: #DDDDDD;
}

h1   {
	margin: 0px; /* マージンの代わりに余白を使用して、エレメントを div の端に接触しない位置に維持することができます */
	font-size: 12px;
	font-weight: normal;
	height: 50px;
	width: 770px;
	background-repeat: no-repeat;
	background-position: center top;
	text-indent: -9999px;
	padding: 0px;
	background-image: url(images/top.gif);
}

h2 {
	background-image: url(images/form_info.gif);
	background-repeat: no-repeat;
	background-position: center top;
	height: 80px;
	width: 760px;
	text-indent: -9999px;
}

/*--------------------------------------

__contents

--------------------------------------*/

#contents {
	float: left;
	width: 760px;
	margin-bottom: 10px;
}


/*--------------------------------------

__main

--------------------------------------*/

#main {
	width: 600px;
	margin: 70px auto 30px auto;
}

#main p {
	margin: 10px 0;
}

/* テーブル全体の表示 */
table.question {
	width:100%;
	border-width:0px;
	margin: 10px auto;
}

table.question th {
	padding: 10px;
	width: 200px;
	background: #475703;
	text-align: left;
	color:#FFFFFF;
	font-weight:bold;
}

table.question td { 
	padding: 10px;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #475703;
}

/* エラー時の表示 */
table.question .error_coution {
	color:#FF0000;
}

/* submitボタンエリア */

div.question_submit {
	text-align:center;
	margin:20px 0px;
}

div.question_submit input.button {
	width: 150px;
}

/*--------------------------------------

__footer

--------------------------------------*/

#footer {
	clear: both;
	height: 20px;
	margin-bottom: 20px;
	border-style: solid;
	border-width: 1px 0px 0px 0px;
	border-color: #DDDDDD;
	font-size: 1.0em;
	text-align:right;
	text-align: right;
}

#footer a:link{
	color: #999999;
	text-decoration: none;
}
#footer a:visited{
	color: #999999;
	text-decoration: none;
}
#footer a:hover{
	color: #999999;
	text-decoration: none;
}
#footer a:active {
	color: #999999;
	text-decoration: none;
}