﻿@charset "utf-8";


/* CSSは出来る限り必要最低限に留めています。CSSは基本的にシステム側には影響しませんので自由に編集下さい。*/
/*---------------------------------
	CommonCSS [初期化,定義]
---------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;padding:0;
}
ol,ul {
	list-style:none;
}
img{border:0}
/*---------------------------------
	        Base CSS 
---------------------------------*/
a {
	color:#36F;
}
a:hover {
	color:#039;
	text-decoration:none;
}
/* clearfix */
.clearfix:after { content:"."; display:block; clear:both; height:0; visibility:hidden; }
.clearfix { display:inline-block; }

/* for macIE \*/
* html .clearfix { height:1%; }
.clearfix { display:block; }

body{
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


#formWrap {
	width:850px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:14px;
}
#formWrap p{
	margin:10px 0;
	line-height:150%;
}

h1{
	margin:15px 0;
	text-align:center;
	padding:8px 0;
	font-size:16px;
	color:#fff;
	background:#595757;
}
h2{
	margin:20px 0 0;
	padding:5px 0px 4px;
	color:#333;
	font-size:16px;
}

table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #595757;
	padding:10px;
	color:#333;
	line-height:140%;
}
table.formTable th{
	width:30%;
	background:#E6E6E7;
	text-align:left;
}
table.formTable p{
	margin:10px 0;
	padding:0;
}
.require{
	color:#F00;	
}
input[type="text"],input[type="tel"], textarea {
	padding:3px;
	font-size:16px;
	margin:1px 0;
}

table.formTable2{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable2 td,table.formTable2 th{
	width:auto;
}
table.formTable2 th{
	text-align:center;	
}

.totalArea{
	font-size:16px;
	font-weight:bold;
	margin:15px 0 5px;
}
.formBtn{

	border-radius: 5px;
	background: #0053ad;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#0053ad), to(#00438c));
	background: -webkit-linear-gradient(#0053ad, #00438c);
	background: -moz-linear-gradient(#0053ad, #00438c);
	background: -ms-linear-gradient(#0053ad, #00438c);
	background: -o-linear-gradient(#0053ad, #00438c);
	background: linear-gradient(#0053ad, #00438c);
	font-weight: bold;
	color: #FFF !important;
	padding-top: 5px;
	padding-right: 40px;
	padding-bottom: 5px;
	padding-left: 40px;
	border: 1px solid #004896;
	-webkit-box-shadow: #666 0px 0px 2px;
	-moz-box-shadow: #666 0px 0px 2px;
	box-shadow: #666 0px 0px 2px;
	cursor: pointer;
	font-size: 12px;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	display:inline-block;
	margin:20px 0 40px;
}

.agreeArea{
	border:2px solid #999;
	padding:0px;
	margin:10px 0;
	font-size:14px;
}

.taC{
	 text-align:center;	
}
.taR{
	text-align:right;
}
.small{
	font-size:12px;	
}
/*必須エラーメッセージ*/
div.error{
	font-size:13px;
	color:#F00;
	padding:2px 18px;
	margin:0;
	line-height:150%;
	background:url(../js/images/error.gif) no-repeat 0px 5px;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:96%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
	padding:5px;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
table.formTable2 th,table.formTable2 td{
	width:auto;
	display:table-cell;
	padding:2px;
}

input[type="text"],input[type="tel"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:inline-block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}

input.smallInput{
	display:inline-block;
	width:30%;
}
input.smallInput2{
	display:inline-block;
	width:20%;
}


}
