File size: 2,477 Bytes
3ed48fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.preview-container {
    position: relative;
    padding: 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-conic-gradient(#80808010 0% 25%, transparent 0% 50%) 50% / 20px 20px;
}

.preview-container img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: contain;
}

.effect-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

/* 横書き時のグリッドレイアウト */
.effect-grid:not([data-vertical="true"]) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* 縦書き時のグリッドレイアウト */
.effect-grid[data-vertical="true"] {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.effect-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.effect-name {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.effect-item.error {
    background: #fff3f3;
    border-color: #ffcdd2;
}

.text-danger {
    color: #dc3545;
}

/* エフェクトレンダリング用のスタイル */
.effect-renderer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.effect-renderer canvas {
    position: absolute;
    top: 0;
    left: 0;
}

/* パーティクルエフェクト用のスタイル */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 3Dエフェクト用のスタイル */
.three-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* アニメーションエフェクト用のスタイル */
@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes fire {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(0.8); opacity: 0; }
}

@keyframes electric {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes underwater {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0) translateX(0); }
}