-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1321 lines (1198 loc) · 43.1 KB
/
Copy pathindex.html
File metadata and controls
1321 lines (1198 loc) · 43.1 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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ja">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-601686G97M">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-601686G97M');
</script>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>工作機械修理の専門家 | 全国出張対応(広島・岡山・山口・鳥取・島根)| ラスターマシナリー</title>
<!-- Primary description for SEO (replaces older/truncated descriptions) -->
<meta name="description" content="広島県福山市より全国出張対応。中国地方(広島・岡山・山口・鳥取・島根)での工作機械修理・中古販売。COSENバンドソー保守専門。機械ドック・点検サービス。">
<meta name="keywords" content="金属切削加工,機械修理,工作機械,修理,中古機械,旋盤,NC,汎用機,古い機械,福山市,広島,岡山,山口,鳥取,島根,中国地方,全国出張,機械ドック,点検">
<!-- Open Graph(SNS共有用) -->
<meta property="og:title" content="工作機械修理の専門家 | ラスターマシナリー">
<meta property="og:description" content="現場へ直行・工作機械修理・中古販売・COSENバンドソー保守で現場をサポート。">
<meta property="og:image" content="https://www.kikai.work/images/representative-photo.jpg">
<meta property="og:url" content="https://www.kikai.work/">
<meta property="og:type" content="website">
<link rel="canonical" href="https://www.kikai.work/">
<link rel="icon" href="favicon.ico">
<!-- 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=Noto+Sans+JP:wght@400;500;700;900&display=swap" rel="stylesheet">
<!-- Schema.org (LocalBusiness) for リッチスニペット -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "ラスターマシナリー",
"description": "工作機械修理専門・販売買い取り。全国出張対応。COSENバンドソーの保守・修理に強みがあります。広島県福山市発",
"url": "https://www.kikai.work/",
"priceRange": "¥",
"areaServed": [
{"@type": "City", "name": "広島市"},
{"@type": "City", "name": "福山市"},
{"@type": "City", "name": "岡山市"},
{"@type": "City", "name": "倉敷市"},
{"@type": "City", "name": "山口市"},
{"@type": "City", "name": "下関市"},
{"@type": "City", "name": "鳥取市"},
{"@type": "City", "name": "松江市"}
],
"telephone": "+81-80-3880-4695",
"address": {
"@type": "PostalAddress",
"streetAddress": "沼隈町常石 2743",
"addressLocality": "福山市",
"addressRegion": "広島県",
"addressCountry": "JP"
},
"openingHours": "Mo-Fr 09:00-18:00",
"sameAs": [
"https://www.facebook.com/luster50m/",
"https://www.instagram.com/luster_machinery/"
]
}
</script>
<!-- セキュリティ強化: CSP, XSS, Referrer-Policy, X-Content-Type-Options 等 -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' https://translate.google.com https://www.google.com https://fonts.googleapis.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: https:; font-src 'self' https://fonts.gstatic.com; connect-src 'self' https://translate.google.com;">
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-Frame-Options" content="SAMEORIGIN" />
<meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin" />
<meta http-equiv="Cross-Origin-Resource-Policy" content="same-origin"/>
<meta name="referrer" content="strict-origin-when-cross-origin">
<!-- Google翻訳ウィジェット(多言語化補助) -->
<meta name="google" content="notranslate">
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'ja',
includedLanguages: 'en,zh-CN,ko,vi,th,ja',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}
</script>
<script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit" defer></script>
<style>
:root{
--primary: #1a3a52;
--primary-light: #2d5573;
--accent: #0066cc;
--accent-hover: #0052a3;
--success: #0d8f4a;
--success-light: #e8f5ed;
--text-primary: #1a1a1a;
--text-secondary: #4a5568;
--text-muted: #718096;
--bg-main: #f8fafc;
--bg-card: #ffffff;
--border-light: #e2e8f0;
--border-medium: #cbd5e0;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.06);
--shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
background-color: var(--bg-main);
color: var(--text-primary);
font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.7;
font-size: 16px;
width: 100vw;
min-width: 320px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* ヘッダー */
header {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
padding: 2rem 1rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
header .header-inner {
max-width: 1200px;
margin: 0 auto;
}
.company-highlight {
text-align: center;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 900;
color: #ffffff;
letter-spacing: 0.02em;
margin: 0 auto 1rem;
padding: 1.5rem 1rem;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}
.h1-sinbol, .h1-image {
width: 3.5rem;
height: 3.5rem;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255,255,255,0.3);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.h1-sinbol {
border-radius: 12px;
}
header h1 {
font-size: clamp(0.9rem, 2vw, 1.1rem);
font-weight: 700;
color: rgba(255,255,255,0.95);
text-align: center;
margin-bottom: 0.5rem;
letter-spacing: 0.02em;
}
.catchphrase {
text-align: center;
font-size: clamp(1rem, 2.5vw, 1.3rem);
font-weight: 700;
color: #ffffff;
margin: 1rem 0;
letter-spacing: 0.05em;
}
.free-estimate {
display: inline-block;
background: var(--success);
color: white;
padding: 0.75rem 2rem;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
letter-spacing: 0.05em;
box-shadow: 0 4px 12px rgba(13, 143, 74, 0.3);
transition: all 0.3s ease;
}
.free-estimate:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(13, 143, 74, 0.4);
}
/* レイアウト */
.page {
display: flex;
flex-direction: row;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1rem;
}
main {
flex: 1;
min-width: 0;
}
aside.sidebar {
width: 340px;
flex-shrink: 0;
}
/* カード */
.card {
background: var(--bg-card);
padding: 2rem;
border-radius: 12px;
box-shadow: var(--shadow-md);
margin-bottom: 2rem;
border: 1px solid var(--border-light);
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: var(--shadow-lg);
}
h2 {
color: var(--primary);
font-size: 1.75rem;
font-weight: 700;
margin: 0 0 1.5rem 0;
padding-bottom: 0.75rem;
border-bottom: 3px solid var(--accent);
position: relative;
}
h2::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 60px;
height: 3px;
background: var(--success);
}
/* テーブル */
.inventory-table, .repair-table {
width: 100%;
border-collapse: collapse;
background: var(--bg-card);
box-shadow: var(--shadow-sm);
border-radius: 8px;
overflow: hidden;
font-size: 0.95rem;
}
.inventory-table th, .inventory-table td,
.repair-table th, .repair-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid var(--border-light);
}
.inventory-table th, .repair-table th {
background: linear-gradient(to bottom, #f7fafc, #edf2f7);
color: var(--text-primary);
font-weight: 700;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.05em;
}
.inventory-table tr:hover td,
.repair-table tr:hover td {
background: #f8fafc;
}
.inventory-note {
text-align: center;
margin-top: 1rem;
color: var(--text-secondary);
font-size: 0.95rem;
}
/* サービスリスト */
ul.service-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 1.5rem;
}
ul.service-list li {
background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid var(--border-light);
display: flex;
gap: 1.5rem;
align-items: flex-start;
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}
ul.service-list li:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--accent);
}
.service-icon {
width: 4rem;
height: 4rem;
min-width: 4rem;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2rem;
font-weight: 700;
box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}
.service-text strong {
display: block;
font-size: 1.2rem;
color: var(--primary);
margin-bottom: 0.5rem;
font-weight: 700;
}
.service-text p {
color: var(--text-secondary);
line-height: 1.7;
margin: 0;
}
/* ボタン */
.btn, .contact a.btn {
display: inline-block;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
color: white;
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 700;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
border: none;
cursor: pointer;
letter-spacing: 0.02em;
}
.btn:hover, .contact a.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
text-decoration: none;
}
/* お問い合わせセクション */
.contact {
background: linear-gradient(135deg, var(--success-light) 0%, #f0fdf4 100%);
padding: 2.5rem;
border-radius: 12px;
text-align: center;
border: 2px solid #d1fae5;
box-shadow: var(--shadow-md);
}
.contact h2 {
border-bottom: none;
}
.contact h2::after {
display: none;
}
.contact p {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 1.5rem;
}
/* 動画 */
.reel-wrapper {
width: 100%;
max-width: 100%;
aspect-ratio: 16/9;
background: #000;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.video-embed-full {
width: 100%;
height: 100%;
border: none;
display: block;
}
/* サイドバー */
.sidebar .card {
padding: 1.5rem;
}
.insta-profile {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.insta-profile .avatar {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--border-medium);
box-shadow: var(--shadow-sm);
}
.follow-btn {
display: inline-block;
margin-top: 0.5rem;
font-weight: 600;
color: white;
background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
border-radius: 50px;
padding: 0.5rem 1.5rem;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(225, 48, 108, 0.2);
}
.follow-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}
.blog-list {
list-style: none;
padding: 0;
margin: 0;
}
.blog-list li {
margin-bottom: 1rem;
padding-left: 1rem;
border-left: 4px solid var(--accent);
background: #f8fafc;
padding: 0.75rem 1rem;
border-radius: 4px;
transition: all 0.2s ease;
}
.blog-list li:hover {
background: #edf2f7;
border-left-color: var(--success);
}
.blog-link {
display: block;
font-weight: 700;
color: var(--primary);
text-decoration: none;
font-size: 1.1rem;
margin-bottom: 1rem;
transition: color 0.2s ease;
}
.blog-link:hover {
color: var(--accent);
text-decoration: underline;
}
.cosen-banner {
display: block;
margin: 1rem auto;
max-width: 200px;
width: 100%;
height: auto;
background: white;
border-radius: 8px;
padding: 1rem;
box-shadow: var(--shadow-sm);
transition: transform 0.3s ease;
}
.cosen-banner:hover {
transform: scale(1.05);
}
/* フッター */
footer {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
padding: 3rem 1rem 1rem;
margin-top: 4rem;
}
footer h3, footer h4 {
color: white;
margin-bottom: 1rem;
}
footer a {
color: #a7d8ff;
transition: color 0.2s ease;
}
footer a:hover {
color: white;
}
address {
font-style: normal;
line-height: 1.8;
color: rgba(255,255,255,0.9);
}
/* レスポンシブ */
@media (max-width: 1000px) {
.page {
flex-direction: column;
}
aside.sidebar {
width: 100%;
max-width: 100%;
}
.company-highlight {
font-size: clamp(1.3rem, 5vw, 2rem);
}
}
@media (max-width: 700px) {
header {
padding: 1.5rem 1rem;
}
.page {
padding: 1rem;
}
.card {
padding: 1.5rem;
}
h2 {
font-size: 1.5rem;
}
.h1-sinbol, .h1-image {
width: 2.5rem;
height: 2.5rem;
}
ul.service-list li {
flex-direction: column;
text-align: center;
}
.service-icon {
margin: 0 auto;
}
.inventory-table, .repair-table {
font-size: 0.85rem;
}
.inventory-table th, .inventory-table td,
.repair-table th, .repair-table td {
padding: 0.75rem 0.5rem;
}
}
.hidden-honeypot {
display: none !important;
}
/* リンクスタイル */
a {
color: var(--accent);
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: var(--accent-hover);
text-decoration: underline;
}
/* スクロールバー */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
background: var(--border-medium);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
/* ===== 画像サムネ(小さく統一) ===== */
.machine-thumb-link {
display: inline-block;
}
.machine-thumb {
width: 96px; /* 好きなサイズに調整OK */
height: 72px;
object-fit: cover;
border-radius: 8px;
display: block;
cursor: zoom-in;
}
/* ===== モーダル(同ページ拡大) ===== */
.image-modal {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.75);
display: none;
align-items: center;
justify-content: center;
padding: 24px;
z-index: 10000; /* google翻訳ツールバー(9999)より上 */
}
.image-modal.is-open {
display: flex;
}
.image-modal__content {
position: relative;
max-width: min(1100px, 96vw);
max-height: 90vh;
}
.image-modal__img {
width: auto;
height: auto;
max-width: 100%;
max-height: 90vh;
display: block;
border-radius: 10px;
background: #fff;
}
.image-modal__close {
position: absolute;
top: -12px;
right: -12px;
width: 44px;
height: 44px;
border: none;
border-radius: 999px;
background: #fff;
color: #111;
font-size: 24px;
line-height: 44px;
cursor: pointer;
box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
/* ===== ヘッダーCTA ===== */
.header-cta {
margin-top: 1.5rem;
text-align: center;
}
.response-badge {
display: inline-block;
background: #ff6600;
color: #fff;
font-weight: 700;
font-size: clamp(0.85rem, 2.2vw, 1.05rem);
letter-spacing: 0.05em;
padding: 0.4rem 1.2rem;
border-radius: 50px;
margin-bottom: 1rem;
}
.header-tel-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: #fff;
color: var(--primary);
font-size: clamp(1.4rem, 4vw, 2rem);
font-weight: 900;
padding: 0.6rem 1.8rem;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 16px rgba(0,0,0,0.18);
transition: transform 0.2s ease, box-shadow 0.2s ease;
letter-spacing: 0.04em;
}
.header-tel-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,0,0,0.22);
text-decoration: none;
color: var(--primary);
}
.tel-sub {
margin-top: 0.5rem;
color: rgba(255,255,255,0.85);
font-size: 0.9rem;
}
/* ===== スティッキー電話ボタン(モバイルのみ) ===== */
.sticky-call-btn {
display: none;
}
@media (max-width: 700px) {
.sticky-call-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
position: fixed;
bottom: 1rem;
left: 50%;
transform: translateX(-50%);
z-index: 9998;
background: #ff6600;
color: #fff;
font-size: 1.1rem;
font-weight: 700;
padding: 0.85rem 2rem;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 20px rgba(255,102,0,0.45);
white-space: nowrap;
letter-spacing: 0.04em;
animation: pulse-cta 2.4s ease-in-out infinite;
}
.sticky-call-btn:hover {
text-decoration: none;
color: #fff;
}
@keyframes pulse-cta {
0%, 100% { box-shadow: 0 4px 20px rgba(255,102,0,0.45); }
50% { box-shadow: 0 4px 32px rgba(255,102,0,0.75); }
}
}
/* ===== 修理写真ギャラリー ===== */
.photo-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.75rem;
}
.photo-grid-item {
width: 100%;
aspect-ratio: 4/3;
object-fit: cover;
border-radius: 8px;
cursor: zoom-in;
display: block;
transition: opacity 0.2s ease, transform 0.2s ease;
}
.photo-grid-item:hover {
opacity: 0.9;
transform: scale(1.02);
}
@media (max-width: 700px) {
.photo-grid {
grid-template-columns: repeat(2, 1fr);
}
}
</style>
</head>
<body>
<!-- Google翻訳ツールバー設置 -->
<div id="google_translate_element" style="position:fixed;top:0;right:0;z-index:9999;background:rgba(255,255,255,0.95);padding:0.5rem 1rem;border-radius:0 0 0 8px;box-shadow:0 2px 8px rgba(0,0,0,0.1);"></div>
<!-- スティッキー電話ボタン(モバイルのみ) -->
<a href="tel:08038804695" class="sticky-call-btn" aria-label="電話で問い合わせる">
<span aria-hidden="true">📞</span>
<span>今すぐ電話する</span>
</a>
<a id="top"></a>
<header>
<div class="header-inner">
<h1>工作機械修理の専門家 | 工作機械故障・修理・出張・福山市内御見積り無料 | ラスターマシナリー</h1>
<div class="company-highlight">
<img src="./images/sinbol1.jpeg" alt="シンボル" class="h1-sinbol" loading="lazy" />
<span>ラスターマシナリー</span>
<img src="./images/syasyou2.jpeg" alt="代表写真" class="h1-image" loading="lazy" />
</div>
<div class="catchphrase">全国出張対応 | 現場へ直行</div>
<div style="text-align:center;">
<span class="free-estimate">福山市内御見積り無料</span>
</div>
<p style="margin:1rem 0 0 0; color:rgba(255,255,255,0.9); text-align:center;">中古工作機械の販売・修理で製造業をサポート</p>
<!-- ファーストビューCTA -->
<div class="header-cta">
<div class="response-badge"><span aria-hidden="true">⏱</span> 原則1週間・最短翌日対応</div>
<div>
<a href="tel:08038804695" class="header-tel-btn">
<span aria-hidden="true">📞</span>
<span>080-3880-4695</span>
</a>
</div>
<div class="tel-sub">お気軽にお電話ください(9:00〜18:00)</div>
</div>
</div>
</header>
<div class="page">
<main>
<!-- 機械修理・故障相談 -->
<section class="card" id="repair-consultation">
<h2>機械修理・故障相談</h2>
<p style="font-size:1.1rem; font-weight:700; color:var(--primary); margin-bottom:1rem;">
旋盤、フライス盤、マシニングセンタ、ボール盤などの工作機械について、故障・異音・油漏れ・精度不良・動作不良の相談を受けます。
</p>
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:1rem;">
写真や動画、銘板、症状をもとに、まずは原因の候補を整理します。<br>
すぐ修理が必要か、部品交換で済みそうか、現地確認が必要かをわかりやすく説明し、無駄な出張や修理を減らす判断材料を作ります。
</p>
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:1.5rem;">
現場で「どこに頼めばいいかわからない」「修理するか買い替えるか迷う」という時に、機械の状態を一緒に整理します。
</p>
<div style="display:flex; gap:1rem; flex-wrap:wrap; justify-content:center;">
<a class="btn" href="tel:08038804695" style="background:linear-gradient(135deg, #ff6600 0%, #cc5200 100%); box-shadow:0 4px 12px rgba(255,102,0,0.25);">
📞 修理・故障を相談する
</a>
<a class="btn" href="mailto:info@kikai.work?subject=修理・故障相談">
✉ メールで相談
</a>
</div>
</section>
<!-- 在庫情報 -->
<section class="inventory card" id="inventory">
<h2>中古機械在庫情報</h2>
<div style="overflow-x:auto;">
<table class="inventory-table" aria-describedby="inventory-note">
<thead>
<tr>
<th>状態</th>
<th>機種</th>
<th>型式</th>
<th>所在地</th>
<th>備考</th>
</tr>
</thead>
<tbody>
<tr>
<td class="status-cell">
<img
src="images/dfffff.jpg"
alt="汎用フライス ME-2 写真"
class="machine-thumb js-image-modal"
data-full="images/dfffff.jpg"
loading="lazy"
/>
</td>
<td>汎用フライス</td>
<td>ME-2・大鳥機工</td>
<td>広島</td>
<td>中古機械</td>
</tr>
</tbody>
</table>
</div>
<p id="inventory-note" class="inventory-note">
在庫・価格・写真はお問い合わせください。機械探します。
</p>
<p style="text-align:center; margin-top:1.5rem;">
<a class="btn" href="mailto:info@kikai.work?subject=在庫確認">在庫を確認・見積もり依頼</a>
</p>
</section>
<!-- CM動画 -->
<section class="hero card">
<h2>CM動画</h2>
<div class="reel-wrapper">
<video
class="video-embed-full"
src="videos/CM2.mp4"
loading="lazy"
preload="metadata"
muted
playsinline
autoplay
controls
poster=""
>
お使いのブラウザは video タグに対応していません。
</video>
</div>
</section>
<!-- 会社概要 -->
<section class="card" id="company-overview">
<h2>会社概要</h2>
<div style="display:grid;gap:1rem;">
<p><strong style="color:var(--primary);">会社名:</strong>ラスターマシナリー(Luster Machinery)</p>
<p><strong style="color:var(--primary);">代表:</strong>田中 健太郎</p>
<p><strong style="color:var(--primary);">所在地:</strong>広島県福山市沼隈町常石</p>
<p><strong style="color:var(--primary);">設立:</strong>2019年10月</p>
<p><strong style="color:var(--primary);">事業内容:</strong>工作機械修理、出張修理・保守メンテナンス、新品中古機械販売、マッスルスーツ販売保守</p>
<div style="background:var(--success-light);padding:1.5rem;border-radius:8px;border-left:4px solid var(--success);margin-top:1rem;">
<p style="font-weight:600; color:var(--primary); line-height:1.8;">
工作機械の営業・工作機械の修理・主に汎用機。<br>
台湾COSEN社にてバンドソーの組み立てを経て設立致しました。<br>
COSEN社の機械のご相談賜ります。<strong>COSEN専属整備士</strong>
</p>
</div>
<p><strong style="color:var(--primary);">連絡先:</strong><a href="tel:080-3880-4695" style="font-weight:700;">080-3880-4695</a> / <a href="mailto:info@kikai.work" style="font-weight:700;">info@kikai.work</a></p>
<p><strong style="color:var(--primary);">FAX:</strong>050-3588-2383</p>
<p><strong style="color:var(--primary);">インボイス登録番号:</strong>T7810709713142</p>
<p><strong style="color:var(--primary);">機械工具商:</strong>広島県公安委員会許可第731281900024</p>
</div>
</section>
<!-- 機械ドック -->
<section class="card" id="kikai-dock">
<h2>機械ドック</h2>
<p style="font-size:1.1rem; font-weight:700; color:var(--primary); margin-bottom:1rem;">古い工作機械の点検サービス</p>
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:1rem;">
旋盤・ボール盤・ラジアルボール盤・帯鋸盤・フライス盤など、長年使っている工作機械を止まる前に点検します。<br>
異音、油漏れ、送り不良、昇降不良、スイッチ不良などを現地で確認し、今すぐ修理すべき箇所、しばらく様子を見られる箇所、入替を検討すべき機械を分かりやすく整理します。<br>
買い替え前の状態確認や、中古機械導入前の相談にも対応します。
</p>
<div style="background:var(--success-light); border-left:4px solid var(--success); border-radius:8px; padding:1.25rem 1.5rem; margin-bottom:1.5rem;">
<p style="font-weight:700; color:var(--primary); margin-bottom:0.5rem;">料金目安</p>
<ul style="list-style:none; padding:0; margin:0; color:var(--text-secondary); line-height:2;">
<li>1台点検 <strong>35,000円〜</strong></li>
<li>3台まとめて点検 <strong>90,000円〜</strong></li>
</ul>
<p style="color:var(--text-muted); font-size:0.9rem; margin-top:0.5rem;">※地域により交通費・出張費が別途かかる場合があります。事前に点検料金と交通費の目安をお伝えします。</p>
</div>
<div style="display:flex; gap:1rem; flex-wrap:wrap; justify-content:center;">
<a class="btn" href="tel:08038804695" style="background:linear-gradient(135deg, #ff6600 0%, #cc5200 100%); box-shadow:0 4px 12px rgba(255,102,0,0.25);">
📞 機械ドックを相談する
</a>
<a class="btn" href="mailto:info@kikai.work?subject=機械ドック相談">
✉ メールで相談
</a>
</div>
</section>
<!-- サービス -->
<section class="card">
<h2>主なサービス</h2>
<ul class="service-list">
<li>
<div class="service-icon">🔧</div>