.p-wrapper {
  padding-bottom: 10rem;
}

/* コラム */
.p-column {
  width: 80%;
  margin: 0 auto;
  margin-top: 4rem;
  text-align: center;
}

.p-column > h2 {
  font-family: var(--font-family-clean);
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.p-column > h3 {
  margin-top: 3rem;
  font-family: var(--font-family-clean);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 30px;
}

/* よくある症例 */
.p-case {
  margin-top: 6rem;
}

.p-case__title {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--color-black);
}

.p-case__title > h3 {
  font-size: 1.6rem;
  line-height: 45px;
}

.p-case__img {
  margin-top: 4rem;
  padding: 1rem;
}

/* 初診の流れ */
.p-title-flow {
  margin-top: 8rem;
}

/* 手順を説明 */
.p-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.56rem;
  width: 100%;
  padding: 0 2rem;
}

.p-process__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-blue);
  border-radius: 10px;
  padding: 2rem 3rem;
  padding-bottom: 3rem;
  width: 100%;
}

.p-explain {
  font-size: 1.1rem;
  font-family: var(--font-family-normal);
  letter-spacing: 0.04em;
}

.p-process__border {
  width: 100%;
  height: 2px;
  border-bottom: 2px dashed var(--color-black);
}

.p-process__info > p:first-of-type {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;

  font-family: var(--font-family-normal);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.p-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--color-white);
  font-family: var(--font-family-normal);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* 持ってくるもの */
.p-bring {
  position: relative;
}

.p-bring__list {
  margin-top: 1rem;
  width: 100%;
}

.p-bring__list > p {
  font-size: 1.125rem;
  line-height: 36px;
  padding-left: 1rem;
  border-bottom: 1px solid var(--color-black);
  letter-spacing: 0.04em;
}

.p-bring__list ul {
  margin-top: 1rem;
  padding-left: 2rem;
}

.p-bring__list li {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.p-bring__img {
  display: none;
  width: 24%;
  align-items: center;
  position: absolute;
  top: 0;
  right: 12rem;
}

.p-path {
  margin-top: 1rem;
  width: 30%;
  top: 0;
  right: 1rem;
}

.p-bring.p-smart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.p-smart__frame {
  margin-top: 1rem;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 3.2/1;
}

.p-smart__frame.md {
  display: block;
}

.p-smart__frame.md iframe {
  max-width: 100%;
  height: 100%;
  max-height: 100px;
}

.p-smart__frame.lg {
  display: none;
}

/* 所要時間 */
.p-required-time {
  margin-top: 8rem;
}

.p-required-param {
  width: 100%;
  margin-top: 2rem;
  padding: 0 2rem;
  text-align: center;
}

.p-required-param > p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* 料金表はこちら ボタン */
.p-price-list {
  margin-top: 6rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-price-list__button {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--color-green-blue);
  background-color: var(--color-green-blue);
  color: var(--color-white);
  border-radius: 12px;
  width: 20%;
  padding: 1rem 0;
  font-size: 1.5rem;
}

/* ボタン */
.c-button {
  cursor: pointer;
  font-family: var(--font-family-base);
  width: 16rem;
  font-size: 1.2rem;
  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;
  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-column {
    width: 60%;
    margin-top: 7.625rem;
  }

  .p-column > h2 {
    font-size: 2.4rem;
  }

  .p-column > h3 {
    margin-top: 3.4rem;
    font-size: 1.6rem;
    line-height: 40px;
  }

  /* よくある症例 */
  .p-case {
    margin-top: 10.375rem;
  }

  .p-case__title {
    width: 40%;
  }

  .p-case__title > h3 {
    font-size: 2rem;
  }

  .p-bring__list {
    width: 50%;
  }

  .p-process__info {
    padding: 3rem 4.8rem;
    padding-bottom: 4rem;
  }

  .p-process__info > p:first-of-type {
    font-size: 1.5rem;
  }

  .p-explain {
    font-size: 1.3rem;
  }

  .p-bring__img {
    display: flex;
  }

  .p-bring__list {
    margin-top: 2rem;
  }

  .p-w50 {
    width: 60%;
    margin-top: 1rem;
  }

  .p-required-param > p {
    font-size: 1.5rem;
  }

  .c-button {
    font-size: 1.5rem;
  }

  .p-bring.p-smart {
    flex-direction: row;
  }

  .p-smart__frame {
    aspect-ratio: 1.2/1;
    max-width: 300px;
  }

  .p-smart__frame iframe {
    width: 100%;
    height: 100%;
  }

  .p-smart__frame.md {
    display: none;
  }

  .p-smart__frame.lg {
    display: block;
  }
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1200px) {
}
