@charset "UTF-8";
/* フォーム・PC設定
**********************************/

.pc-form-ti {
    font-size: 1.2em;
    margin: 0 0 5px 0;
	font-weight: bold; 
}

.pc-required {
    font-size: 0.65em;
    font-weight: normal;
    color: red;
}

.pc-form {
    font-size: 0.85em;
}

.pc-form input {
    font-size: 1em;
    outline: none;
    border: 1px solid #aaa;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 3px 0 10px 0;
    padding: 3px;
}


.pc-form textarea {
    font-size: 1em;
    outline: none;
    border: 1px solid #aaa;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 3px 0 10px 0;
    padding: 3px;
}



#submit_button {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1em;
    cursor : pointer;
    // 背景色を黒に指定
    background-color: #333;
    // 文字色を白に指定
    color: #fff;
    // submitボタンのを枠を非表示にする
    border-style: none;

}

