@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 {
	
	background-color: #FFFFFF;
	color: #000000;
	font-family: 'MS UI Gothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 1.2em;
	
	/* スクロールバーの色 html/body両方に設定が必要 */
	/* scrollbar-base-color: #FFFFFF; */
	
}

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: 20px auto 0;
}


/*--------------------------------------

__header

--------------------------------------*/

#header {
	height: 10px;
	margin-bottom: 5px;
	padding: 1px;
	text-align: center;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #FFFFFF;
}

h1 {
	font-size: 1.8em;
}


/*--------------------------------------

__contents

--------------------------------------*/

#contents {
	float: left;
	width: 760px;
	margin-bottom: 10px;
}


/*--------------------------------------

__main

--------------------------------------*/

#main {
	width: 760px;
	margin: 10px auto;
}

#main p {
	margin: 10px 0;
}

/* テーブル全体の表示 */
table.question {
	width:100%;
	border-width:0px;
	margin: 10px auto;
}

table.question th {
	padding: 5px;
	width: 200px;
	background: #EEEEEE;
	text-align: left;
}

table.question td { 
	padding: 5px;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #DDDDDD;
}

/* エラー時の表示 */
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;
}