@charset "UTF-8";
.wpcf7-form {
  position: relative;
  width: 100%;
  margin: 30px 0;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 32px;
  padding: 0 8px;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #554738;
}
.wpcf7 textarea {
  display: block;
  width: 100%;
  min-height: 150px;
  max-height: 300px;
  padding: 10px;
  resize: vertical;
}

.wpcf7 input[type="text"]:hover, .wpcf7 input[type="email"]:hover, .wpcf7 input[type="tel"]:hover, .wpcf7 textarea:hover, .wpcf7-select:hover,
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 textarea:focus, .wpcf7-select:focus {
	border: 1px solid #554738;
	outline: 0;
}

.wpcf7-select {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: 32px;
  padding-left: 5px;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #554738;
}

.wpcf7-checkbox {
  display: inline-block;
  position: relative;
	margin-top: 7px;
	margin-left: -10px;
	cursor: pointer;
}

.wpcf7-radio {
  display: inline-block;
  position: relative;
	margin-top:7px;
	margin-left:-10px;
	cursor: pointer;
}

.wpcf7-list-item {
	display: block;
}

.wpcf7-file {
  position: relative;
	width: 50%;
  height: 32px;
	margin-top: 5px;
  background-color: #fff;
  border: 1px solid #554738;
}

.wpcf7 input[type="submit"] {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  font-family:'Shippori Mincho', serif;
  text-align: center;
  text-decoration: none;
	width: 120px;
  margin: 40px auto 0;
  padding: 1rem 4rem !important;
  color:#0d0015;
  background: #fff;
  border: 1px solid #554738 !important;
  transition: all .5s ease-in-out;
}
.wpcf7 input[type="submit"]:hover {
  background: #554738;
  opacity:0.7;
}

.wpcf7 .required {color:#ff3860;font-size:80%;}
.wpcf7 span.wpcf7-not-valid-tip {color:#ff3860;font-size:80%;}
div.wpcf7-mail-sent-ok {
	padding:10px;
	text-align:center;
	border: 2px solid #554738;
}
div.wpcf7-mail-sent-ng {
	color:#ff3860;
	padding:10px;
	text-align:center;
	border: 2px solid #554738;
}
div.wpcf7-validation-errors {
	padding:10px;
	color:#ff3860;
	text-align:center;
	border: 2px solid #554738;
}

.field:not(:last-child) {
	margin-bottom: 10px;
}
.field-label {
	display: block;
}
@media screen and (min-width: 480px) { /* ---------------   media (min-width 480px)   --------------- */
	.field.is-horizontal {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 15px 0;
	}
	.field-label {
		width:25%;
		margin-right: 10px;
  }
	.field-body {
		width:75%;
  }
	.field-num {
		width:20%;
  }
	.field-zip {
		width:10%;
  }
}
