-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.html
More file actions
909 lines (869 loc) · 39.3 KB
/
Copy pathlaunch.html
File metadata and controls
909 lines (869 loc) · 39.3 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K83S4M97G5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-K83S4M97G5');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>夜職の方へ - Pretzel Launch | Pretzel(プレッツェル)</title>
<meta name="description" content="夜職×ファンサブスクで新しい収入源を。Pretzel(プレッツェル)Launchは夜職経験者のファンサブスク立ち上げを完全サポート。身バレ対策も万全。無料相談受付中。">
<meta name="keywords" content="夜職,副業,ファンサブスク,クリエイターマネジメント,身バレ対策,収益化,myfans,candfans,OnlyFans,キャバ嬢,ホステス,Pretzel,プレッツェル">
<link rel="canonical" href="https://pretzel-mgmt.github.io/pretzel-website/launch.html">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta property="og:title" content="夜職の方へ - Pretzel Launch | Pretzel(プレッツェル)">
<meta property="og:description" content="夜職×ファンサブスクで新しい収入源を。Pretzel(プレッツェル)Launchは夜職経験者のファンサブスク立ち上げを完全サポート。身バレ対策も万全。無料相談受付中。">
<meta property="og:type" content="website">
<meta property="og:url" content="https://pretzel-mgmt.github.io/pretzel-website/launch.html">
<meta property="og:image" content="https://res.cloudinary.com/dfihwvfea/image/upload/w_1200,h_630,c_fill,f_auto,q_auto/pretzel/hero-landscape-2">
<meta property="og:site_name" content="Pretzel">
<meta property="og:locale" content="ja_JP">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="assets/images/logo-icon.svg">
<link rel="stylesheet" href="assets/css/style.css">
<!-- JSON-LD Breadcrumb -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{"@type": "ListItem", "position": 1, "name": "トップ", "item": "https://pretzel-mgmt.github.io/pretzel-website/"},
{"@type": "ListItem", "position": 2, "name": "夜職の方へ", "item": "https://pretzel-mgmt.github.io/pretzel-website/launch.html"}
]
}
</script>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"name": "Pretzel Launch",
"provider": {
"@type": "Organization",
"name": "Pretzel",
"alternateName": "プレッツェル",
"url": "https://pretzel-mgmt.github.io/pretzel-website/"
},
"description": "夜職経験者向けファンサブスクリプション立ち上げ支援サービス。アカウント開設代行、身バレ対策、コンテンツ企画、SNS集客支援を提供。",
"serviceType": "ファンサブスク立ち上げ支援",
"areaServed": {
"@type": "Country",
"name": "Japan"
}
}
</script>
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--dark: #0a0a0f;
--dark-card: #12121a;
--dark-border: #1e1e2e;
--pink: #ff2d78;
--purple: #b829dd;
--cyan: #22d3ee;
--text: #e4e4e7;
--text-muted: #9ca3af;
--gradient-pink: linear-gradient(135deg, #ff2d78, #b829dd);
--gradient-cyan: linear-gradient(135deg, #22d3ee, #b829dd);
--gradient-neon: linear-gradient(135deg, #ff2d78, #b829dd, #22d3ee);
--glow-pink: 0 0 40px rgba(255,45,120,0.4), 0 0 80px rgba(255,45,120,0.15);
--glow-purple: 0 0 40px rgba(184,41,221,0.4), 0 0 80px rgba(184,41,221,0.15);
}
body {
font-family: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
background: var(--dark);
color: #cbd5e1;
line-height: 1.85;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
/* ===== NAV ===== */
.logo {
font-family: 'Inter', sans-serif;
font-size: 1.5rem; font-weight: 800;
background: var(--gradient-pink);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
margin-right: 2.5rem;
}
/* ===== HERO ===== */
.hero-launch {
position: relative;
padding: 160px 24px 100px;
text-align: center;
overflow: hidden;
}
.hero-launch::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255,45,120,0.12) 0%, transparent 60%),
radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,41,221,0.1) 0%, transparent 60%),
radial-gradient(ellipse 40% 40% at 50% 50%, rgba(34,211,238,0.06) 0%, transparent 60%);
pointer-events: none;
}
.hero-launch::after {
content: '';
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(255,255,255,0.008) 2px,
rgba(255,255,255,0.008) 4px
);
pointer-events: none;
}
.hero-launch h1 {
font-size: 2.8rem; font-weight: 900;
line-height: 1.3;
margin-bottom: 20px;
position: relative;
}
.hero-launch h1 .neon-text {
background: var(--gradient-neon);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-launch .hero-sub {
font-size: 1.15rem; color: var(--text-muted);
max-width: 640px; margin: 0 auto 40px;
position: relative;
line-height: 1.9;
}
.btn-glow {
display: inline-block;
padding: 18px 56px;
background: var(--gradient-pink);
color: #fff; font-weight: 700; font-size: 1.1rem;
border-radius: 50px; border: none; cursor: pointer;
position: relative;
transition: all 0.3s ease;
box-shadow: var(--glow-pink);
animation: pulse-glow 2s ease-in-out infinite;
}
.btn-glow:hover {
transform: translateY(-3px);
box-shadow: 0 0 60px rgba(255,45,120,0.5), 0 0 120px rgba(255,45,120,0.2);
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 30px rgba(255,45,120,0.3), 0 0 60px rgba(255,45,120,0.1); }
50% { box-shadow: 0 0 50px rgba(255,45,120,0.5), 0 0 100px rgba(255,45,120,0.2); }
}
/* ===== SECTION COMMON ===== */
.section {
max-width: 1000px; margin: 0 auto; padding: 100px 24px;
}
.section-lg { max-width: 1200px; }
.section-title {
font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 48px;
}
.section-title .accent {
background: var(--gradient-pink);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.neon-divider {
width: 60px; height: 3px; margin: 0 auto 48px;
background: var(--gradient-pink);
border-radius: 2px;
}
/* ===== PROBLEM ===== */
.problem-section {
background: linear-gradient(180deg, transparent, rgba(255,45,120,0.03) 50%, transparent);
}
.problem-list {
max-width: 680px; margin: 0 auto;
display: flex; flex-direction: column; gap: 18px;
}
.problem-item {
display: flex; align-items: center; gap: 16px;
background: var(--dark-card);
border: 1px solid var(--dark-border);
border-left: 3px solid var(--pink);
border-radius: 16px;
padding: 20px 24px;
font-size: 1rem;
transition: all 0.3s ease;
}
.problem-item:hover {
border-left-color: var(--purple);
transform: translateX(4px);
}
.problem-icon {
width: 36px; height: 36px; border-radius: 50%;
background: rgba(255,45,120,0.12);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
color: var(--pink); font-size: 1.1rem;
}
/* ===== SOLUTION ===== */
.solution-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.solution-card {
background: var(--dark-card);
border: 1px solid var(--dark-border);
border-radius: 16px;
padding: 32px;
text-align: center;
transition: all 0.3s ease;
position: relative; overflow: hidden;
}
.solution-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: var(--gradient-neon);
opacity: 0; transition: opacity 0.3s;
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card:hover::before { opacity: 1; }
.solution-icon {
width: 56px; height: 56px; border-radius: 14px;
background: rgba(184,41,221,0.1);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px;
font-size: 1.5rem;
}
.solution-card h3 {
font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.solution-card p {
font-size: 0.88rem; color: var(--text-muted);
line-height: 1.85; margin-top: 4px;
}
/* ===== STEPS ===== */
.steps-section {
background: linear-gradient(180deg, transparent, rgba(184,41,221,0.03) 50%, transparent);
}
.steps-flow {
display: flex; flex-direction: column; gap: 0;
max-width: 600px; margin: 0 auto;
position: relative;
}
.steps-flow::before {
content: '';
position: absolute; left: 28px; top: 32px; bottom: 32px;
width: 2px;
background: linear-gradient(180deg, var(--pink), var(--purple), var(--cyan));
}
.step-item {
display: flex; align-items: flex-start; gap: 20px;
padding: 24px 0;
position: relative;
}
.step-number {
width: 56px; height: 56px; border-radius: 50%;
background: var(--dark-card);
border: 2px solid var(--pink);
display: flex; align-items: center; justify-content: center;
font-family: 'Inter', sans-serif;
font-size: 1.1rem; font-weight: 800;
color: var(--pink);
flex-shrink: 0;
position: relative; z-index: 2;
transition: background 0.3s, color 0.3s;
}
.step-item:hover .step-number {
background: var(--gradient-pink);
background: linear-gradient(135deg, var(--pink), var(--purple));
color: #fff;
border-color: transparent;
box-shadow: var(--glow-pink);
}
.step-content { padding-top: 12px; }
.step-content h4 {
font-size: 1.05rem; font-weight: 700; margin-bottom: 4px;
}
.step-content p {
font-size: 0.88rem; color: var(--text-muted);
line-height: 1.85; margin-top: 6px;
}
/* ===== PRICING ===== */
.pricing-single {
max-width: 560px;
margin: 0 auto;
text-align: center;
}
.pricing-card-main {
background: var(--dark-card);
border: 2px solid var(--pink);
border-radius: 24px;
padding: 48px 40px;
position: relative;
overflow: hidden;
box-shadow: 0 0 60px rgba(255,45,120,0.1), 0 0 120px rgba(184,41,221,0.06);
}
.pricing-card-main::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: var(--gradient-neon);
}
.pricing-badge {
display: inline-block;
background: var(--gradient-pink);
color: #fff; font-size: 0.8rem; font-weight: 700;
padding: 6px 20px; border-radius: 20px;
margin-bottom: 24px;
letter-spacing: 0.05em;
}
.pricing-headline {
font-size: 2rem; font-weight: 900;
margin-bottom: 12px;
background: var(--gradient-neon);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.pricing-main-price {
font-family: 'Inter', sans-serif;
font-size: 2.8rem; font-weight: 900;
margin-bottom: 8px;
background: var(--gradient-pink);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.pricing-zero-list {
list-style: none;
display: flex; flex-direction: column; gap: 14px;
margin: 28px 0 32px;
}
.pricing-zero-list li {
font-size: 1.1rem; font-weight: 600;
display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pricing-zero-list li .zero-icon {
display: inline-flex; align-items: center; justify-content: center;
width: 28px; height: 28px; border-radius: 50%;
background: rgba(34,211,238,0.12);
color: var(--cyan); font-size: 0.85rem; font-weight: 700;
flex-shrink: 0;
}
.pricing-tagline {
font-size: 1.05rem; color: var(--text-muted);
margin-bottom: 32px;
line-height: 1.9;
}
.pricing-cta-btn {
display: inline-block;
padding: 18px 56px;
background: var(--gradient-pink);
color: #fff; font-weight: 700; font-size: 1.1rem;
border-radius: 50px; border: none; cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--glow-pink);
}
.pricing-cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 0 60px rgba(255,45,120,0.5), 0 0 120px rgba(255,45,120,0.2);
}
/* ===== SUCCESS STORIES ===== */
.stories-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.story-card {
background: var(--dark-card);
border: 1px solid var(--dark-border);
border-radius: 16px; padding: 32px;
transition: all 0.3s ease;
}
.story-card:hover { transform: translateY(-4px); }
.story-header {
display: flex; align-items: center; gap: 14px;
margin-bottom: 16px;
}
.story-avatar {
width: 48px; height: 48px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-family: 'Inter', sans-serif;
font-weight: 700; color: #fff; font-size: 1.1rem;
}
.story-name { font-weight: 600; }
.story-tag { font-size: 0.78rem; color: var(--text-muted); }
.story-result {
background: rgba(255,45,120,0.08);
border: 1px solid rgba(255,45,120,0.15);
border-radius: 10px; padding: 14px; text-align: center;
margin-bottom: 16px;
}
.story-result-value {
font-family: 'Inter', sans-serif;
font-size: 1.5rem; font-weight: 800; color: var(--pink);
}
.story-result-label {
font-size: 0.78rem; color: var(--text-muted); margin-top: 2px;
}
.story-text {
font-size: 0.88rem; color: var(--text-muted); line-height: 1.85;
margin-top: 4px;
}
/* ===== FAQ ===== */
.faq-list {
max-width: 720px; margin: 0 auto;
display: flex; flex-direction: column; gap: 16px;
}
.faq-item {
background: var(--dark-card);
border: 1px solid var(--dark-border);
border-radius: 14px; overflow: hidden;
}
.faq-question {
width: 100%; padding: 20px 24px;
display: flex; align-items: center; justify-content: space-between;
background: none; border: none; color: var(--text);
font-size: 1rem; font-weight: 600;
cursor: pointer; text-align: left;
font-family: 'Noto Sans JP', sans-serif;
transition: color 0.3s;
}
.faq-question:hover { color: var(--pink); }
.faq-question .faq-toggle {
font-size: 1.3rem; color: var(--pink);
transition: all 0.3s ease;
}
.faq-answer {
max-height: 0; overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
padding: 0 24px 20px;
font-size: 0.92rem; color: var(--text-muted);
line-height: 1.85;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
/* ===== FINAL CTA ===== */
.final-cta {
text-align: center; padding: 100px 24px;
position: relative; overflow: hidden;
}
.final-cta::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(ellipse 50% 50% at 50% 100%, rgba(255,45,120,0.1) 0%, transparent 60%),
radial-gradient(ellipse 30% 40% at 30% 80%, rgba(184,41,221,0.08) 0%, transparent 60%);
pointer-events: none;
}
.final-cta h2 {
font-size: 2rem; font-weight: 800; margin-bottom: 16px;
position: relative;
}
.final-cta p {
color: var(--text-muted); font-size: 1.05rem;
margin-bottom: 40px; position: relative;
line-height: 1.9;
}
.cta-buttons {
display: flex; gap: 16px; justify-content: center;
flex-wrap: wrap; position: relative;
}
.btn-line {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 40px;
background: #06c755; color: #fff;
font-weight: 700; font-size: 1rem;
border-radius: 50px; border: none; cursor: pointer;
transition: all 0.3s ease;
}
.btn-line:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(6,199,85,0.35);
}
.btn-x {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 40px;
background: #1d1d1f; border: 1px solid #333;
color: #fff;
font-weight: 700; font-size: 1rem;
border-radius: 50px; cursor: pointer;
transition: all 0.3s ease;
}
.btn-x:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(255,255,255,0.1);
border-color: #555;
}
/* ===== FOOTER ===== */
.footer {
border-top: 1px solid var(--dark-border);
padding: 48px 24px;
text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
font-family: 'Inter', sans-serif;
font-size: 1.3rem; font-weight: 800;
background: var(--gradient-pink);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
}
.footer-links {
display: flex; justify-content: center; gap: 24px;
list-style: none; margin-bottom: 24px; flex-wrap: wrap;
}
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
.pricing-card-main { padding: 36px 24px; }
.stories-grid { grid-template-columns: 1fr; }
.solution-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.hero-launch { padding: 120px 16px 60px; }
.hero-launch h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
.hero-launch .hero-sub { font-size: 1rem; }
.hero-launch .hero-sub br { display: none; }
.section { padding: 60px 16px; }
.section-title { font-size: 1.5rem; margin-bottom: 32px; }
.problem-item { padding: 16px 18px; font-size: 0.92rem; }
.solution-card { padding: 24px 20px; }
.story-card { padding: 24px 20px; }
.pricing-headline { font-size: 1.6rem; }
.pricing-tagline br { display: none; }
.final-cta { padding: 60px 16px; }
.final-cta h2 { font-size: 1.5rem; }
.final-cta p br { display: none; }
.btn-glow { padding: 16px 40px; font-size: 1rem; }
.pricing-cta-btn { padding: 16px 40px; font-size: 1rem; }
}
@media (max-width: 640px) {
.hero-launch h1 { font-size: clamp(1.5rem, 7vw, 1.8rem); }
.step-item { gap: 14px; }
.step-number { width: 44px; height: 44px; font-size: 0.95rem; }
.steps-flow::before { left: 21px; }
.cta-buttons { flex-direction: column; align-items: center; }
.btn-line, .btn-x { width: 100%; justify-content: center; }
}
</style>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "夜職をしながらファンサブスクを始められますか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "はい、本業と両立できます。スケジュール管理からお店にバレない対策まで、マネージャーがサポートします。"
}
},
{
"@type": "Question",
"name": "お店にバレませんか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Pretzelでは身バレ防止を徹底サポートしています。源氏名での運用、Exifデータ削除、決済の匿名化など、具体的な対策をお教えします。"
}
},
{
"@type": "Question",
"name": "夜職の経験やスキルは活かせますか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "はい、夜職で培った接客力・コミュニケーション力・ファンづくりのスキルはファンサブスクで大きな武器になります。実際に夜職経験者は成功率が高い傾向にあります。"
}
},
{
"@type": "Question",
"name": "確定申告はどうすればいいですか?",
"acceptedAnswer": {
"@type": "Answer",
"text": "ファンサブスク収入は確定申告が必要です。住民税の普通徴収でお店にバレない方法や、経費にできるものなどもアドバイスします。"
}
}
]
}
</script>
</head>
<body>
<!-- NAV -->
<nav class="nav">
<div class="nav-inner">
<a href="index.html" class="nav-logo"><img src="assets/images/logo.svg" alt="Pretzel" height="36" style="display:block;"></a>
<ul class="nav-links" id="navLinks">
<li><a href="services.html">サービス</a></li>
<li><a href="pricing.html">料金</a></li>
<li><a href="results.html">実績</a></li>
<li><a href="blog.html">ブログ</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
<li><a href="launch.html" class="nav-cta">夜職の方へ</a></li>
<li><a href="uraaka.html" class="nav-cta" style="background: linear-gradient(135deg, #a855f7, #ec4899);">裏垢女子の方へ</a></li>
</ul>
<button class="hamburger" id="hamburger" aria-label="メニュー">
<span></span><span></span><span></span>
</button>
</div>
</nav>
<main>
<!-- HERO -->
<section class="hero-launch">
<h1><span class="neon-text">夜の仕事 × ファンサブスク</span><br>= 新しい収入源</h1>
<p class="hero-sub">今の仕事を続けながら、<br>ファンサブスクで月収+10万円を<br>目指しませんか?</p>
<a href="contact.html" class="btn-glow">無料相談する</a>
</section>
<!-- PROBLEM -->
<section class="section problem-section">
<h2 class="section-title"><span class="accent">こんな悩み</span>ありませんか?</h2>
<div class="problem-list">
<div class="problem-item">
<div class="problem-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><path d="M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" fill="rgba(236,72,153,0.7)"/></svg></div>
<span>収入が不安定で将来が心配</span>
</div>
<div class="problem-item">
<div class="problem-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-6h2v2h-2zm0-8h2v6h-2z" fill="rgba(236,72,153,0.7)"/></svg></div>
<span>体力的にいつまで続けられるか不安</span>
</div>
<div class="problem-item">
<div class="problem-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z" fill="rgba(236,72,153,0.7)"/></svg></div>
<span>SNSは使ってるけど収益化できていない</span>
</div>
<div class="problem-item">
<div class="problem-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><path d="M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" fill="rgba(236,72,153,0.7)"/></svg></div>
<span>ファンサブスクに興味はあるけど始め方がわからない</span>
</div>
<div class="problem-item">
<div class="problem-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" fill="rgba(236,72,153,0.7)"/></svg></div>
<span>身バレが怖くて一歩踏み出せない</span>
</div>
</div>
</section>
<!-- SOLUTION -->
<section class="section">
<h2 class="section-title"><span class="accent">Pretzel Launch</span>なら全部解決</h2>
<div class="solution-grid">
<div class="solution-card">
<div class="solution-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><defs><linearGradient id="sGrad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#6366f1"/><stop offset="100%" stop-color="#ec4899"/></linearGradient></defs><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="url(#sGrad1)"/></svg></div>
<h3>アカウント開設から全部サポート</h3>
<p>プラットフォーム選びから初期設定、プロフィール作成まで全て代行。あなたはコンテンツに集中するだけ。</p>
</div>
<div class="solution-card">
<div class="solution-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><defs><linearGradient id="sGrad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#6366f1"/><stop offset="100%" stop-color="#ec4899"/></linearGradient></defs><path d="M12 2L3 7v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5zm0 2.18l7 3.89v5.43c0 4.5-3.08 8.71-7 9.93-3.92-1.22-7-5.43-7-9.93V8.07l7-3.89z" fill="url(#sGrad2)"/><path d="M10 14.17l-2.59-2.58L6 13l4 4 8-8-1.41-1.42L10 14.17z" fill="url(#sGrad2)"/></svg></div>
<h3>身バレ完全対策</h3>
<p>顔出しなし運用、メタデータ除去、位置情報対策など、プライバシー保護を徹底。安心して活動できます。</p>
</div>
<div class="solution-card">
<div class="solution-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><defs><linearGradient id="sGrad3" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#6366f1"/><stop offset="100%" stop-color="#ec4899"/></linearGradient></defs><path d="M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-1 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" fill="url(#sGrad3)"/></svg></div>
<h3>コンテンツ企画もお任せ</h3>
<p>あなたの魅力を活かしたコンテンツ戦略を提案。撮影のコツやスケジュール管理もサポートします。</p>
</div>
<div class="solution-card">
<div class="solution-icon"><svg width="28" height="28" viewBox="0 0 24 24" fill="none"><defs><linearGradient id="sGrad4" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#6366f1"/><stop offset="100%" stop-color="#ec4899"/></linearGradient></defs><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8-1.41-1.42z" fill="url(#sGrad4)"/></svg></div>
<h3>完全成果報酬型だから安心</h3>
<p>料金は売上の20%のみ。初期費用も月額固定費もゼロ。売上がなければ費用も一切かかりません。</p>
</div>
</div>
</section>
<!-- STEPS -->
<section class="section steps-section">
<h2 class="section-title">始め方は<span class="accent">5ステップ</span></h2>
<div class="neon-divider"></div>
<div class="steps-flow">
<div class="step-item">
<div class="step-number">1</div>
<div class="step-content">
<h4>無料相談(LINE / X DM)</h4>
<p>まずはお気軽にご連絡ください。あなたの状況やご希望をヒアリングします。</p>
</div>
</div>
<div class="step-item">
<div class="step-number">2</div>
<div class="step-content">
<h4>カウンセリング</h4>
<p>あなたに合ったプランとプラットフォームをご提案。目標設定も一緒に行います。</p>
</div>
</div>
<div class="step-item">
<div class="step-number">3</div>
<div class="step-content">
<h4>アカウント開設(最短即日)</h4>
<p>プラットフォームの登録からプロフィール設定まで全てサポート。最短でその日のうちに完了。</p>
</div>
</div>
<div class="step-item">
<div class="step-number">4</div>
<div class="step-content">
<h4>コンテンツ制作開始</h4>
<p>コンテンツの方向性・撮影方法・投稿スケジュールを一緒に計画。無理のないペースで進めます。</p>
</div>
</div>
<div class="step-item">
<div class="step-number">5</div>
<div class="step-content">
<h4>収益化スタート</h4>
<p>集客施策と継続的なサポートで、安定した収入を一緒に目指します。</p>
</div>
</div>
</div>
</section>
<!-- PRICING -->
<section class="section section-lg">
<h2 class="section-title"><span class="accent">Launch</span> 料金</h2>
<div class="neon-divider"></div>
<div class="pricing-single">
<div class="pricing-card-main">
<div class="pricing-badge">完全成果報酬型</div>
<div class="pricing-headline">料金は売上の20%のみ</div>
<ul class="pricing-zero-list">
<li><span class="zero-icon">✓</span> 初期費用 <strong style="color: var(--cyan); margin-left: 4px;">0円</strong></li>
<li><span class="zero-icon">✓</span> 月額固定費 <strong style="color: var(--cyan); margin-left: 4px;">0円</strong></li>
</ul>
<p class="pricing-tagline">売上がなければ費用もゼロ。<br>あなたが稼いだときだけ、私たちも報酬をいただきます。</p>
<a href="contact.html" class="pricing-cta-btn">無料相談する</a>
</div>
</div>
</section>
<!-- SUCCESS STORIES -->
<section class="section section-lg">
<h2 class="section-title">夜職から<span class="accent">成功した</span>先輩たち</h2>
<div class="neon-divider"></div>
<div class="stories-grid">
<!-- Case C -->
<div class="story-card">
<div class="story-header">
<div class="story-avatar" style="background: linear-gradient(135deg, #b829dd, #8b5cf6);">C</div>
<div>
<div class="story-name">Cさん</div>
<div class="story-tag">30代女性・元キャバ嬢</div>
</div>
</div>
<div class="story-result">
<div class="story-result-value">月収 8万円</div>
<div class="story-result-label">開始2ヶ月で達成</div>
</div>
<p class="story-text">夜職を引退後、新しい収入源を探していました。Pretzel Launchで始めてみたら、接客で培ったコミュニケーション力がファン対応で活きて、2ヶ月目には安定した収入に。</p>
</div>
<!-- Case D -->
<div class="story-card">
<div class="story-header">
<div class="story-avatar" style="background: linear-gradient(135deg, #f59e0b, #ef4444);">D</div>
<div>
<div class="story-name">Dさん</div>
<div class="story-tag">20代女性・現役ホステス</div>
</div>
</div>
<div class="story-result">
<div class="story-result-value">月収 15万円</div>
<div class="story-result-label">副業として安定収入</div>
</div>
<p class="story-text">本業と両立できるか不安でしたが、Pretzelが身バレ対策とコンテンツ計画を全部やってくれたので、無理なく続けられています。今では本業+副業で生活にかなり余裕ができました。</p>
</div>
<!-- Case F -->
<div class="story-card">
<div class="story-header">
<div class="story-avatar" style="background: linear-gradient(135deg, #ec4899, #f43f5e);">F</div>
<div>
<div class="story-name">Fさん</div>
<div class="story-tag">20代女性・ガールズバー</div>
</div>
</div>
<div class="story-result">
<div class="story-result-value">月収 10万円</div>
<div class="story-result-label">完全匿名で達成</div>
</div>
<p class="story-text">身バレが一番心配でしたが、顔出しなし・声なしでも稼げる方法をPretzelが教えてくれました。完全匿名のまま月10万円。職場の人には全くバレていません。</p>
</div>
</div>
</section>
<!-- FAQ -->
<section class="section">
<h2 class="section-title">よくある<span class="accent">質問</span></h2>
<div class="neon-divider"></div>
<div class="faq-list">
<div class="faq-item">
<button class="faq-question" onclick="this.parentElement.classList.toggle('open')">
顔出しは必要ですか?
<span class="faq-toggle">+</span>
</button>
<div class="faq-answer">
<div class="faq-answer-inner">いいえ、必要ありません。顔出しなしでも十分に収益化できる戦略をご提案します。実際に完全匿名で月10万円以上稼いでいるクリエイターもいます。</div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="this.parentElement.classList.toggle('open')">
今の仕事にバレませんか?
<span class="faq-toggle">+</span>
</button>
<div class="faq-answer">
<div class="faq-answer-inner">徹底的な身バレ対策を行います。アカウント名の設定、メタデータの除去、位置情報の対策、画像の加工指導など、あらゆる角度からプライバシーを保護します。</div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="this.parentElement.classList.toggle('open')">
本当に稼げますか?
<span class="faq-toggle">+</span>
</button>
<div class="faq-answer">
<div class="faq-answer-inner">個人差はありますが、Pretzel Launch利用者の多くが平均2ヶ月で初収益を達成しています。継続的なサポートと戦略的なコンテンツ計画で、着実に収益を伸ばしていきます。</div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="this.parentElement.classList.toggle('open')">
写真撮影はどうすればいいですか?
<span class="faq-toggle">+</span>
</button>
<div class="faq-answer">
<div class="faq-answer-inner">セルフ撮影のコツを丁寧にお伝えします。スマホ1台で十分です。ライティング、アングル、加工のテクニックなど、プロ級の仕上がりになる方法を伝授します。</div>
</div>
</div>
<div class="faq-item">
<button class="faq-question" onclick="this.parentElement.classList.toggle('open')">
いつでも辞められますか?
<span class="faq-toggle">+</span>
</button>
<div class="faq-answer">
<div class="faq-answer-inner">はい、いつでもやめられます。成果報酬型なので、活動を止めれば費用も発生しません。無理に続ける必要はありませんので、お気軽にお申し出ください。</div>
</div>
</div>
</div>
</section>
<!-- FINAL CTA -->
<section class="final-cta">
<h2>まずは気軽に相談してみませんか?</h2>
<p>LINEまたはX(旧Twitter)のDMから<br>お気軽にどうぞ。<br>無理な勧誘は一切ありません。</p>
<div class="cta-buttons">
<a href="#" class="btn-line">
<svg width="22" height="22" viewBox="0 0 24 24" fill="currentColor"><path d="M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.271.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.282.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314"/></svg>
LINEで相談する
</a>
<a href="#" class="btn-x">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
X DMで相談する
</a>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-inner">
<div class="footer-logo"><img src="assets/images/logo.svg" alt="Pretzel" height="32" style="display:block;margin:0 auto;"></div>
<ul class="footer-links">
<li><a href="services.html">サービス</a></li>
<li><a href="pricing.html">料金</a></li>
<li><a href="results.html">実績</a></li>
<li><a href="blog.html">ブログ</a></li>
<li><a href="contact.html">お問い合わせ</a></li>
<li><a href="launch.html">夜職の方へ</a></li>
<li><a href="uraaka.html">裏垢女子の方へ</a></li>
</ul>
<p style="margin-top:8px;text-align:center"><a href="sitemap-page.html" style="color:#94a3b8;font-size:13px;text-decoration:none">サイトマップ</a></p>
<p class="footer-copy" style="text-align:center">© 2026 Pretzel. All rights reserved.</p>
</div>
</footer>
<script>
document.getElementById('hamburger').addEventListener('click', function() {
document.getElementById('navLinks').classList.toggle('active');
});
</script>
</body>
</html>