/* ステップ付き手順のセクション */
.steps-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

/* カウンターと縦棒のコンテナ */
.steps {
  counter-reset: step-counter;
  position: relative;
  padding-left: 2rem;
}

/* 縦棒 */
.steps:before {
  content: "";
  background-color: #d59533;
  width: 2px;
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  height: calc(100% - 0.7rem);
  z-index: 0;
}

/* 各ステップタイトル */
.steps > h2 {
  counter-increment: step-counter;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding-left: 1.3rem;
}

/* ステップ番号（丸） */
/* ステップ番号（丸）を大きくする */
.steps > h2:before {
  content: counter(step-counter);
  background: #d59533;
  color: white;
  font-size: 1.5rem;         /* 文字を少し大きく */
  font-weight: normal;
  line-height: 2.2rem;       /* 丸の高さに合わせて中央揃え */
  text-align: center;
  width: 2.5rem;             /* 丸のサイズを大きく */
  height: 2.5rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  z-index: 1;
}

/* 各ステップの説明 */
.steps > p {
  margin-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* === リンク群：右寄せ === */
.service-links-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 2em 0;
}