/* CSS Document */

html{
	font-size: 10px;
	/*font-size: 62.5%;*/
}

body {
     font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	 line-height: 1.5;
	 letter-spacing: 0;
	 color: #333333;
}

.clearFix:after,
header:after,
#wrapper:after,
section:after,
footer:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	_zoom: 1;
}

*:first-child+html .clearFix:after,
*:first-child+html header:after,
*:first-child+html #wrapper:after,
*:first-child+html section:after,
*:first-child+html footer:after{ zoom: 1; } /* IE7 */

a,a img,input[type="button"],input[type="submit"],input[type="image"]{
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

header,
article{
	width: 800px;
	margin: 10px auto;
	font-size: 13px;
	font-size: 1.3rem;
}

h2{
	margin: 20px 0;
	padding: 0 0 20px 0;
	font-size: 25px;
	font-size: 2.5rem;
	border-bottom: 3px solid #452B10;
	text-align: center;
}

p{
	padding: 10px 0;
}

table {
	border-right: 1px solid #DECDA0;
	border-top: 1px solid #DECDA0;
}

table th{
	padding: 10px;
	border-left: 1px solid #DECDA0;
	border-bottom: 1px solid #DECDA0;
	text-align: left;
	background-color: #F4EDDF;
}

table td{
	padding: 10px;
	border-left: 1px solid #DECDA0;
	border-bottom: 1px solid #DECDA0;
}

input[type="text"],
textarea{
	padding: 5px;
}

.submit{
		margin: 0px auto;}
		
input[type="submit"]{
	display: block;
	width: 200px;
	margin: 20px auto;
	padding: 10px 0;
	background-color: #073190;
	border-radius: 0.5rem;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 16px;
	font-size: 1.6rem;
}

input[type="submit"]:hover{
	background-color: #DECDA0;
}

footer{
	padding: 20px 0;
	background-color: #F4EDDF;
	border-top: 1px solid #dcb95d;
}

footer p{
	text-align: center;
}



/**************************************************
 Responsive
**************************************************/

@media screen and (max-width: 640px){

header,
article{
	width: 100%;
	margin: auto;
	padding: 0 10px;
}

table th,
table td{
	display: block;
}

input[type="text"],
textarea{
	width: 90%; 
	display: block;
}
	
}