
       /* 全体のリセット */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background-color: #1b1b42;
            overflow-x: hidden;
        }

        /* 動画背景の設定 */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1; /* コンテンツの背面に配置 */
            overflow: hidden;
        }

        .video-background video {
            width: 100%;
            height: auto;
            object-fit: cover; /* 動画のアスペクト比を保ちながら画面全体をカバー */
        }

        /* ヒーローセクション */
        .hero {
            text-align: center;
            padding: 100px 20px;
            background: none; /* 背景色を削除 */
            color: #ffffff;
            position: relative;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #e6b800; /* ゴールドの文字色 */
            background: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
            padding: 10px 20px;
            border-radius: 10px; /* 枠に丸みを付ける */
            display: inline-block; /* 背景の大きさを文字に合わせる */
            text-shadow: 2px 2px 5px #000000; /* 黒い影を付ける */
            font-family: 'Cinzel', serif; /* シャープで神秘的なフォント */
        }

        .hero .catchphrase {
            font-size: 1.5rem;
            margin-bottom: 40px;
        }

        .cta-button {
            padding: 15px 30px;
            background: #e6b800;
            color: #1b1b42;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #ffcc00;
        }

        /* 説明セクション */
        .description {
            padding: 60px 20px;
            background: #292952;
            text-align: center;
        }

        .description h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #e6b800;
        }

        .info-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .info-item {
            background: #1b1b42;
            padding: 20px;
            border-radius: 10px;
            width: 250px;
            color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .info-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #e6b800;
        }

        .info-item p.example {
            font-size: 0.9rem;
            color: #e6b800;
            margin-top: 10px;
            font-style: italic;
        }

        /* 入力フォームセクション */
        .form-section {
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(135deg, #1b1b42, #3d3d91);
            color: #ffffff;
        }

        .form-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        form {
            max-width: 400px;
            margin: 0 auto;
            text-align: left;
        }

        form label {
            display: block;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #cccccc;
        }

        .submit-button {
            width: 100%;
            padding: 15px;
            background: #e6b800;
            color: #1b1b42;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-button:hover {
            background: #ffcc00;
        }


        /* フッター */
        .site-footer {
            padding: 20px;
            text-align: center;
            background: #1b1b42;
            color: #cccccc;
        }

        .site-footer a {
            color: #e6b800;
            text-decoration: none;
            margin: 0 10px;
        }

        .site-footer a:hover {
            text-decoration: underline;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .info-grid, .explanation-grid {
                flex-direction: column;
                align-items: center;
            }

            .info-item, .explanation-item {
                width: 100%;
            }
        }

        /* スクロールアニメーション用 */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
.user-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.user-guide ol, 
.user-guide h2, 
.user-guide p {
    text-align: center !important;
    margin: 0 auto;
}


