@charset "UTF-8";
/*----------------------------------------
	お問い合わせフォーム
----------------------------------------*/
.contact-table {
  margin-top: 30px;
  width: calc(100% - 40px);
}
.contact-table tr {
  height: 52px;
}
.contact-table th {
  width: 160px;
  padding: 15px 0;
  vertical-align: top;
}
.contact-table td {
  padding: 15px 0;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .contact-table {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .contact-table,
  .contact-table tbody,
  .contact-table tr,
  .contact-table th,
  .contact-table td {
    display: block;
  }
  .contact-table tr {
    height: auto;
  }
  .contact-table th {
    width: 100%;
    padding-bottom: 0;
  }
  .contact-table td {
    font-size: 1.0666666667em;
  }
}
/*----------------------------------------
	Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

input[type=number],
input[type=password] {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  border: none;
  border-radius: 0;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/*エラー時*/
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=url],
.is-error input[type=number],
.is-error input[type=password],
.is-error textarea {
  border: 1px solid #DF5656;
}

/*  checkbox
------------------------------------*/
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}

input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #ccc;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}

input[type=checkbox] + span:after {
  content: "";
  display: none;
}

input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #007DA9;
  border-right: 3px solid #007DA9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Form Layout */
.input-label {
  display: inline-block;
  padding: 10px 20px 10px 0;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.error-text {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
  color: #DF5656;
  font-weight: bold;
}

.input-field.is-error .error-text {
  display: block;
}

@media screen and (max-width: 767px) {
  .input-label {
    padding: 0;
  }
}
/* プライバシーポリシー
------------------------------------------------------ */
.privacy-check {
  margin-left: 146px;
  margin-right: 40px;
  font-size: 11px;
  font-weight: bold;
  -webkit-transition: color ease-out 0.3s;
  transition: color ease-out 0.3s;
}
@media (any-hover: hover) {
  .privacy-check:hover {
    color: #007DA9;
  }
}

@media screen and (max-width: 767px) {
  .privacy-check {
    max-width: 400px;
    margin-inline: auto;
  }
}
.privacy-box {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 140px);
  max-width: 800px;
  height: 400px;
  padding: 60px 35px 40px;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.privacy-box__body {
  overflow-y: scroll;
  height: 100%;
  padding-right: 35px;
}
.privacy-box__body h2 {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.3125;
}
.privacy-box__body h3 {
  margin-top: 1.6153846154em;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.6153846154;
}
.privacy-box__body h3 + p {
  margin-top: 0;
}
.privacy-box__body p {
  margin-top: 1.6153846154em;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.6153846154;
}

.privacy-box__close {
  position: absolute;
  top: 0;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: none;
  cursor: pointer;
}
.privacy-box__close::before, .privacy-box__close::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 100vmax;
  background: #707070;
  -webkit-transition: background-color ease-out 0.3s;
  transition: background-color ease-out 0.3s;
}
.privacy-box__close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.privacy-box__close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.privacy-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  -webkit-filter: brightness(92%);
          filter: brightness(92%);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

@media screen and (max-width: 767px) {
  .privacy-box {
    padding: 60px 25px 40px 35px;
    width: calc(100% - 40px);
  }
  .privacy-box__body {
    padding-right: 10px;
  }
}
/* 送信ボタン
------------------------------------------------------ */
.form-submit {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  margin: 0;
  width: 100%;
  max-width: 224px;
  padding: 1em;
  border-radius: 100vmax;
  border: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5em;
  line-height: 1;
  text-align: center;
  color: #272727;
  background: #DCD350;
  cursor: pointer;
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
@media (any-hover: hover) {
  .form-btn:hover {
    background: #CDE4E4;
  }
}
.form-btn[disabled] {
  color: #fff;
  background: #ccc;
  cursor: default;
}

/* 送信完了画面
------------------------------------------------------ */
.thanks {
  padding: 80px 0;
}

.thanks__title {
  color: #7FB9BA;
  font-size: 26px;
  letter-spacing: 0.006em;
  line-height: 1.3076923077;
  text-align: center;
}

.thanks__text {
  margin-top: 25px;
  letter-spacing: 0.01em;
  text-align: center;
}

.thanks__back {
  margin-top: 52px;
  text-align: center;
}

.thanks__btn {
  display: inline-block;
  min-width: 253px;
  padding: 20px 40px;
  border-radius: 100vmax;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.007em;
  line-height: 1;
  text-align: center;
  background: #DCD350;
}
@media (any-hover: hover) {
  .thanks__btn:hover {
    letter-spacing: 0.05em;
    background: #CDE4E4;
  }
}/*# sourceMappingURL=contact.css.map */