@charset "utf-8";

@media screen and (max-width:767px) {

}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* inputのスタイル　※幅は個別にclassで指定
=============================================================================== */
::placeholder {
  color: #C6C6C6;
}
input[type="text"], textarea, input[type="submit"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="date"], input[type="serch"], input[type="url"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  box-shadow: 0 0 0 1px #ccc inset;
  font-size: 1.6rem;
  height: 45px;
}
input[type="text"]:focus, textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="tel"]:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}
@media screen and (max-width:767px) {
input[type="text"], textarea, input[type="submit"], input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="date"], input[type="serch"], input[type="url"] {
  height: 55px;
  width: 100%;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* textareaのスタイル指定　※高さは個別にclassで指定
=============================================================================== */
textarea {
  border: none;
	border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc inset;
  display: block;
	padding: 10px 15px;
	resize: none;
	width: 100%;
}
textarea:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}

/* radioのスタイル指定
　　<label>
        <input type="radio" name="radio" value="1" />
        <span>
            <span class="radio-text">ラジオボタン1</span>
        </span>
    </label>
=============================================================================== */
input[type="radio"] {
  border: 0;
	clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
input[type="radio"] + span {
  align-items: center;
	cursor: pointer;
  display: inline-flex;
  color: #666;
}
input[type="radio"] + span::before {
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 1em;
  margin-right: 4px;
  width: 1em;
}
input[type="radio"]:checked + span::before {
	border: 0.3em solid rgb(33, 150, 243);
}
input[type="radio"]:checked + span {
	color: rgb(33, 150, 243);
}
input[type="radio"]:focus + span {
	color: rgb(33, 150, 243);
}
input[type="radio"]:focus + span {
	color: rgb(33, 150, 243);
}
input[type="radio"].focus-visible + span .radio-text {
	background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

/* checkboxのスタイル指定
　　<label>
        <input type="checkbox" name="checkbox" value="checkform-item1" />
        <span>
            <span class="checkbox-text">チェックボックス1</span>
        </span>
    </label>
=============================================================================== */
input[type="checkbox"] {
	border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
input[type="checkbox"] + span {
  align-items: center;
  color: #FFF;
  cursor: pointer;
  display: inline-flex;
  position: relative;
}
input[type="checkbox"] + span::before {
  border: 1px solid #FFF;
  border-radius: 3px;
	content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 1em;
  margin-right: 6px;
  width: 1em;
}
input[type="checkbox"]:checked + span::before {
	background-color: rgb(33, 150, 243);
  border: 1px solid rgb(33, 150, 243);
}
input[type="checkbox"]:checked + span::after {
  bottom: 0;
	border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 0.6em;
  left: 0.3em;
  margin: auto;
  position: absolute;
  top: 0;
  transform: translateY(-2px) rotate(45deg);
  width: 0.4em;
}
input[type="checkbox"]:checked + span {
  color: rgb(255, 255, 255);
}
input[type="checkbox"]:focus-visible + span .checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
input[type="checkbox"].focus-visible + span .checkbox-text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

/* selectのスタイル指定　※幅は個別にclassで指定
<div class="form-select-wrap">
    <select>
        <option value="select1">セレクト1</option>
        <option value="select2">セレクト2</option>
    </select>
</div>
=============================================================================== */
.form-select-wrap {
  position: relative;
}
/*
.form-select-wrap::before {
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  bottom: 0;
  content: "";
  height: 8px;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 0;
  transform: rotate(135deg);
  width: 8px;
  z-index: 1;
}
*/
.form-select-wrap::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: auto;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 1;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #ccc inset;
  cursor: pointer;
  height: 45px;
  padding: 10px 15px;
  width: 100%;
  font-size: 1.6rem;
}
select::-ms-expand {
	display: none;
}
select:focus {
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  outline: 0;
}
@media screen and (max-width:767px) {
select {
  height: 55px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* ボタンのスタイル指定　※幅や高さは個別にclassで指定
=============================================================================== */
input[type="submit"], input[type="reset"], input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 0 0 #ccc inset;
  cursor: pointer;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  transition: all  0.3s ease;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
/*  background-color: #F30003;*/
}
input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  outline: 0;
}
.submit-btn-wrap {
 text-align: center;
 width: 100%;
 max-width: 400px;
 margin: 0 auto 50px;
}
.submit-btn-wrap-2button {
 text-align: center;
 width: 100%;
 max-width: 750px;
 margin: 0 auto 50px;
 display: flex;
 justify-content: space-between;
}
.wpcf7-previous, .wpcf7-submit {
  height: 70px !important;
}
.submit-btn-wrap .wpcf7-previous {
  width: 100%;
}
.submit-btn-wrap .wpcf7-submit {
  width: 100%;
}
.submit-btn-wrap-2button .wpcf7-previous {
  width: 48%;
}
.submit-btn-wrap-2button .wpcf7-submit {
  width: 48%;
}
.wpcf7-previous-btn-color1 {
  background-color: #A3A3A3;
  color: #4D4D4D;
}
.wpcf7-previous-btn-color1:hover {
  background-color: #BCBCBC;
  color: #333;
}
.wpcf7-submit-btn-color1 {
  background-color: #CE0003;
  color: #FFF;
}
.wpcf7-submit-btn-color1:hover {
  background-color: #F80003;
}

@media screen and (max-width:767px) {
.submit-btn-wrap {
 text-align: center;
 max-width: 85%;
 margin: 0 auto 50px;
 padding: 0;
}
.submit-btn-wrap-2button {
 text-align: center;
 max-width: 100%;
 margin: 0 0 50px;
 padding: 0;
}
.wpcf7-previous, .wpcf7-submit {
  height: 60px !important;
}
.submit-btn-wrap .wpcf7-previous {
  width: 100%;
}
.submit-btn-wrap .wpcf7-submit {
  width: 100%;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* Contactform7　dl
=============================================================================== */
/*共通*/
.form-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  color: #FFF;
}
.title-form {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
  color: #FFF;
}
.title-form span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.title-form::before {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
.itme-name {
  font-size: 1.3rem;
  display: inline-block;
  width: 125px;
}
.itme-name::before {
  content: "\f152";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 7px;
}
.must {
	display: block;
	background-color: #C00;
	font-size: 1rem;
	color: #FFF;
	border-radius: 1px;
	padding: 5px;
	margin: 0 0 0 0;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	line-height: 1em;
}
.any {
	display: block;
	background-color: #F3F3F3;
	font-size: 1rem;
	color: #333;
	border-radius: 1px;
	padding: 5px;
	margin: 0 0 0 0;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	line-height: 1em;
}

/*デザイン1*/
.form-block dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.form-block dt {
  width: 35%;
  padding: 15px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: #FFF;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  font-weight: 300;
}
.form-block dd {
  width: 65%;
  padding: 15px;
  margin: 0 0 10px 0;
  background-color: #FFF;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #333;
}
.form-block dd ul li:not(:first-of-type) {
  margin-top: 10px;
}
.form-block dd div:not(:first-of-type){
  margin-top: 10px;
}
.form-block dd ul li:not(:first-of-type) {
  margin-top: 10px;
}

@media screen and (max-width:767px) {
.form-wrap {
  width: 100%;
  padding: 30px 10px;
}
.title-form {
  font-size: 2rem;
  margin-bottom: 100px;
}
.title-form::before {
  top: 70px;
  font-size: 3rem;
}
.form-block dl {
  display: block;
}
.form-block dt {
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.form-block dd {
  width: 100%;
  padding: 25px 10px;
  margin: 0 0 20px 0;
  border-bottom: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
}
@media screen and (min-width:768px) and (max-width: 1199px) {
.form-wrap {
  width: 100%;
  padding: 30px 10px;
}
}

.input-style100par {
  width: 100%;
}
.input-style80par {
  width: 80%;
}
.input-style50par {
  width: 50%;
}
.input-style20par {
  width: 20%;
}
.input-style10par {
  width: 10%;
}
.textarea-heright100 {
  height: 100px;
}
.textarea-heright200 {
  height: 200px;
}
.textarea-heright300 {
  height: 300px;
}

/* フォーム画面上部
================================================== */
.contact-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 10px;
}
@media screen and (max-width:767px) {
.contact-wrap {
  padding: 0 10px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap {
  padding: 0 10px;
}
}

/*テキストボックス*/
.contact-wrap__top-text-box {
  border: 3px solid #CCC;
  padding: 50px;
  margin-bottom: 100px;
}
.contact-wrap__top-text-box p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width:767px) {
.contact-wrap__top-text-box {
  margin-bottom: 50px;
  padding: 30px;
}
.contact-wrap__top-text-box p {
  font-size: 1.8rem;
  text-align: left;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap__top-text-box {
  padding: 50px;
  margin-bottom: 50px;
}
.contact-wrap__top-text-box p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.8em;
  text-align: center;
}
}

/*電話ブロック1*/
.contact-wrap__tel-box {
  background-color: #B0A99A;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  margin-bottom: 100px;
  border-radius: 4px;
}
.title-style-telbox1 {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
}
.title-style-telbox1 span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.title-style-telbox1::before {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
.contact-tel-pc1 {
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 2px solid #FFF;
  line-height: 60px;
}
.contact-tel-sp1 {
  width: 100%;
  max-width: 300px;
}
.contact-tel-sp1 a {
  border: 2px solid #FFF;
  line-height: 60px;
  text-align: center;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: block;
  color: #FFF !important;
}
@media screen and (max-width:767px) {
.contact-wrap__tel-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  margin-bottom: 50px;
}
.title-style-telbox1 {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 110px;
}
.title-style-telbox1 span {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.title-style-telbox1::before {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 5rem;
}
.contact-tel-pc1 {
  width: 90%;
  line-height: 60px;
}
.contact-tel-sp1 {
  width: 90%;
}
.contact-tel-sp1 a {
  line-height: 60px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap__tel-box {
  padding: 50px 0;
  margin-bottom: 50px;
}
.title-style-telbox1 {
  font-size: 2.2rem;
  margin-bottom: 130px;
}
.title-style-telbox1::before {
  top: 110px;
  font-size: 4rem;
}
.contact-tel-pc1 {
  width: 100%;
  max-width: 300px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 60px;
}
.contact-tel-sp1 {
  width: 100%;
  max-width: 300px;
}
.contact-tel-sp1 a {
  line-height: 60px;
  font-size: 2.5rem;
  font-weight: 500;
}
}

/*電話ブロック2　※ボタン2*/
.contact-wrap__tel-box2 {
  background-color: #F1F3EA;
  color: #333;
  margin-bottom: 100px;
  padding: 50px;
}
.title-style-telbox2 {
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 150px;
  line-height: 1.5em;
}
.contact-wrap__tel-box2__btn-wrap {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}
.contact-wrap__tel-box2__btn-wrap__block {
  width: 48%;
}
.tel-box2-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-align: center;
  background-color: #82785F;
  color: #FFF;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-pc::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box2-sp a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-sp a::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box2-sp a:hover, .tel-box2-btn a:hover {
  opacity: 0.7;
}
.tel-box2-time {
  text-align: center;
  margin-top: 10px;
}
.tel-box2-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-btn-line a::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 10px;
  font-size: 3rem;
}
@media screen and (max-width:767px) {
.contact-wrap__tel-box2 {
  margin-bottom: 50px;
  padding: 30px 15px;
}
.title-style-telbox2 {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  line-height: 1.5em;
}
.contact-wrap__tel-box2__btn-wrap {
  display: block;
  width: 100%;
  margin: 0;
}
.contact-wrap__tel-box2__btn-wrap__block {
  width: 100%;
}
.contact-wrap__tel-box2__btn-wrap__block:not(:first-of-type) {
  margin-top: 30px;
}
.tel-box2-pc {
  height: 70px;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-pc::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box2-sp a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-sp a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box2-time {
  text-align: center;
  margin-top: 10px;
}
.tel-box2-btn a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box2-btn-line a::before {
  margin-right: 10px;
  font-size: 3rem;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap__tel-box2 {
  margin-bottom: 50px;
  padding: 50px;
}
.title-style-telbox2 {
  font-size: 2.2rem;
  margin-bottom: 100px;
  line-height: 1.8em;
}
.contact-wrap__tel-box2__btn-wrap {
  width: 100%;
  margin: 0;
}
.tel-box2-time {
  text-align: center;
  margin-top: 10px;
}
}

/*電話ブロック3　※ボタン2　アイコン付き　2列*/
.contact-wrap__tel-box3 {
  background-color: #F1F3EA;
  color: #333;
  margin-bottom: 100px;
  padding: 50px;
}
.contact-wrap__tel-box3__btn-wrap3 {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.6);
  padding: 50px;
}
.contact-wrap__tel-box3__btn-wrap__block {
  width: 48%;
}
.tel-box3-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-align: center;
  background-color: #82785F;
  color: #FFF;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-pc::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-sp a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-sp a::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-sp a:hover, .tel-box3-btn a:hover {
  opacity: 0.7;
}
.tel-box3-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-btn-line a::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-time {
  text-align: center;
  margin-top: 10px;
}
.icon-tel3, .icon-line3{
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 150px;
  position: relative;
}
.icon-tel3::before {
  content: "\f87b";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #F27129;
}
.icon-line3::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #00B900;
}
@media screen and (max-width:767px) {
.contact-wrap__tel-box3 {
  margin-bottom: 50px;
  padding: 15px;
}
.contact-wrap__tel-box3__btn-wrap3 {
  display: block;
  width: 100%;
  margin: 0;
  padding: 30px 10px;
}
.contact-wrap__tel-box3__btn-wrap__block {
  width: 100%;
}
.contact-wrap__tel-box3__btn-wrap__block:not(:first-of-type) {
  margin-top: 50px;
}
.tel-box3-pc {
  height: 70px;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-pc::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-sp a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-sp a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-sp a:hover, .tel-box3-btn a:hover {
  opacity: 0.7;
}
.tel-box3-btn a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box3-btn-line a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box3-time {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}
.icon-tel3, .icon-line3{
  font-size: 1.8rem;
  margin-bottom: 100px;
}
.icon-tel3::before {
  top: 60px;
  font-size: 6rem;
}
.icon-line3::before {
  top: 60px;
  font-size: 6rem;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap__tel-box3 {
  margin-bottom: 50px;
  padding: 50px;
}
.contact-wrap__tel-box3__btn-wrap3 {
  width: 100%;
  margin: 0;
  padding: 30px;
}
.tel-box3-time {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}
.icon-tel3, .icon-line3{
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 150px;
  position: relative;
}
}

/*電話ブロック4　※ボタン3　アイコン付き　3列*/
.contact-wrap__tel-box4 {
  background-color: #F1F3EA;
  color: #333;
  margin-bottom: 100px;
  padding: 50px;
}
.contact-wrap__tel-box4__btn-wrap4 {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.6);
  padding: 50px;
}
.contact-wrap__tel-box4__btn-wrap__block {
  width: calc(33.3333333% - 60px / 3);
  margin-right: 30px;
}
.contact-wrap__tel-box4__btn-wrap__block:last-of-type {
  margin-right: 0;
}
.tel-box4-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  text-align: center;
  background-color: #82785F;
  color: #FFF;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-pc::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-sp a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-sp a::before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-sp a:hover, .tel-box4-btn a:hover {
  opacity: 0.7;
}
.tel-box4-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #82785F;
  color: #FFF !important;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-btn-line a::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-time {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}
.icon-tel4, .icon-line4, .icon-other4, .icon-fax4 {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 150px;
  position: relative;
}
.icon-tel4::before {
  content: "\f87b";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #700000;
}
.icon-fax4::before {
  content: "\f1ac";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 900;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #700000;
}
.icon-line4::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #00B900;
}
.icon-other4::before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: #00B900;
}
@media screen and (max-width:767px) {
.contact-wrap__tel-box4 {
  margin-bottom: 50px;
  padding: 15px;
}
.contact-wrap__tel-box4__btn-wrap4 {
  display: block;
  width: 100%;
  margin: 0;
  padding: 30px 10px;
}
.contact-wrap__tel-box4__btn-wrap__block {
  width: 100%;
}
.contact-wrap__tel-box4__btn-wrap__block:not(:first-of-type) {
  margin-top: 50px;
}
.tel-box4-pc {
  height: 70px;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-pc::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-sp a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-sp a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-sp a:hover, .tel-box4-btn a:hover {
  opacity: 0.7;
}
.tel-box4-btn a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-btn-line a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-time {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}
.icon-tel4, .icon-line4 {
  font-size: 1.8rem;
  margin-bottom: 100px;
}
.icon-tel4::before {
  top: 60px;
  font-size: 6rem;
}
.icon-line4::before {
  top: 60px;
  font-size: 6rem;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-wrap__tel-box4 {
  margin-bottom: 50px;
  padding: 50px;
}
.contact-wrap__tel-box4__btn-wrap4 {
  width: 100%;
  margin: 0;
  padding: 30px;
}
.contact-wrap__tel-box4__btn-wrap__block {
  width: calc(33.3333333% - 40px / 3);
  margin-right: 20px;
}
.tel-box4-pc {
  height: 70px;
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-pc::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-sp a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-sp a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-btn a {
  line-height: 70px;
  font-size: 1.9rem;
}
.tel-box4-btn-line a::before {
  margin-right: 10px;
  font-size: 3rem;
}
.tel-box4-time {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}
.icon-tel4, .icon-line4, .icon-other4 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 120px;
}
.icon-tel4::before {
  top: 70px;
  font-size: 6rem;
}
.icon-line4::before {
  top: 70px;
  font-size: 6rem;
}
.icon-other4::before {
  top: 70px;
  font-size: 6rem;
}
}

.contact-wrap__tel-box5 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 50px;
}
.contact-wrap__tel-box5 figure {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.contact-wrap__tel-box5 figure img {
  width: 80px;
  height: auto;
}
.contact-wrap__tel-box5 a:hover {
  opacity: 0.6;
}
.tel-box5-btn--tel {
  border: 1px solid #4682B4;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 60px;
  color: #4682B4;
}
.tel-box5-btn--tel a {
  display: block;
  color: #4682B4 !important;
}
.tel-box5-btn--not-tel {
  border: 1px solid #4682B4;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 60px;
  color: #4682B4;
}
.tel-box5-btn--not-tel a {
  display: block;
  color: #4682B4 !important;
}
.contact-wrap__tel-box5 dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
  margin: 15px auto 0;
}
.contact-wrap__tel-box5 dl dt {
  width: 30%;
  text-align: center;
}
.contact-wrap__tel-box5 dl dt:not(:last-of-type) {
  margin-bottom: 10px;
}
.contact-wrap__tel-box5 dl dd {
  width: 70%;
  text-align: center;
}
.contact-wrap__tel-box5 dl dd:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width:767px) {
.contact-wrap__tel-box5 {
  padding: 30px;
}
.tel-box5-btn--tel {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 60px;
}
.tel-box5-btn--not-tel {
  font-size: 2rem;
  font-weight: 500;
  line-height: 60px;
}
.contact-wrap__tel-box5 dl {
  width: 100%;
}
.contact-wrap__tel-box5 dl dt {
  width: 40%;
  text-align: center;
  font-size: 1.4rem;
}
.contact-wrap__tel-box5 dl dt:not(:last-of-type) {
  margin-bottom: 10px;
}
.contact-wrap__tel-box5 dl dd {
  width: 60%;
  text-align: center;
  font-size: 1.4rem;
}
.contact-wrap__tel-box5 dl dd:not(:last-of-type) {
  margin-bottom: 10px;
}
}
@media screen and (min-width:768px) and (max-width: 1199px) {

}

/* 確認画面
================================================== */
.title-contact-pre {
  font-size: 2.6rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 1px dotted #CCC;
  width: 100%;
}

@media screen and (max-width:767px) {
.title-contact-pre {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}


/* 送信完了画面
================================================== */
.contact-complet-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #FFF;
}
.contact-complet-wrap-top {
  border: 2px solid #FFF;
  padding: 40px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8em;
  margin-bottom: 50px;
  text-align: center;
}
.contact-complet-wrap-bottom p:first-of-type {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.contact-complet-wrap-bottom p:nth-of-type(2) {
  margin-bottom: 100px;
}

@media screen and (max-width:767px) {
.contact-complet-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  padding: 50px 10px;
}
.contact-complet-wrap-top {
  padding: 20px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8em;
}
.contact-complet-wrap-bottom p:first-of-type {
  font-size: 1.5rem;
}
.contact-complet-wrap-bottom p:nth-child(2) {
  margin-bottom: 50px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.contact-complet-wrap {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
}

/* ページ下部のエラー表示
================================================== */
.wpcf7 form .wpcf7-response-output {
    margin: 30px 0;
    padding: 1.5rem;
    border: none;
    text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #FFF;
    color: #A90002;
    border: 1px solid #A90002;
    border-radius: 5px;
}
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #FFF;
    color: #519E68;
    border: 1px solid #519E68;
    border-radius: 5px;
}
span.wpcf7-not-valid-tip {
	margin: 0.5rem 0;
}


/* プライバシーポリシー
============================================================================================================ */
.privacy-frame {
  width: 80%;
  max-width: 1200px;
  height: 200px;
  margin: 0 auto 50px;
  overflow: hidden scroll;
  padding: 20px;
  border: 1px solid #CCC;
  background-color: rgba(255,255,255,1);
  border-radius: 3px;
}
.privacy-frame dl {
  display: block;
}
.privacy-frame dl dt, .privacy-frame dl dd {
  all: initial;
}
.privacy-frame h2 {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.privacy-frame h2 span {
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
}
.privacy-frame dl dt {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #999;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 400;
  display: block;
}
.privacy-frame dl dd {
  font-size: 1.1rem;
  display: block;
}
.privacy-frame dl dd:not(:last-of-type) {
  margin-bottom: 50px;
}
.privacy-frame dl dd ul {
  margin: 1.2em 0;
}
.privacy-btn {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
}
/*
.privacy-btn span {
  transition: all .3s ease-out;
}
.privacy-btn span:hover {
  opacity: 0.5;
}
*/

@media screen and (max-width:767px) {
.privacy-frame {
  padding: 10px;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {

}


/*旧レイアウト
.privacy-wrap {
  color: #333;
  padding: 100px 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.privacy-wrap h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto 50px;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  width: 100%;
}
.privacy-wrap h2 span {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 300;
}
.privacy-wrap dl dd {
  margin-bottom: 50px;
}
.privacy-wrap dl dd ul {
  margin-top: 20px;
  padding-left: 50px;
}
.title-privacy {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 1.3rem;
  font-weight: 400;
}
.title-privacy::before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
.title-privacy span {
  display: block;
  font-size: 2.8rem;
}

@media screen and (max-width:767px) {
.privacy-wrap {
  max-width: 100%;
  margin: 0 0 50px;
  padding: 30px 20px;
}
.privacy-wrap dl dt {
  font-weight: 500;
}
.privacy-wrap h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.privacy-wrap h2 span {
  font-size: 1.3rem;
}
.privacy-wrap dl dd ul {
  margin-top: 20px;
  padding-left: 0;
}
}

@media screen and (min-width:768px) and (max-width: 1199px) {
.privacy-wrap {
  padding: 100px 80px;
  width: calc(100% - 20px);
  max-width: 100%;
  margin: 0 10px;
}
}
*/

