.p-form {
  background: #ffffff;
  @media all and (min-width: 1024px) {
    border-radius: 160px;
    padding: 65px 0 100px;
    margin-top: -125px;
  }
  @media not all and (min-width: 1024px) {
    border-radius: 40px;
    padding: 40px 0 40px;
    margin-top: -50px;
  }
}
.p-form__inner {
  font-size: 16px;
  line-height: 2;
  a {
    text-decoration: underline;
    color: var(--secondary-color);
  }
  @media all and (min-width: 1024px) {
    max-width: 1000px;
    margin: 0 auto 80px;
  }
  @media not all and (min-width: 1024px) {
    margin: 0 16px 0;
  }
}

.p-form__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 70px;
  @media not all and (min-width: 1024px) {
    margin: 0 0 35px;
  }
}

.p-form__indicatorInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  &:before {
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: 4px;
    background: #d9d9d9;
    position: absolute;
    left: 0;
    top: 45px;
  }
  @media all and (min-width: 1024px) {
    width: 592px;
  }
}

.p-form__indicatorChild {
  position: relative;
}

.p-form__indicatorCircle {
  width: 88px;
  height: 88px;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  background: #d9d9d9;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  div:first-child {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 4px;
  }
  div:last-child {
    font-size: 32px;
    line-height: 1;
  }
  @media not all and (min-width: 1024px) {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
}

.p-form__indicatorText {
  text-align: center;
  font-size: 24px;
}

.p-form__inputPage
  .p-form__indicatorChild:nth-of-type(-n + 1)
  .p-form__indicatorCircle,
.p-form__confirmPage
  .p-form__indicatorChild:nth-of-type(-n + 3)
  .p-form__indicatorCircle,
.p-form__thanksPage
  .p-form__indicatorChild:nth-of-type(-n + 5)
  .p-form__indicatorCircle {
  background-color: var(--secondary-color);
  color: #fff;
}

.p-form__title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 55px;
}
