body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: #111111; /* 黒に近い背景 */
  color: #eaeaea; /* 明るいグレーのテキスト */
  overflow-x: hidden; /* 横スクロールを禁止 */
}

/* キラキラアニメーションのコンテナ */
.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* キラキラの要素 */
.sparkle {
  position: absolute;
  animation: sparkle-animation 7s linear infinite;
  opacity: 0;
}

.sparkle::before {
  content: "✦"; /* 絵文字から記号に変更 */
  position: absolute;
  font-size: 14px;
  text-shadow: 0 0 10px currentColor;
}

/* キラキラのアニメーション */
@keyframes sparkle-animation {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}

/* カスタムカラー */
.text-neon-pink {
  color: #ff00a9;
}
.text-neon-cyan {
  color: #89c997;
}

/* セクションタイトルのスタイル */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #89c997; /* ネオンシアン */
  text-shadow: 0 0 5px #89c997, 0 0 10px #89c997;
  margin-bottom: 1.5rem;
}

/* カードのスタイル */
.content-card {
  background: rgba(255, 255, 255, 0.1); /* 半透明の背景 */
  border: 1px solid rgba(0, 242, 255, 0.3);
  backdrop-filter: saturate(90%) blur(30px);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 242, 255, 0.2);
}

.content-card-full {
  background: rgba(255, 255, 255, 0.1); /* 半透明の背景 */
  backdrop-filter: saturate(90%) blur(30px);
  padding: 2rem;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.content-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 242, 255, 0.2);
}

/* ボタンのスタイル */
.apply-button {
  display: inline-block;
  font-weight: 700;
  color: white;
  background: linear-gradient(45deg, #fc466b, #3f5efb);
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 70, 107, 0.5);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.apply-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.4), 0 0 30px rgba(63, 94, 251, 0.6);
}

.clip-path: polygon(50% 0, 0 100%, 100% 100%);
