@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 .contactTable {
  width: 100%;
  margin-bottom: var(--size48px);
}
#contactForm .contactTable tr {
  border-bottom: 1px solid var(--colorBorder);
}
@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);
  padding: 1.75rem var(--size18px) var(--size18px);
  text-align: left;
}
@media screen and (max-width: 589px) {
  #contactForm .contactTable tr th {
    display: block;
  }
}
@media screen and (min-width: 590px) {
  #contactForm .contactTable tr th {
    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(--colorSub);
  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);
  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 1rem 1.875rem;
  }
}
@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;
}

.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 589px) {
  .btnBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 590px) {
  .btnBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 589px) {
  .btnBox .btn01 {
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 590px) {
  .btnBox .btn01 {
    margin: 0;
  }
}
.btnBox .btn01.noSend {
  pointer-events: none;
}
@media screen and (min-width: 590px) {
  .btnBox .btn02 {
    margin: 0 10% 0 0;
  }
}
.btnBox .btn02 span {
  right: 100%;
  left: 8%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* メール送信完了画面
---------------------------------------------- */
#resultWrap .inner h2 {
  font-size: var(--size18px);
  font-weight: bold;
  margin-bottom: var(--size40px);
}
#resultWrap .inner p {
  font-size: var(--size16px);
}
#resultWrap .inner > p {
  margin-bottom: 1.875rem;
}
#resultWrap .inner #contactAddress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 589px) {
  #resultWrap .inner #contactAddress {
    margin-bottom: var(--size48px);
  }
}
@media screen and (min-width: 590px) {
  #resultWrap .inner #contactAddress {
    margin-bottom: 5.5rem;
  }
}
#resultWrap .inner #contactAddress p {
  margin-right: var(--size16px);
}
#resultWrap .inner #contactAddress a {
  font-size: var(--size16px);
}
@media screen and (max-width: 589px) {
  #resultWrap .inner .btn {
    margin-bottom: 4em;
  }
}
@media screen and (min-width: 590px) {
  #resultWrap .inner .btn {
    margin-bottom: 10em;
  }
}
#resultWrap .inner .btn span {
  right: 100%;
  left: 8%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}/*# sourceMappingURL=contact.css.map */