
/********************************************
 * form
 ********************************************/
input[type="text"],
input[type="tel"],
input[type="email"] {
	font-size: 15px;
	line-height:30px;
	height:34px;
	color:#555555;
	border:none;
	width:98%;
	text-indent:10px;
	background: #ffffff;
	padding: 2px 0;
	border-radius: 3px; 
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff;));
	background-image: -webkit-linear-gradient(left, #ffffff, #ffffff);
	}

textarea {
	border:none;
	padding: 5px;
	color:#555555;
	width:98%;
	font-size: 15px;
	background: #ffffff;
	border-radius: 3px; 
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
}
select{
	border-radius:0px!important;
	width: 98%;
	font-size:15px;
	height: 30px;
	line-height: 34px;
	text-indent: 5px;
	color: #333333;
	border:1px solid #c5c5c5;
	cursor: pointer;
	background-size:40px 60px;
	background: #f3f3f3;
}
.wpcf7-response-output{
	border-radius: 5px; 
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px;
	background:#ffe9dc;
	border:1px solid #ff4646!important;
	color:#FF0033;
	padding:20px!important;
}
.wpcf7-mail-sent-ok{
	border-radius: 5px; 
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px;
	background:#dcffde;
	border:1px solid #27d177!important;
	color:#22b768;
	padding:20px!important;
}
.wpcf7-list-item{
	margin-left:0px!important;
	padding-left:0px!important;
	padding-right:20px;
	padding-bottom:2px;
}
.p_check .wpcf7-list-item{
	padding-right:0px;
}

input[type=checkbox] {
  display: none;
}

.wpcf7-list-item-label {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 20px 0px 0;
	padding: 8px 8px 8px 42px;
	border-radius: 3px;
	vertical-align: middle;
	cursor: pointer;
}

.wpcf7-list-item-label:hover:after {
  border-color: #5a3e24;
  background: none;
}
.wpcf7-list-item-label:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #ffffff;
	border-radius: 3px;
	content: '';
	background: #ffffff;
}


.wpcf7-list-item-label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  background: none;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  opacity: 1;
}
input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  background: none;
}





/*ボタン*/
input[type="submit"] {
	background: rgb(68,98,37);
	background: -moz-linear-gradient(left,  rgba(68,98,37,1) 0%, rgba(68,98,37,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(68,98,37,1) 0%,rgba(68,98,37,1) 100%);
	background: linear-gradient(to right,  rgba(68,98,37,1) 0%,rgba(68,98,37,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#446225', endColorstr='#446225',GradientType=1 );
	position: relative;
	margin:10px auto;
	color: #ffffff;
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
	display: block;
	border: 1px solid #ffffff;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	font-size: 16px!important;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	line-height: 28px;
	width:280px;
}
input[type="submit"]:hover{
	background: rgb(255,255,255);
	background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
	border:none;
	color:#446225;
	border:1px solid #ffffff;
}

/*送信後フォーム消す場合*/
form.sent .contactform,
form.sent .btn02,
form.sent p{
display:none!important;
}


@media screen and (max-width: 450px) {
input[type="submit"] {
	width: 100%;
}
}