/* ■■■■ フォーム周り ■■■■ */
select {
width : 100%;
height : 36px;
}
textarea {
    width : 90%;
    margin-left: 5%;
    margin-right: 5%;
    }
input {
    width : 90%;
    margin-left: 5%;
    margin-right: 5%;
    }
input.trans{
color:#ffffff;
margin-right : auto;
margin-left : auto;
margin-top : 5px;
margin-bottom : 10px;
height : auto;
width : 80%;
height : auto;
text-align : center;
padding : 5px 5px 8px 5px;
border-radius : 8px;
-webkit-border-radius : 8px;
   background: rgb(87,91,96); /* Old browsers */
   background: -moz-linear-gradient(top, rgba(87,91,96,1) 0%, rgba(33,33,33,1) 100%); /* FF3.6+ */
   background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(87,91,96,1)), color-stop(100%,rgba(33,33,33,1))); /* Chrome,Safari4+ */
}

/* ■■■■ラジオボタンラベル化（チェックボックス含む）■■■■ */

input.radio {
     display:inline-block;
     width:100%;
     height:auto;
     vertical-align:top;
     }
/*
input[type="radio"] {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
}

input[type="checkbox"] {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
}
*/

label.radiolabel {
     display:inline-block;
     width:100%;
     height : 38px;
     font-size: 16px;
     color:#ffffff;
     line-height:35px;
     background-color : #190a00;
     border-bottom: solid 1px #353535;
     }