@charset "UTF-8";
/* object/project/_process.scss */
.p-process {
  background-image: url(../images/image-process.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  margin-bottom: 2rem;
}
.p-process__wrapper {
  padding: 2rem 1rem;
}
.p-process__inner {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9098039216);
  border-radius: 20px;
}
.p-process__list {
  counter-reset: step;
  position: relative;
  margin: 0;
  padding: 0 0 0 3rem;
  list-style: none;
  /* 縦ライン */
}
.p-process__list::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 3rem;
  left: 1.5rem;
  width: 2px;
  background: #8AD58A;
}
@media (max-width: 768px) {
  .p-process__list::before {
    bottom: 6rem;
  }
}
.p-process__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-block: 1.25rem 1.25rem;
  /* バッジの位置調整（ライン上に重ねる） */
}
.p-process__item + .p-process__item {
  margin-top: 0.25rem;
}
.p-process__num-badge {
  counter-increment: step; /* バッジの数字を順番に表示する */
  position: absolute;
  top: 15px; /* バッジの位置を調整 */
  left: -47px; /* バッジの位置を調整 */
  inline-size: 3rem; /* 丸のサイズ（横幅） */
  block-size: 3rem; /* 丸のサイズ（縦幅） */
  border-radius: 9999px;
  background: #8AD58A;
  font-size: 1.2rem;
  color: white;
  display: grid; /* 数字の位置調整 */
  place-items: center; /* 数字の位置調整 */
  line-height: 2.4;
}
.p-process {
  /* バッジの数字（擬似要素で表示） */
}
.p-process__num-badge::before {
  content: counter(step);
}
.p-process__body {
  padding-left: 1rem; /* バッジと本文の間隔を微調整 */
}
.p-process__title {
  color: #41C541;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
@media (max-width: 575px) {
  .p-process__title {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-process__text {
  color: black;
  margin: 0;
  word-break: auto-phrase;
}

/*# sourceMappingURL=process.css.map */
