-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
982 lines (932 loc) · 42 KB
/
Copy pathindex.html
File metadata and controls
982 lines (932 loc) · 42 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
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f5f3ee" id="themeColorMeta" />
<!-- 配色テーマ(ダーク/ライト)の初期化:描画前に data-theme を確定し、ちらつき(FOUC)を防ぐ -->
<script>
(function () {
try {
var saved = localStorage.getItem('portfolio-theme');
var theme = (saved === 'dark' || saved === 'light')
? saved
: (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', theme);
var m = document.getElementById('themeColorMeta');
if (m) m.setAttribute('content', theme === 'dark' ? '#14161b' : '#f5f3ee');
} catch (e) {}
})();
</script>
<title>Excel VBA(マクロ)の修正・解読・開発|コードを読んで、壊さず直します</title>
<meta name="description" content="動かなくなったExcelマクロ(VBA)の修正、作った人が退職して中身が分からないマクロの解読・文書化、新規マクロの開発を承ります。ソースはロックなし・コメント付きで納品し、既存の機能は変更しません。納品後14日間は同一原因の不具合を無償対応します。" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='7' fill='%231D6F42'/%3E%3Ctext x='16' y='22' font-family='Segoe UI,sans-serif' font-size='13' font-weight='700' fill='%23FFFFFF' text-anchor='middle'%3EVB%3C/text%3E%3C/svg%3E" />
<link rel="canonical" href="https://portfolio.tegumi.dev/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://portfolio.tegumi.dev/" />
<meta property="og:title" content="Excel VBA(マクロ)の修正・解読・開発|コードを読んで、壊さず直します" />
<meta property="og:description" content="動かないマクロの修正、退職者が残したマクロの解読・文書化、新規開発。ソースはロックなし・コメント付き、既存機能は変更せず、納品後14日間の同一原因不具合は無償対応。" />
<meta property="og:image" content="https://portfolio.tegumi.dev/assets/og/hub.png" />
<meta name="twitter:card" content="summary_large_image" />
<!-- Google Fonts -->
<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=Shippori+Mincho+B1:wght@500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap" rel="stylesheet" />
<style>
/* ============================================================
Excel VBA ポートフォリオ ハブページ
単一ファイル完結 / フレームワーク不使用
アクセント=Excelグリーン(vba-docs と共通の系統色)
============================================================ */
:root {
--ink: #1a1c22;
--ink-soft: #555a66;
--ink-faint: #8b909c;
--bg: #f5f3ee;
--bg-deep: #14231b;
--panel: #fbfaf6;
--line: rgba(26, 28, 34, 0.1);
--accent: #1d6f42; /* Excel グリーン(vba-docs と同系) */
--accent-strong: #1d6f42; /* ボタン用(両テーマ固定) */
--mark1: rgba(29, 111, 66, 0.32);
--mark2: rgba(29, 111, 66, 0.12);
/* テーマで切り替える派生トークン */
--header-bg: rgba(245, 243, 238, 0.78);
--header-bg-scrolled: rgba(245, 243, 238, 0.92);
--btn-bg: #14231b;
--btn-fg: #ffffff;
--hero-glow: 0.5;
--tag-bg: rgba(0, 0, 0, 0.015);
--serif: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
--sans: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
--radius: 18px;
--shadow-sm: 0 6px 20px -10px rgba(20, 35, 27, 0.25);
--shadow-md: 0 26px 60px -34px rgba(20, 35, 27, 0.45);
--shadow-lg: 0 40px 90px -42px rgba(20, 35, 27, 0.55);
}
/* ============ ダークテーマ ============
data-theme="dark"(保存設定 or OS設定から JS が付与)。
JS 無効時の自動ダークは下の @media フォールバックで担保する。 */
:root[data-theme="dark"] {
--ink: #e9e7e0;
--ink-soft: #b6b3aa;
--ink-faint: #9498a3;
--bg: #14161b;
--bg-deep: #16211b;
--panel: #1c1f27;
--line: rgba(233, 231, 224, 0.13);
--accent: #4db681;
--mark1: rgba(77, 182, 129, 0.34);
--mark2: rgba(77, 182, 129, 0.14);
--header-bg: rgba(20, 22, 27, 0.72);
--header-bg-scrolled: rgba(20, 22, 27, 0.9);
--btn-bg: #e9e7e0;
--btn-fg: #14161c;
--hero-glow: 0.3;
--tag-bg: rgba(233, 231, 224, 0.05);
}
/* JS 無効でも OS がダーク設定なら自動でダークに(data-theme 未付与時のみ適用)*/
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]):not([data-theme="dark"]) {
--ink: #e9e7e0;
--ink-soft: #b6b3aa;
--ink-faint: #9498a3;
--bg: #14161b;
--bg-deep: #16211b;
--panel: #1c1f27;
--line: rgba(233, 231, 224, 0.13);
--accent: #4db681;
--mark1: rgba(77, 182, 129, 0.34);
--mark2: rgba(77, 182, 129, 0.14);
--header-bg: rgba(20, 22, 27, 0.72);
--header-bg-scrolled: rgba(20, 22, 27, 0.9);
--btn-bg: #e9e7e0;
--btn-fg: #14161c;
--hero-glow: 0.3;
--tag-bg: rgba(233, 231, 224, 0.05);
}
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; -webkit-text-size-adjust: 100%; }
body {
font-family: var(--sans);
color: var(--ink);
background: var(--bg);
line-height: 1.85;
letter-spacing: 0.02em;
font-weight: 400;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.container {
width: min(1180px, 100% - 2.6rem);
margin-inline: auto;
}
.skip-link {
position: absolute;
left: 1rem;
top: -3rem;
z-index: 200;
background: var(--ink);
color: var(--bg);
padding: 0.6rem 1rem;
border-radius: 8px;
transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
/* ============ HEADER ============ */
.site-header {
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(12px);
background: var(--header-bg);
border-bottom: 1px solid transparent;
transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
border-bottom-color: var(--line);
background: var(--header-bg-scrolled);
}
.site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
padding-block: 1.1rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
display: grid;
place-items: center;
width: 38px;
height: 38px;
border-radius: 10px;
background: var(--bg-deep);
color: var(--accent);
flex-shrink: 0;
}
:root[data-theme="dark"] .brand__mark { color: #7ccfa3; }
.brand__name {
font-family: var(--serif);
font-weight: 600;
font-size: 1.05rem;
letter-spacing: 0.04em;
line-height: 1.3;
}
.brand__sub {
display: block;
font-size: 0.62rem;
letter-spacing: 0.28em;
color: var(--ink-faint);
text-transform: uppercase;
}
.header__nav { display: flex; align-items: center; gap: 1.6rem; }
.header__nav a {
font-size: 0.82rem;
letter-spacing: 0.06em;
color: var(--ink-soft);
transition: color 0.2s var(--ease);
}
.header__nav a:hover { color: var(--ink); }
.header__nav .nav-cta {
padding: 0.5rem 1.1rem;
border: 1px solid var(--ink);
border-radius: 999px;
color: var(--ink);
transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.header__nav .nav-cta:hover { background: var(--ink); color: var(--bg); }
/* 配色テーマ切り替えボタン */
.theme-toggle {
display: inline-grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0;
border: 1px solid var(--line); border-radius: 50%; background: transparent;
color: var(--ink-soft); cursor: pointer; padding: 0;
transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-faint); }
.theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.theme-toggle svg { width: 19px; height: 19px; display: block; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
/* ナビ項目6つ+CTAが1行に収まらない幅では CTA のみ表示 */
@media (max-width: 760px) {
.header__nav a:not(.nav-cta) { display: none; }
}
/* ============ HERO ============ */
.hero {
position: relative;
padding-block: clamp(4rem, 11vw, 7.5rem) clamp(3rem, 7vw, 5rem);
overflow: hidden;
}
.hero::before,
.hero::after {
content: "";
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: var(--hero-glow);
z-index: 0;
}
.hero::before {
width: 460px; height: 460px;
top: -160px; right: -120px;
background: radial-gradient(circle, rgba(29, 111, 66, 0.35), transparent 70%);
}
.hero::after {
width: 420px; height: 420px;
bottom: -200px; left: -140px;
background: radial-gradient(circle, rgba(96, 156, 118, 0.3), transparent 70%);
}
.hero__inner { position: relative; z-index: 1; max-width: 800px; }
.hero__eyebrow {
display: inline-flex;
align-items: center;
gap: 0.8rem;
font-size: 0.74rem;
letter-spacing: 0.32em;
text-transform: uppercase;
color: var(--ink-soft);
margin-bottom: 1.4rem;
}
.hero__eyebrow::before {
content: "";
width: 38px; height: 1px;
background: var(--accent);
}
/* 事故ワード(発注者の困りごと)チップ */
.pain-list {
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
margin-bottom: 1.5rem;
}
.pain-list li {
font-size: 0.85rem;
color: var(--ink-soft);
background: var(--panel);
border: 1px solid var(--line);
border-radius: 999px;
padding: 0.32rem 0.95rem;
box-shadow: var(--shadow-sm);
}
.hero__title {
font-family: var(--serif);
font-weight: 700;
font-size: clamp(2.2rem, 6.2vw, 4rem);
line-height: 1.3;
letter-spacing: 0.02em;
margin-bottom: 1.6rem;
}
.hero__title em {
font-style: normal;
position: relative;
white-space: nowrap;
}
.hero__title em::after {
content: "";
position: absolute;
left: -2%; right: -2%;
bottom: 0.08em;
height: 0.42em;
background: linear-gradient(90deg, var(--mark1), var(--mark2));
z-index: -1;
border-radius: 4px;
}
/* 356px未満で nowrap の強調部分がはみ出さないよう縮小 */
@media (max-width: 360px) {
.hero__title { font-size: clamp(1.7rem, 10vw, 2.2rem); }
}
.hero__lead {
font-size: clamp(0.98rem, 1.6vw, 1.12rem);
color: var(--ink-soft);
max-width: 58ch;
margin-bottom: 2.2rem;
}
.hero__meta {
display: flex;
flex-wrap: wrap;
gap: 0.7rem 1.8rem;
font-size: 0.82rem;
color: var(--ink-faint);
}
.hero__meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero__meta li::before {
content: "";
width: 6px; height: 6px;
border-radius: 50%;
background: var(--accent);
}
/* ============ HERO CTA ============ */
.hero__cta-wrap { margin-bottom: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; align-items: center; }
.hero__cta {
display: inline-flex; align-items: center; gap: 0.6rem;
background: var(--btn-bg); color: var(--btn-fg);
padding: 0.8rem 1.5rem; border-radius: 999px;
font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
transition: gap 0.25s var(--ease), filter 0.25s var(--ease);
}
.hero__cta::after { content: "→"; transition: transform 0.25s var(--ease); }
.hero__cta:hover { gap: 0.85rem; filter: brightness(1.18); }
.hero__cta:hover::after { transform: translateX(3px); }
.hero__cta-sub {
font-size: 0.88rem; color: var(--ink-soft);
text-decoration: underline; text-underline-offset: 3px;
}
.hero__cta-sub:hover { color: var(--ink); }
/* ============ SECTION HEAD(共通) ============ */
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }
.section-head__eyebrow {
font-size: 0.72rem;
letter-spacing: 0.34em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.8rem;
}
.section-head__title {
font-family: var(--serif);
font-weight: 600;
font-size: clamp(1.5rem, 3.4vw, 2.1rem);
letter-spacing: 0.03em;
}
.section-head__lead {
margin-top: 0.8rem;
color: var(--ink-soft);
font-size: 0.95rem;
max-width: 62ch;
}
/* ============ PROMISE(納品の約束・最重要) ============ */
.promise {
padding-block: clamp(3.5rem, 7vw, 6rem);
background: var(--bg-deep);
color: rgba(245, 243, 238, 0.9);
}
.promise .section-head__eyebrow { color: #7ccfa3; }
.promise .section-head__title { color: #fff; }
.promise .section-head__lead { color: rgba(245, 243, 238, 0.68); }
.promise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 1.2rem;
counter-reset: promise;
}
.promise-card {
padding: 1.5rem 1.5rem 1.6rem;
border: 1px solid rgba(245, 243, 238, 0.14);
border-radius: 14px;
background: rgba(245, 243, 238, 0.04);
}
.promise-card::before {
counter-increment: promise;
content: "0" counter(promise);
display: block;
font-family: var(--serif);
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 0.14em;
color: #7ccfa3;
margin-bottom: 0.7rem;
}
.promise-card h3 {
font-family: var(--serif);
font-weight: 600;
font-size: 1.04rem;
line-height: 1.6;
margin-bottom: 0.55rem;
color: #fff;
}
.promise-card p {
font-size: 0.86rem;
color: rgba(245, 243, 238, 0.72);
}
.promise__note {
margin-top: 1.6rem;
font-size: 0.8rem;
color: rgba(245, 243, 238, 0.55);
}
/* ============ CASES(事例) ============ */
.cases { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem); }
.cases-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.4rem;
}
.case-card {
display: flex;
flex-direction: column;
padding: clamp(1.4rem, 3vw, 1.9rem);
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--panel);
box-shadow: var(--shadow-md);
}
.case-card__tag {
align-self: flex-start;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.12em;
color: var(--accent);
border: 1px solid currentColor;
border-radius: 999px;
padding: 0.2rem 0.75rem;
margin-bottom: 1rem;
}
.case-card h3 {
font-family: var(--serif);
font-weight: 600;
font-size: 1.15rem;
line-height: 1.6;
letter-spacing: 0.02em;
margin-bottom: 0.6rem;
}
.case-card p {
font-size: 0.88rem;
color: var(--ink-soft);
flex-grow: 1;
margin-bottom: 1.3rem;
}
.cases__note {
margin-top: 1.6rem;
font-size: 0.8rem;
color: var(--ink-faint);
}
/* 汎用リンクボタン */
.btn-link {
display: inline-flex; align-items: center; gap: 0.5rem; align-self: flex-start;
background: var(--btn-bg); color: var(--btn-fg); padding: 0.68rem 1.3rem; border-radius: 999px;
font-weight: 700; font-size: 0.88rem; transition: filter 0.25s var(--ease), gap 0.25s var(--ease);
}
.btn-link::after { content: "→"; transition: transform 0.25s var(--ease); }
.btn-link:hover { filter: brightness(1.35); gap: 0.8rem; }
.btn-link:hover::after { transform: translateX(3px); }
/* ============ DOCS(納品文書見本) ============ */
.docs { padding-block: clamp(3rem, 7vw, 5.5rem); background: var(--panel); border-block: 1px solid var(--line); }
.docs-card {
display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
gap: 1.4rem 2rem;
}
.docs-card__body { flex: 1 1 400px; }
.docs-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 0.5rem 1.4rem;
margin-block: 1.2rem 1.4rem;
}
.docs-list li {
display: flex; align-items: baseline; gap: 0.55rem;
font-size: 0.9rem; color: var(--ink);
}
.docs-list li::before {
content: "✓";
font-weight: 700;
color: var(--accent);
flex-shrink: 0;
}
.docs-card__desc { font-size: 0.92rem; color: var(--ink-soft); max-width: 66ch; }
.docs__note { margin-top: 1rem; font-size: 0.8rem; color: var(--ink-faint); }
/* ============ PRICE(料金の目安) ============ */
.price { padding-block: clamp(3.5rem, 8vw, 6rem); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.price-table caption { text-align: left; }
.price-table th, .price-table td { text-align: left; padding: 0.8rem 0.9rem; border-bottom: 1px solid var(--line); }
.price-table thead th { color: var(--ink-faint); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.06em; }
.price-table td:last-child, .price-table thead th:last-child { text-align: right; }
.price-table tbody td:last-child { font-weight: 700; white-space: nowrap; color: var(--ink); }
.price-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-faint); line-height: 1.8; }
.visually-hidden {
position: absolute !important; width: 1px; height: 1px;
padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* ============ FLOW(進め方) ============ */
.flow-section { padding-block: clamp(3rem, 7vw, 5.5rem); background: var(--panel); border-block: 1px solid var(--line); }
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 1rem; counter-reset: step; list-style: none; }
.flow li {
padding: 1.2rem 1.2rem 1.3rem; border: 1px solid var(--line);
border-radius: 14px; background: var(--bg);
}
.flow li::before {
counter-increment: step; content: counter(step);
display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
background: var(--bg-deep); color: #7ccfa3; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.7rem;
}
.flow li h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.35rem; }
.flow li p { font-size: 0.82rem; color: var(--ink-soft); }
.flow-note { margin-top: 1.2rem; font-size: 0.82rem; color: var(--ink-faint); line-height: 1.8; }
/* ============ TOOLS(その他の制作物) ============ */
.tools { padding-block: clamp(3.5rem, 8vw, 6rem); }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; max-width: 780px; }
.tool-card {
display: block;
padding: 1.3rem 1.4rem;
border: 1px solid var(--line);
border-radius: 14px;
background: var(--panel);
transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tool-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.tool-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.tool-card h3::after { content: " →"; color: var(--accent); }
.tool-card p { font-size: 0.86rem; color: var(--ink-soft); }
/* ============ CTAバンド ============ */
.cta-band { padding-block: 0 clamp(3.5rem, 8vw, 6rem); }
.cta-band__inner {
display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
padding: clamp(1.4rem, 3.5vw, 2rem); border-radius: var(--radius);
background: var(--bg-deep); color: rgba(245, 243, 238, 0.92);
}
.cta-band__inner p { flex: 1 1 320px; font-size: 0.95rem; }
.cta-band__btn {
display: inline-flex; align-items: center; gap: 0.6rem;
background: var(--accent-strong); color: #ffffff; font-weight: 700;
padding: 0.85rem 1.6rem; border-radius: 999px; font-size: 0.95rem;
transition: filter 0.25s var(--ease), gap 0.25s var(--ease);
}
.cta-band__btn::after { content: "→"; transition: transform 0.25s var(--ease); }
.cta-band__btn:hover { filter: brightness(1.15); gap: 0.85rem; }
.cta-band__btn:hover::after { transform: translateX(3px); }
/* ============ FOOTER ============ */
.site-footer {
padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.6rem;
background: #0e1512;
color: rgba(245, 243, 238, 0.7);
border-top: 1px solid var(--line);
}
.site-footer__inner {
display: flex;
flex-wrap: wrap;
gap: 1.5rem 2.5rem;
align-items: center;
justify-content: space-between;
padding-bottom: 1.8rem;
border-bottom: 1px solid rgba(245, 243, 238, 0.1);
}
.site-footer__tagline {
font-family: var(--serif);
font-size: 0.95rem;
color: rgba(245, 243, 238, 0.85);
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer__links a {
font-size: 0.84rem;
color: rgba(245, 243, 238, 0.75);
transition: color 0.2s var(--ease);
}
.site-footer__links a:hover { color: #7ccfa3; }
/* 過去のWeb制作アーカイブ(小さくテキストリンクのみ) */
.site-footer__archive {
padding-block: 1.3rem 0.2rem;
border-bottom: 1px solid rgba(245, 243, 238, 0.1);
}
.site-footer__archive h2 {
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.12em;
color: rgba(245, 243, 238, 0.5);
margin-bottom: 0.45rem;
}
.site-footer__archive ul {
display: flex; flex-wrap: wrap; gap: 0.2rem 1.1rem;
padding-bottom: 1.1rem;
}
.site-footer__archive a {
font-size: 0.72rem;
color: rgba(245, 243, 238, 0.45);
text-decoration: underline;
text-underline-offset: 3px;
transition: color 0.2s var(--ease);
}
.site-footer__archive a:hover { color: rgba(245, 243, 238, 0.8); }
.site-footer__bottom {
padding-top: 1.4rem;
font-size: 0.76rem;
color: rgba(245, 243, 238, 0.6);
letter-spacing: 0.03em;
}
.site-footer__bottom p + p { margin-top: 0.3rem; }
/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
* { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
</style>
</head>
<body>
<a class="skip-link" href="#top">本文へスキップ</a>
<!-- ============ HEADER ============ -->
<header class="site-header" id="siteHeader">
<div class="container site-header__inner">
<a class="brand" href="#top" aria-label="ポートフォリオ トップへ">
<span class="brand__mark" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2" />
<path d="M3 9h18" />
<path d="M9 9v12" />
</svg>
</span>
<span class="brand__text">
<span class="brand__name">Excel VBA ポートフォリオ</span>
<span class="brand__sub">Fix / Read / Build</span>
</span>
</a>
<nav class="header__nav" aria-label="メインナビゲーション">
<a href="#cases">事例</a>
<a href="#docs">納品文書</a>
<a href="#promise">約束</a>
<a href="#price">料金</a>
<a href="#flow">進め方</a>
<a href="#python">Python</a>
<button type="button" class="theme-toggle" id="themeToggle" aria-label="配色テーマを切り替える" title="ダークモード / ライトモード" hidden>
<svg class="theme-toggle__icon icon-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M21 12.8A9 9 0 1 1 11.2 3 7 7 0 0 0 21 12.8z" />
</svg>
<svg class="theme-toggle__icon icon-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<circle cx="12" cy="12" r="4.2" />
<path d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4" />
</svg>
</button>
<a href="https://crowdworks.jp/public/employees/3919155/" class="nav-cta" rel="noopener noreferrer" target="_blank">お問い合わせ</a>
</nav>
</div>
</header>
<main id="top">
<!-- ============ HERO ============ -->
<section class="hero">
<div class="container hero__inner">
<p class="hero__eyebrow">Excel VBA — Macro Fix / Read / Build</p>
<ul class="pain-list" aria-label="こんなお困りごとに">
<li>「マクロが動かない」</li>
<li>「エラーが出て業務が止まった」</li>
<li>「作った人が退職した」</li>
</ul>
<h1 class="hero__title">コードを読んで、<br /><em>壊さず直します。</em></h1>
<p class="hero__lead">
Excelマクロ(VBA)の修正・解読(文書化)・新規開発を承ります。
本業でExcelマクロ群の開発・保守・改修を担当しており(新規作成も含む)、
「直して終わり」にせず、中身が分かる文書を添えて納品します。
</p>
<p class="hero__cta-wrap">
<a class="hero__cta" href="#promise">納品の5つの約束を見る</a>
<a class="hero__cta-sub" href="#price">料金の目安へ</a>
</p>
<ul class="hero__meta">
<li>ソースはロックなし納品</li>
<li>既存の機能は変更しません</li>
<li>納品後14日間の無償対応(同一原因)</li>
<li>完全オンライン・テキストのみで完結</li>
</ul>
</div>
</section>
<!-- ============ PROMISE(納品の約束・最重要) ============ -->
<section class="promise" id="promise">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Promise — 納品の約束</p>
<h2 class="section-head__title">納品の、5つの約束</h2>
<p class="section-head__lead">
マクロの外注で不安になりがちな点を、先にお約束します。「ブラックボックスのまま納品される」「既存の処理まで変えられてしまう」——そうならない形でお渡しします。
</p>
</header>
<div class="promise-grid">
<div class="promise-card">
<h3>ソースはロックなし・コメント付き</h3>
<p>VBAのコードに保護(パスワードロック)はかけません。処理の意図が分かる日本語コメントを付けて納品するので、後からどなたでも中身を確認・引き継ぎできます。</p>
</div>
<div class="promise-card">
<h3>既存の機能は変更せず、追加のみ</h3>
<p>いま動いている処理には手を入れず、事前に合意した範囲だけを修正・追加します。変更範囲は着手前に文章で確認し、合意外の変更はしません。</p>
</div>
<div class="promise-card">
<h3>納品後14日間の無償対応</h3>
<p>今回の修正箇所と同じ原因による不具合は、納品後14日以内であれば無償で対応します。それ以外の箇所・新しいご要望は別途お見積もりです。</p>
</div>
<div class="promise-card">
<h3>操作手順書つき</h3>
<p>非エンジニアの方がそのまま使える操作手順書を添えて納品します(操作解説動画は現在準備中です)。</p>
</div>
<div class="promise-card">
<h3>マクロ警告の解除手順書つき</h3>
<p>ネット経由で受け取ったマクロ付きファイルは、Excelの安全機能(Mark of the Web)により警告が出て動かないことがあります。安全に解除するための1枚手順書を必ず添えます。</p>
</div>
</div>
<p class="promise__note">※ 作業は必ずコピーで行い、お送りいただいた元ファイルはそのまま保全します。</p>
</div>
</section>
<!-- ============ CASES(事例) ============ -->
<section class="cases" id="cases">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Cases — 事例</p>
<h2 class="section-head__title">事例で見る、3つの対応</h2>
<p class="section-head__lead">
修正・新規開発・解読の3つの対応を、実際の作業の流れと納品物の形が分かるデモ事例として公開しています。
</p>
</header>
<div class="cases-grid">
<article class="case-card">
<p class="case-card__tag">修正・復旧</p>
<h3>エラーで止まった請求書マクロの復旧</h3>
<p>実行時エラーで止まった請求書作成マクロ(架空題材)を、原因の特定 → 修正 → 動作確認の流れで復旧するデモ事例。実際の進め方と納品物の形をそのまま確認できます。</p>
<a class="btn-link" href="./vba-case-fix/">修正事例を見る</a>
</article>
<article class="case-card">
<p class="case-card__tag">新規開発</p>
<h3>月次売上集計ツールの新規開発</h3>
<p>CSVの取り込みから集計・帳票出力までをボタン1つにまとめる新規開発のデモ事例(架空題材)。コードの書き方(コメント・構成)も併せて確認できます。</p>
<a class="btn-link" href="./vba-case-build/">開発事例を見る</a>
</article>
<article class="case-card">
<p class="case-card__tag">解読・文書化</p>
<h3>退職者が残したマクロの解読レポート</h3>
<p>「誰も中身が分からない」マクロを日本語の資料に起こす、解読レポートの実物見本。ブックは変更せず、読み取りのみで作業します。</p>
<a class="btn-link" href="./vba-docs/sample-report.html">解読レポートを見る</a>
</article>
</div>
<p class="cases__note">
※ 事例の題材はいずれもポートフォリオ用に自作した架空のマクロです。実際のお客様のファイル・データは使用していません。事例中の画面・数値はすべて見本・想定値です。
</p>
</div>
</section>
<!-- ============ DOCS(納品文書見本) ============ -->
<section class="docs" id="docs">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Documents — 納品文書の見本</p>
<h2 class="section-head__title">「直して終わり」にしない、納品5点セット</h2>
</header>
<div class="docs-card">
<div class="docs-card__body">
<p class="docs-card__desc">
修正のご依頼では、修正済みブックだけでなく次のセットを添えて納品します。次に同じトラブルが起きたとき・別の方が引き継ぐときに、そのまま手がかりとして使える形でお返しします。
</p>
<ul class="docs-list">
<li>修正済みブック</li>
<li>ソースコード一式(修正前・修正後)</li>
<li>変更内容書(A4 1枚)</li>
<li>動作確認書</li>
<li>引き継ぎ手順書</li>
</ul>
<p class="docs__note">現在、解読レポートと変更内容書の実物見本を公開しています。題材は見本用に自作した架空の請求書作成マクロです。</p>
</div>
<a class="btn-link" href="./vba-docs/">納品文書の見本を見る</a>
</div>
</div>
</section>
<!-- ============ PRICE(料金の目安) ============ -->
<section class="price" id="price">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Price — 料金の目安</p>
<h2 class="section-head__title">料金の目安</h2>
<p class="section-head__lead">
確定金額は、内容を確認のうえ無料でお見積もりします。金額と対応範囲は着手前に確定し、あとからの追加請求はしません。
</p>
</header>
<table class="price-table">
<caption class="visually-hidden">作業内容ごとの料金の目安</caption>
<thead>
<tr><th scope="col">内容</th><th scope="col">目安</th></tr>
</thead>
<tbody>
<tr><td>マクロの解読・文書化(解読レポート+ソース一式。ブックは変更しません)</td><td>10,000円〜</td></tr>
<tr><td>マクロの解読・文書化(引き継ぎ手順書つき・日常業務で使う一通りのマクロ)</td><td>20,000円〜</td></tr>
<tr><td>エラー修正(原因調査+修正箇所が1〜2箇所のもの)</td><td>5,000円〜</td></tr>
<tr><td>修正・小改修(複数箇所、または小さな機能追加1点)</td><td>15,000円〜</td></tr>
<tr><td>機能追加・新規開発</td><td>規模に応じて個別見積もり</td></tr>
</tbody>
</table>
<p class="price-note">
※ 規模(マクロの行数など)の判定はこちらで行います。お客様に数えていただく必要はありません。<br />
※ 内容・分量・納期によって変わります。まずは無料見積もりでご確認ください。<br />
※ お支払い・やりとりはクラウドソーシングサイトを通して安全に行います。
</p>
</div>
</section>
<!-- ============ FLOW(進め方) ============ -->
<section class="flow-section" id="flow">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Flow — 進め方</p>
<h2 class="section-head__title">ご依頼の流れ</h2>
<p class="section-head__lead">
電話・Web会議は不要です。メッセージとファイルのやり取り(非同期テキスト)だけで完結します。
</p>
</header>
<ol class="flow">
<li><h3>ご相談(無料)</h3><p>メッセージでお困りごとをお知らせください。エラー画面の写真や、マクロを動かすボタンの数だけでも概算をご案内できます。</p></li>
<li><h3>お見積もり</h3><p>ご購入・ご契約の前に、金額・対応範囲・納期を確定してご提示します(無料)。ご納得いただいてから先へ進みます。</p></li>
<li><h3>仮払い後に着手</h3><p>サイトの仮払い(エスクロー)を確認してから作業を開始します。作業は必ずコピーで行い、元ファイルは保全します。</p></li>
<li><h3>納品</h3><p>動作確認のうえ、変更内容書などの文書一式を添えて納品します。</p></li>
<li><h3>アフター</h3><p>納品後14日間、同一原因の不具合は無償で対応します。</p></li>
</ol>
<p class="flow-note">
※ 顧客名・金額などの機密データは、架空の値に置き換えた(ダミー化した)コピーでのご提供をお願いしています。データが空でも解読・修正が可能な場合が多く、ダミー化の簡単な手順もご案内できます。
</p>
</div>
</section>
<!-- ============ PYTHON(業務自動化) ============ -->
<section class="tools" id="python">
<div class="container">
<header class="section-head">
<p class="section-head__eyebrow">Python — 業務自動化</p>
<h2 class="section-head__title">Pythonでの業務自動化にも対応します</h2>
<p class="section-head__lead">
Excelの外側の定型業務(ファイル整理・データ処理・帳票づくりなど)は、Pythonでの自動化もご提案できます。VBAと同じく「動くものと、引き継げる文書」をセットで納品します。
</p>
</header>
<div class="tools-grid">
<a class="tool-card" href="./python-docs/">
<h3>Python 業務自動化の納品文書サンプル</h3>
<p>納品時にお渡しする仕様書・実行手順書の見本です(題材は架空のサンプルです)。</p>
</a>
</div>
</div>
</section>
<!-- ============ CTAバンド ============ -->
<section class="cta-band" aria-label="お問い合わせ">
<div class="container">
<div class="cta-band__inner">
<p>ご相談・お見積もりは無料です。「何を頼めばいいか分からない」段階でも、内容の整理からご一緒します。</p>
<a class="cta-band__btn" href="https://crowdworks.jp/public/employees/3919155/" rel="noopener noreferrer" target="_blank">クラウドワークスで相談する</a>
</div>
</div>
</section>
</main>
<!-- ============ FOOTER ============ -->
<footer class="site-footer">
<div class="container">
<div class="site-footer__inner">
<p class="site-footer__tagline">コードを読んで、壊さず直します。</p>
<nav class="site-footer__links" aria-label="フッターナビゲーション">
<a href="./vba-case-fix/">事例:修正・復旧</a>
<a href="./vba-case-build/">事例:新規開発</a>
<a href="./vba-docs/">納品文書の見本</a>
<a href="./python-docs/">Python自動化の文書サンプル</a>
</nav>
</div>
<div class="site-footer__archive">
<h2>アーカイブ</h2>
<ul>
<li><a href="./case-study-petit-chaton/">サイト改修事例:petit-chaton(実在・Web制作時代の実施内容)</a></li>
</ul>
</div>
<div class="site-footer__bottom">
<p>© 2026 Excel VBA ポートフォリオ</p>
<p>※ VBAの事例・納品文書見本の題材はポートフォリオ用に自作した架空のマクロで、掲載している画面・数値はすべて見本・想定値です(実際の取引実績ではありません)。アーカイブ内のサイト改修事例(petit-chaton)のみ、実在サイトでの実施内容です。</p>
</div>
</div>
</footer>
<script>
// ヘッダーのスクロール影
(function () {
var header = document.getElementById('siteHeader');
var onScroll = function () {
if (window.scrollY > 8) header.classList.add('scrolled');
else header.classList.remove('scrolled');
};
window.addEventListener('scroll', onScroll, { passive: true });
onScroll();
})();
// 配色テーマ(ダーク/ライト)の切り替え
(function () {
var KEY = 'portfolio-theme';
var root = document.documentElement;
var btn = document.getElementById('themeToggle');
var meta = document.getElementById('themeColorMeta');
var mq = window.matchMedia ? window.matchMedia('(prefers-color-scheme: dark)') : null;
var metaColor = { light: '#f5f3ee', dark: '#14161b' };
function current() {
return root.getAttribute('data-theme') === 'dark' ? 'dark' : 'light';
}
function apply(theme) {
root.setAttribute('data-theme', theme);
if (meta) meta.setAttribute('content', metaColor[theme]);
if (btn) btn.setAttribute('aria-label', theme === 'dark' ? 'ライトモードに切り替える' : 'ダークモードに切り替える');
}
apply(current());
if (btn) {
btn.hidden = false;
btn.addEventListener('click', function () {
var next = current() === 'dark' ? 'light' : 'dark';
apply(next);
try { localStorage.setItem(KEY, next); } catch (e) {}
});
}
if (mq) {
var onChange = function (e) {
var saved = null;
try { saved = localStorage.getItem(KEY); } catch (err) {}
if (saved !== 'dark' && saved !== 'light') apply(e.matches ? 'dark' : 'light');
};
if (mq.addEventListener) mq.addEventListener('change', onChange);
else if (mq.addListener) mq.addListener(onChange);
}
})();
</script>
</body>
</html>