@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: 13px;
	font-weight: normal;
}

html {
	
	font-size:10px;
	
	/* スクロールバーの強制表示 */
	overflow-y: scroll; /* CSS3 */
	margin-bottom: 1px; height:100%; /* CSS3非対応ブラウザ用 */
	
	/* スクロールバーの色 html/body両方に設定が必要 */
	/* scrollbar-base-color: #FFFFFF; */
	
}

body {
	
	color: #000000;
	font-family: 'MS UI Gothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 16px;
	
	/* スクロールバーの色 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: 30px;
	margin-bottom: 10px;
	padding: 5px;
	text-align: center;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: #DDDDDD;
	*/
}

h1 {
    font-size: 12px;
}


/*--------------------------------------

__contents

--------------------------------------*/

#contents {
}


/*--------------------------------------

__main

--------------------------------------*/

#form {
	width: 780px;
	margin: 20px auto 40px;
	padding: 10px;
	color: #333333;
	background: #FDFDFD;
	border: 1px solid #CCCCCC;
}

#form h2 {
	margin-bottom: 10px;
    text-align: center;
}

#main {
	background: #FFFFFF;
	padding-bottom: 20px;
}

/* テーブル全体の表示 */
table.question {
	width:100%;
	margin: 0px auto;
}

table.question th {
	padding: 10px;
	width: 160px;
	background: #EEEEEE;
	text-align: left;
}
table.question th {
	border-left: 1px solid #DDDDDD;
	font-weight: bold;
}
table.question td { 
	padding: 10px;
	background: #F6F6F6;
	text-align: left;
	border-right: 1px solid #DDDDDD;
}

table.question tr.combi th,
table.question tr.combi td { 
	border-left : 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
}

table.question optgroup { 
	font-weight: bold;
}
#form .send { 
	text-align: left;
	padding: 60px;
}

/* エラー時の表示 */
table.question .error_coution,
table.question .error_caution {
	color:#FF0000;
	font-size: 12px;
}

/* submitボタンエリア */

div.question_submit {
	text-align:center;
	margin:20px 0px;
}

input,select,textarea {
    border: 1px solid #CCCCCC;
}
div.question_submit input.button {
	width: 260px;
	padding: 10px;
	font-size: 26px;
	border: 1px solid #333333;
	background: #181945;
	color: #FFFFFF;
}

div.question_submit input:hover {
    cursor: pointer;
    background: #46476A;
}

