@charset "UTF-8";
/* ============================================ */
/* function
/* ============================================ */
/* ===== fontサイズ ===== */
/* ============================================ */
/* mixin
/* ============================================ */
/* ===== mediaquery ===== */
/* ============================================ */
/* inquiry
/* ============================================ */
/* ===== title-area ===== */
@media screen and (max-width: 1200px) {
  #title-area {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  #title-area {
    margin-bottom: 80px;
  }
}
/* ===== first ===== */
#first {
  line-height: 2.5;
}

/* ===== contact ===== */
#contact {
  margin: 160px 0 0;
}
#contact .contact-list {
  display: flex;
  justify-content: space-between;
}
#contact .contact-list .contact-item {
  width: 32%;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
#contact .contact-list .contact-item .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 25px 30px 30px;
  background: #000;
  border-radius: 15px;
}
#contact .contact-list .contact-item a.frame {
  background: var(--color-primary);
}
#contact .contact-list .contact-item .title {
  font-size: 1.125rem;
}
#contact .contact-list .contact-item p {
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
}
#contact .contact-list .contact-item .icon {
  width: 53px;
}
#contact .contact-list .contact-item .number {
  width: 165px;
  margin: 5px 0 0;
}
#contact .contact-list .contact-item .cursor {
  width: 1.5em;
}

@media screen and (max-width: 1200px) {
  #contact .contact-list .contact-item .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  #contact .contact-list {
    flex-direction: column;
    gap: 15px;
  }
  #contact .contact-list .contact-item {
    width: 100%;
  }
  #contact .contact-list .contact-item .frame {
    padding: 15px 25px 25px;
    gap: 8px;
  }
  #contact .contact-list .contact-item .title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    margin: 80px 0 0;
  }
  #contact .contact-list .contact-item .title {
    font-size: 1rem;
  }
  #contact .contact-list .contact-item .icon {
    width: 42px;
  }
}
/* ===== format ===== */
/*
#format {
  margin: 160px 0 0;

  .format-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;

    .format-item {
      width: 32%;

      .btn {
        width: 100%;
        min-width: none;
      }
    }
  }
}

@include mixin.mq-max('xl') {

  #format {
    .format-list {
      .format-item {
        width: 49%;
      }
    }
  }

}

@include mixin.mq-max('md') {

  #format {
    margin: 80px 0 0;
  }

}

@include mixin.mq-max('sm') {

  #format {
    .format-list {
      flex-direction: column;
      gap: 15px;

      .format-item {
        width: 100%;
      }
    }
  }

}
*/
/* ===== form ===== */
#form {
  margin: 140px 0 0;
  padding: 0 0 250px;
  font-size: 1rem;
}
#form .guide .text-red {
  color: var(--color-primary);
}
#form .guide .ssl {
  font-size: 90%;
  color: var(--color-primary);
  margin: 1em 0 0;
}
#form .step {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  white-space: nowrap;
  margin: 90px 0 60px;
}
#form .step .step-item {
  flex: 1;
  position: relative;
  font-weight: 600;
  text-align: center;
  padding: 0.5em;
}
#form .step .step-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  transform: skewX(-20deg);
}
#form .step .step-item .text {
  position: relative;
}
#form .step .step-item.is-current {
  color: #fff;
}
#form .step .step-item.is-current::before {
  background: var(--color-primary);
}
#form .form-contents {
  width: 90%;
  margin-inline: auto;
}
#form .form-contents .guide {
  margin: 0 0 2em;
}
#form .form-contents .error-text {
  margin: 0 0 2em;
}
#form .form-contents .form-item + .form-item {
  margin: 15px 0 0;
}
#form .form-contents .form-item .flex-wrap {
  display: flex;
  align-items: flex-start;
}
#form .form-contents .form-item .item-name {
  display: flex;
  align-items: center;
  width: 270px;
  font-weight: 500;
  padding: 0.3em 0 0;
  flex-shrink: 0;
}
#form .form-contents .form-item .item-name::before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: var(--color-primary);
  margin: 0 0.5em 0 0;
}
#form .form-contents .form-item .item-name.asterisk::after {
  content: "※";
  color: var(--color-primary);
  margin: 0 0 0 0.2em;
}
#form .form-contents .form-item .input-area {
  width: 100%;
}
#form .form-contents .form-agree {
  margin: 40px 0 0;
}
#form .form-contents .form-agree .guide {
  margin: 0 0 1em;
}
#form .form-contents .form-agree a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.3em;
}
#form .form-contents .form-errors {
  color: var(--color-primary);
  margin: 0 0 2em;
}
#form .form-contents .error {
  color: var(--color-primary);
  font-size: 90%;
  line-height: 1.5;
  margin: 0.5em 0 0;
}
#form .form-contents .error em {
  font-style: normal;
}
#form .form-contents input[type=text],
#form .form-contents input[type=email],
#form .form-contents textarea {
  padding-left: 1em;
  padding-right: 1em;
}
#form .form-contents label:has(input[type=radio]) {
  margin: 0 1em 0 0;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  #form .form-contents .form-item .item-name {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  #form {
    font-size: 0.875rem;
    margin: 100px 0 0;
    padding: 0 0 120px;
  }
  #form .step {
    margin: 60px 0 40px;
  }
  #form .form-contents .form-item .flex-wrap {
    flex-direction: column;
  }
  #form .form-contents .form-item .item-name {
    width: 100%;
    margin: 0 0 0.3em;
  }
  #form .form-contents .form-btn {
    margin: 50px auto 0;
  }
}
/* ===== form（ボタン設定） ===== */
.form-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 30px;
  margin: 80px auto 0;
}
.form-btn .submit-btn-wrap {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.3s ease-out;
}
.form-btn .submit-btn-wrap:has(:disabled) {
  opacity: 0.5;
}
.form-btn input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  border: solid 1px #000;
  width: fit-content;
  min-width: 14em;
  padding: 0.5em 1em 0.5em 1.5em;
  border-radius: 2em;
  transition: 0.3s ease-out;
}
.form-btn .icon {
  position: absolute;
  right: 0.8em;
  top: 50%;
  display: block;
  width: 2em;
  transform: translate(0, -50%);
  pointer-events: none;
}
.form-btn .icon .circle {
  fill: var(--color-primary);
  transition: 0.3s ease-out;
}
.form-btn .icon .cursor {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 3;
  transition: 0.3s ease-out;
}

@media (hover: hover) {
  .form-btn input:not(:disabled):hover {
    color: #fff;
    background: #000;
  }
}

/*# sourceMappingURL=inquiry.css.map */
