@charset "UTF-8";

/*フォームデザインリセット
* {
  -webkit-appearance: none;
}*/

/*******************************************************************
*   input
*******************************************************************/

.wrap {
margin:10px;
}

/* 1.5倍に拡大表示 
input[type="radio"],
input[type="chexkbox"] {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}
*/

/*グラデ*/
.text, textarea, .dropdown{
    border:1px solid #777;
    padding: 5px;
    color: #333;
    background: #fff;
     
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#eee),
        to(#fff)
        );
     
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #eee,
        #fff
        );
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffeeeeee,endColorstr=#ffffffff);
    zoom: 1;
}


/*角丸*/
.text, textarea, .dropdown{
    border:1px solid #777;
    padding: 5px;
    color: #333;
    background: #fff;
    border-radius: 5px;
     
    /* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#eee),
        to(#fff)
        );
    -webkit-border-radius: 5px;
     
    /* Firefox */
    background: -moz-linear-gradient(
        top,
        #eee,
        #fff
        );
    -moz-border-radius: 5px;
     
    /* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffeeeeee,endColorstr=#ffffffff);
    zoom: 1;
}

/*ボックスシャドウ*/
.text, textarea, .dropdown{
    border:1px solid #777;
    padding: 5px;
    color: #333;
    background: #fff;
    border-radius: 5px;
     
    /* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#eee),
        to(#fff)
        );
     
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
     
    /* Firefox */
    background: -moz-linear-gradient(
        top,
        #eee,
        #fff
        );
     
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
    /* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffeeeeee,endColorstr=#ffffffff);
    zoom: 1;
}

.title {
font-size:16px;
color:#FF3366;
}

/*submit装飾*/
.submit{
    border:1px solid #777;
    padding: 12px 10px;
    width:100%;
    color: #fff;
    cursor: pointer;
    background: #428ec9;
    border-radius: 5px;
    font-size:16px;
     
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#99c9e5),
        to(#428ec9)
        );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #99c9e5,
        #428ec9
        );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ff99c9e5,endColorstr=#ff428ec9);
    zoom: 1;
}

.submit2 {
    border:1px solid #777;
    padding: 12px 10px;
    width:100%;
    color: #fff;
    cursor: pointer;
    background: #c6e599;
    border-radius: 5px;
    font-size:16px;
     
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#c6e599),
        to(#b7ed59)
        );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #c6e599,
        #b7ed59
        );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffb7ed59,endColorstr=#ffc6e599);
    zoom: 1;
}


/*input装飾*/
input[type=text]:focus {
   border:solid 1px #20b2aa;
}

input[type=text], select {
   outline: none;
}

input[type=text]{
    font-size:18px;}

input[type=tel]{
    font-size:18px;}

textarea[type=text]{
    font-size:18px;}

/*option幅*/
.dropdown {
height:40px;
width:300px;
}