@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
/* お問合せページ共通
---------------------------------------------- */
#contact .sectionTitleOrange {
  margin-bottom: 13px;
}

/* お問合せ入力 コンテンツ
---------------------------------------------- */
#form {
  margin-bottom: 100px;
}
#form .sectionTitle {
  margin-bottom: 40px;
}
#form #contactForm ::-webkit-input-placeholder {
  color: #858585;
}
#form #contactForm ::-moz-placeholder {
  color: #858585;
}
#form #contactForm :-ms-input-placeholder {
  color: #858585;
}
#form #contactForm ::-ms-input-placeholder {
  color: #858585;
}
#form #contactForm ::placeholder {
  color: #858585;
}
#form #contactForm .contactTable {
  max-width: 524px;
  width: 100%;
  margin-bottom: 40px;
}
#form #contactForm .contactTable tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
#form #contactForm .contactTable tbody tr:not(:nth-last-of-type(1)) {
  margin-bottom: 32px;
}
#form #contactForm .contactTable tbody tr th {
  font-size: var(--size16px);
  font-weight: 700;
  text-align: left;
}
#form #contactForm .contactTable tbody tr th .requiredIcon::after {
  content: "※必須";
  color: #D82020;
  font-weight: 500;
  font-size: var(--size16px);
  margin-left: 8px;
}
#form #contactForm .contactTable tbody tr td select,
#form #contactForm .contactTable tbody tr td input,
#form #contactForm .contactTable tbody tr td textarea {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid #D3D3D3;
}
#form #contactForm .contactTable tbody tr td select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000000;
}
#form #contactForm .contactTable tbody tr td .required,
#form #contactForm .contactTable tbody tr td .chkselect {
  background: linear-gradient(180deg, rgb(251, 222, 172), rgb(255, 238, 216) 4px);
}
#form #contactForm .contactTable tbody tr td span.validationError {
  display: block;
  color: #D82020;
  margin-top: 4px;
}
#form #contactForm .contactTable tbody tr td .selectBox {
  position: relative;
}
#form #contactForm .contactTable tbody tr td .selectBox::after {
  position: absolute;
  content: "";
  background-image: url("images/selectBox.svg");
  background-size: contain;
  width: 10px;
  height: 8px;
  color: var(--colorMain);
  top: 17px;
  right: 14px;
  pointer-events: none;
}
#form #contactForm .contactTable tbody tr td .caution {
  margin-top: 6px;
  font-size: var(--size12px);
  font-weight: 500;
  line-height: 1.33;
}
#form #contactForm .contactTable tbody tr td .caution a {
  display: inline;
  color: var(--colorLink);
  text-decoration: underline;
}
#form #contactForm .contactTable tbody .privacyBox .caution {
  margin-bottom: 16px;
}
#form #contactForm .contactTable tbody .privacyBox .privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
#form #contactForm .contactTable tbody .privacyBox .privacy input {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
#form #contactForm .contactTable tbody .privacyBox .privacy input:checked {
  background: var(--colorMain);
}
#form #contactForm .contactTable tbody .privacyBox .privacy input:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 12px;
  border-bottom: 4px solid var(--colorTextSub);
  border-left: 4px solid var(--colorTextSub);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#form #contactForm .contactTable tbody .privacyBox .privacy span {
  font-weight: 500;
}

/* ご利用ガイド コンテンツ
---------------------------------------------- */
#guide {
  margin-bottom: 56px;
}
#guide .text {
  margin-bottom: 32px;
}
#guide .text a {
  display: inline;
  color: var(--colorLink);
  text-decoration: underline;
}

/* お電話でのお問合せ コンテンツ
---------------------------------------------- */
#telContact {
  margin-bottom: 80px;
}
#telContact .text {
  margin-bottom: 16px;
}
#telContact .text .accentColor {
  color: #D82020;
}
#telContact .text a {
  display: inline;
  color: var(--colorLink);
  text-decoration: underline;
}
#telContact .text:nth-of-type(2) {
  margin-bottom: unset;
}
#telContact .telBtn {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
}
#telContact .telBtn a {
  color: var(--colorMain);
  font-size: var(--size32px);
  line-height: 1;
}
#telContact .telBtn a svg {
  width: 40px;
  height: 40px;
  color: var(--colorMain);
}

/* お問合せ内容の確認 ページ
---------------------------------------------- */
#contactConfirm #form #contactForm .contactTable {
  margin-bottom: 80px;
}
#contactConfirm #form #contactForm .contactTable td {
  font-weight: 500;
}
#contactConfirm #form #contactForm .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
#contactConfirm #form #contactForm .btnBox .whiteBtn a {
  border: unset;
  color: var(--colorTextMain);
}

/* メール送信完了画面
---------------------------------------------- */
.resultWrap {
  margin-bottom: 80px;
}
.resultWrap .sectionTitle {
  margin-bottom: 24px;
}
.resultWrap h2 {
  font-size: var(--size18px);
  font-weight: bold;
  margin-bottom: 16px;
}
.resultWrap .textWrap {
  margin-bottom: 24px;
}/*# sourceMappingURL=contact.css.map */