/* サービスステップセクション */
.service-page .service-steps {
  margin-top: 50px;
}

.service-page .service-steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

/* ポリゴン（矢印）の中央配置 */
.service-page .service-steps-flow-polygon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.service-page .service-steps-flow-polygon img {
  width: 30px;
  height: auto;
}

.service-page .service-step-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.service-page .service-step-title {
  font-size: 28px;
  font-weight: 700;
  color: #4f4cd7;
  margin-bottom: 15px;
}

.service-page .service-step-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-page .service-step-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page .service-step-icon img {
  width: 50px;
  height: 50px;
}

.service-page .service-steps-footer {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 30px;
}

/* サービスステップのレスポンシブ対応 */
@media (max-width: 992px) {
  .service-page .service-steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page .service-steps-flow-polygon img {
    width: 25px;
  }
}

@media (max-width: 768px) {
  .service-page .service-steps-container {
    grid-template-columns: 1fr;
  }

  .service-page .service-step-title {
    font-size: 24px;
    padding-right: 70px;
  }

  .service-page .service-steps-footer {
    font-size: 24px;
  }

  .service-page .service-steps-flow-polygon img {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .service-page .service-step-card {
    padding: 20px;
  }

  .service-page .service-step-icon {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }

  .service-page .service-step-icon img {
    width: 25px;
    height: 25px;
  }

  .service-page .service-steps-flow-polygon {
    margin: 5px 0;
  }

  .service-page .service-steps-flow-polygon img {
    width: 15px;
  }
}
