@charset "utf-8";

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

body {
	/*font-family: "Yu Gothic",'ヒラギノ角ゴ Pro W3','メイリオ',Meiryo;*/
	font-family: "Noto Sans Japanese";
	line-height: 1.0;
	letter-spacing: 0;
	color: #222222;
	font-size: 0;
}

.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="reset"],
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:hover img,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="image"]:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}


/**************************************************
 header
**************************************************/
header{}

header h1{
	text-align: center;
	padding: 30px 10px;
	border-bottom: 5px solid #3c8a32;
}



/**************************************************
 contents
**************************************************/
article{
	width: 700px;
	margin: 0 auto;
}

h2{
	font-size: 25px;
	font-size: 2.5rem;
	line-height: 1.4;
	margin: 40px 0;
	text-align: center;
}

p{
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	padding: 0 0 30px 0;
}

table{
	width: 100%;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
}

th{
	font-size: 16px;
	font-size: 1.6rem;
	border-bottom: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	background-color: #F3F3F3;
	padding: 15px;
	text-align: left;
}

td{
	font-size: 16px;
	font-size: 1.6rem;
	border-bottom: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	padding: 15px;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select{
	padding: 5px;
	border: 1px solid #CCC;
}

p span,
th span{
	color: #fafafa;
    background-color: #c5132a;
    margin: 0 10px;
    border-radius: 10.0rem;
    padding: 1px 10px 2px 10px;
    font-size: 1.2rem;
}

.submitBtn{
	padding: 25px 0 40px 0;
	text-align: center;
}

.submitBtn input[type="submit"],
.submitBtn input[type="button"]{
	display: block;
	width: 220px;
	margin: 15px auto 0 auto;
	padding: 10px 0;
	font-size: 16px;
	font-size: 1.6rem;
	background-color: #3c8a32;
	color: #FFFFFF;
	border-radius: 10.0rem;
}


/**************************************************
 Responsive
**************************************************/
@media screen and (max-width: 640px){
	
	
/***** header **********/
header h1{
	padding: 10px 0;
}
	
header h1 img{width: 100px;}
	
	
/***** contents **********/
article{
	width: 100%;
	padding: 10px;
}

h2{
	font-size: 18px;
	font-size: 1.8rem;
	margin: 20px 0;
}

p{
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px 0 20px 0;
}

th,
td{
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px;
}

input[type="text"],
textarea,
select{width: 96%;}

.submitBtn{
	padding: 30px 0;
	text-align: center;
}

.submitBtn input[type="submit"],
.submitBtn input[type="button"]{
	font-size: 14px;
	font-size: 1.4rem;
}
	
	
}