/*==================================================
sp pc
==================================================*/
@media all and (max-width: 769px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*==================================================
contact
==================================================*/
.contact__flow {
  margin: 0 auto;
  max-width: 70rem;
}
.contact__flow-lists {
  counter-reset: decimal;
  display: grid;
  gap: 4rem;
  line-height: 1.5;
  grid-template-columns: 1fr 1fr 1fr;
}
@media all and (max-width: 768px) {
  .contact__flow-lists {
    gap: 2rem;
  }
}
.contact__flow-list {
  align-items: center;
  border-bottom: 0.2rem solid;
  color: #AAAAAA;
  counter-increment: decimal;
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding-bottom: 1rem;
  position: relative;
}
@media all and (max-width: 768px) {
  .contact__flow-list {
    font-size: 1.2rem;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    line-height: 1.4;
    text-align: center;
  }
}
.contact__flow-list::before {
  content: counter(decimal, decimal-leading-zero);
  font-size: 4rem;
  justify-self: center;
  letter-spacing: 0;
  line-height: 1;
}
.contact__flow-list:not(:last-child)::after {
  border: 0.2rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  content: "";
  height: 1.2rem;
  position: absolute;
  right: -2.4rem;
  top: 2rem;
  transform: translateX(-25%) rotate(45deg);
  width: 1.2rem;
}
@media all and (max-width: 768px) {
  .contact__flow-list:not(:last-child)::after {
    right: -1.8rem;
    top: 4rem;
  }
}
.contact__flow-list.-current {
  color: var(--main-color);
}
.contact__read {
  line-height: 1.75;
  margin-top: 4rem;
  text-align: center;
}
@media all and (max-width: 768px) {
  .contact__read {
    text-align: left;
  }
}
.contact__form {
  margin-top: 4rem;
}
.contact__form-lists {
  display: grid;
  gap: 3rem;
}
.contact__form-foot {
  margin-top: 8rem;
  text-align: center;
}
@media all and (max-width: 768px) {
  .contact__form-foot {
    margin-top: 4rem;
  }
}
.contact__form-submit {
  margin-top: 3rem;
}
.contact__form-submit input:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.contact__form-submit input.m-btn {
  border: none;
}
.contact__confirm .p-form__body {
  margin-top: 1.3rem;
}
@media all and (max-width: 768px) {
  .contact__confirm .p-form__body {
    margin-top: 0;
  }
}