/* リセット & 基本設定 */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Noto Sans JP", sans-serif;
        background-color: #111;
        color: #fff;
        overflow-x: hidden;
      }

      /* ユーザー提供のロジック用CSS */
      [data-js-splitText] {
        visibility: hidden; /* JS実行前は隠す（FOUC防止） */
      }

      [data-js-splitText] .char {
        display: inline-block; /* アニメーションのために必須 */
        will-change: transform, opacity;
        transform-style: preserve-3d; /* 3D回転に必須 */
        position: relative; /* スライス用の基準位置 */
      }

      /* スライスアニメーション用のスタイル */
      .slice-part {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* 3分割パーツは初期状態では元の文字と同じ配置 */
      }

      /* スペースの処理（崩れ防止） */
      .empty-space {
        width: 0.3em;
        display: inline-block;
      }

      /* レイアウト共通 */
      section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        position: relative;
        width: 100%;
      }

      .container {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* 背景色バリエーション */
      .bg-dark {
        background-color: #18181b;
      }
      .bg-black {
        background-color: #000000;
      }
      .bg-gradient-dark {
        background: radial-gradient(circle at center, #2a2a2e 0%, #111 100%);
      }
      .bg-gray {
        background-color: #27272a;
      }
      .bg-deep-blue {
        background: linear-gradient(to bottom, #0f172a, #1e3a8a);
      }
      .bg-purple {
        background: linear-gradient(135deg, #2e1065, #000000);
      }
      .bg-red {
        background: linear-gradient(to top, #450a0a, #000000);
      }

      /* タイポグラフィ */
      .label {
        font-size: 0.875rem;
        color: #9ca3af;
        margin-bottom: 1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: block;
      }

      .heading {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
        /* overflow: hidden;  一部のアニメーションで文字が見切れるのを防ぐため削除する場合あり */
      }

      .sub-text {
        margin-top: 1.5rem;
        font-size: 1.25rem;
        color: #9ca3af;
      }

      /* フォントバリエーション */
      .font-mincho {
        font-family: "Shippori Mincho", serif;
      }

      /* 特定のスタイル */
      .gradient-text {
        background: linear-gradient(to right, #60a5fa, #a855f7);
        -webkit-background-clip: text;
        color: transparent;
        display: inline-block;
      }

      .water-text {
        background: linear-gradient(
          180deg,
          #e0f2fe 0%,
          #3b82f6 60%,
          #1d4ed8 100%
        );
        -webkit-background-clip: text;
        color: transparent;
        filter: drop-shadow(0px 2px 4px rgba(59, 130, 246, 0.5));
        display: inline-block;
      }

      .perspective-container {
        perspective: 1000px;
      }

      /* レスポンシブ調整 */
      @media (min-width: 768px) {
        .heading {
          font-size: 4.5rem;
        }
        .heading-large {
          font-size: 6rem;
        }
      }

      /* マーカー */
      .marker {
        position: absolute;
        bottom: 2rem;
        font-size: 0.8rem;
        opacity: 0.5;
        animation: bounce 2s infinite;
      }

      @keyframes bounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }