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

.wpcf7-form .formBox{
  display: none;
}
.wpcf7-form .formBox.show {
  display: block;
}

input, textarea, .wpcf7-select, label {
  cursor: pointer;
}
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="date"],
.wpcf7 textarea, .wpcf7-select {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
	max-width:100%;
  padding: 0.5rem 10px;
  vertical-align: top;
  background-color: #fff;
  border: 1px solid #281A14;
}
.wpcf7-select{
  padding: .8rem 10px;
}
.wpcf7 textarea {
  min-height: 150px;
  max-height: 300px;
  padding: .5rem 10px;
  resize: vertical;
}
.wpcf7-select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.wpcf7 input[type="text"]:hover, .wpcf7 input[type="email"]:hover, .wpcf7 input[type="tel"]:hover, .wpcf7 input[type="date"]:hover,
.wpcf7 textarea:hover, .wpcf7-select:hover, .wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 input[type="date"]:focus, .wpcf7 textarea:focus, .wpcf7-select:focus {
  border: 1px solid #00365F;
	transition: all .5s ease-in-out;
}

.wpcf7-checkbox, .wpcf7-radio {
  display: block;
  position: relative;
	margin-left: -17px;
}


.wpcf7-checkbox input[type="checkbox"]{
  display: none;
}
.wpcf7-checkbox input[type="checkbox"]+.wpcf7-list-item-label{
  display: block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}
.wpcf7-checkbox input[type="checkbox"]+.wpcf7-list-item-label::before{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  background-color: #fff;
  border: 1px solid #281A14;
}
.wpcf7-checkbox input[type="checkbox"]:checked+.wpcf7-list-item-label::after{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
}

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

.wpcf7 input[type="submit"] {
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  user-select: none;
}
.wpcf7-spinner {
	display: none !important;
}
.btnSubmit{
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
	text-align: center;
  vertical-align: middle;
  text-decoration: none;
	color: #fff;
	font-weight:700;
	letter-spacing: .2rem;
	width:70%;
	margin: 50px auto 0;
  padding: 0.7rem 0;
	background: #00365F;
	border:2px solid #00365F;
  border-radius: 4rem;
}
.btnSubmit:after {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
	content: "\f0da";
	vertical-align: middle;
}
.btnSubmit:hover{
	color: #00365F;
	background: #fff;
	opacity: 1;
	transition: all .5s ease-in-out;
}
.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 #dbdbdb;
	border-radius: 1rem;
}
div.wpcf7-mail-sent-ng {
	padding:10px;
	color:#ff3860;
	text-align:center;
	border: 2px solid #dbdbdb;
	border-radius: 1rem;
}
div.wpcf7-validation-errors {
	padding:10px;
	color:#ff3860;
	text-align:center;
	border: 2px solid #dbdbdb;
	border-radius: 1rem;
}

.field:not(:last-child) {
	margin-bottom: 10px;
}
.field.is-horizontal {
  margin: 15px 0;
}
.field-label {
	display: block;
  padding-bottom:5px;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
  .field.is-horizontal {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 15px 0;
	}
	.field-label {
		width:30%;
		margin-right: 10px;
	}
	.field-body {
		width:65%;
	}
	.field-date {
		width:60%;
  }
	.field-tel {
		width:25%;
	}
	.field-num {
		width:25%;
	}
	.field-zip {
		width:15%;
	}
	.btnSubmit{
		width:25%;
	}
}
