@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
#contact {
  /*=======================================================
    SP用の設定.
  =======================================================*/
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 4px 10px;
  border: 1px solid #A2A2A2;
}

#contact input[type="text"]::-webkit-input-placeholder,
#contact input[type="email"]::-webkit-input-placeholder,
#contact textarea::-webkit-input-placeholder {
  color: #A2A2A2;
}

#contact input[type="text"]:-ms-input-placeholder,
#contact input[type="email"]:-ms-input-placeholder,
#contact textarea:-ms-input-placeholder {
  color: #A2A2A2;
}

#contact input[type="text"]::-ms-input-placeholder,
#contact input[type="email"]::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder {
  color: #A2A2A2;
}

#contact input[type="text"]::placeholder,
#contact input[type="email"]::placeholder,
#contact textarea::placeholder {
  color: #A2A2A2;
}

#contact .form-input {
  display: inline-block;
  padding-left: 26px;
  position: relative;
}

#contact .form-input:not(:last-of-type) {
  margin-right: 20px;
}

#contact input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 0.85em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#contact input[type="radio"] + span {
  display: inline-block;
}

#contact input[type="radio"]:checked + span::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 0.85em;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#contact input[type="radio"]::-ms-expand {
  display: none;
}

#contact input[type="checkbox"] {
  position: absolute;
  top: 0.85em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#contact .chk--email {
  margin-top: 14px;
}

#contact textarea {
  resize: none;
}

#contact select {
  min-width: 160px;
  padding: 4px 22px 4px 12px;
  border: 1px solid #A2A2A2;
}

#contact select::-ms-expand {
  display: none;
}

#contact .sel-wrap {
  display: inline-block;
  position: relative;
}

#contact .sel-wrap::after {
  content: '';
  width: 12px;
  height: 6px;
  background: center/contain no-repeat url("../images/icon_arrow_nav.svg");
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#contact .sel-wrap--know select {
  min-width: 340px;
}

#contact .main {
  padding-top: 50px;
}

#contact .ttl-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: 600;
  color: #F7682F;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #contact .ttl-contact {
    font-size: 2rem;
  }
}

#contact .ttl-contact__img {
  display: inline-block;
  width: 168px;
  margin-right: 16px;
}

#contact .form {
  padding: 50px 0;
  position: relative;
}

#contact .form::after {
  content: '';
  width: 100%;
  height: 1px;
  background: left center/cover repeat-x url("../images/deco_dots_line.svg");
  position: absolute;
  top: 0;
  left: 0;
}

#contact .form-list__item {
  margin-bottom: 50px;
}

#contact .form-list__ttl {
  margin-bottom: 15px;
  font-weight: 500;
}

#contact .form-list__description {
  margin-top: 14px;
  margin-bottom: 15px;
}

#contact .required {
  display: inline-block;
  padding-right: 54px;
  position: relative;
}

#contact .required::after {
  content: '必須';
  padding: 2px 4px 3px;
  background-color: #F7682F;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 1.3em;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #contact .required::after {
    font-size: 1rem;
  }
}

#contact .btn-area--submit {
  padding: 50px 0 48px;
  text-align: center;
}

#contact .btn--submit {
  min-width: 272px;
  padding: 20px;
  background-color: #29C459;
  -webkit-box-shadow: 0 3px 0 #19A545;
          box-shadow: 0 3px 0 #19A545;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  #contact .btn--submit {
    font-size: 1.6rem;
  }
}

#contact .btn--submit::after {
  width: 22px;
  height: 22px;
  right: 42px;
}

#contact .btn--submit:hover {
  background-color: #19A545;
}

#contact .txt--link {
  border-bottom-color: #F7682F;
  color: #F7682F;
}

#contact .footer {
  margin-bottom: 0;
}

#contact.thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 100%;
  min-height: 100vh;
}

#contact.thanks .btn--submit {
  min-width: 428px;
}

@media screen and (max-width: 768px) {
  #contact .form-input:not(:last-of-type) {
    margin-right: 40px;
  }
  #contact input[type="text"],
  #contact input[type="email"],
  #contact textarea {
    padding: 5px 12px;
  }
  #contact .ttl-contact {
    margin-bottom: 20px;
  }
  #contact .ttl-contact__img {
    width: 120px;
    margin-right: 8px;
  }
  #contact .sel-wrap--know {
    width: 106%;
  }
  #contact .sel-wrap--know select {
    width: 100%;
    min-width: auto;
  }
  #contact .form {
    max-width: 89.85%;
    margin: 0 auto;
  }
  #contact .form-list__ttl {
    margin-bottom: 10px;
  }
  #contact .form-list__item {
    margin-bottom: 36px;
  }
  #contact .form-list__description {
    line-height: 1.4;
  }
  #contact .required {
    padding-right: 34px;
  }
  #contact .btn-area--submit {
    padding-top: 0;
    padding-bottom: 0;
  }
  #contact .btn--submit {
    min-width: auto;
    padding: 15px 82px 15px 80px;
  }
  #contact.thanks .main {
    padding-top: 64px;
  }
  #contact.thanks .btn-area--submit {
    padding-bottom: 0;
  }
  #contact.thanks .btn--submit {
    width: 100%;
    min-width: auto;
    max-width: 278px;
    padding: 15px;
    letter-spacing: 0;
  }
  #contact.thanks .btn--submit::after {
    width: 18px;
    height: 18px;
    right: 30px;
  }
}

.thanks {
  /*=======================================================
    SP用の設定.
  =======================================================*/
}

.thanks__header {
  display: none;
}

.thanks__txt-area {
  padding: 50px 0;
  position: relative;
}

.thanks__txt-area::after {
  content: '';
  width: 100%;
  height: 1px;
  background: left center/cover repeat-x url("../images/deco_dots_line.svg");
  position: absolute;
  top: 0;
  left: 0;
}

.thanks__ttl {
  margin-bottom: 50px;
  font-size: 3.2rem;
  font-weight: 600;
  color: #F7682F;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .thanks__ttl {
    font-size: 2rem;
  }
}

.thanks__txt {
  margin-bottom: 50px;
  font-weight: 500;
  text-align: center;
}

.thanks__txt--email {
  font-size: 1.6rem;
}

.thanks .footer {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .thanks__header {
    display: block;
  }
  .thanks__header .header__contact-area {
    display: none;
  }
  .thanks__txt-area {
    max-width: 89.85%;
    margin: 0 auto;
  }
  .thanks__ttl {
    margin-bottom: 40px;
    line-height: 1.4;
  }
  .thanks__txt--email {
    margin-bottom: 62px;
  }
}
/*# sourceMappingURL=contact.css.map */