/* CSS Document */
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable tr{
	margin-bottom: 10px;
}
table.formTable td{
	padding:10px;
	padding-top: 5px;
}


#formWrap{
	max-width: 700px;
	margin-left: 60px;
	padding-left: 40px;
	border-left: solid 1px #555555;
	margin-top: 20px;
	margin-bottom: 20px;
}

input[type=text] {
	font-size: 86%;
	border: none;
	background-color: #e6e6e6;
	height: 40px;
	padding-top: 5px;
	padding-right: 2%;
	padding-bottom: 5px;
	padding-left: 4%;
	width: 100%;
}
input[name=btn_confirm],
input[name=btn_submit],
input[name=btn_back] {
	margin-top: 10px;
	padding: 5px 20px;
	font-size: 100%;
	color: #fff;
	cursor: pointer;
	border: none;
	box-shadow: 0 3px 0 #2887d1;
	background: #4eaaf1;
}
input[name=btn_back] {
	margin-right: 20px;
	box-shadow: 0 3px 0 #777;
	background: #999;
}
.element_wrap {
	display: block;
	clear: both;
	margin-bottom: 10px;
	padding: 10px 0;
	text-align: left;
}

.element_wrap p {
	display: block;
	font-size: 1em;
	margin:  0;
	text-align: left;
}

textarea{
	background-color: #e6e6e6;
	width: 100%;
	height: 100%;
    resize: vertical;
}


/* チェックボックスのアイコン */

input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: #333;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* チェックボックスのアイコンここまで */


label {
	margin-bottom: 10px;
	font-weight: normal;
	width: 100%;
	vertical-align: top;
}

label[for=gender_male],
label[for=gender_female],
label[for=gender_mid],
label[for=agreement] {
	margin-right: 10px;
	width: auto;
	font-weight: normal;
}

input[type=radio] {
display: none; /* ラジオボタンを非表示にする ★★★重要 */
}
input[type="radio"]:checked + label {
background: #ddf0ff;/* マウス選択時の背景色を指定する */
color: #333; /* マウス選択時のフォント色を指定する */
}
.label:hover {
background-color: #DDD; /* マウスオーバー時の背景色を指定する */ 
}
.label {
display: block;	/* ブロックレベル要素化する */ 
float: left;	/* 要素の左寄せ・回り込を指定する */ 
margin: 10px;	/* ボックス外側の余白を指定する */
width: auto;	/* ボックスの横幅を指定する */
height: 45px;	/* ボックスの高さを指定する */
padding-left: 10px;	/* ボックス内左側の余白を指定する */
padding-right: 10px;	/* ボックス内御右側の余白を指定する */
color: #000;	/* フォントの色を指定 */
text-align: center;	/* テキストのセンタリングを指定する */
line-height: 45px;	/* 行の高さを指定する */
cursor: pointer;	/* マウスカーソルの形（リンクカーソル）を指定する */
border: 2px solid #ddf0ff;/* ボックスの境界線を実線で指定する */
border-radius: 5px;	/* 角丸を指定する */
}

/* ラジオボタンカスタム END */
textarea[name=contact], textarea[name=adrs] {
	width: 96%;
	height: 100px;
	font-size: 1em;
	border: none;
	border-radius: 3px;
	background: #ddf0ff;
	padding-top: 5px;
	padding-right: 2%;
	padding-bottom: 5px;
	padding-left: 2%;
}
.error_list {
	padding: 10px 30px;
	color: #ff2e5a;
	font-size: 86%;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}
.pclear {
	clear: both;
}


/*ここからレスポンシブ*/
@media(max-width : 1000px ){
	
#formWrap{
	width: 100%;
	margin-left: 0px;
	padding-left: 0px;
	border-left: none 1px #F9F9F9;
	margin-top: 20px;
	margin-bottom: 20px;
}
	
	
table.formTable th, table.formTable td{
	display: block;
	text-align: left;
}
	
}

