/*問い合わせフォームのCSS*/

.formTable{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.formTable:after{
    clear: both;
	height: 0;
	display: block;
	content: "";
}

.formTable > tbody > tr > th{
    border-top: 1px solid #CCC;
    display: table-cell;
    vertical-align: middle;
    border-bottom: 1px solid #CCC;
    padding: 5px;
    margin: 0;
    font-size: 140%;
    font-weight: 700;
    text-align: left;
    width: 30%;
    border-radius: 0;
    text-align: center;
    background-color: #EEE;
}

.formTable > tbody> tr > td{
    display: table-cell;
    vertical-align: middle;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    width: 70%;
    padding: 5px;
    background-color: #fff;
}

.formTable > tbody> tr > td > input{
    width: 100%;
    height: auto;
    padding: 5px;
}

.formTable > tbody> tr > td > textarea{
    width: 100%;
    height: auto;
    padding: 5px;
}

.sendButton{
    margin-top: 15px;
    text-align: center;
}

.send_b{
    border-radius: 8px;
    padding: 5px 10px;
    border: solid 1px #CCC;
    font-weight: 600;
    background: -webkit-gradient(linear, center top, center bottom, from(#FEFEFE), to(#DEDEDE));
    text-shadow: 0px 2px 0px #FFF;
    font-size: 1.6rem;
    cursor: pointer;
    outline: none;
}

.required{
    font-size: 80%;
    color: #FFF;
    border-radius: 5px;
    background-color: #d42c4e;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    
}

/*フォーム確認ページ*/

.display_center{
    width: 100%;
    margin: auto 0;
}