@charset "utf-8";

/*-----------------------------------------------------
お問い合わせ（ご相談フォーム） CSS
-----------------------------------------------------*/

/*-----------------------------------------------------
container
-----------------------------------------------------*/

#container {
	width: 100%;
	height: 100%;
	padding: 0 0 65px 0;
	position: relative;
	z-index: 0;
}

#form_waku {
	padding-bottom: 60px;
}

form {
	width: 960px;
	margin: 0px auto;
	padding: 20px;
	font-size: 14px;
}

form h2 {
	background: url(../img/h2_contact.gif) no-repeat left top;
	width: 560px;
	height: 40px;
	white-space:nowrap;
	overflow:hidden;
	text-indent:100%;
}

form div {
	padding: 10px 20px;
}

form .label {
	float: left;
	width: 200px;
	margin-right: 50px;
}

form .label span {
	font-weight: bold;
}

form .input {
	float: left;
}

form .textarea {
	float: left;
}

.line {
	background: url(../img/line.gif) repeat-x left bottom;
	padding-bottom: 20px;
	padding-top: 20px;
}

.privacy textarea {
    border: 1px solid #CCCCCC;
    height: 120px;
    margin: 20px auto;
    padding: 2%;
    width: 90%;
}

.text, textarea, .dropdown {
    border:1px solid #777;
    padding: 5px;
    /* color: #999; */
    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;
}

.submit{
    border:1px solid #777;
    padding: 4px 10px;
    color: #fff;
    cursor: pointer;
    background: #428ec9;
    border-radius: 5px;
	width: 220px;
	height: 40px;
	font-size: 16px;
	font-weight: bold;
     
/* 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;
}

table{
	width: 1140px;
	margin:0 auto;
	border-collapse:collapse;
}
td{
	border:1px solid #ccc;
	padding:5px;
}
td.l_Cel{
	width:25%;
	background-color: #E4E4E4;
	font-weight: bold;
}
p.error_messe{
	margin:5px 0;
	color:red;
}

label {
	display: inline;
	vertical-align: middle;
}

.regular-checkbox {
	display: none;
}

.regular-checkbox + label {
	background-color: #fafafa;
	border: 1px solid #777;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
}

.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked + label {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox:checked + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: #99a1a7;
}


.big-checkbox + label {
	padding: 18px;
}

.big-checkbox:checked + label:after {
	font-size: 28px;
	left: 6px;
}