@charset "utf-8";

/*CONTACT*/
.telephone .txt01 {
  font-family: var(--font01);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 100%;
}
.telephone .txt01::before {
  content: "\f095";
  color: var(--color01);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.telephone .txt01 {
  text-align: center;
}
.telephone .txt02 {
  text-align: center;
}
.contact .formTable {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
  border-top: 1px solid #8f8f9d;
}
.contact .formTable td, .contact .formTable th {
  border-bottom: 1px solid #8f8f9d;
  padding: 20px 15px;
}
.contact .formTable th {
  width: 30%;
  text-align: left;
}
.contact .formTable input, .contact .formTable textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #8f8f9d;
  padding: 10px;
}
.contact .formTable .input-h {
  width: 15%;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #8f8f9d;
  padding: 10px;
}
.contact .formTable select {
  padding: 10px 15px;
}
.contact input[type=submit], .contact input[type=reset], .contact input[type=button] {
  display: inline-block;
  color: #fff;
  width: 40%;
  box-sizing: border-box;
  max-width: 200px;
  background-color: var(--color01);
  border: solid 1px var(--color01);
  border-radius: 40px;
  cursor: pointer;
  padding: 15px 20px;
  margin-bottom: 15px;
}
/* ==========================================================================
	PC 1025px -
	========================================================================== */
@media screen and (min-width: 1025px) {}
@media screen and (max-width: 1200px) { /*1200以下*/
}
/* ==========================================================================
	TABLET - 1024px
	========================================================================== */
@media screen and (max-width:1024px) {

}
/* ==========================================================================
	SP - 640px
	========================================================================== */
@media screen and (max-width: 640px) {
  /*CONTACT*/
  .contact {
    max-width: 900px;
    margin: 0 auto;
  }
  .contact .formTable td, .contact .formTable th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .contact .formTable th {
    border-bottom: none;
    padding-bottom: 0;
  }

}