@charset "utf-8";
/* CSS Document */

.btn-form {
    position: relative;
    display: inline-block;
    padding: 15px 10px;
    text-decoration: none;
    color: #FFF !important;
    background: #fd9535;/*�F*/
    border-radius: 4px;/*�p�̊ۂ�*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    font-weight: bold;
    font-size :20px;
    border: solid 2px #d27d00;/*���F*/
    width: 240px;
    text-align: center;
}

.btn-form:active {
    /*�������Ƃ�*/
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

.btn-send {
    display: inline-block;
    padding: 10px 7px;
    text-decoration: none;
    background: #668ad8;/*ボタン色*/
    color: #FFF!important;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
    text-align: center;
    font-size :16px;
    width: 160px;
}

.btn-send:active {
    /*ボタンを押したとき*/
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.btn-cancel {
    display: inline-block;
    padding: 10px 7px;
    text-decoration: none;
    background: #696969!important;/*ボタン色*/
    color: #FFF!important;
    border-bottom: solid 4px #383838;
    border-radius: 3px;
    text-align: center;
    font-size :16px;
    width: 160px;
}
.btn-cancel:active {
    /*ボタンを押したとき*/
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.center-form {
    padding: 20px;
    text-align: center;
}