.p-wrapper {
  padding-bottom: 10rem;
}

.p-title {
  margin-top: 4rem;
}

.p-title-area {
  width: 86%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--color-black);
  margin: 0 auto;
  margin-top: 8rem;
  padding-bottom: 6px;
}

.p-title-area > h3 {
  font-size: 1.2rem;
}

/* QA */
.p-qa {
  width: 100%;
  margin-top: 4rem;
  font-size: 1.1rem;
}

.p-qa__contents {
  width: 80%;
  margin: 0 auto;
  margin-top: 2rem;
}

.p-qa__content {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.p-qa__question {
  cursor: pointer;
  padding-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--color-black);
}

.p-qa__answer {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background-color: var(--color-qa-blue);
  border-radius: 8px;

  /* 隠す */
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0;
  margin-top: 0;
}

.p-qa__question p,
.p-qa__answer p {
  line-height: 2.25rem;
}

.p-qa__question img {
  transition: transform 0.3s ease;
}

.p-qa__question img.rotated {
  transform: rotate(180deg);
}

/* 応募フォーム */
.p-title-cation {
  text-align: center;
  padding: 0 2rem;
}

.p-title-cation > p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.c-form {
  width: 80%;
  margin: 0 auto;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.c-form__group {
  width: 100%;
}

.c-form__group input,
.c-form__group textarea {
  width: 100%;
  margin-top: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-black);
  padding: 1rem;
}

.c-form__group.radio input {
  width: auto;
  accent-color: var(--color-green-blue);
  cursor: pointer;
  margin: 0;
  margin-right: 0.5rem;
}

.c-form__group.radio label {
  font-size: 1.125rem;
}

.c-form__group.radio label.p-label {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
}

.c-form__radio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.c-form__item {
  display: flex;
  align-items: center;
}

.p-label {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

.p-privacy {
  width: 100%;
  border: 1px solid var(--color-black);
  padding: 2rem 2rem;
  padding-bottom: 3rem;
  background-color: var(--color-white);
}

.p-privacy > h3 {
  text-align: center;
  font-family: var(--font-family-normal);
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 400;
}

.p-privacy > ul {
  margin-top: 2.4rem;
}

.p-privacy li {
  font-family: var(--font-family-normal);
  font-size: 1.1rem;
}

/* 送信ボタン */
.c-button {
  cursor: pointer;
  font-family: var(--font-family-base);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--color-white);
  border: 1px solid var(--color-green-blue);
  background-color: var(--color-green-blue);
  border-radius: 12px;
  padding: 1rem 0rem;
  margin: 0 auto;
  font-size: 1.2rem;
  transition: 0.4s ease;
  position: relative;
}

.c-button:hover {
  background-color: var(--color-white);
  color: var(--color-green-blue);
}

.c-button .p-arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("/public/top/white-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.c-button:hover .p-arrow {
  background-image: url("/public/top/blue-arrow.svg");
}

/* タブレット */
@media screen and (min-width: 768px) {
  .p-title {
    margin-top: 8rem;
  }

  /* 質問の種類 */
  .p-title-area {
    width: 100%;
  }

  .p-title-area > h3 {
    font-size: 1.5rem;
  }

  /* QA */
  .p-qa {
    font-size: 1.25rem;
  }

  .p-qa__contents {
    width: 100%;
  }

  .p-qa__question {
    padding: 0 2rem;
  }

  /* 問い合わせフォーム */
  .p-title-cation > p {
    font-size: 1.375rem;
  }

  .p-label {
    font-size: 1.25rem;
  }

  /* ラジオボタン */
  .c-form__radio {
    flex-direction: row;
    gap: 2rem;
  }

  .c-form__group.radio input {
    transform: scale(1.5);
  }

  /* プライバシーポリシー */
  .p-privacy {
    padding: 2rem 6rem;
    padding-bottom: 4rem;
  }

  .p-privacy > h3 {
    font-size: 1.5rem;
  }

  .p-privacy li {
    font-family: var(--font-family-normal);
    font-size: 1.25rem;
  }

  /* ボタン */
  .c-button {
    width: 24rem;
    font-size: 1.5rem;
  }
}
