File size: 19,937 Bytes
ffb53b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
{
  "questions": [
    {
      "id": 1,
      "english": "What does happiness mean to you?",
      "japanese": "幸せとは何を意味しますか?"
    },
    {
      "id": 2,
      "english": "How do you think technology will shape our future?",
      "japanese": "技術が私たちの未来をどのように形作ると思いますか?"
    },
    {
      "id": 3,
      "english": "What is the most valuable lesson you have learned in life so far?",
      "japanese": "これまでの人生で学んだ最も重要な教訓は何ですか?"
    },
    {
      "id": 4,
      "english": "If you could change one thing in the world, what would it be and why?",
      "japanese": "世界の中で一つだけ変えられるとしたら、それは何で、なぜですか?"
    },
    {
      "id": 5,
      "english": "What role does gratitude play in your life?",
      "japanese": "感謝の気持ちはあなたの人生においてどのような役割を果たしていますか?"
    },
    {
      "id": 6,
      "english": "How do you define success for yourself?",
      "japanese": "あなた自身にとって成功とはどのようなものですか?"
    },
    {
      "id": 7,
      "english": "What are the most important relationships in your life, and why?",
      "japanese": "あなたの人生で最も重要な関係は何ですか?また、その理由は何ですか?"
    },
    {
      "id": 8,
      "english": "How do you cope with failure or disappointment?",
      "japanese": "失敗や失望にどのように対処していますか?"
    },
    {
      "id": 9,
      "english": "What is your greatest passion, and how do you pursue it?",
      "japanese": "あなたの最大の情熱は何で、どのようにそれを追求していますか?"
    },
    {
      "id": 10,
      "english": "In what ways do you think we can contribute positively to our community?",
      "japanese": "私たちがコミュニティに対してポジティブに貢献できる方法はどのようなものがありますか?"
    },
    {
      "id": 11,
      "english": "What is a moment in your life that changed your perspective?",
      "japanese": "あなたの人生の中で視点を変えた瞬間は何ですか?"
    },
    {
      "id": 12,
      "english": "How do you stay motivated during challenging times?",
      "japanese": "困難な時期にどのようにモチベーションを保っていますか?"
    },
    {
      "id": 13,
      "english": "What do you believe is the key to a fulfilling life?",
      "japanese": "充実した人生に必要な鍵は何だと思いますか?"
    },
    {
      "id": 14,
      "english": "How do you express creativity in your daily life?",
      "japanese": "日常生活の中でどのように創造性を表現していますか?"
    },
    {
      "id": 15,
      "english": "What are your thoughts on the importance of mental health?",
      "japanese": "メンタルヘルスの重要性についてどう思いますか?"
    },
    {
      "id": 16,
      "english": "What legacy do you want to leave behind for future generations?",
      "japanese": "未来の世代にどのような遺産を残したいですか?"
    },
    {
      "id": 17,
      "english": "What inspires you to take action in your life?",
      "japanese": "あなたが行動を起こすためのインスピレーションは何ですか?"
    },
    {
      "id": 18,
      "english": "How do you maintain a work-life balance?",
      "japanese": "仕事と私生活のバランスをどのように保っていますか?"
    },
    {
      "id": 19,
      "english": "What is a dream you have yet to achieve?",
      "japanese": "まだ達成していない夢は何ですか?"
    },
    {
      "id": 20,
      "english": "In your opinion, what does it mean to live a meaningful life?",
      "japanese": "意味のある人生を生きるとは何だと思いますか?"
    },
    {
      "id": 21,
      "english": "What is a challenge you have faced, and how did you overcome it?",
      "japanese": "あなたが直面した挑戦は何ですか?そして、それをどうやって乗り越えましたか?"
    },
    {
      "id": 22,
      "english": "What role does art play in your life?",
      "japanese": "アートはあなたの人生にどのような役割を果たしていますか?"
    },
    {
      "id": 23,
      "english": "In what ways do you think we can promote peace in our communities?",
      "japanese": "私たちのコミュニティで平和を促進するためには、どのような方法があると思いますか?"
    },
    {
      "id": 24,
      "english": "What influence has your culture had on your identity?",
      "japanese": "あなたの文化はあなたのアイデンティティにどのような影響を与えていますか?"
    },
    {
      "id": 25,
      "english": "If you could meet anyone, living or dead, who would it be and what would you ask them?",
      "japanese": "もし誰かに会うことができるとしたら、生きている人でも死んでいる人でも、誰に会いたいですか?それに何を尋ねますか?"
    },
    {
      "id": 26,
      "english": "What do you believe is the biggest issue facing our planet today?",
      "japanese": "今日、私たちの惑星が直面している最大の問題は何だと考えますか?"
    },
    {
      "id": 27,
      "english": "What do you think is the purpose of education?",
      "japanese": "教育の目的は何だと思いますか?"
    },
    {
      "id": 28,
      "english": "How do you handle stress and maintain your mental well-being?",
      "japanese": "ストレスにどのように対処し、精神的健康を保っていますか?"
    },
    {
      "id": 29,
      "english": "What are your thoughts on the power of forgiveness?",
      "japanese": "許しの力についてどう思いますか?"
    },
    {
      "id": 30,
      "english": "In what ways can we foster empathy in our society?",
      "japanese": "私たちの社会で共感を育むためにはどのような方法がありますか?"
    },
    {
      "id": 31,
      "english": "How do you define love, and how important is it in your life?",
      "japanese": "愛をどのように定義しますか?そして、それはあなたの人生でどれほど重要ですか?"
    },
    {
      "id": 32,
      "english": "What inspires you to be a better person?",
      "japanese": "より良い人間になるために何があなたをインスパイアしますか?"
    },
    {
      "id": 33,
      "english": "How can we better understand and support mental health issues?",
      "japanese": "私たちはメンタルヘルスの問題をよりよく理解し、支援するために何ができるでしょうか?"
    },
    {
      "id": 34,
      "english": "What does it mean to find your passion?",
      "japanese": "情熱を見つけるとはどういうことですか?"
    },
    {
      "id": 35,
      "english": "How do you build meaningful relationships with others?",
      "japanese": "他者との有意義な関係をどのように築きますか?"
    },
    {
      "id": 36,
      "english": "How do you cope with difficult times?",
      "japanese": "困難な時期をどのように乗り越えますか?"
    },
    {
      "id": 37,
      "english": "What legacy do you hope to leave behind?",
      "japanese": "あなたはどのような遺産を残したいと考えていますか?"
    },
    {
      "id": 38,
      "english": "What role does culture play in your life?",
      "japanese": "文化はあなたの人生でどのような役割を果たしていますか?"
    },
    {
      "id": 39,
      "english": "What does freedom mean to you?",
      "japanese": "自由とはあなたにとって何を意味しますか?"
    },
    {
      "id": 40,
      "english": "How do you see the role of education in shaping one's future?",
      "japanese": "教育の役割が個人の未来を形作ることについてどう考えますか?"
    },
    {
      "id": 41,
      "english": "How do you define personal growth?",
      "japanese": "あなたは個人の成長をどのように定義しますか?"
    },
    {
      "id": 42,
      "english": "What are the most significant challenges you have faced?",
      "japanese": "あなたが直面した最も重要な課題は何ですか?"
    },
    {
      "id": 43,
      "english": "How important is it to give back to the community?",
      "japanese": "コミュニティに貢献することはどれほど重要ですか?"
    },
    {
      "id": 44,
      "english": "What impact do you want to have on the world?",
      "japanese": "あなたは世界にどのような影響を与えたいですか?"
    },
    {
      "id": 45,
      "english": "What motivates you to achieve your goals?",
      "japanese": "あなたの目標を達成するための動機は何ですか?"
    },
    {
      "id": 46,
      "english": "What does friendship mean to you?",
      "japanese": "友情とはあなたにとって何を意味しますか?"
    },
    {
      "id": 47,
      "english": "How do you practice self-care and why is it important?",
      "japanese": "自己ケアをどのように実践していますか、そしてそれはなぜ重要ですか?"
    },
    {
      "id": 48,
      "english": "What experiences have shaped your worldview?",
      "japanese": "あなたの世界観を形作った経験は何ですか?"
    },
    {
      "id": 49,
      "english": "What is your biggest fear, and how do you intend to overcome it?",
      "japanese": "あなたの最大の恐怖は何で、それをどのように克服しようとしていますか?"
    },
    {
      "id": 50,
      "english": "How can we create a more inclusive society?",
      "japanese": "より包括的な社会をどのように創造できますか?"
    },
    {
      "id": 51,
      "english": "What does personal growth look like to you?",
      "japanese": "あなたにとって、個人の成長はどのようなものですか?"
    },
    {
      "id": 52,
      "english": "How do you maintain a sense of purpose in your life?",
      "japanese": "あなたはどのように人生の目的意識を維持していますか?"
    },
    {
      "id": 53,
      "english": "What values are most important to you?",
      "japanese": "あなたにとって最も重要な価値は何ですか?"
    },
    {
      "id": 54,
      "english": "What impact do you hope to make on your community?",
      "japanese": "あなたのコミュニティにどのような影響を与えたいですか?"
    },
    {
      "id": 55,
      "english": "How do you differentiate between right and wrong?",
      "japanese": "正しいことと間違っていることをどのように区別しますか?"
    },
    {
      "id": 56,
      "english": "What are your dreams for the future?",
      "japanese": "未来に対するあなたの夢は何ですか?"
    },
    {
      "id": 57,
      "english": "How do you find balance in your life?",
      "japanese": "あなたはどのように人生のバランスを見つけますか?"
    },
    {
      "id": 58,
      "english": "What goals are you currently working towards?",
      "japanese": "あなたは現在どのような目標に向かって努力していますか?"
    },
    {
      "id": 59,
      "english": "What does it mean to you to lead a fulfilling life?",
      "japanese": "充実した人生を送るとはあなたにとって何を意味しますか?"
    },
    {
      "id": 60,
      "english": "How do you inspire those around you?",
      "japanese": "あなたは周囲の人々にどのようにインスパイアしますか?"
    },
    {
      "id": 61,
      "english": "How do you define success in your own life?",
      "japanese": "自分の人生における成功をどのように定義しますか?"
    },
    {
      "id": 62,
      "english": "What lessons have you learned from your failures?",
      "japanese": "失敗からどのような教訓を学びましたか?"
    },
    {
      "id": 63,
      "english": "What role does kindness play in our society?",
      "japanese": "社会において親切はどのような役割を果たしますか?"
    },
    {
      "id": 64,
      "english": "What does success look like to you?",
      "japanese": "成功はあなたにとってどのように見えますか?"
    },
    {
      "id": 65,
      "english": "What motivates you to keep going when times are tough?",
      "japanese": "厳しい時期に前に進むための動機は何ですか?"
    },
    {
      "id": 66,
      "english": "What impact do you believe you can have on others?",
      "japanese": "あなたは他者にどのような影響を与えられると思いますか?"
    },
    {
      "id": 67,
      "english": "What do you think makes a good leader?",
      "japanese": "良いリーダーには何が必要だと思いますか?"
    },
    {
      "id": 68,
      "english": "How do you deal with failure and setbacks?",
      "japanese": "失敗や挫折をどのように乗り越えますか?"
    },
    {
      "id": 69,
      "english": "What qualities do you look for in a friend?",
      "japanese": "友人に求める資質は何ですか?"
    },
    {
      "id": 70,
      "english": "What values do you think are essential for a successful life?",
      "japanese": "成功する人生にとって必須な価値観は何だと思いますか?"
    },
    {
      "id": 71,
      "english": "How do you envision a better world?",
      "japanese": "どのようにすればより良い世界を思い描けますか?"
    },
    {
      "id": 72,
      "english": "How does your upbringing impact your decisions?",
      "japanese": "あなたの育ち方は、あなたの意思決定にどのように影響しますか?"
    },
    {
      "id": 73,
      "english": "What do you believe is the most pressing issue in today's world?",
      "japanese": "今日の世界で最も差し迫った問題は何だと思いますか?"
    },
    {
      "id": 74,
      "english": "What do you think makes a meaningful life?",
      "japanese": "意味のある人生を作る要素は何だと思いますか?"
    },
    {
      "id": 75,
      "english": "In your opinion, how can we foster tolerance in society?",
      "japanese": "あなたの意見では、社会で寛容を育むにはどうすればよいですか?"
    },
    {
      "id": 76,
      "english": "What does community mean to you?",
      "japanese": "コミュニティはあなたにとって何を意味しますか?"
    },
    {
      "id": 77,
      "english": "How do you plan to achieve your dreams?",
      "japanese": "あなたはどのようにして夢を実現するつもりですか?"
    },
    {
      "id": 78,
      "english": "What qualities do you value most in relationships?",
      "japanese": "人間関係で最も重視する資質は何ですか?"
    },
    {
      "id": 79,
      "english": "How do you keep your passions alive?",
      "japanese": "情熱をいかに持ち続けますか?"
    },
    {
      "id": 80,
      "english": "What does it mean to you to give back to the community?",
      "japanese": "コミュニティに貢献することはあなたにとって何を意味しますか?"
    },
    {
      "id": 81,
      "english": "How do you envision your future career?",
      "japanese": "あなたの将来のキャリアをどのように思い描いていますか?"
    },
    {
      "id": 82,
      "english": "What do you think is the role of empathy in human connections?",
      "japanese": "人間関係における共感の役割は何だと思いますか?"
    },
    {
      "id": 83,
      "english": "How do you ensure you stay true to your values?",
      "japanese": "自分の価値観を持ち続けるためにどうしていますか?"
    },
    {
      "id": 84,
      "english": "What advice would you give to someone struggling with self-acceptance?",
      "japanese": "自己受容に苦しんでいる人にどんなアドバイスをしますか?"
    },
    {
      "id": 85,
      "english": "How do you think we can combat loneliness in society?",
      "japanese": "社会で孤独を解消するためにどのようにすればよいと思いますか?"
    },
    {
      "id": 86,
      "english": "What role does hope play in your life?",
      "japanese": "希望はあなたの人生でどのような役割を果たしますか?"
    },
    {
      "id": 87,
      "english": "How do you approach problem-solving in challenging situations?",
      "japanese": "困難な状況での問題解決にどのようにアプローチしますか?"
    },
    {
      "id": 88,
      "english": "What does it mean to you to be authentic?",
      "japanese": "本物であるとはあなたにとって何を意味しますか?"
    },
    {
      "id": 89,
      "english": "How do you define your own happiness?",
      "japanese": "あなた自身の幸せをどのように定義しますか?"
    },
    {
      "id": 90,
      "english": "What are your thoughts on the role of social media in our lives?",
      "japanese": "私たちの生活におけるソーシャルメディアの役割についてどう思いますか?"
    },
    {
      "id": 91,
      "english": "What advice would you offer to someone pursuing their dreams?",
      "japanese": "夢を追う人にどんなアドバイスをしますか?"
    },
    {
      "id": 92,
      "english": "How do you believe we can better support those struggling with mental health?",
      "japanese": "メンタルヘルスに苦しむ人々をより良く支援するためにはどうすればよいと思いますか?"
    },
    {
      "id": 93,
      "english": "What qualities do you believe make for a great leader?",
      "japanese": "優れたリーダーに必要な資質は何だと思いますか?"
    },
    {
      "id": 94,
      "english": "How do you keep your life balanced between responsibilities and leisure?",
      "japanese": "責任と余暇の間で人生のバランスをどう保っていますか?"
    },
    {
      "id": 95,
      "english": "What inspires you to be truly passionate about something?",
      "japanese": "何かに対して本当に情熱を持つために何がインスパイアしますか?"
    },
    {
      "id": 96,
      "english": "How do you think we can influence future generations positively?",
      "japanese": "未来の世代にポジティブな影響を与えるためにはどうすればよいと思いますか?"
    },
    {
      "id": 97,
      "english": "What does it mean to you to live by your principles?",
      "japanese": "あなたの信念に従って生きるとは何を意味しますか?"
    },
    {
      "id": 98,
      "english": "How can we encourage more kindness in our communities?",
      "japanese": "私たちのコミュニティでより多くの親切を促進するにはどうすればよいですか?"
    },
    {
      "id": 99,
      "english": "How do you perceive the concept of success in a rapidly changing world?",
      "japanese": "急速に変化する世界で成功の概念をどのように見ていますか?"
    },
    {
      "id": 100,
      "english": "What is a lesson you've learned about yourself through relationships?",
      "japanese": "人間関係を通じて自分自身について学んだ教訓は何ですか?"
    }
  ]
}