@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/*----------------------------------------
サイト共通 スタイルシート
----------------------------------------*/
.illegal {
  font-size: var(--size16px);
}
@media screen and (max-width: 589px) {
  .illegal {
    padding: var(--size48px) 0 6rem;
  }
}
@media screen and (min-width: 900px) {
  .illegal {
    padding: 16rem 0 20rem;
  }
}

@media screen and (max-width: 899px) {
  .widthHalf {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .widthHalf {
    width: 50%;
  }
}

/* フォーム
---------------------------------------------- */
@media screen and (max-width: 899px) {
  #contactForm {
    margin-bottom: var(--size64px);
  }
}
@media screen and (min-width: 900px) {
  #contactForm {
    margin-bottom: var(--size16px);
  }
}
#contactForm input,
#contactForm textArea {
  border-radius: 5px;
}
#contactForm .contactTable {
  width: 100%;
  margin-bottom: var(--size48px);
}
@media screen and (min-width: 590px) {
  #contactForm .contactTable tr th,
  #contactForm .contactTable tr td {
    padding: 1em;
  }
}
#contactForm .contactTable tr th {
  font-size: var(--size18px);
  font-weight: bold;
  color: var(--colorMain);
  text-align: left;
}
@media screen and (max-width: 589px) {
  #contactForm .contactTable tr th {
    display: block;
  }
}
@media screen and (min-width: 590px) and (max-width: 899px) {
  #contactForm .contactTable tr th {
    font-size: var(--size16px);
  }
}
@media screen and (min-width: 590px) {
  #contactForm .contactTable tr th {
    padding: 1.75rem var(--size18px) var(--size18px);
    display: table-cell;
    width: 30%;
  }
}
#contactForm .contactTable tr th.contactDetail {
  vertical-align: middle;
}
#contactForm .contactTable tr th .requiredIcon {
  position: relative;
}
#contactForm .contactTable tr th .requiredIcon:after {
  position: absolute;
  content: "必須";
  display: inline-block;
  background-color: var(--colorTextCaution);
  color: var(--colorTextSub);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3rem;
  font-size: var(--size12px);
  padding: 0.375rem;
  line-height: 1;
}
#contactForm .contactTable tr th .caution {
  display: block;
  font-size: var(--size12px);
}
@media screen and (min-width: 590px) {
  #contactForm .contactTable tr th .caution {
    margin-top: var(--size16px);
  }
}
#contactForm .contactTable tr td {
  font-size: var(--size16px);
}
@media screen and (max-width: 589px) {
  #contactForm .contactTable tr td {
    display: block;
    padding: 0.5em 0 1.5em;
  }
}
@media screen and (min-width: 590px) {
  #contactForm .contactTable tr td {
    display: table-cell;
    width: 70%;
    padding: 1.5rem 1rem;
  }
}
#contactForm .contactTable tr td label.error {
  display: block;
  font-size: var(--size14px);
  color: var(--colorTextCaution);
  margin: 0.625rem 0;
}
#contactForm .contactTable tr td input,
#contactForm .contactTable tr td textarea,
#contactForm .contactTable tr td select {
  padding: 0.625rem;
  border: 1px solid #AAAAAA;
}
#contactForm #privacyText {
  font-size: var(--size16px);
  text-align: center;
  margin-bottom: var(--size20px);
}
#contactForm #privacyText a {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
}
#contactForm #privacyText a:hover {
  text-decoration: none;
  opacity: 1;
}
#contactForm #privacy {
  display: block;
  font-size: var(--size16px);
  text-align: center;
  margin: 0 0 3rem 0;
  position: relative;
}
#contactForm #privacy input {
  vertical-align: 0;
  margin-right: var(--size16px);
}
#contactForm #privacy label.error {
  position: absolute;
  top: var(--size24px);
  color: #DE0517;
}
#contactForm #assignment {
  font-size: var(--size16px);
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 899px) {
  #contactForm .linkBtnBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/* メール送信完了画面
---------------------------------------------- */
#resultWrap h2 {
  font-size: var(--size18px);
  font-weight: bold;
  margin-bottom: var(--size40px);
}
#resultWrap p {
  font-size: var(--size16px);
}
#resultWrap > p {
  margin-bottom: 1.875rem;
}
#resultWrap #contactAddress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 589px) {
  #resultWrap #contactAddress {
    margin-bottom: var(--size48px);
  }
}
@media screen and (min-width: 590px) {
  #resultWrap #contactAddress {
    margin-bottom: 5.5rem;
  }
}
#resultWrap #contactAddress p {
  margin-right: var(--size16px);
}
#resultWrap #contactAddress a {
  font-size: var(--size16px);
}/*# sourceMappingURL=contact.css.map */