/* === 成功曲線グラフ線アニメ === */
#successCurve path {
  stroke: #ED7D31;          /* ← オレンジに変更 */
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2.5s ease-out;
}


/* 点 */
.node-point circle {
  fill: white;
  stroke: #2B6CB0;
  stroke-width: 2;
}

/* 右側テキスト */
.text-right {
  text-align: right;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* 1文字ずつ出る効果用 */
#breakthroughText span {
  opacity: 0;
  display: inline-block;
  transform: translateY(15px);
  animation: fadeUp 0.5s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
