-
Notifications
You must be signed in to change notification settings - Fork 2
/
sss.html
1464 lines (1353 loc) · 115 KB
/
sss.html
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<meta charset="utf-8">
<meta charset="utf-8">
<main class="wsc-main p-0" data-page="pricing" data-toggle="alert" data-nav="mac">
<div class="py-3 text-center">
<div class="container">
<h1 class="display-4 m-display-4 mb-0 font-weight-normal">DemoCreator Mac版のプランをお選び下さい。<br>
<span style="color:rgba(239,34,38,1.00)">人気プランが1,000円OFF!!</span> </h1>
<div class="d-flex align-items-center justify-content-center py-2 flex-md-row flex-column font-size-tiny"><div class="d-flex align-items-center justify-content-center"><span class="d-inline-flex align-items-center ml-2"><img src="https://images.wondershare.com/images2020/icon/secure2.svg" alt="安全・安心" width="24" class="mr-1">
100%安全・安心 | マルウェアなし | 広告なし </span> <span class="d-inline-flex align-items-center ml-2"><img src="https://images.wondershare.com/images2020/icon/24h.svg" alt="年中24時間サポート" width="24" class="mr-1">
年中24時間サポート </span></div></div>
<div class="pt-3 text-center">
<div class="d-flex align-items-center justify-content-center"> <i class="wsc-icon mr-2" data-icon="brand-macos"></i><span class="font-weight-bold">こちらはMac版です。
</span> </div>
<a href="https://dc.wondershare.jp/buy/democreator-windows-ts.html" class="font-size-small text-action">Windows版はこちらへ</a>
</div>
</div>
</div>
<ul class="nav nav-tabs nav-tabs-border border-primary flex-nowrap justify-content-center text-center font-size-large m-font-size-normal" role="tablist">
<li class="nav-item mx-1 mx-md-3"> <a href="#nav-store-buy" class="h-100 nav-link py-1 py-md-2 px-md-4 border border-bottom-0 text-primary active" id="nav-store-buy-tab" data-toggle="tab" role="tab" aria-controls="nav-store-buy" aria-selected="true"> <span class="d-flex justify-content-center align-items-center h-100 px-lg-5">個人向け</span> </a> </li>
<li class="nav-item mx-1 mx-md-3"> <a href="#nav-store-buy-business" class="h-100 nav-link py-1 py-md-2 px-md-4 border border-bottom-0" id="nav-store-buy-business-tab" data-toggle="tab" role="tab" aria-controls="nav-store-buy-business" aria-selected="true"> <span class="d-flex justify-content-center align-items-center h-100 px-xl-4">法人・商用向け</span> </a> </li>
<li class="nav-item mx-1 mx-md-3"> <a href="#nav-store-buy-students" class="h-100 nav-link py-1 py-md-2 px-md-4 border border-bottom-0" id="nav-store-buy-students-tab" data-toggle="tab" role="tab" aria-controls="nav-store-buy-students" aria-selected="false"> <span class="d-flex justify-content-center align-items-center h-100 px-xl-4">学生向け</span> </a> </li>
</ul>
<div class="tab-content">
<!-- store-buy -->
<div class="tab-pane fade show active" id="nav-store-buy" role="tabpanel" aria-labelledby="nav-store-buy-tab">
<div class="py-5 mt-lg-5">
<div class="container container-xl">
<div class="row justify-content-center">
<div class="col col-md-7 col-lg-4 py-3 bundle-price mt-middle" >
<div style="background-color: #1f73fa;" class="text-white buy-container dropdown-switch-change-two most-popular-container h-100 border-1 border-radius-10 p-4 position-relative d-flex flex-column">
<div class="most-popular most-popular-2 btn-groups-1">1,000円 OFF</div>
<div class="most-popular most-popular-2 btn-groups-2 hidden">1,000円 OFF</div>
<div class="mx-3">
<h4 class="font-size-title-24 font-size-super mt-3 mb-4 text-center text-white">永続ライセンス</h4>
<!-- 价格区域 -->
<div class="price-area">
<div class="text-center">
<del class="btn-groups-1">6,480円(税込)</del>
<del class="btn-groups-2 hidden">6,480円(税込)</del>
</div>
<div class="text-center font-size-lg-huge mb-5 pb-4">
<big class="price font-weight-bold display-4 btn-groups-1">5,480円(税込)</big><span class="period"></span>
<big class="price font-weight-bold display-4 btn-groups-2 hidden">5,480円(税込)</big><span class="period"></span>
</div>
</div>
<div class="custom-control custom-checkbox pb-4 text-center">
<input type="checkbox" id="customCheck3" name="receive" class="custom-control-input" checked>
<label for="customCheck3" class="custom-control-label font-weight-bold "><a class='text-decoration-underline ' target='_blank' style="color: #f8bf2b;" href='https://dc.wondershare.jp/effects/store.html'>DemoCreator Effectsプラン</a>を7日間無料プレゼント。8日目以降、毎月980円で自動更新されます。
<span t="popover" data-original-title="<a class='text-decoration-underline text-action' target='_blank' href='https://dc.wondershare.jp/effects/store.html'>DemoCreator Effects </a>7日間無料プランを追加した場合、最初の7日間は全てのエフェクトを無料でご利用いただけます。8日目以降、毎月980円で自動更新されます。DemoCreator Effectsの自動更新の停止をご希望される場合、<a class='text-decoration-underline text-action' target='_blank' href='https://accounts.wondershare.jp/web/subscription'>こちら </a>よりお手続きいただけます。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span></label>
</div>
</div>
<div class="mx-3">
<div class="text-center pb-3 mb-4">
<a
href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022701&ver=v5&verify=FF3240024BACA5B639415FC0C1CEEA99&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0" class="buy-link btn btn-lg m-font-size-large btn-premium font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-1 text-action" style="max-width: 206px;border-radius: 4px;">購入する</a>
<a href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022701&ver=v5&verify=FF3240024BACA5B639415FC0C1CEEA99"
class="buy-link btn btn-lg m-font-size-large btn-premium font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-2 hidden text-action" style="max-width: 206px;border-radius: 4px;">購入する</a>
</div>
<!-- 这一层div不可删,根据底部文案不同调整 -->
<div class="mb-3 mt-n2">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 "></i>
<span class="font-size-small " >利用可能なOS:</span><span style="color: #f8bf2b;">Mac</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 "></i>
<span class="font-size-small " >録画時間無制限。</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 "></i>
<span class="font-size-small " >すべての機能を利用可能。<br>(自動キャプションを除く)</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 "></i>
<span class="font-size-small " >バージョン5.X内で無料バージョンアップ可能。</span>
<span t="popover" data-original-title="ナンバリングの主要な桁が変わる大型メジャーアップデートが行われ、新バージョンをお使いになりたい場合は、新バージョンに対応する永続ライセンスが必要です。(旧バージョンは永続的にお使い頂けます)。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span>
</div>
<div class="btn-groups-1">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 align-self-start mt-1 text-action"></i>
<span class="font-size-small " >7日間DemoCreator全てのエフェクトを無制限に利用可能。
<span t="popover" data-original-title="<a class="font-size-small text-action" target='_blank' href="https://dc.wondershare.jp/effects.html" target="_blank">DemoCreator Effects</a>には、著作権フリーなエフェクト素材(タイトルやサウンド、トランジションなど)が豊富に搭載されています。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span>
</span>
</div>
</div>
<div class="btn-groups-2 hidden">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-white flex-shrink-0 mr-2 pr-1 " style="visibility: hidden;"></i>
<span class="font-size-small " style="opacity: 0.5;">7日間DemoCreator全てのエフェクトを無制限に利用可能。</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col col-md-7 col-lg-4 py-3">
<div class="buy-container h-100 border-1 most-popular-container border-radius-10 p-4 d-flex flex-column">
<div class="mx-3">
<h4 class="font-size-title-24 font-size-super mt-3 mb-4 text-black text-center">年間スタンダードプラン</h4>
<!-- 价格及切换区域 -->
<div class="price-area">
<div class="text-center">
</div>
<div class="text-center font-size-lg-huge mb-3 btn-groups-1">
<big class="price font-weight-bold display-4">2,980円(税込)</big>/<span class="period">年</span>
</div>
<div class="text-center font-size-lg-huge mb-3 btn-groups-2 hidden">
<big class="price font-weight-bold display-4">2,980円(税込)</big>/<span class="period">年</span>
</div>
</div>
<div class="d-flex justify-content-center align-items-center mb-3 pb-lg-3">
<span class="font-size-small">自動更新タイプ</span>
<span t="popover" data-original-title="「クレジットカード決済」、「Paypal」のみ自動更新されます。その他の決済方法でお支払いの場合は、自動更新されませんので、ご注意ください。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font text-black font-size-small"></i>
</span>
</div>
<div class="custom-control custom-checkbox pb-4 text-center">
<input type="checkbox" id="customCheck1" name="receive" class="custom-control-input" checked>
<label for="customCheck1" class="custom-control-label font-weight-bold text-black"><a class='text-decoration-underline text-action' target='_blank' href='https://dc.wondershare.jp/effects/store.html'>DemoCreator Effectsプラン</a>を7日間無料プレゼント。8日目以降、毎月980円で自動更新されます。
<span t="popover" data-original-title="<a class='text-decoration-underline text-action' target='_blank' href='https://dc.wondershare.jp/effects/store.html'>DemoCreator Effects </a>7日間無料プランを追加した場合、最初の7日間は全てのエフェクトを無料でご利用いただけます。8日目以降、毎月980円で自動更新されます。DemoCreator Effectsの自動更新の停止をご希望される場合、<a class='text-decoration-underline text-action' target='_blank' href='https://accounts.wondershare.jp/web/subscription'>こちら </a>よりお手続きいただけます。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font text-black font-size-small"></i>
</span></label>
</div>
<!-- <div class="font-size-small mb-3 pb-lg-3" style="line-height: 17px;">
</div> -->
</div>
<!-- 按钮及特性 -->
<div class="mx-3">
<div class="pb-3 mb-4 text-center">
<a data-judge="1" class="btn-buy btn btn-lg m-font-size-large btn-action font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-1" style="max-width: 206px;border-radius: 4px;" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=Japanese&sku_id=20022661&ver=v5&verify=3722849DDACDC53B14EA042EAE9AA247&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0" ga360location="content_3_buttonLink_3"><span class="text-white">購入する</span></a>
<a data-judge="0" class="btn-buy btn btn-lg m-font-size-large btn-action font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-2 hidden" style="max-width: 206px;border-radius: 4px;" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=Japanese&sku_id=20022661&ver=v5&verify=3722849DDACDC53B14EA042EAE9AA247" href-win32="#" ga360location="content_3_buttonLink_4"><span class="text-white">購入する</span></a>
</div>
<!-- 这一层div不可删,根据底部文案不同调整 -->
<div class="mb-3 mt-n2">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-action flex-shrink-0 mr-2 pr-1"></i>
<span class="font-size-small text-black" >利用可能なOS:</span><span class="text-action">Mac</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-action flex-shrink-0 mr-2 pr-1"></i>
<span class="font-size-small text-black" >録画時間無制限。</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-action flex-shrink-0 mr-2 pr-1"></i>
<span class="font-size-small text-black" >ライセンス有効期限内で無料バージョンアップ。</span>
</div>
<div class="btn-groups-1">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-action flex-shrink-0 mr-2 pr-1 align-self-start mt-1"></i>
<span class="font-size-small text-black" >7日間DemoCreator全てのエフェクトを無制限に利用可能。
<span t="popover" data-original-title="<a class="font-size-small text-action" target='_blank' href="https://dc.wondershare.jp/effects.html" target="_blank">DemoCreator Effects </a>には、著作権フリーなエフェクト素材(タイトルやサウンド、トランジションなど)が豊富に搭載されています。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font text-black font-size-small"></i>
</span>
</span>
</div>
</div>
<div class="btn-groups-2 hidden">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick text-action flex-shrink-0 mr-2 pr-1" style="visibility: hidden;"></i>
<span class="font-size-small text-black" style="opacity: 0.5;">7日間DemoCreator全てのエフェクトを無制限に利用可能。</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 中间栏 -->
<div class="col col-md-7 col-lg-4 py-3 ">
<div class="buy-container h-100 border-1 border-radius-10 p-4 position-relative most-popular-container d-flex flex-column text-black">
<div class="most-popular most-popular-2 btn-groups-1">500円 OFF </div>
<div class="most-popular most-popular-2 btn-groups-2 hidden">500円 OFF </div>
<div class="mx-3">
<h4 class="font-size-title-24 font-size-super mt-3 mb-4 text-center">年間プレミアムプラン</h4>
<!-- 价格及切换区域 -->
<div class="price-area">
<div class="text-center">
<del class="btn-groups-1">4,480円(税込)</del>
<del class="btn-groups-2 hidden">4,480円(税込)</del>
</div>
<div class="text-center font-size-lg-huge mb-3 btn-groups-1">
<big class="price font-weight-bold display-4">3,980円(税込)</big>/<span class="period">年</span>
</div>
<div class="text-center font-size-lg-huge mb-3 btn-groups-2 hidden">
<big class="price font-weight-bold display-4">3,980円(税込)</big>/<span class="period">年</span>
</div>
</div>
<div class="d-flex justify-content-center align-items-center mb-3 pb-lg-3">
<span class="font-size-small ">自動更新タイプ</span>
<span t="popover" data-original-title="「クレジットカード決済」、「Paypal」のみ自動更新されます。その他の決済方法でお支払いの場合は、自動更新されませんので、ご注意ください。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span>
</div>
<div class="custom-control custom-checkbox pb-4 text-center">
<input type="checkbox" id="customCheck2" name="receive" class="custom-control-input" checked>
<label for="customCheck2" class="custom-control-label font-weight-bold "><a class='text-decoration-underline text-action' target='_blank' href='https://dc.wondershare.jp/effects/store.html'>DemoCreator
Effectsプラン</a>を7日間無料プレゼント。8日目以降、毎月980円で自動更新されます。
<span t="popover" data-original-title="<a class='text-decoration-underline text-action' target='_blank' href='https://dc.wondershare.jp/effects/store.html'>DemoCreator Effects </a>7日間無料プランを追加した場合、最初の7日間は全てのエフェクトを無料でご利用いただけます。8日目以降、毎月980円で自動更新されます。DemoCreator Effectsの自動更新の停止をご希望される場合、<a class='text-decoration-underline text-action' target='_blank' href='https://accounts.wondershare.jp/web/subscription'>こちら </a>よりお手続きいただけます。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span></label>
</div>
</div>
<!-- 按钮及特性 -->
<div class="mx-3">
<div class="pb-3 mb-4 text-center">
<a data-judge="1" class="btn-buy btn btn-lg m-font-size-large btn-action font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-1" style="max-width: 206px;border-radius: 4px;"
href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022681&ver=v5&verify=F507B25E951591B77D81D53DCA372774&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0"><span class="text-white">購入する</span></a>
<a data-judge="0" class="btn-buy btn btn-lg m-font-size-large btn-action font-weight-bold btn-rounded btn-uncap text-center m-0 w-100 btn-groups-2 hidden" style="max-width: 206px;border-radius: 4px;" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022681&ver=v5&verify=F507B25E951591B77D81D53DCA372774" href-win32="#"><span class="text-white">購入する</span></a>
</div>
<!-- 这一层div不可删,根据底部文案不同调整 -->
<div class="mb-3 mt-n2">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 text-action"></i>
<span class="font-size-small " >利用可能なOS:</span><span class="text-action">Windows & Mac</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 text-action"></i>
<span class="font-size-small " >録画時間無制限。</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 text-action"></i>
<span class="font-size-small " >すべての機能を利用できる。</span>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 text-action"></i>
<span class="font-size-small " >ライセンス有効期限内で無料バージョンアップ。</span>
</div>
<div class="btn-groups-1">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 align-self-start mt-1 text-action"></i>
<span class="font-size-small " >7日間DemoCreator全てのエフェクトを無制限に利用可能。
<span t="popover" data-original-title="<a class="font-size-small text-action" target='_blank' href="https://dc.wondershare.jp/effects.html" target="_blank">DemoCreator Effects </a>には、著作権フリーなエフェクト素材(タイトルやサウンド、トランジションなど)が豊富に搭載されています。" data-placement="top" data-html="true" class="with-hand">
<i data-icon="extra-exclamation-circle" class="wsc-icon wsc-icon-font font-size-small"></i>
</span>
</span>
</div>
</div>
<div class="btn-groups-2 hidden">
<div class="d-flex align-items-center py-2 border-bottom-1">
<i data-icon="symbol-checkmark" class="wsc-icon wsc-icon-sm wsc-icon-thick flex-shrink-0 mr-2 pr-1 text-action" style="visibility: hidden;"></i>
<span class="font-size-small " style="opacity: 0.5;">7日間DemoCreator全てのエフェクトを無制限に利用可能。</span>
</div>
</div>
<div class="d-flex align-items-center py-2 border-bottom-1">
<a href="#more-privileges" class="font-size-small ">もっと見る>></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center font-size-tiny py-3">
<span class="mr-2">対応する支払い方法:</span> <img src="https://images.wondershare.com/images2020/img-we-accept1.png" alt="DemoCreator支払い形式図" width="320" class="img-fluid"> <img src="https://images.wondershare.com/images2020/img-we-accept2.png" alt="DemoCreator支払い方法" width="260" class="img-fluid">
</div>
<a name="more-privileges"></a>
</div>
<section class="pt-5 pb-3 mt-lg-3">
<div class="container container-xl">
<h2 class="text-center mb-4">各プランの詳細機能一覧</h2>
</div>
<div id="table-head" class="bg-white w-100 text-white">
<div class="container container-xl table-responsive-sm">
<table class="d-lg-table d-none table-style w-100 text-center" style="min-height: 72px; z-index: 10;">
<tbody>
<tr>
<th height="25" class="border py-4" style="width: 22%; min-width: 240px; background-color: #226ced;">機能</th>
<th class="border btn-thead py-4" style="width: 12%; min-width: 120px; ">無料版</th>
<th class="border btn-thead py-4" style="width: 22%; min-width: 120px;">年間スタンダードプラン</th>
<th class="border btn-thead py-4" style="width: 22%; min-width: 120px; ">年間プレミアムプラン</th>
<th class="border btn-thead py-4" style="width: 22%; min-width: 120px; ">
永続ライセンス
</th>
</tr>
<tr>
<td class="platform-thead" style="width: 22%; min-width: 240px;background: #eae9e9;color: #226ced;font-weight: 700">利用可能なOS</td>
<td class="platform-thead" style="width: 12%; min-width: 120px;background: #ffffff;color: #226ced;">
Mac
</td>
<td class="platform-thead" style="width: 22%; min-width: 120px;background: #ffffff;color: #226ced;">
Mac
</td>
<td style="width: 22%; min-width: 120px;background: #ffffff;" class="text-action platform-thead">
Windows&Mac
</td>
<td class="platform-thead" style="width: 22%; min-width: 120px;background: #ffffff;color: #226ced;">
Mac
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container container-xl">
<div id="table-content" class="table-responsive table-integration">
<table class="table w-100 text-center mb-0">
<thead class="font-size-super text-white d-none">
<tr>
<th height="25" class="border bg-black py-4" style="width: 22%; min-width: 240px; background-color: #EAE9E9;">機能</th>
<th class="border bg-black py-4" style="width: 12%; min-width: 120px; background-color: #EAE9E9;">無料版</th>
<th class="border bg-black py-4" style="width: 22%; min-width: 120px; background-color: #EAE9E9;">年間スタンダードプラン</th>
<th class="border py-4" style="width: 22%; min-width: 120px; background-color: #FF4D13;">年間プレミアムプラン</th>
<th class="border bg-black py-4" style="width: 22%; min-width: 120px; background-color: #EAE9E9;">
永続ライセンス
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="5" class="p-0 border-0">
<table id="headingTableOne" class="with-hand w-100" data-toggle="collapse" data-target="#collapseTableOne" aria-expanded="true" aria-controls="collapseTableOne">
<tr>
<td class="text-black" style="width: 22%; min-width: 240px;">
<!-- <span-->
<!-- title="DemoCreator"-->
<!-- >-->
<!--<img src="https://neveragain.allstatics.com/2019/assets/icon/logo/democreator-square.svg" alt="democreator" style="height: 2rem;">-->
<!-- </span>-->
<span class="ml-2 text-action"><strong>PC画面録画・Webカメラ録画</strong></span>
<span class="ml-2">
<svg class="wsc-svg-extra-angle-down" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 320 512" style="height: 1.5rem;">
<path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;"><div class="aria-expanded-false-show">--</div></td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<div id="collapseTableOne" class="collapse multi-collapse show" aria-expanded="true" aria-labelledby="headingTableOne">
<table class="collapse-table w-100">
<tr>
<td style="width: 22%; min-width: 240px;">録画可能な時間</td>
<td style="width: 12%; min-width: 120px;">15分間</td>
<td style="width: 22%; min-width: 120px;" class="text-action">
無制限
</td>
<td style="width: 22%; min-width: 120px;" class="text-action">
無制限
</td>
<td style="width: 22%; min-width: 120px;" class="text-action">
無制限
</td>
</tr>
<tr>
<td>画面描画ツール</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td>デュアルモニター録画</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td>
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td>ウォーターマークなし</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">グリーンスクリーン</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<table id="headingTableThree" class="with-hand w-100 " data-toggle="collapse" data-target="#collapseTableThree" aria-expanded="true" aria-controls="collapseTableThree">
<tr>
<td class="text-black" style="width: 22%; min-width: 240px; font-size: 12px;">
<!--<span-->
<!-- title="Anireel"-->
<!-->-->
<!--<img src="https://neveragain.allstatics.com/2019/assets/icon/logo/anireel-square.svg" alt="" style="height: 2rem;">-->
<!--</span>-->
<span class="most-popular-2" style="color: white;border-radius: 4px;padding: 4px;font-size: 12px;">NEW</span><span class="ml-2 text-action"><strong>プレゼンテーションモード</strong></span>
<span class="ml-2">
<svg class="wsc-svg-extra-angle-down" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 320 512" style="height: 1.5rem;">
<path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;"><div class="aria-expanded-false-show">--</div></td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<div id="collapseTableThree" class="collapse multi-collapse show" aria-labelledby="headingTableThree">
<table class="collapse-table w-100">
<tr>
<td style="width: 22%; min-width: 240px;">ビデオ会議対応
<span
t="popover"
data-original-title="対応できるオンライン会議システム:Zoom, Teams, Skype, Google Meetingなど。"
data-placement="right"
data-html="true"
>
<svg class="wsc-svg-extra-exclamation-circle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512" height="16">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">ライブ配信
<span
t="popover"
data-original-title="対応できるライブ配信プラットフォーム:Twitch, YouTube live, Vimeo, Facebook Live, Discordなど。"
data-placement="right"
data-html="true"
>
<svg class="wsc-svg-extra-exclamation-circle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512" height="16">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">ホワイトボード</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">ロゴのカスタマイズ</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">バーチャル背景</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<table id="headingTableThree" class="with-hand w-100 " data-toggle="collapse" data-target="#collapseTableThree" aria-expanded="true" aria-controls="collapseTableThree">
<tr>
<td class="text-black" style="width: 22%; min-width: 240px;">
<span class="ml-2 text-action"><strong>動画編集</strong></span>
<span class="ml-2">
<svg class="wsc-svg-extra-angle-down" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 320 512" style="height: 1.5rem;">
<path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;"><div class="aria-expanded-false-show">--</div></td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
<td style="width: 22%; min-width: 120px;">
<div class="aria-expanded-false-show">--</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<div id="collapseTableFour" class="collapse multi-collapse show" aria-labelledby="headingTableFour">
<table class="collapse-table w-100">
<tr>
<td style="width: 22%; min-width: 240px;">基本動画編集</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">一括編集&グループ編集</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr>
<td>ウォーターマークなし</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">DemoCreator Effects
<span
t="popover"
data-original-title="DemoCreatorの<a class='font-size-small text-action' href='https://dc.wondershare.jp/effects.html' target='_blank'>DemoCreator Effectsストア</a>には、10,000を超える著作権フリーなエフェクト素材を豊富に搭載。<a class='font-size-small text-action' href='https://dc.wondershare.jp/effects/store.html' target='_blank'>DemoCreator Effects有料プラン</a>をご購入いただくと、すべてのエフェクト素材を無制限にご利用いただけます。"
data-placement="top"
data-html="true"
>
<svg class="wsc-svg-extra-exclamation-circle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512" height="16">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">
自動ノイズ除去
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg>
</td>
</tr>
<tr id="specialEffects">
<td style="width: 22%; min-width: 240px;">
ボイスチェンジャー
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
<td style="width: 22%; min-width: 120px;"><svg class="text-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="4">
<path d="M2 20 L12 28 30 4"></path>
</svg></td>
</tr>
<tr>
<td style="width: 22%; min-width: 240px;">自動キャプション
<span
t="popover"
data-original-title="DemoCreatorの<a class='font-size-small text-action' href='https://dc.wondershare.jp/buy/windows-auto-caption.html' target='_blank'>自動キャプション</a>機能は、ワンクリックで音声を字幕に自動変換できます。"
data-placement="top"
data-html="true"
>
<svg class="wsc-svg-extra-exclamation-circle" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512" height="16">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</svg>
</span>
</td>
<td style="width: 12%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
<td style="width: 22%; min-width: 120px;" class="text-action">
1時間/月
</td>
<td style="width: 22%; min-width: 120px;">
<svg class="text-black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="16" height="16" fill="none" stroke="currentcolor" stroke-linecap="butt" stroke-linejoin="bevel" stroke-width="2">
<path d="M2 30 L30 2 M30 30 L2 2"></path>
</svg>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td colspan="5" class="p-0 border-0">
<table id="" class=" w-100 buy-container premium-container">
<tr>
<td class="" style="width: 22%; min-width: 240px;vertical-align: middle;background: #eae9e9;">
<span class="ml-2 text-action"><strong>価格</strong></span>
</td>
<td style="width: 12%; min-width: 120px;"><div class="aria-expanded-false-show justify-content-center"></div></td>
<td class="table-customCheck1" style="width: 22%; min-width: 120px;vertical-align: middle;">
<div class="price-area btn-groups-1">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=Japanese&sku_id=20022661&ver=v5&verify=3722849DDACDC53B14EA042EAE9AA247&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>2,980円(税込)</span><span class="font-size-tiny font-weight-normal text-black">/年</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
<div class="price-area btn-groups-2 hidden">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=Japanese&sku_id=20022661&ver=v5&verify=3722849DDACDC53B14EA042EAE9AA247">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>2,980円(税込)</span><span class="font-size-tiny font-weight-normal text-black">/年</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
</td>
<td class="table-customCheck2" style="width: 22%; min-width: 120px;">
<div class="price-area btn-groups-1">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022681&ver=v5&verify=F507B25E951591B77D81D53DCA372774&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>3,980円(税込)</span><span class="font-size-tiny font-weight-normal text-black">/年</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
<div class="price-area btn-groups-2 hidden">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022681&ver=v5&verify=F507B25E951591B77D81D53DCA372774">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>3,980円(税込)</span><span class="font-size-tiny font-weight-normal text-black">/年</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
</td>
<td class="table-customCheck3" style="width: 22%; min-width: 120px;">
<div class="price-area btn-groups-1">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022701&ver=v5&verify=FF3240024BACA5B639415FC0C1CEEA99&additional_sku=100107172680&additional_activity=1338403388187349072&quick_batch=0">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>5,480円(税込)</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
<div class="price-area btn-groups-2 hidden">
<a class="btn btn-lg btn-premium with-hand" href="https://store.wondershare.jp/index.php?submod=checkout&method=index¤cy=JPY&language=ja_jp&sku_id=20022701&ver=v5&verify=FF3240024BACA5B639415FC0C1CEEA99">
<div class="font-size-huge font-weight-bold text-black">
<div class="mb-1"><span class="text-nowrap"><span>5,480円(税込)</span></span></div>
<div class="d-inline-block align-items-center justify-content-center" style="font-size:14px;margin-left: 8px;align-self: center;padding: 7px 15px;background: #1f73fa;border-radius: 28px;color: white;">購入する</div>
</div>
</a>
</div>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<div class="container container-xl pb-5 pt-lg-5">
<p class="display-4 m-display-5 text-center pt-lg-3 mt-lg-3 font-weight-normal"> 期間限定!まとめ買いがお得</p>
<div class="row justify-content-center">
<div class="col-lg-10 col-xl-6 pt-5">