@charset "utf-8";




/*********************
	h2
*********************/
h2{
	width:100%;
	max-width:767px;
	margin:0 auto 20px;
}
@media screen and (max-width: 767px){
	h2{
		
	}
}
/*********************
	.contact_area
*********************/

.contact_area{
	width:100%;
	margin:0 auto 100px;
	padding:50px 40px;
	box-sizing:border-box;
	background:#fff;
	border-radius:20px;
}
.contact_area .txt_1{
	width:100%;
	margin:0 auto 20px;
	font-size:2.0rem;
	font-weight:bold;
}
.contact_area .txt_2{
	width:100%;
	margin:0 auto 20px;
	font-size:1.6rem;
	font-weight:bold;
}
.contact_area .txt_2 a{
	text-decoration:underline;
}
.contact_area .txt_2 a:hover{
	text-decoration:none;
}

.contact_area .txt_thank{
	width:100%;
	margin:0 auto 20px;
	font-size:2.0rem;
	font-weight:bold;
	padding:100px 0 100px;
}
@media screen and (max-width: 767px){
	.contact_area{
		width:96%;
		padding:20px 10px;
	}
	.contact_area .txt_1{
		font-size:1.4rem;
	}
	.contact_area .txt_2{
		font-size:1.4rem;
		font-weight:normal;
	}
	.contact_area .txt_thank{
		font-size:1.4rem;
	}

}


input[type="checkbox"] {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  vertical-align: -3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.wpcf7-form-control-wrap {
  position: relative;
}
/*----------------------------------
|- contact
----------------------------------*/
.form__textarea,
.form__text,
.form__email,
.form__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #333333;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴシック Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic",
    YuGothic, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-radius: 5px;
  transition: 0.3s;
}
.form__textarea,
.form__text,
.form__email {
  width: 100%;
  border: 1px solid #cccccc;
  padding: 10px;
  box-sizing:border-box;
}
.form__textarea:not(.wpcf7c-conf):focus,
.form__text:not(.wpcf7c-conf):focus,
.form__email:not(.wpcf7c-conf):focus {
  border: 1px solid #025d91;
  box-shadow: 0 0 4px 0 #025d91 inset;
}
.form__textarea.wpcf7c-conf,
.form__text.wpcf7c-conf,
.form__email.wpcf7c-conf {
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__submit {
  color: #fff;
  background: #333;
  width:44%;
  max-width:360px;
  height:48px;
  line-height:48px;
  padding:0;
  font-size:1.6rem;
  font-weight:bold;
  text-align:center;
  border-radius:50vh;
  cursor: pointer;
}
.form__submit:hover {
  background: #882111;
  transition:.3s;
}
.form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset;
}

@media screen and (min-width: 768px){
  .form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form dt {
    flex-basis: 30%;
    padding: 30px 20px;
    box-sizing:border-box;
    display: flex;
    /*
    align-items: center;
    */
    border-bottom: 1px solid #025d91;
    font-size:2.0rem;
    font-weight:bold;
  }
  .form dd {
    flex-basis: 70%;
    padding: 30px 0;
    border-bottom: 1px solid #025d91;
    font-size:1.6rem;
    font-weight:bold;
  }
  .form dd label {
    margin-right: 10px;
  }
  .form__textarea {
    min-height: 200px;
    box-sizing:border-box;
  }
  .form__text {
    width: 70%;
  }
  .form__email {
    width: 70%;
  }

  .submit-area {
    display: flex;
    justify-content: center;
    margin:40px auto 60px;
    font-size:1.6rem;
    font-weight:bold;
  }
  .submit-area input:not(:first-child) {
    margin-left: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px){
  .form dt {
	font-size:1.4rem;
	font-weight:bold;
	margin:20px auto 10px;
  }
  .form dd {
	font-weight:1.4rem;
	border-bottom:1px solid #000;
	padding-bottom:20px;
  }
  .form dd label {
    margin-right: 5px;
  }
  .form__submit {
    display: block;
    margin:0 auto 10px;
    width:80%;
    font-size:1.4rem;
  }
	.submit-area {
	/*
		display: flex;
		justify-content: center;
		align-items:center;
		*/
		display:block;
		margin:20px auto 0;
		font-size:1.4rem;
		font-weight:bold;
	}
}