@charset "UTF-8";
#main {
  overflow: visible;
}

/* ▼▼▼ お問い合わせ フォーム
======================================================*/
.cleanness_contents {
  width: min(100%, 1008px);
  padding: 60px 24px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cleanness_contents {
    padding-top: 32px;
  }
}

a.txt_link {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
}
a.txt_link:hover {
  opacity: 1;
  text-decoration: none;
}

.notes {
  font-size: var(--Body-X-Small);
  margin-top: 8px;
}
.notes.required {
  color: #D33030;
  font-size: var(--Label-Medium);
}

.form .form_wrap {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .form .form_wrap {
    margin-top: 24px;
  }
}

.form_wrap {
  border: 1px solid var(--Line-Primary);
  border-radius: 24px;
  padding: 48px 24px;
}
@media screen and (max-width: 767px) {
  .form_wrap {
    padding: 24px;
  }
}
.form_wrap_inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: repeat(3, 73px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 88px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .step {
    gap: 0 4px;
    margin-bottom: 16px;
  }
}
.step li {
  text-align: center;
  font-weight: 500;
  color: var(--Object-Disabled);
  position: relative;
}
.step li:not(:first-child)::after {
  content: "";
  border-top: 2px solid var(--Line-Primary);
  width: 90px;
  top: 35px;
  right: 100%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .step li:not(:first-child)::after {
    width: 100%;
    top: 23px;
    right: 50%;
  }
}
.step li.now {
  color: var(--Object-Primary);
}
.step li.now span {
  background: var(--Brand-color-Primary);
  color: var(--Object-Primary-Reverse);
}
.step li span {
  background: var(--Background-Primary-Base);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 8px;
  width: 73px;
  aspect-ratio: 1/1;
  color: var(--Object-Disabled);
  font-size: 23px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .step li span {
    width: 48px;
    font-size: 16px;
  }
}

.form_grop {
  display: grid;
  gap: 32px 0;
  border-bottom: 1px solid var(--Line-Primary);
  padding-bottom: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .form_grop {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.form_grop_inner {
  display: grid;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .form_grop_inner {
    gap: 8px 0;
  }
}

.form_item {
  position: relative;
}
.form_item_ttl {
  margin: 8px 0;
}
.form_item_ttl.required::after {
  content: "＊";
  color: #D33030;
  margin-left: 0.5em;
}
.form_item p.error {
  background: url(../img/company/inquiry/icon_error.svg) no-repeat center left/24px;
  padding-left: 32px;
  margin-top: 8px;
  color: #D33030;
  font-size: var(--Label-Small);
  font-weight: 500;
}
.form_item label {
  display: block;
}
.form_item input, .form_item textarea {
  outline: none;
  width: 100%;
  padding: 10px 16px;
  padding-right: 30px;
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  background-color: var(--Background-Secondary);
  font-family: var(--font-family-base);
  font-weight: 500;
}
.form_item input:focus, .form_item textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px var(--Brand-color-Primary) inset;
          box-shadow: 0 0 0 1px var(--Brand-color-Primary) inset;
  border-color: var(--Brand-color-Primary);
}
.form_item input.error, .form_item input .error:focus, .form_item textarea.error, .form_item textarea .error:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px #D33030 inset;
          box-shadow: 0 0 0 1px #D33030 inset;
  border-color: #D33030;
}
.form_item input.is-completed, .form_item textarea.is-completed {
  background-image: url(../img/company/inquiry/icon_completed.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
}
@media screen and (min-width: 768px), print {
  .form_item input.is-completed, .form_item textarea.is-completed {
    background-position: center right 10px;
  }
}
.form_item input::-webkit-input-placeholder, .form_item textarea::-webkit-input-placeholder {
  color: var(--Object-Inactive-object);
}
.form_item input::-moz-placeholder, .form_item textarea::-moz-placeholder {
  color: var(--Object-Inactive-object);
}
.form_item input:-ms-input-placeholder, .form_item textarea:-ms-input-placeholder {
  color: var(--Object-Inactive-object);
}
.form_item input::-ms-input-placeholder, .form_item textarea::-ms-input-placeholder {
  color: var(--Object-Inactive-object);
}
.form_item input::placeholder, .form_item textarea::placeholder {
  color: var(--Object-Inactive-object);
}
.form_item input[type=search].is-completed {
  background-image: none;
}
.form_item input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.form_item input {
  line-height: 1;
  height: 48px;
}
.form_item textarea {
  display: block;
  min-height: 120px;
  resize: vertical;
}
.form_item .select_wrap {
  border: 1px solid var(--Line-Primary);
  background-color: var(--Background-Secondary);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  position: relative;
  max-width: 100%;
}
.form_item .select_wrap::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/company/inquiry/icon_select_arrow.svg) no-repeat center/contain;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 16px;
}
.form_item .select_wrap select {
  background: none;
  border: none;
  width: 100%;
  padding: 0 16px;
  height: 46px;
  text-overflow: ellipsis;
  outline: none;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: var(--font-family-base);
  color: var(--Object-Inactive-object);
  font-weight: 500;
  cursor: pointer;
}
.form_item .select_wrap select::-ms-expand {
  display: none;
}
.form_item .select_wrap select:disabled {
  color: var(--Object-Inactive-object);
}
.form_item button {
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-family-base);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.form_item button.add_address {
  font-weight: 500;
  color: var(--Brand-color-Primary);
  font-size: var(--Label-X-Small);
  text-decoration: underline;
  text-align: left;
}
.form_item button.add_address:hover {
  opacity: 1;
  text-decoration: none;
}

input, textarea, select {
  font-size: 16px;
}

/* チェックボックス、ラジオボタンカスタム */
input[type=checkbox], input[type=radio] {
  display: none;
}
input[type=checkbox] + .check-parts, input[type=radio] + .check-parts {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  position: relative;
  cursor: pointer;
}
input[type=checkbox] + .check-parts::before, input[type=radio] + .check-parts::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid #C7CAD1;
}
@media (hover: hover) {
  input[type=checkbox] + .check-parts:hover::before, input[type=radio] + .check-parts:hover::before {
    border: 1px solid #8BCAF2;
    -webkit-box-shadow: 0 0 0 2px #8BCAF2;
            box-shadow: 0 0 0 2px #8BCAF2;
  }
}
input[type=checkbox] + .check-parts::before {
  background: #fff;
  background-image: url(../img/company/inquiry/icon_check.svg);
  background-size: 14px;
  background-position: top 55% center;
  background-repeat: no-repeat;
  border-radius: 4px;
}
input[type=checkbox]:checked + .check-parts::before {
  border: none;
  background-image: url(../img/company/inquiry/icon_check_wht.svg);
  background-color: var(--Brand-color-Primary);
  border: 1px solid var(--Brand-color-Primary);
}

.eac-input-wrap {
  overflow: hidden;
  width: 100%;
}
.eac-input-wrap .eac-sugg {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 49.5% !important;
  margin-left: -0.4em;
}
.eac-input-wrap .eac-cval,
.eac-input-wrap .eac-domain {
  white-space: nowrap;
  word-break: break-all;
}

.email_info {
  background-color: var(--Background-Secondary);
  border-radius: 10px;
  padding: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .email_info {
    padding: 16px;
  }
}
.email_info_lead {
  line-height: 1.6;
  margin-bottom: 16px;
}
.email_info_item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--Line-Primary);
}
.email_info_title {
  margin-bottom: 4px;
  font-weight: 500;
}
.email_info_note {
  color: #D33030;
  margin-top: 24px;
  font-size: var(--Label-X-Small);
}

.privacy_agree {
  padding: 32px 0 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy_agree {
    padding: 32px 0 24px;
  }
}
.privacy_agree_title {
  font-size: var(--Heading-H5);
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
.privacy_agree_text {
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.6;
}
.privacy_agree .agree_checkbox {
  display: inline-block;
  text-align: center;
  font-weight: 500;
}
.privacy_agree_btn {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .privacy_agree_btn {
    margin-top: 24px;
  }
}

.btn {
  margin: 0 auto;
}
.btn.disabled {
  opacity: 1;
  border-color: var(--Background-Primary-Base);
  color: var(--Object-Disabled);
  background: var(--Background-Primary-Base);
  position: relative;
}
.btn.disabled::before {
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn.disabled::after {
  background-image: url(../img/icon_arrow_disabled.svg);
}

/* ▼▼▼ お問い合わせ 確認画面
======================================================*/
.confirm .form_grop {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.confirm .form_grop .form_item {
  margin-bottom: 16px;
}
.confirm .form_grop .form_item p {
  margin: 8px 0;
  font-weight: normal;
}
.confirm .form_grop .form_item div {
  font-weight: 500;
}

.form_btn_wrap {
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  .form_btn_wrap {
    padding: 24px 0;
  }
}
.form_btn_wrap .btn.back {
  margin-bottom: 16px;
}
.form_btn_wrap .btn.back::after {
  border: none;
  border-right: 1px solid var(--Line-Primary);
  background-position: center left;
  background-image: url(../img/icon_arrow.svg);
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media (hover: hover) {
  .form_btn_wrap .btn.back:hover::after {
    border-color: var(--Brand-color-Primary);
  }
}

/* ▼▼▼ お問い合わせ 送信完了
======================================================*/
@media screen and (min-width: 768px), print {
  .ty #path {
    padding-top: 60px;
  }
}
.ty .cleanness_contents {
  display: grid;
  grid-template-columns: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.ty .cleanness_contents .heading_H1 {
  margin-bottom: 0;
  text-align: center;
}
.ty .cleanness_contents p {
  text-align: center;
}