@charset "utf-8";

@media screen and (min-width: 1441px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: calc(100vw / 144.0); /* base width 1440px */
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5); /* base width 375px */
  }
}

/* ==============================
  Safari用
  ============================== */
@supports (-webkit-hyphens:none) {
  :root {
    --zoom-invert: 1;
  }
  html {
    width: 100%;
    font-size: calc((100vw / 144.0) * var(--zoom-invert));
    overflow-x: hidden;
  }
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: block;
  }
  @media screen and (min-width: 1441px) {
    html {
      font-size: calc(10px * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 1440px) {
    html {
      font-size: calc((100vw / 144.0) * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 767px) {
    html {
      font-size: calc((100vw / 37.5) * var(--zoom-invert));
    }
  }
}

/* ==============================
  p-contact
  ============================== */
.p-contact {
  padding: 6.0rem 0 3.6rem;
}
.p-contact__inner {
  display: flex;
  gap: 3.2rem;
}
.p-contact__left {
  width: 40.8rem;
  flex-shrink: 0;
}
.p-contact__title {
  width: fit-content;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 130%;
  opacity: 0.9;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-contact__text {
  margin-top: 4.0rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #393939;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 4.0rem 0 7.0rem;
  }
  .p-contact__inner {
    display: block;
    max-width: 34.2rem;
  }
  .p-contact__left {
    width: 100%;
  }
  .p-contact__title {
    margin-inline: auto;
    font-size: 3.6rem;
    text-align: center;
  }
  .p-contact__text {
    margin-top: 2.0rem;
    font-size: 1.8rem;
    letter-spacing: 0.072rem;
    text-align: center;
  }
}

/* ==============================
  p-personal
  ============================== */
.p-personal {
  padding: 1.6rem 2.4rem;
  background: #EFF1F5;
}
.p-personal__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.072rem;
  color: #111;
}
.p-personal__text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #393939;
}
.p-personal__name {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #111;
}
.p-personal__description {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #393939;
}
.p-personal__description > a {
  text-decoration: underline;
}
.p-personal__description > a:hover {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-personal {
    margin-top: 3.2rem;
    padding: 2.0rem 2.4rem;
  }
}

/* ==============================
  Eloqua
  ============================== */
.elq-form {
  margin-top: 2.0rem;
}
.elq-form .elq-label {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #111;
}
.elq-form .elq-label:has(.elq-required)::after {
  content: "必須";
  position: absolute;
  top: 50%;
  left: calc(100% + 1.0rem);
  width: max-content;
  padding: 0.3rem 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.048rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #B71A1A;
  background: #FFF;
  color: #B71A1A;
  transform: translate(0, -50%);
}
.elq-form .elq-label .elq-required {
  display: none;
}
.elq-form .container-fluid > .row {
  margin-top: 3.2rem;
}
.elq-form .container-fluid > .row:first-child {
  margin-top: 0;
}
.elq-form .field-control-wrapper {
  line-height: 1;
}
.elq-form input,
.elq-form textarea {
  color: #111;
}
.elq-form input,
.elq-form textarea,
.elq-form select {
  border-width: 0.1rem;
  border-style: solid;
  border-radius: 0.4rem;
  border-color: #BDC0C6;
  background-color: #FFF;
}
.elq-form input::placeholder,
.elq-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.30);
}
.elq-form input {
  position: relative;
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
}
.elq-form input[type=checkbox] {
  position: relative;
  width: 2.0rem;
  height: 2.0rem;
  margin-top: 1.2rem;
  appearance: none;
}
.elq-form input[type=checkbox]::after {
  content: "同意します";
  position: absolute;
  top: 50%;
  left: calc(100% + 1.4rem);
  width: max-content;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #111;
  transform: translate(0, -50%);
}
/* .elq-form .LV_valid_field input[type=checkbox] {
  border-color: #0060FB;
  background: #0060FB;
} */
.elq-form .LV_valid_field input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  background: url(/leverage/images/contact/index/icon_elq_check.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}
.elq-form .LV_invalid_field input[type=checkbox] {
  border-color: #B71A1A;
}
.elq-form input[type=checkbox] + label {
  display: none;
}
.elq-form input[type=text], .elq-form input[type=tel], .elq-form input[type=email]  {
  width: 100%;
  padding: 1.2rem 1.6rem;
  box-sizing: border-box;
}
.elq-form input[type=Submit] {
  width: 100%;
  max-width: 34.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 6.0rem auto 0;
  padding: 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5rem;
  box-sizing: border-box;
  outline: none;
  position: relative;
  border: 0.1rem solid #1462AA;
  border-radius: 0.2rem;
  background: #FFF;
  background-image: url(/leverage/images/contact/index/icon_elq_submit_01.png);
  background-size: 2.4rem;
  background-repeat: no-repeat;
  background-position: right 2.4rem center;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
  transition: all ease-out 0.2s;
  color: #1462AA;
}
.elq-form input[type=Submit]:hover {
  cursor: pointer;
  color: #FFF;
  background-color: #1462AA;
  background-image: url(/leverage/images/contact/index/icon_elq_submit_02.png);
}
.elq-form textarea {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  resize: vertical;
  box-sizing: border-box;
}
.elq-form .LV_invalid_field,
.elq-form input.LV_invalid_field:active,
.elq-form input.LV_invalid_field:hover,
.elq-form textarea.LV_invalid_field:active,
.elq-form textarea.LV_invalid_field:hover {
  border-color: #B71A1A;
  appearance: none;
}
.elq-form .LV_valid {
  display: none;
}
.elq-form .LV_invalid {
  color: #B71A1A;
  font-size: 1.2rem;
}
.l-list--check {
  display: block;
}
.elq-item-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  position: relative;
  width: fit-content !important;
  margin-top: 0.8rem;
  padding: 1.2rem 6.5rem 1.2rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.064rem;
  background-image: url(/leverage/images/contact/index/icon_elq_select.png);
  background-repeat: no-repeat;
  background-position: right 2.0rem center;
  background-size: 3.3rem;
  color: rgba(0, 0, 0, 0.30);
  cursor: pointer;
}
.elq-item-select[data-gtm-form-interact-field-id],
.elq-item-select option:not(:first-child) {
  color: #111;
}
@media screen and (max-width: 767px) {
  .elq-form {
    margin-top: 1.6rem;
  }
  .elq-form input[type=Submit] {
    max-width: 28.8rem;
    margin: 4.0rem auto 0;
    padding: 2.0rem 1.6rem;
    background-position: right 1.6rem center;
  }
}