.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-injection {
  margin-top: 6rem;
  padding: 0 2rem;
}

.p-injection__title {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 0.6rem;
}

.p-injection__title > h3 {
  font-size: 1.5rem;
  line-height: 34px;
  letter-spacing: 0.1em;
}

.p-summary {
  margin-top: 2rem;
  letter-spacing: 0.1em;
}

.p-summary:last-child {
  margin-top: 4rem;
}

.p-summary > h4 {
  font-size: 1.4rem;
}

.p-summary > p {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.p-explain {
  margin-top: 8rem;
  padding: 0 2rem;
}

.p-explain > h4 {
  font-size: 1.4rem;
}

.p-explain p {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.p-explain__kind {
  margin-top: 1.5rem;
}

.p-explain__kind > h5 {
  font-size: 1.3rem;
  word-break: auto-phrase;
}

ul.p-explain__list {
  list-style: decimal inside;
  padding: 0;
  margin-top: 2rem;
  padding-left: 1rem;
}

ul.p-explain__list li {
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  font-size: 1.125rem;
}

ul.p-explain__list li .p-description {
  display: block;
  margin-left: 1.2em;
  letter-spacing: 0.1em;
}

/* 料金表ボタン */
.p-button {
  width: 100%;
  margin-top: 4rem;
  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");
}

/* その他 */
.p-m4 {
  margin-top: 4rem;
}

/*-------------------------
  タブレット
-------------------------*/
@media screen and (min-width: 768px) {
  /* 各注射の説明 */
  .p-injection {
    margin-top: 8.625rem;
  }

  .p-summary > h4 {
    font-size: 1.4rem;
  }

  .p-summary > p {
    font-size: 1.4rem;
  }

  /* ボタン */
  .c-button {
    width: 20rem;
    font-size: 1.5rem;
  }

  /* 注意事項 */
  .p-cation {
    align-items: flex-start;
  }

  .p-cation > p {
    font-size: 1.25rem;
  }
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1200px) {
  /* 注意事項 */
  .p-cation {
    align-items: center;
  }

  .p-cation > p {
    font-size: 1.2rem;
  }
}
