@charset "UTF-8";
/*
    !!!不要な場合は消してください!!!

    calc + vwの公式
    font-size: calc(A + B * (100vw - C)/D);

    A・・・最小文字サイズ
    B・・・最大文字サイズ – 最小文字サイズ
    C・・・最小画面幅
    D・・・最大画面幅 – 最小画面幅

    適用すれば画面幅によって文字が大小します
*/
/** section copy **/
body {
  font-family: "Noto Serif JP", serif;
}

.js-header .pc .global-nav .nav-list:nth-child(7) .here {
  color: #8fc31f;
  position: relative;
}
.js-header .pc .global-nav .nav-list:nth-child(7) .here::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #8fc31f;
  bottom: -6px;
  left: 0;
}

.contact-title {
  width: calc(100% - 60px);
  max-width: 1000px;
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 4px;
  line-height: 1;
  padding-top: 260px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 1024px) {
  .contact-title {
    font-size: 1.6rem;
    padding-top: 100px;
    margin: 0 auto 40px auto;
  }
}
.contact-title span::before {
  display: none;
}

.tel {
  position: relative;
  display: inline-block;
}
.tel::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #90C41E;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-btn {
  width: 30%;
  min-width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #93C434;
  background-color: #ffffff;
  border-radius: 2px;
  margin: 30px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: solid 1px #93C434;
}
.contact-btn::after {
  content: url(../img/index/arrow.svg);
  position: absolute;
  -webkit-filter: brightness(0) saturate(100%) invert(77%) sepia(10%) saturate(2894%) hue-rotate(35deg) brightness(93%) contrast(86%);
          filter: brightness(0) saturate(100%) invert(77%) sepia(10%) saturate(2894%) hue-rotate(35deg) brightness(93%) contrast(86%);
  top: 1px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.contact-btn:hover {
  background-color: #93C434;
  color: #ffffff;
}
.contact-btn:hover::after {
  right: 20px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
}
.contact-btn input,
.contact-btn a {
  width: 100%;
  text-align: center;
  padding: 12px 48px 12px 24px;
}
.contact-btn a {
  color: #93C434;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-btn a:hover {
  color: #ffffff;
}

.section-contact {
  width: calc(100% - 60px);
  max-width: 800px;
  margin: 0 auto;
}
.section-contact .sub-title-wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .section-contact .sub-title-wrap {
    margin-bottom: 40px;
  }
}
.section-contact .sub-title-wrap .sub-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1.5px;
  margin: 0 0 1em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .section-contact .sub-title-wrap .sub-title {
    font-size: 1.8rem;
  }
}
.section-contact .sub-title-wrap .sub-title::after {
  display: none;
}
.section-contact form {
  margin-bottom: 60px;
}
.section-contact form .table-form {
  width: 100%;
}
.section-contact form .table-form tr {
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .section-contact form .table-form tr {
    display: block;
    border: none;
    padding: 5px 0 10px;
  }
}
.section-contact form .table-form tr:last-child {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .section-contact form .table-form tr:last-child {
    border: none;
  }
}
.section-contact form .table-form tr th {
  width: 25%;
  vertical-align: middle;
  padding: 18px 10px 18px 0;
}
@media screen and (max-width: 1024px) {
  .section-contact form .table-form tr th {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
}
.section-contact form .table-form tr td {
  text-align: left;
  padding: 28px 0;
}
@media screen and (max-width: 1024px) {
  .section-contact form .table-form tr td {
    display: block;
    width: 100%;
    padding: 0;
  }
}
.section-contact form .table-form tr td input {
  width: 100%;
  border: 1px solid #ccc;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #fff;
  font-size: 1.6rem;
  border-radius: 4px;
  padding: 6px;
}
.section-contact form .table-form tr td textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.section-contact form .table-form .item-required::after {
  content: "必須";
  display: inline-block;
  width: auto;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 3px;
  background-color: #f44336;
  padding: 3px 5px 4px;
  margin: -3px 0 0 10px;
}
.section-contact .urgent {
  margin: 20px 0 40px 0;
}

.conform-txt {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}/*# sourceMappingURL=contact.css.map */