@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  メールフォーム

---------------------------------*/
.text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}
.text:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.text.w25 {
  max-width: 25rem;
}
.text.w_zip {
  max-width: 25rem;
}
.textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  min-height: 100px;
  resize: vertical;
  padding: 0.4em 0.8em;
  width: 100%;
}
.textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
.check {
  display: none;
}
.check + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
.check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}
.check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em;
}
.check:checked + span::after {
  opacity: 1;
}
label {
  display: block;
  margin: .5rem 0;
}
.radio {
  opacity: 0;
  position: absolute;
}
.radio + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.6em;
  position: relative;
}
.radio + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.radio + span::after {
  -webkit-transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 8px;
}
.radio:checked + span::after {
  opacity: 1;
}
.button {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1em;
  margin: 0;
  padding: 1em 2em;
  text-decoration: none;
}
.button:hover, .button:focus {
  outline: none;
}
.button::-moz-foucus-inner {
  border: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .text.w_zip {
    max-width: 15rem;
  }
}
/*---------------------------------
  エラー
---------------------------------*/
p.is-error {
  display: block;
  flex-basis: 100%;
}
p.is-error span {
  background: #ffdddd;
  color: #cc0000;
  display: block;
  font-size: 12px;
  line-height: 1;
  padding: 5px;
  margin: 10px 0 0;
}
/*---------------------------------
  スタイル
---------------------------------*/
#contact-form {}
#formWrap {
  margin-bottom: 5rem;
}
#formWrap dl {
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 10rem;
  padding: 5rem 2rem;
}
#formWrap dl dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 30%;
}
#formWrap dl dt span {
  background: #DB402A;
  border-radius: .5rem;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  padding: .5rem .5rem;
}
#formWrap dl dd {
  flex-basis: 70%;
}
#formWrap dl dd div:nth-of-type(2) {
  margin-top: 2rem;
}
#formWrap dl dd p:not(.is-error) {
  font-size: 1.3rem;
  margin: .5rem 0;
}
/* 住所 */
#formWrap dl .address .zip {
  display: flex;
  align-items: center;
}
#formWrap dl .address .zip p {
  font-size: 1em;
  margin: 0;
}
#formWrap dl .address .zip input {
  margin-left: 1rem;
}
/* 件名 */
#formWrap dl dd ._subject {
  display: flex;
  align-items: center;
}
#formWrap dl dd ._subject p {
  font-size: 1em;
  flex: 0 0 auto;
  margin: 0;
}
#formWrap dl dd ._subject input {
  margin-left: 1rem;
  flex: 1 0 auto;
  width: auto;
}
#contact-form .submit {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#contact-form .submit #btn_submit {
  background: var(--grd-or);
  display: inline-block;
  max-width: 30rem;
  width: 100%;
}
#contact-form .submit #btn_submit:disabled {
  background: #aaa;
  cursor: auto;
  opacity: .5;
}
#contact-form .submit .back_btn {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #formWrap dl {
    display: block;
    padding: 4rem 1rem;
  }
  #formWrap dl dt {
    margin-bottom: 2rem;
  }
  #formWrap dl dt br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #formWrap dl {
    padding: 3rem 1rem;
  }
  #contact-form .submit .back_btn {
    padding: 1em 1em;
  }
}
/*---------------------------------
  個人情報・テキスト
---------------------------------*/
#contact-form .privacy {
  margin: 2rem auto;
}
#contact-form .privacy .agree {
  text-align: center;
}
section .contentsTxt {
  text-align: center;
}
section .contentsTxt h2 {
  background-color: transparent;
  padding: 0;
}
section .contentsTxt h2::before {
  content: none;
}
section .contentsTxt p {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}