@charset "utf-8";
/* CSS Document */



input[type="text"],
input[type="email"],
textarea {
    padding: 0.8em;
    outline: none;
    border: 1px solid #DDD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 16px;
}
textarea {
    width: 80%;
}



#formWrap {
	width:100%;
	margin:0 auto;
	line-height:120%;
	font-size: 16px;
}
table.formTable{
	width:90%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border-bottom: none;
	/*border:1px solid #ccc;*/
	padding:10px;
}
table.formTable th{
	width:25%;
	font-weight:normal;
	background:#f5f5f5;
	text-align:left;
	border-bottom: none;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:100%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
	
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:95%;
	height:40px;
}
}

.button {
  display       : inline-block;
  border-radius : 6%;          /* 角丸       */
  font-size     : 10pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 14px 33px;   /* 余白       */
  background    : #f5f5f5;     /* 背景色     */
  color         : #666;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  border        : 1px solid #999999;    /* 枠の指定 */
}
.button:hover {
  color         : #999999;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}