.p-wrapper {
  padding-bottom: 10rem;
}

/* 注意事項 */
.p-cation {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5.18rem;
  padding: 0 2rem;
}

.p-cation > p {
  color: var(--color-dark-blue);
  font-family: var(--font-family-normal);
  font-size: 1.2rem;
  font-weight: bold;
}

/* 症状 */
.p-condition {
  margin-top: 6rem;
  padding: 0 2rem;
}

.p-condition__title {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 0.6rem;
}

.p-condition__title > h3 {
  font-size: 1.5rem;
  line-height: 34px;
  letter-spacing: 0.1em;
}

.p-condition__explain {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 40px;
}

/* 説明 */
.p-explain {
  margin-top: 6rem;
  padding: 0 2rem;
}

.p-explain > h4 {
  font-size: 1.16rem;
  letter-spacing: 0.1em;
  word-break: break-all;
}

.p-explain p {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 24px;
}

.p-explain__contain {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}

.p-explain__param {
  flex: 3;
}

.p-explain__img {
  flex: 2;
}

.p-button {
  width: 100%;
  padding: 0 2rem;
}

/* ボタン */
.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-top: 4rem;
  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-condition {
    margin-top: 6.875rem;
  }

  /* 注意事項 */
  .p-cation {
    align-items: flex-start;
  }

  .p-cation > p {
    font-size: 1.25rem;
  }

  .p-explain__contain {
    flex-direction: row;
  }

  /* ボタン */
  .c-button {
    width: 20rem;
    font-size: 1.5rem;
  }
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1200px) {
  /* 注意事項 */
  .p-cation {
    align-items: center;
  }

  .p-cation > p {
    font-size: 1.2rem;
  }
}
