forked from katryo/bing_search_naive_bayes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path書類_0.html
More file actions
1225 lines (1154 loc) · 95.6 KB
/
書類_0.html
File metadata and controls
1225 lines (1154 loc) · 95.6 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>書類の英語・英訳 - 英和辞典・和英辞典 Weblio辞書</title>
<meta name="description" content="書類を英語に訳すと documentspapers用例関係書類をくまなく調べてくれませんか. I would like you to go carefully over the relevant documents [p... - 約968万語ある英和辞典・和英辞典。発音・イディオムも分かる英語辞書。">
<meta name="keywords" content="書類,英語,英訳,和英,英語訳,翻訳,英和辞典,和英辞典">
<link rel="stylesheet" type="text/css" href="http://www.westatic.com/css/ejje/content.css?sd=ejje&tst=2013121610"><link rel="stylesheet" type="text/css" href="http://www.westatic.com/css/dict.css?tst=2013121610" title="Main">
<link rel="shortcut icon" href="http://www.westatic.com/img/favicon/ejje.ico" type="image/x-icon">
<link rel="alternate" media="handheld" href="http://m.weblio.jp/e/c/%E6%9B%B8%E9%A1%9E">
<script type="text/javascript" language="javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://www.westatic.com/script/content_ejje.js?tst=2013121610" charset="UTF-8"></script>
<script type="text/javascript">
var slash7=slash7||[];(function(){var a=document.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===document.location.protocol?"https":"http")+"://d9nbmxmbhbtmj.cloudfront.net/v1/slash7.min.js";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b);for(var a=function(a){return function(){slash7.push([a].concat(Array.prototype.slice.call(arguments,0)))}},b=["init","identify","track","register"],c=0;c<b.length;c++)slash7[b[c]]=a(b[c])})();
slash7.init('NpSvcO87p9SdIXQ9', {domain: 'weblio.jp'});
</script>
</head>
<!--書類とは documents 本文-->
<body>
<div ID=base>
<a name="top"></a>
<div ID=headMidashiE>英和・和英:<h1 title="書類の英語">書類の英語</h1></div><div ID=headBar>
<div ID=headBarL>
<p><a href="http://www.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類">辞書</a></p>
<p><a href="http://thesaurus.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類の類語 - Weblio 類語">類語辞典</a></p>
<p class=headBarSel><a href="http://ejje.weblio.jp/">英和・和英辞典</a></p>
<p><a href="http://cjjc.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類の中国語- Weblio 日中中日辞典">日中中日辞典</a></p><p><a href="http://kobun.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類の古語 - Weblio 古語辞典">古語辞典</a></p><p><a href="http://shuwa.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類の手話 - Weblio 手話" rel="nofollow">手話辞典</a></p>
</div>
<div ID=headBarR>
<span class=headBarRLg><span id=hdUsrInfoJS title="0"></span></span><a href="http://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">辞書総合TOP</a>|<a href="http://ejje.weblio.jp/tips/guide/help/" title="ヘルプ">ヘルプ</a>
<b class=server2> </b><b class=server3> </b></div>
<b class=clr></b>
</div>
<table ID=logoBar>
<tr>
<td rowspan="2" ID=logoBarL>
<div ID=logoBarLB>
<a href="http://ejje.weblio.jp/" title="英和辞典・和英辞典 - Weblio辞書"><img src="http://www.westatic.com/img/icons/logoE_LMD.png" alt="英和辞典・和英辞典 - Weblio辞書" height="37px" width="152px"></a>
<span class=logoBarLEj>英和和英</span><div ID=logoBarTE>
約968万語収録の英和辞典・和英辞典
</div>
</div>
</td>
<td ID=logoBarR>
<script type="text/javascript">
<!--
adScS('cp474.js');
//-->
</script>
<noscript><a href='http://adf.send.microad.jp/ck.php?n=ad448901&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://adf.send.microad.jp/avw.php?zoneid=1969&charset=UTF-8&cb=INSERT_RANDOM_NUMBER_HERE&n=ad448901&ct0=INSERT_CLICKURL_HERE&snr=1' border='0' alt=''></a></noscript>
</td>
</tr>
</table>
<form action="http://ejje.weblio.jp/content_find" method="get" name="fh">
<div ID=formBoxWrp>
<p class=formBoxESel>
<a href="http://ejje.weblio.jp/" title="英和・和英辞典">英和・和英辞典</a>
</p>
<p onclick="ht(this, 'http://ejje.weblio.jp/sentence/content/');" class=formBoxENo>
<a onclick="return cu(this, 'http://ejje.weblio.jp/sentence/content/')" href="http://ejje.weblio.jp/sentence/content/%E6%9B%B8%E9%A1%9E" title="英語例文">英語例文</a></p>
<p onclick="ht(this, 'http://ejje.weblio.jp/english-thesaurus/content/');" class=formBoxENo>
<a onclick="return cu(this, 'http://ejje.weblio.jp/english-thesaurus/content/')" href="http://ejje.weblio.jp/english-thesaurus/content/%E6%9B%B8%E9%A1%9E" title="英語類語">英語類語</a></p>
<p onclick="ht(this, 'http://ejje.weblio.jp/concordance/content/');" class=formBoxENo>
<a onclick="return cu(this, 'http://ejje.weblio.jp/concordance/content/')" href="http://ejje.weblio.jp/concordance/content/%E6%9B%B8%E9%A1%9E" title="共起表現" rel="nofollow">共起表現</a></p>
<p class=formBoxENo>
<a href="http://uwl.weblio.jp/" title="英単語帳">英単語帳</a>
</p>
<p class=formBoxENo>
<a href="http://uwl.weblio.jp/vocab-index" title="英語力診断">英語力診断</a>
</p>
<p class=formBoxENo>
<a href="http://translate.weblio.jp/" title="英語翻訳">英語翻訳</a>
</p>
<p class=formBoxENo>
<span class=formBoxENoSmt><a href="https://smart-translation.weblio.jp/" title="スマート翻訳" target="_blank" onClick="_gaq.push(['_trackEvent', 'click', 'ejje_content_head_globalnavi']);">スマート翻訳</a></span><a href="https://smart-translation.weblio.jp/" title="スマート翻訳" target="_blank" onClick="_gaq.push(['_trackEvent', 'click', 'ejje_content_head_globalnavi']);"><span ID=formBoxESelSmtIcn></span></a></p>
<br class=clr>
<div ID=formBoxCntE>
<div ID=formBoxL>
<input maxlength="2048" type="text" name="query" id="combo_txt" value="書類" class=formBoxI>
<select name="searchType" class=formSelect>
<option value="exact" selected>と一致する</option>
<option value="prefix">で始まる</option>
<option value="contains">を含む</option>
<option value="suffix">で終わる</option>
<option value="text">を解説文に含む</option>
</select>
<input type="image" src="http://www.westatic.com/img/icons/EjjeSchUp.png" value="項目を検索" onMouseOver="this.src='http://www.westatic.com/img/icons/EjjeSchDn.png';" onMouseOut="this.src='http://www.westatic.com/img/icons/EjjeSchUp.png';" class=formButton>
<span class=formBoxLEBtnFxWrp><img src="http://www.westatic.com/img/icons/iconEjjeFxFmOn.png" alt="" class=formBoxLEFxFmBtn><b class=formBoxLEFxFmTxt></b></span>
<span class=formBoxLEBtnSmWinWrp onclick="return formBoxSmWin('http://ejje.weblio.jp/small/content/%E6%9B%B8%E9%A1%9E')"><img src="http://www.westatic.com/img/icons/iconEjjeSmWin.png" alt="" class=formBoxLEFxFmBtn><b class=formBoxLESmWinTxt>小ウィンドウ</b></span>
</div>
<div ID=formBoxR>
<input type="image" src="http://www.westatic.com/img/icons/srcRdE.png" name="random-select" value="ランダム表示" onMouseOver="this.src='http://www.westatic.com/img/icons/srcRdHiE.png';" onMouseOut="this.src='http://www.westatic.com/img/icons/srcRdE.png';" class=formBoxRd>
</div>
<br class=clr>
</div>
</div>
</form>
<form action="http://ejje.weblio.jp/content_find" method="get" name="fhfx">
<input type="hidden" name="fixFmFocusType" value="setQueryFocus">
<div ID=formFixBoxWrp>
<div ID=formFixBoxB>
<div ID=formFixBoxCntE>
<div ID=formFixBoxL>
<input maxlength="2048" type="text" name="query" id="combo_fix_txt" value="書類" class=formBoxI>
<select name="searchType" class=formSelect>
<option value="exact" selected>と一致する</option>
<option value="prefix">で始まる</option>
<option value="contains">を含む</option>
<option value="suffix">で終わる</option>
<option value="text">を解説文に含む</option>
</select>
<input type="image" src="http://www.westatic.com/img/icons/EjjeSchUp.png" value="項目を検索" onMouseOver="this.src='http://www.westatic.com/img/icons/EjjeSchDn.png';" onMouseOut="this.src='http://www.westatic.com/img/icons/EjjeSchUp.png';" class=formButton>
<span class=formBoxLEBtnFxWrp><img src="http://www.westatic.com/img/icons/iconEjjeFxFmOn.png" alt="" class=formBoxLEFxFmBtn><b class=formBoxLEFxFmTxt></b></span>
<span class=formBoxLEBtnSmWinWrp onclick="return formBoxSmWin('http://ejje.weblio.jp/small/content/%E6%9B%B8%E9%A1%9E')"><img src="http://www.westatic.com/img/icons/iconEjjeSmWin.png" alt="" class=formBoxLEFxFmBtn><b class=formBoxLESmWinTxt>小ウィンドウ</b></span>
</div>
<div ID=formFixBoxR>
<input type="image" src="http://www.westatic.com/img/icons/srcRdE.png" name="random-select" value="ランダム表示" onMouseOver="this.src='http://www.westatic.com/img/icons/srcRdHiE.png';" onMouseOut="this.src='http://www.westatic.com/img/icons/srcRdE.png';" class=formBoxRd>
</div>
<br class=clr>
</div>
<br class=clr>
</div>
</div>
</form>
<script type="text/javascript"><!--
setQueryFocus();
//--></script>
<!-- メイン -->
<!-- コンテント -->
<div ID=main>
<div ID=topic>
<div ID=topicL><!-- interest_match_relevant_zone_start -->
<div ID=topicWrp><a href="http://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a> > <a href="http://ejje.weblio.jp/" title="英和辞典・和英辞典">英和辞典・和英辞典</a> > <a href="http://ejje.weblio.jp/category/kenje" title="和英辞典">和英辞典</a> > <span class=highlight>書類</span>の英語・英訳 </div>
<!-- interest_match_relevant_zone_end --></div>
<div ID=topicR><script type="text/javascript">
<!--
outCntWr('e', '%E6%9B%B8%E9%A1%9E', false);
//-->
</script>
</div>
</div>
<br class=clr>
<div class=adLMIMAdFhWrp>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnContExHead><div class=ydnSwCls id=ydnSwCls0> </' + 'div></' + 'div>');ydnBack[0] = (function(zSr, ovCnt, label){document.YdnUtils.start();YdnBuffWrite('<div class=adLMIMAd>');if(ovCnt>0&&ovCnt/6>0){var ocmCnt=0;var i=6;while(i<Math.min(12,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div class=adLMIM'+(ocmCnt == 0 ? 'Hd' : '')+' id=cadILMM'+i+' onclick="au(this,event);"><span class=adHIcn> </' + 'span>');YdnBuffWrite('<span class=adLMIMSp onmouseover="imcLne(this);" onmouseout="imcNon(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=1&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adILMM', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<p class=adDes><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=1&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p><p class=adSH><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=1&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + sitehost + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');++ocmCnt;}YdnBuffWrite('<p class=adIFbS>' + label + '</' + 'p>');}YdnBuffWrite('</' + 'div>');document.getElementById('ydnSwCls0').innerHTML = document.YdnUtils.get();});
//-->
</script>
</div>
<br class=clrBc>
<!-- interest_match_relevant_zone_start -->
<div class=subMenuTop><table class=subMenuT><tr><td class=subMenuOn>意味</td><td class=subMenuOff><a href="http://ejje.weblio.jp/sentence/content/%E6%9B%B8%E9%A1%9E">例文</a></td><td class=subMenuOff><a href="http://ejje.weblio.jp/english-thesaurus/content/%E6%9B%B8%E9%A1%9E">類語</a></td><td class=subMenuEmp> </td><td class=subMenuTng><img src="http://www.westatic.com/img/icons/iconWlaAdFL.png" alt="" onclick="showTangoFolderList(this, '%E6%9B%B8%E9%A1%9E')" class=wlaBtnI></td></tr></table><div class=addLmFdWr id=addLmFdWrHdId></div></div>
<!--開始 研究社 新和英中辞典-->
<a name="KENJE"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/kenje" title="和英辞典">研究社 新和英中辞典</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=KENJE&url=http%3A%2F%2Fwww.kenkyusha.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_kejje.png" alt="研究社" width="97" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="研究社" width="99" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">しょるい 書類</h2>
<div class=Kejje>
<div class=level1><p class=kenjeEnE><a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a></p><p class=kenjeEnE><a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a></p></div><table class=KejjeYr><tr><td class=KejjeYrL><span class=KejjeYrC>用例</span></td><td class=KejjeYrM></td><td class=KejjeYrR><div class=KejjeYrHd><div class=KejjeYrLn><span class=KejjeYrJp><a href="http://ejje.weblio.jp/content/%E9%96%A2%E4%BF%82" title="関係の英語" class=crosslink>関係</a><span class=KejjeYrKwrd>書類</span>を<a href="http://ejje.weblio.jp/content/%E3%81%8F%E3%81%BE%E3%81%AA%E3%81%8F" title="くまなくの英語" class=crosslink>くまなく</a><a href="http://ejje.weblio.jp/content/%E8%AA%BF%E3%81%B9%E3%81%A6" title="調べての英語" class=crosslink>調べて</a>くれ<a href="http://ejje.weblio.jp/content/%E3%81%BE%E3%81%9B%E3%82%93%E3%81%8B" title="ませんかの英語" class=crosslink>ませんか</a>.</span> <span class=KejjeYrEn><a href="http://ejje.weblio.jp/content/I+would+like+you+to" title="I would like you toの意味" class=crosslink>I would like you to</a> <a href="http://ejje.weblio.jp/content/go" title="goの意味" class=crosslink>go</a> <a href="http://ejje.weblio.jp/content/carefully" title="carefullyの意味" class=crosslink>carefully</a> over the <a href="http://ejje.weblio.jp/content/relevant+documents" title="relevant documentsの意味" class=crosslink>relevant documents</a> [<a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a>].</span></div></div></td></tr></table><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E9%9E%84" title="書類鞄の英語" class=crosslink>書類鞄</a>(<SUB>か</SUB><SUB>ば</SUB><SUB>ん</SUB>)</p><p class=kenjeEnE>a <a href="http://ejje.weblio.jp/content/briefcase" title="briefcaseの意味" class=crosslink>briefcase</a></p><p class=kenjeEnE><a href="http://ejje.weblio.jp/content/an" title="anの意味" class=crosslink>an</a> <a href="http://ejje.weblio.jp/content/attach%C3%A9+case" title="attaché caseの英語" class=crosslink>attaché case</a></p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E6%95%B4%E7%90%86%E7%AE%B1" title="書類整理箱の英語" class=crosslink>書類整理箱</a></p><p class=kenjeEnE>a <a href="http://ejje.weblio.jp/content/filing+cabinet" title="filing cabinetの意味" class=crosslink>filing cabinet</a></p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E9%81%B8%E8%80%83" title="書類選考の英語" class=crosslink>書類選考</a></p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E9%81%B8%E8%80%83%E3%81%99%E3%82%8B" title="書類選考するの英語" class=crosslink>書類選考する</a></p><p class=kenjeEnE><a href="http://ejje.weblio.jp/content/draw+up+a+short+list+on+the+basis+of+the+candidates%27+documents" title="draw up a short list on the basis of the candidates' documentsの意味" class=crosslink>draw up a short list on the basis of the candidates' documents</a> [<a href="http://ejje.weblio.jp/content/records" title="recordsの意味" class=crosslink>records</a>]</p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E9%80%81%E6%A4%9C" title="書類送検の英語" class=crosslink>書類送検</a></p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E9%80%81%E6%A4%9C%E3%81%99%E3%82%8B" title="書類送検するの英語" class=crosslink>書類送検する</a></p><p class=kenjeEnE><a href="http://ejje.weblio.jp/content/send" title="sendの意味" class=crosslink>send</a> the <a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a> <a href="http://ejje.weblio.jp/content/pertaining+to" title="pertaining toの意味" class=crosslink>pertaining to</a> a (<a href="http://ejje.weblio.jp/content/criminal" title="criminalの意味" class=crosslink>criminal</a>) <a href="http://ejje.weblio.jp/content/case" title="caseの意味" class=crosslink>case</a> <a href="http://ejje.weblio.jp/content/to+the" title="to theの意味" class=crosslink>to the</a> <a href="http://ejje.weblio.jp/content/Public+Prosecutors+Office" title="Public Prosecutors Officeの意味" class=crosslink>Public Prosecutors Office</a></p></div><div class=level1><p class=lvlBje><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E6%8C%9F%E3%81%BF" title="書類挟みの英語" class=crosslink>書類挟み</a></p><p class=kenjeEnE>a <a href="http://ejje.weblio.jp/content/file" title="fileの意味" class=crosslink>file</a></p><p class=kenjeEnE>a <a href="http://ejje.weblio.jp/content/folder" title="folderの意味" class=crosslink>folder</a> (<a href="http://ejje.weblio.jp/content/%E5%8E%9A%E7%B4%99" title="厚紙の英語" class=crosslink>厚紙</a>を <a href="http://ejje.weblio.jp/content/2+%E3%81%A4" title="2 つの英語" class=crosslink>2 つ</a>に<a href="http://ejje.weblio.jp/content/%E6%8A%98" title="折の英語" class=crosslink>折</a>った).</p></div>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/kenje" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/kenje/shi/60" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/kenje" title="ランキング">ランキング</a></span><span class=wList><a href="http://ejje.weblio.jp/subcategory/kenje" title="カテゴリー">カテゴリー</a></span></div>
</div>
<!--終了 研究社 新和英中辞典-->
<br class=clr>
</div>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnContExHead><div class=ydnSwCls id=ydnSwCls1> </' + 'div></' + 'div>');ydnBack[1] = (function(zSr, ovCnt, label){document.YdnUtils.start();YdnBuffWrite('<div class=adLMIMAd>');if(ovCnt>0&&ovCnt/6>1){var ocmCnt=0;var i=12;while(i<Math.min(18,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div class=adLMIM'+(ocmCnt == 0 ? 'Hd' : '')+' id=cadILMM'+i+' onclick="au(this,event);"><span class=adHIcn> </' + 'span>');YdnBuffWrite('<span class=adLMIMSp onmouseover="imcLne(this);" onmouseout="imcNon(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=1&gs=2&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adILMM', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<p class=adDes><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=1&gs=2&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p><p class=adSH><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=1&gs=2&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + sitehost + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');++ocmCnt;}YdnBuffWrite('<p class=adIFbS>' + label + '</' + 'p>');}YdnBuffWrite('</' + 'div>');document.getElementById('ydnSwCls1').innerHTML = document.YdnUtils.get();});
//-->
</script>
<form method="post" action="http://translate.weblio.jp/" name="translate" target="_blank">
<div class=trnsMdlBxWrp>
<div class=trnsMdlBxB>
<table class=trnsMdlBxTtlTbl><tr>
<td class=trnsMdlBxTtlL><a href="http://translate.weblio.jp/" title="テキスト翻訳" target="_blank">テキスト翻訳</a></td><td class=trnsMdlBxTtlR><a href="http://translate.weblio.jp/" title="Weblio翻訳" target="_blank">>> Weblio翻訳</a></td></tr></table>
<div class=trnsMdlBxDsc><textarea name="originalText" cols="50" rows="6" id="originalMdlTextArea" class=trnsMdlBxTx></textarea></div>
<div class=trnsMdlBxBtn><table class=trnsMdlBxBtnTbl><tr><td class=trnsMdlBxBtnTblL><div class=trnsMdlBxBtnTblLB><input type="radio" name="lp" value="EJ" checked>英語⇒日本語<input type="radio" name="lp" value="JE">日本語⇒英語</div></td><td class=trnsMdlBxBtnTblR><input type="submit" value="翻訳する" class=trnsBtn><span class=trnsBtnWrp><span class=trnsBtnH> </span><span class=trnsBtnB> </span></span></td></tr></table></div>
</div>
</div>
</form>
<script type="text/javascript"><!--
var mdlDispMsg = 'ここに翻訳したい文章を入力して下さい。';
var $orgMdlTxtArea = $('#originalMdlTextArea');
$orgMdlTxtArea.focus(function() { if (this.value == mdlDispMsg) { this.value = ''; }}).blur(function() { if (this.value == '') { this.value = mdlDispMsg; }});
document.getElementById('originalMdlTextArea').value = mdlDispMsg;
//--></script>
<!--開始 JMdict-->
<a name="JMDCT"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/jmdct" title="JMdict">JMdict</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=JMDCT&url=http%3A%2F%2Fwww.edrdg.org%2F" class=lgDict><img src="http://www.westatic.com/img/lg_jmdct.png" alt="EDRDG" width="97" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="EDRDG" width="99" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Jmdct>
<p class=jmdctYm><a href="http://ejje.weblio.jp/content/%E8%AA%AD%E3%81%BF%E6%96%B9" title="読み方の英語" class=crosslink>読み方</a>:<a href="http://ejje.weblio.jp/content/%E3%81%97%E3%82%87%E3%82%8B%E3%81%84" title="しょるいの英語" class=crosslink>しょるい</a></p>
<div class=jmdctGls><table><tr><td class=jmdctT><!--AVOID_CROSSLINK--><b class=jmdctL>文法情報</b><!--/AVOID_CROSSLINK--></td><td>(<a href="http://ejje.weblio.jp/content/%E5%90%8D%E8%A9%9E" title="名詞の英語" class=crosslink>名詞</a>)</td></tr><tr><td class=jmdctT><!--AVOID_CROSSLINK--><b class=jmdctL>対訳</b><!--/AVOID_CROSSLINK--></td><td> <a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a>; <a href="http://ejje.weblio.jp/content/official+papers" title="official papersの意味" class=crosslink>official papers</a> </td></tr></table></div>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/jmdct" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/jmdct/shi/186" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/jmdct" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 JMdict-->
<br class=clr>
</div>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnSwCls id=ydnSwCls2> </' + 'div>');ydnBack[2] = (function(zSr, ovCnt, label){document.YdnUtils.start();YdnBuffWrite('<div class=ylstMainLftBSc>');if(ovCnt>0&&ovCnt/6>3){YdnBuffWrite('<div class=mainBoxB><div class=adMIWrp>');var i=24;while(i<Math.min(36,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div style="cursor:hand; cursor:pointer;" class=adMIM id=cadIMM'+i+' onclick="au(this,event)" onmouseover="cbc(this);return pt()" onmouseout="bbc(this)"><span class=adHIcn>▼</' + 'span>');YdnBuffWrite('<span class=adHSpl><span class=adMIMSp onmouseover="imcNon(this);" onmouseout="imcLne(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adMIM&s=3&gs=5&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adIMM', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<span class=adSHWrp onmouseover="imcLne(this);" onmouseout="imcNon(this);"><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adMIM&s=3&gs=5&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank"><p class=adSH>' + sitehost + '</' + 'p></' + 'a></' + 'span></' + 'span><b class=clr></' + 'b><p class=adDes onmouseover="imcLne(this);" onmouseout="imcNon(this);"><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adMIM&s=3&gs=5&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');}YdnBuffWrite('<p class=adIFbS>' + label + '</' + 'p></' + 'div></' + 'div>');}YdnBuffWrite('</' + 'div>');document.getElementById('ydnSwCls2').innerHTML = document.YdnUtils.get();});
//-->
</script>
<!--開始 コンピューター用語辞典-->
<a name="CMPYG"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/cmpyg" title="コンピューター用語">コンピューター用語辞典</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=CMPYG&url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_cmpyg.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Cmpyg>
<p><!--AVOID_CROSSLINK--><span class=cmpygHdC>読み方</span><!--/AVOID_CROSSLINK--> <a href="http://ejje.weblio.jp/content/%E3%82%B7%E3%83%A7%E3%83%AB%E3%82%A4" title="ショルイの英語" class=crosslink>ショルイ</a></p>
<p><a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a></p>
<div class=cmpygS><!--AVOID_CROSSLINK--><span class=cmpygC>参照</span><!--/AVOID_CROSSLINK--></div>
<ul><li><a href="http://ejje.weblio.jp/content/%E6%96%87%E6%9B%B8" title="文書の英語" class=crosslink>文書</a></li></ul>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/cmpyg" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/cmpyg/shi/29" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/cmpyg" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 コンピューター用語辞典-->
<br class=clr>
</div>
<!--開始 法令用語日英標準対訳辞書-->
<a name="HYNHT"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/hynht" title="法令用語日英標準対訳辞書">法令用語日英標準対訳辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=HYNHT&url=http%3A%2F%2Fwww.japaneselawtranslation.go.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_hynht.png" alt="日本法令外国語訳データベースシステム" width="118" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="日本法令外国語訳データベースシステム" width="120" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Hynht>
<div class=Hynhttxt><a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a></div>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/hynht" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/hynht/shi/9" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/hynht" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 法令用語日英標準対訳辞書-->
<br class=clr>
</div>
<!--開始 JST科学技術用語日英対訳辞書-->
<a name="JSTKG"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/jstkg" title="JST科学技術用語日英対訳辞書">JST科学技術用語日英対訳辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=JSTKG&url=http%3A%2F%2Fpr.jst.go.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_jstkg.png" alt="独立行政法人科学技術振興機構" width="171" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="独立行政法人科学技術振興機構" width="173" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Jstkg>
<a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a>; <a href="http://ejje.weblio.jp/content/paper" title="paperの意味" class=crosslink>paper</a>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/jstkg" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/jstkg/shi/222" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/jstkg" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 JST科学技術用語日英対訳辞書-->
<br class=clr>
</div>
<!--開始 日本語WordNet(英和)-->
<a name="NWNEJ"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/nwnej" title="日本語WordNet">日本語WordNet(英和)</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=NWNEJ&url=http%3A%2F%2Fnlpwww.nict.go.jp%2Fwn-ja%2F" class=lgDict><img src="http://www.westatic.com/img/lg_nwnej.png" alt="日本語WordNet" width="125" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="日本語WordNet" width="127" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Nwnej>
<div class=nwnejP>【<a href="http://ejje.weblio.jp/content/%E5%90%8D%E8%A9%9E" title="名詞の英語" class=crosslink>名詞</a>】</div><div class=nwnejT><a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a>, <a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a>, <a href="http://ejje.weblio.jp/content/written+document" title="written documentの意味" class=crosslink>written document</a></div><div class=nwnejSJp><div class=nwnejS><p><a href="http://ejje.weblio.jp/content/%E6%83%85%E5%A0%B1%E3%82%92%E6%8F%90%E4%BE%9B%E3%81%99%E3%82%8B" title="情報を提供するの英語" class=crosslink>情報を提供する</a><a href="http://ejje.weblio.jp/content/%E6%96%87%E6%9B%B8" title="文書の英語" class=crosslink>文書</a>(<a href="http://ejje.weblio.jp/content/%E7%89%B9%E3%81%AB" title="特にの英語" class=crosslink>特に</a><a href="http://ejje.weblio.jp/content/%E5%85%AC%E5%BC%8F" title="公式の英語" class=crosslink>公式</a><a href="http://ejje.weblio.jp/content/%E8%87%AA%E7%84%B6%E3%81%AE" title="自然のの英語" class=crosslink>自然の</a><a href="http://ejje.weblio.jp/content/%E6%83%85%E5%A0%B1" title="情報の英語" class=crosslink>情報</a>)</p><p>(<a href="http://ejje.weblio.jp/content/writing" title="writingの意味" class=crosslink>writing</a> that <a href="http://ejje.weblio.jp/content/provides" title="providesの意味" class=crosslink>provides</a> <a href="http://ejje.weblio.jp/content/information" title="informationの意味" class=crosslink>information</a> (<a href="http://ejje.weblio.jp/content/especially" title="especiallyの意味" class=crosslink>especially</a> <a href="http://ejje.weblio.jp/content/information" title="informationの意味" class=crosslink>information</a> <a href="http://ejje.weblio.jp/content/of+an" title="of anの意味" class=crosslink>of an</a> <a href="http://ejje.weblio.jp/content/official" title="officialの意味" class=crosslink>official</a> <a href="http://ejje.weblio.jp/content/nature" title="natureの意味" class=crosslink>nature</a>))</p></div></div>
<div class=nwnejThL><a href="http://ejje.weblio.jp/english-thesaurus/content/%E6%9B%B8%E9%A1%9E" title="">>>「書類」に関する類語一覧</a></div>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/nwnej" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/nwnej/shi/43" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/nwnej" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 日本語WordNet(英和)-->
<br class=clr>
</div>
<!--開始 EDR日英対訳辞書-->
<a name="EDRNT"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/edrnt" title="日英対訳辞書">EDR日英対訳辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=EDRNT&url=http%3A%2F%2Fwww.nict.go.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_edrnt.png" alt="独立行政法人情報通信研究機構" width="207" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="独立行政法人情報通信研究機構" width="209" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Edrnt>
<p><!--AVOID_CROSSLINK--><span class=edrntC>読み方</span><!--/AVOID_CROSSLINK--> <a href="http://ejje.weblio.jp/content/%E3%82%B7%E3%83%A7%E3%83%AB%E3%82%A4" title="ショルイの英語" class=crosslink>ショルイ</a></p>
<p><a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a></p>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/edrnt" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/edrnt/shi/81" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/edrnt" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 EDR日英対訳辞書-->
<br class=clr>
</div>
<!--開始 日英・英日専門用語辞書-->
<a name="NEENS"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/neens" title="日英・英日専門用語">日英・英日専門用語辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=NEENS&url=http%3A%2F%2Fwww.cjk.org%2Fcjk%2Findexj.htm" class=lgDict><img src="http://www.westatic.com/img/lg_neens.png" alt="日中韓辭典研究所" width="196" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="日中韓辭典研究所" width="198" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Neens>
<a href="http://ejje.weblio.jp/content/instrument" title="instrumentの意味" class=crosslink>instrument</a>,<a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/neens" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/neens/shi/229" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/neens" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 日英・英日専門用語辞書-->
<br class=clr>
</div>
<!--開始 クロスランゲージ 37分野専門語辞書-->
<a name="CRLCJ"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/crlcj" title="英和専門語辞典">クロスランゲージ 37分野専門語辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=CRLCJ&url=http%3A%2F%2Fwww.crosslanguage.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_crlcj.png" alt="株式会社クロスランゲージ" width="85" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="株式会社クロスランゲージ" width="87" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Crlcj>
<a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a>; <a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a>; <a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a> <a href="http://ejje.weblio.jp/content/bearing+on" title="bearing onの意味" class=crosslink>bearing on</a> the <a href="http://ejje.weblio.jp/content/affairs" title="affairsの意味" class=crosslink>affairs</a>; <a href="http://ejje.weblio.jp/content/documentation" title="documentationの意味" class=crosslink>documentation</a>; <a href="http://ejje.weblio.jp/content/documentary+evidence" title="documentary evidenceの意味" class=crosslink>documentary evidence</a>; <a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a>; <a href="http://ejje.weblio.jp/content/instrument" title="instrumentの意味" class=crosslink>instrument</a>; <a href="http://ejje.weblio.jp/content/dossier" title="dossierの意味" class=crosslink>dossier</a>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/crlcj" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/crlcj/shi/230" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/crlcj" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 クロスランゲージ 37分野専門語辞書-->
<br class=clr>
</div>
<!--開始 斎藤和英大辞典-->
<a name="STWDJ"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/stwdj" title="斎藤和英大辞典">斎藤和英大辞典</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://www.weblio.jp/redirect?dictCode=STWDJ&url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lg_stwdj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Stwdj>
<p><!--AVOID_CROSSLINK--><span class=stwdjHdC>読み方</span><!--/AVOID_CROSSLINK--> <a href="http://ejje.weblio.jp/content/%E3%81%97%E3%82%87%E3%82%8B%E3%81%84" title="しょるいの英語" class=crosslink>しょるい</a></p>
<div class=stwdjS><!--AVOID_CROSSLINK--><span class=stwdjC>名詞</span><!--/AVOID_CROSSLINK--></div>
<p class=stwdjNH>1</p><p class=stwdjNB>(=<a href="http://ejje.weblio.jp/content/%E6%9B%B8%E3%81%8D%E7%89%A9" title="書き物の英語" class=crosslink>書き物</a><a href="http://ejje.weblio.jp/content/%E9%A1%9E" title="類の英語" class=crosslink>類</a>)<a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a>; <a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a></p><br class=clr>
<div class=stwdjYr>
<div class=stwdjYrHdFld><img src="http://www.westatic.com/img/showMorePlus.png" alt=""><!--AVOID_CROSSLINK--><span class=stwdjHdC>用例</span><!--/AVOID_CROSSLINK--></div>
<div class=stwdjR><span class=stwdjYrJp>書類を<a href="http://ejje.weblio.jp/content/%E8%AA%AD%E3%81%BF%E5%90%88%E3%82%8F%E3%81%9B%E3%82%8B" title="読み合わせるの英語" class=crosslink>読み合わせる</a></span><br><span class=stwdjYrEn><a href="http://ejje.weblio.jp/content/to" title="toの意味" class=crosslink>to</a> <b class=stwdjBld><a href="http://ejje.weblio.jp/content/collate" title="collateの意味" class=crosslink>collate</a> <a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a>―<a href="http://ejje.weblio.jp/content/verify" title="verifyの意味" class=crosslink>verify</a> <a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a></b></span></div>
<div class=stwdjRF><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E9%99%B0%E8%AC%80" title="陰謀の英語" class=crosslink>陰謀</a><a href="http://ejje.weblio.jp/content/%E3%81%AB%E9%96%A2%E3%81%99%E3%82%8B" title="に関するの英語" class=crosslink>に関する</a>書類</span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a> <a href="http://ejje.weblio.jp/content/relating+to" title="relating toの意味" class=crosslink>relating to</a> <a href="http://ejje.weblio.jp/content/the+plot" title="the plotの意味" class=crosslink>the plot</a></b></span></div>
<div class=stwdjRF><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E9%96%A2%E4%BF%82%E6%9B%B8%E9%A1%9E" title="関係書類の英語" class=crosslink>関係書類</a></span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a> <a href="http://ejje.weblio.jp/content/bearing+on" title="bearing onの意味" class=crosslink>bearing on</a> the <a href="http://ejje.weblio.jp/content/affair" title="affairの意味" class=crosslink>affair</a></b></span></div>
<div class=stwdjRF><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E8%A8%BC%E6%8B%A0%E6%9B%B8%E9%A1%9E" title="証拠書類の英語" class=crosslink>証拠書類</a></span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/documents" title="documentsの意味" class=crosslink>documents</a>―<a href="http://ejje.weblio.jp/content/muniments" title="munimentsの意味" class=crosslink>muniments</a></b>―(<a href="http://ejje.weblio.jp/content/%E6%B3%95%E5%BB%B7" title="法廷の英語" class=crosslink>法廷</a>にては)―<b class=stwdjBld><a href="http://ejje.weblio.jp/content/exhibits" title="exhibitsの意味" class=crosslink>exhibits</a>―<a href="http://ejje.weblio.jp/content/evidence" title="evidenceの意味" class=crosslink>evidence</a></b></span></div>
<div class=stwdjRF><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E7%A7%98%E5%AF%86%E6%9B%B8%E9%A1%9E" title="秘密書類の英語" class=crosslink>秘密書類</a></span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/secret" title="secretの意味" class=crosslink>secret</a> <a href="http://ejje.weblio.jp/content/papers" title="papersの意味" class=crosslink>papers</a>―<a href="http://ejje.weblio.jp/content/secret+documents" title="secret documentsの意味" class=crosslink>secret documents</a></b></span></div>
</div>
<p class=stwdjNH>2</p><p class=stwdjNB>(=<a href="http://ejje.weblio.jp/content/%E6%9B%B8%E7%89%A9" title="書物の英語" class=crosslink>書物</a><a href="http://ejje.weblio.jp/content/%E9%A1%9E" title="類の英語" class=crosslink>類</a>)<a href="http://ejje.weblio.jp/content/books" title="booksの意味" class=crosslink>books</a>; <a href="http://ejje.weblio.jp/content/works" title="worksの意味" class=crosslink>works</a></p><br class=clr>
<div class=stwdjYr>
<div class=stwdjYrHdFld><img src="http://www.westatic.com/img/showMorePlus.png" alt=""><!--AVOID_CROSSLINK--><span class=stwdjHdC>用例</span><!--/AVOID_CROSSLINK--></div>
<div class=stwdjR><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E6%96%87%E5%AD%A6%E6%9B%B8" title="文学書の英語" class=crosslink>文学書</a><a href="http://ejje.weblio.jp/content/%E9%A1%9E" title="類の英語" class=crosslink>類</a></span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/literary+works" title="literary worksの意味" class=crosslink>literary works</a></b></span></div>
<div class=stwdjRF><span class=stwdjYrJp><a href="http://ejje.weblio.jp/content/%E6%95%B0%E5%AD%A6" title="数学の英語" class=crosslink>数学</a>書類</span><br><span class=stwdjYrEn><b class=stwdjBld><a href="http://ejje.weblio.jp/content/works+on" title="works onの意味" class=crosslink>works on</a> <a href="http://ejje.weblio.jp/content/mathematics" title="mathematicsの意味" class=crosslink>mathematics</a></b></span></div>
</div>
</div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/stwdj" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/stwdj/shi/57" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/stwdj" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 斎藤和英大辞典-->
<br class=clr>
</div>
<!--開始 Weblio専門用語対訳辞書-->
<a name="WSMYG"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/wsmyg" title="専門用語対訳辞書">Weblio専門用語対訳辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://ejje.weblio.jp/" class=lgDict><img src="http://www.westatic.com/img/lg_weblio_ejje.png" alt="英和辞典・和英辞典 - Weblio辞書" width="98" height="25"><img src="http://www.westatic.com/img/spacer.gif" alt="英和辞典・和英辞典 - Weblio辞書" width="100" height="27" style="display:block;position:relative;margin-top:-27px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Wsmyg>
<p><a href="http://ejje.weblio.jp/content/Papers" title="Papersの意味" class=crosslink>Papers</a>;<a href="http://ejje.weblio.jp/content/Documents" title="Documentsの意味" class=crosslink>Documents</a></p><p class=wsmygC><!--AVOID_CROSSLINK--><span>カテゴリ</span><!--/AVOID_CROSSLINK--> <a href="http://ejje.weblio.jp/content/%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E7%94%A8%E8%AA%9E" title="ビジネス用語の英語" class=crosslink>ビジネス用語</a></p>
</div>
<div class=Wejty><div class=wejtyInfo>
Weblio専門用語対訳辞書はプログラムで機械的に意味や英語表現を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。
<a href="http://www.weblio.jp/info/inquiry.jsp">お問い合わせ</a>。
</div></div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/wsmyg" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/wsmyg/shi/53" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/wsmyg" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 Weblio専門用語対訳辞書-->
<br class=clr>
</div>
<!--開始 Weblio英和対訳辞書-->
<a name="WEJTY"></a>
<table class=wrp>
<tr><td class=left><h2 class=dictNm><a href="http://ejje.weblio.jp/category/wejty" title="英和対訳">Weblio英和対訳辞書</a></h2></td>
<td class=right>
<div style="float:right;">
<a href="http://ejje.weblio.jp/" class=lgDict><img src="http://www.westatic.com/img/lg_weblio_ejje.png" alt="英和辞典・和英辞典 - Weblio辞書" width="98" height="25"><img src="http://www.westatic.com/img/spacer.gif" alt="英和辞典・和英辞典 - Weblio辞書" width="100" height="27" style="display:block;position:relative;margin-top:-27px;"></a>
</div>
</td>
</tr>
</table>
<br class=clrBc>
<div class=kijiWrp>
<div class=kiji>
<h2 class=midashigo title="書類">書類</h2>
<div class=Wejty>
<a href="http://ejje.weblio.jp/content/document" title="documentの意味" class=crosslink>document</a>
</div>
<div class=Wejty><div class=wejtyInfo>
Weblio英和対訳辞書はプログラムで機械的に意味や英語表現を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。
<a href="http://www.weblio.jp/info/inquiry.jsp">お問い合わせ</a>。
</div></div>
<br class=clr>
<div class=kijiFoot>
<span class=wList><a href="http://ejje.weblio.jp/category/wejty" title="索引トップ">索引トップ</a></span><span class=wList><a href="http://ejje.weblio.jp/category/wejty/shi/225" title="用語の索引">用語の索引</a></span><span class=wList><a href="http://ejje.weblio.jp/ranking/wejty" title="ランキング">ランキング</a></span></div>
</div>
<!--終了 Weblio英和対訳辞書-->
<br class=clr>
</div>
<div class=qotH><h2 class=qotHT>「書類」を含む例文一覧</h2><p class=qotHTR>該当件数 : <b>9884</b>件</p><br class=clr></div><br class=clrBc><div class=kijiWrp><div class=kiji><div class=qotC><p class=qotCJJ>積み荷<b><b>書類</b></b>という<b><b>書類</b></b></p><p class=qotCJE>shipping documents<script type="text/javascript">
<!--
document.write('<span onclick="return playSentenceSnd(\'96450e79e9d797dadd37ecec6840147d\', \'ePsdQc0\', \'EDR_NICHIEI_TAIYAKU\', false)" class=sntcA><img src="http://www.westatic.com/img/icons/iconVcOr.png" alt=""><b ID=ePsdQc0></' + 'b></' + 'span>');
//-->
</script>
<span> - EDR日英対訳辞書</span></p></div><div class=qotC><p class=qotCJJ><b><b>書類</b></b>の作成</p><p class=qotCJE>Document creation<span> - Weblio Email例文集</span></p></div><div class=qotC><p class=qotCJJ><b><b>書類</b></b>を作る</p><p class=qotCJE>Make documents<span> - Weblio Email例文集</span></p></div></div><br class=clr></div><div class=kijiFoot><span class=wListSn><a href="http://ejje.weblio.jp/sentence/category/" title="索引トップ">索引トップ</a></span><span class=wListSn><a href="http://ejje.weblio.jp/sentence/category/shi/106" title="用語の索引">用語の索引</a></span></div>
<div class=subMenu><table class=subMenuT><tr><td class=subMenuOn>意味</td><td class=subMenuOff><a href="http://ejje.weblio.jp/sentence/content/%E6%9B%B8%E9%A1%9E">例文</a></td><td class=subMenuOff><a href="http://ejje.weblio.jp/english-thesaurus/content/%E6%9B%B8%E9%A1%9E">類語</a></td></tr></table></div>
<br><hr class=hrDot><div class=mainAdMPrimBn>
<script type="text/javascript">
<!--
adScS('cp386.js');
//-->
</script>
</div>
<!-- interest_match_relevant_zone_end -->
<br>
<hr class=hrDot>
<br>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnSwCls id=ydnSwCls3> </' + 'div>');ydnBack[3] = (function(zSr, ovCnt, label){document.YdnUtils.start();if(ovCnt>0&&ovCnt/6>2){YdnBuffWrite('<div class=mainBoxB><div class=adHIWrp>');var i=18;while(i<Math.min(42,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div style="cursor:hand; cursor:pointer;" class=adFISb id=tadIMF'+i+' onclick="au(this,event)" onmouseover="cbc(this, \'adFIBIcn\');return pt()" onmouseout="bbc(this, \'adFISb\')"><span class=adHIcn> </' + 'span>');YdnBuffWrite('<span class=adHSpl><span class=adFISbSp onmouseover="imcNon(this);" onmouseout="imcLne(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adFISb&s=2&gs=6&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adIMF', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<span class=adSHWrp onmouseover="imcLne(this);" onmouseout="imcNon(this);"><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adFISb&s=2&gs=6&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank"><p class=adSH>' + sitehost + '</' + 'p></' + 'a></' + 'span></' + 'span><b class=clr></' + 'b><p class=adDes onmouseover="imcLne(this);" onmouseout="imcNon(this);"><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adFISb&s=2&gs=6&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');}YdnBuffWrite('<p class=adIFb>' + label + '</' + 'p></' + 'div>');}document.getElementById('ydnSwCls3').innerHTML = document.YdnUtils.get();});
//-->
</script>
<div class=fndAnc><b>>></b> <a href="http://ejje.weblio.jp/content_find/text/0/%E6%9B%B8%E9%A1%9E" title="「書類」を解説文に含む英和和英の用語の一覧">「書類」を解説文に含む英和和英の用語の一覧</a></div><br>
<div class=fwlAnc><b>>></b> <a href="http://ejje.weblio.jp/category/shi/227" title="和英辞書の「書類」の用語索引">和英辞書の「書類」の用語索引</a></div><br><table ID=linkTagM>
<tr>
<td class=linkTagML><b>書類のページへのリンク</b><input type="text" value="<a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E" title="書類" target="_blank">書類</a>" onclick="this.select()" readonly></td>
<td class=linkTagMR><script type="text/javascript">
<!--
outCntWr('e', '%E6%9B%B8%E9%A1%9E', true);
//-->
</script>
</td>
</tr>
</table>
<div class=cntDadSc>
<script type="text/javascript">
<!--
adScS('cp384.js');
//-->
</script>
</div>
</div>
<!-- コンテント -->
<!-- サイドメニュー -->
<div ID=side>
<div class=sideAdBunner>
<script type="text/javascript">
<!--
adScS('cp475.js');
//-->
</script>
<noscript><a href='http://adf.send.microad.jp/ck.php?n=a696b4f6&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://adf.send.microad.jp/avw.php?zoneid=12208&cb=INSERT_RANDOM_NUMBER_HERE&n=a696b4f6&ct0=INSERT_CLICKURL_HERE&snr=1' border='0' alt=''></a></noscript>
</div>
<script type="text/javascript">
<!--
document.write('<div class=sdBxPbW><div class=sdBxPbC><b>こんにちは ゲストさん</' + 'b><div class=sdBxPbCLl>[<a href="https://uwl.weblio.jp/accounts/login-entry" rel="nofollow" class=lgnEntryLink>ログイン</' + 'a>]</' + 'div><ul class=sdBxPbUl><li class=sdBxPbli><a href="https://uwl.weblio.jp/register/user-entry" rel="nofollow" >新規会員登録(無料)</' + 'a></' + 'li></' + 'ul></' + 'div><br><div class=sdBxPbC><table style="border:0;"><tr><td><img src="http://www.westatic.com/img/ad/weblio-inc_sqmj_50_50_7.png" alt=""></' + 'td><td><a href="https://uwl.weblio.jp/ps/index">広告無しで快適に検索!<br>weblioプレミアムサービス</' + 'a><br><b style="color:red;font-size:12px;">30日間無料のお試しキャンペーン実施中!</' + 'b></' + 'td></' + 'tr></' + 'table></' + 'div></' + 'div>');
//-->
</script>
<script type="text/javascript">
<!--
adScS('cp379.js');
//-->
</script>
<div class=sideBoxHE>
<div><b>和英辞書の「書類」の英語に関連した用語</b></div>
</div>
<div class=sideBoxBE>
<div class=sideBoxCnt>
<div>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>1</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/documents" title="documents">documents</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/stwdj/d/24" title="斎藤和英大辞典"><b>斎藤和英大辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>2</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/official+papers" title="official papers">official papers</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/wejty/o/41" title="英和対訳"><b>英和対訳</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>3</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/papers" title="papers">papers</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/wejty/p/23" title="英和対訳"><b>英和対訳</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>4</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/attached+letters" title="attached letters">attached letters</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/a/261" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>5</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/attached+paper" title="attached paper">attached paper</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/a/261" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>6</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/attached+papers" title="attached papers">attached papers</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/a/261" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>7</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/confidential+papers" title="confidential papers">confidential papers</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/c/193" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>8</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/duplicate+document" title="duplicate document">duplicate document</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/d/285" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>9</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/legal+documents" title="legal documents">legal documents</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/crlcj/l/96" title="英和専門語辞典"><b>英和専門語辞典</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<div class=sideRWordsWrp>
<div class=sideRWordsRank>10</div>
<div class=sideRWordsL>
<a href="http://ejje.weblio.jp/content/attached+document" title="attached document">attached document</a>
<div class="sideRWordsDA"><a href="http://ejje.weblio.jp/category/dnksg/a/11" title="電気制御英語"><b>電気制御英語</b></a></div></div>
<div class=sideRWordsR>
100% <span class=bulb5></span>
</div>
</div>
<br class=clr>
<b class=clrBc></b>
</div>
</div>
</div>
<form method="post" action="http://translate.weblio.jp/" name="translate" target="_blank">
<div ID=trnsBxWRP>
<div ID=trnsBxH>
<div ID=trnsBxHCnt>
<table ID=trnsBxHT>
<tr>
<td ID=trnsBxHTL><a href="http://translate.weblio.jp/" title="テキスト翻訳" target="_blank">テキスト翻訳</a></td>
<td ID=trnsBxHTR><a href="http://translate.weblio.jp/" title="Weblio 翻訳" target="_blank">>> Weblio翻訳</a></td>
</tr>
</table>
</div>
</div>
<div ID=trnsBxB>
<div ID=trnsBxBCnt>
<textarea name="originalText" cols="38" rows="10" id="originalTextArea" class=trnsBxTx></textarea>
</div>
</div>
<table ID=trnsBxBT>
<tr>
<td ID=trnsBxBTL>
<p> </p>
</td>
<td ID=trnsBxBTC>
<input type="radio" name="lp" value="EJ" checked>英語⇒日本語
<br>
<input type="radio" name="lp" value="JE">日本語⇒英語</td>
<td ID=trnsBxBTR>
<input type="submit" value="翻訳する" class=trnsBtn>
<span class=trnsBtnWrp>
<span class=trnsBtnH> </span>
<span class=trnsBtnB> </span>
</span>
</td>
</tr>
</table>
</div>
</form>
<script type="text/javascript">
var dispMsg = 'ここに翻訳したい文章を入力して下さい。'.replace(/<br>/g, '\n');
var $orgTxtArea = $('#originalTextArea');
$orgTxtArea.focus(function() {
if (this.value.replace(/\r?\n/g, '') == dispMsg.replace(/\r?\n/g, '')) {
this.value = '';
}
}).blur(function() {
if (this.value == '') {
this.value = dispMsg;
}
});
document.getElementById('originalTextArea').value = dispMsg;
</script>
<script type="text/javascript">
<!--
adScS('cp459.js');
//-->
</script>
<div class=sideBoxHE>
<div><b>書類のお隣キーワード</b></div>
</div>
<div class=sideBoxBE>
<div class=sideBoxCnt>
<div class=sideRWordsWrp>
<div class=sideRNBWords>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E8%A8%88%E7%94%BB" title="書面計画">書面計画</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E8%AA%B9%E6%AF%80" title="書面誹毀">書面誹毀</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E8%AA%BF%E6%9F%BB" title="書面調査">書面調査</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E9%80%9A%E7%9F%A5" title="書面通知">書面通知</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E9%80%9A%E7%9F%A5%E3%81%99%E3%82%8B" title="書面通知する">書面通知する</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%9D%A2%E9%96%8B%E5%82%AC" title="書面開催">書面開催</a></p>
<p><b>書類</b></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E3%E9%80%9A" title="書類3通">書類3通</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E3%81%8B%E3%81%B0%E3%82%93" title="書類かばん">書類かばん</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E3%81%8C%E5%88%B0%E7%9D%80%E3%81%99%E3%82%8B" title="書類が到着する">書類が到着する</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E3%81%A8%E3%81%98" title="書類とじ">書類とじ</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E3%81%AB%C3%97%E3%81%AE%E7%BD%B2%E5%90%8D%E3%82%92%E3%81%99%E3%82%8B" title="書類に×の署名をする">書類に×の署名をする</a></p>
<p><a href="http://ejje.weblio.jp/content/%E6%9B%B8%E9%A1%9E%E3%81%AB%E3%81%96%E3%81%A3%E3%81%A8%E7%9B%AE%E3%82%92%E9%80%9A%E3%81%99" title="書類にざっと目を通す">書類にざっと目を通す</a></p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnContExHead4><div class=ydnSwCls id=ydnSwCls4> </' + 'div></' + 'div>');ydnBack[4] = (function(zSr, ovCnt, label){document.YdnUtils.start();YdnBuffWrite('<div class=adLMIMAd>');if(ovCnt>0&&ovCnt/6>0){var ocmCnt=0;var i=6;while(i<Math.min(30,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div class=adLMIM'+(ocmCnt == 0 ? 'Hd' : '')+' id=cadILMM'+i+' onclick="au(this,event);"><span class=adHIcn> </' + 'span>');YdnBuffWrite('<span class=adLMIMSp onmouseover="imcLne(this);" onmouseout="imcNon(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=4&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adILMM', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<p class=adDes><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=4&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p><p class=adSH><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=0&gs=4&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + sitehost + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');++ocmCnt;}YdnBuffWrite('<p class=adIFbS>' + label + '</' + 'p>');}YdnBuffWrite('</' + 'div>');document.getElementById('ydnSwCls4').innerHTML = document.YdnUtils.get();});
//-->
</script>
<div class=sideBxAdbEst>
<div class=sideBxAdbH><p>Adobe Readerに検索機能を組み込む</p></div>
<div class=sideBxAdbB>
<table class=sideBxAdbT>
<tr>
<td class=sideBxAdbTL>
<a href="http://ejje.weblio.jp/tips/guide/help/Adobe+Reader%E3%81%AB%E6%A4%9C%E7%B4%A2%E6%A9%9F%E8%83%BD%E3%82%92%E7%B5%84%E3%81%BF%E8%BE%BC%E3%82%80" title="Adobe Reader プラグイン" target="_blank">
<img src="http://www.westatic.com/img/ad/adobe_button.png" alt="" width="130" height="58" class=sideBxAdbImg>
</a>
</td>
<td class=sideBxAdbTR>
<a href="http://ejje.weblio.jp/tips/guide/help/Adobe+Reader%E3%81%AB%E6%A4%9C%E7%B4%A2%E6%A9%9F%E8%83%BD%E3%82%92%E7%B5%84%E3%81%BF%E8%BE%BC%E3%82%80" title="Adobe Reader プラグイン" target="_blank">Adobe ReaderにWeblio英和辞典を組み込むことで手軽に英語の意味を参照できます。</a>
<p><a href="http://ejje.weblio.jp/tips/guide/help/Adobe+Reader%E3%81%AB%E6%A4%9C%E7%B4%A2%E6%A9%9F%E8%83%BD%E3%82%92%E7%B5%84%E3%81%BF%E8%BE%BC%E3%82%80" title="Adobe Reader プラグイン" target="_blank">>>Weblio英和辞典プラグイン</a></p>
</td>
</table>
</div>
</div>
<div id=sideRankBoxE>
<p ID=rankHE><span>検索ランキング</span></p>
<!--[if IE]><div ID=sideRankBoxIE><![endif]-->
<div style="position:relative;">
<div id=rankBox0 style="width:298px;">
<p onclick="htBS(this)" class=rankOpE><span>▼</span>1~10</p>
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(1);"><span>▼</span>11~20</a></p>
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(2);"><span>▼</span>21~30</a></p>
<br class=clr>
<table class=rankWrpE summary="ランキングのテーブル">
<tr class=rankDkE><td class=RankBsSg>1</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/Grandpa" title="Grandpa" onclick="return redirect(this, 'http://ejje.weblio.jp/content/Grandpa?erl=true');">Grandpa</a></td></tr><tr class=rankLt><td class=RankBsSg>2</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/gravity" title="gravity" onclick="return redirect(this, 'http://ejje.weblio.jp/content/gravity?erl=true');">gravity</a></td></tr><tr class=rankDkE><td class=RankBsSg>3</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/%E3%83%A1%E3%83%AA%E3%83%BC%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9" title="メリークリスマス" onclick="return redirect(this, 'http://ejje.weblio.jp/content/%E3%83%A1%E3%83%AA%E3%83%BC%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9?erl=true');">メリークリスマス</a></td></tr><tr class=rankLt><td class=RankBsSg>4</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/bring+out" title="bring out" onclick="return redirect(this, 'http://ejje.weblio.jp/content/bring+out?erl=true');">bring out</a></td></tr><tr class=rankDkE><td class=RankBsSg>5</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/apply" title="apply" onclick="return redirect(this, 'http://ejje.weblio.jp/content/apply?erl=true');">apply</a></td></tr><tr class=rankLt><td class=RankBsSg>6</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/present" title="present" onclick="return redirect(this, 'http://ejje.weblio.jp/content/present?erl=true');">present</a></td></tr><tr class=rankDkE><td class=RankBsSg>7</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/undefined" title="undefined" onclick="return redirect(this, 'http://ejje.weblio.jp/content/undefined?erl=true');">undefined</a></td></tr><tr class=rankLt><td class=RankBsSg>8</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/%E3%82%A2%E3%82%B9%E3%83%9A%E3%83%AB%E3%82%AE%E3%83%AB%E3%82%B9%E3%82%AA%E3%83%AA%E3%82%BC" title="アスペルギルスオリゼ" onclick="return redirect(this, 'http://ejje.weblio.jp/content/%E3%82%A2%E3%82%B9%E3%83%9A%E3%83%AB%E3%82%AE%E3%83%AB%E3%82%B9%E3%82%AA%E3%83%AA%E3%82%BC?erl=true');">アスペルギルスオリゼ</a></td></tr><tr class=rankDkE><td class=RankBsSg>9</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/confirm" title="confirm" onclick="return redirect(this, 'http://ejje.weblio.jp/content/confirm?erl=true');">confirm</a></td></tr><tr class=rankLt><td class=RankBsMl>10</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/appreciate" title="appreciate" onclick="return redirect(this, 'http://ejje.weblio.jp/content/appreciate?erl=true');">appreciate</a></td></tr>
</table>
<div class=rankMr><a href="http://ejje.weblio.jp/ranking">>>もっとランキングを見る</a></div>
</div>
<div id=rankBox1 style="position:absolute; top:-300; left:-300; visibility:hidden; width:298px;">
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(0);"><span>▼</span>1~10</a></p>
<p onclick="htBS(this)" class=rankOpE><span>▼</span>11~20</p>
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(2);"><span>▼</span>21~30</a></p>
<br class=clr>
<table class=rankWrpE summary="ランキングのテーブル">
<tr class=rankDkE><td class=RankBsMl>11</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/consider" title="consider" onclick="return redirect(this, 'http://ejje.weblio.jp/content/consider?erl=true');">consider</a></td></tr><tr class=rankLt><td class=RankBsMl>12</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/expect" title="expect" onclick="return redirect(this, 'http://ejje.weblio.jp/content/expect?erl=true');">expect</a></td></tr><tr class=rankDkE><td class=RankBsMl>13</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/wonder" title="wonder" onclick="return redirect(this, 'http://ejje.weblio.jp/content/wonder?erl=true');">wonder</a></td></tr><tr class=rankLt><td class=RankBsMl>14</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/issue" title="issue" onclick="return redirect(this, 'http://ejje.weblio.jp/content/issue?erl=true');">issue</a></td></tr><tr class=rankDkE><td class=RankBsMl>15</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/reference" title="reference" onclick="return redirect(this, 'http://ejje.weblio.jp/content/reference?erl=true');">reference</a></td></tr><tr class=rankLt><td class=RankBsMl>16</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/available" title="available" onclick="return redirect(this, 'http://ejje.weblio.jp/content/available?erl=true');">available</a></td></tr><tr class=rankDkE><td class=RankBsMl>17</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/provide" title="provide" onclick="return redirect(this, 'http://ejje.weblio.jp/content/provide?erl=true');">provide</a></td></tr><tr class=rankLt><td class=RankBsMl>18</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/leave" title="leave" onclick="return redirect(this, 'http://ejje.weblio.jp/content/leave?erl=true');">leave</a></td></tr><tr class=rankDkE><td class=RankBsMl>19</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/while" title="while" onclick="return redirect(this, 'http://ejje.weblio.jp/content/while?erl=true');">while</a></td></tr><tr class=rankLt><td class=RankBsMl>20</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/cause" title="cause" onclick="return redirect(this, 'http://ejje.weblio.jp/content/cause?erl=true');">cause</a></td></tr>
</table>
<div class=rankMr><a href="http://ejje.weblio.jp/ranking">>>もっとランキングを見る</a></div>
</div>
<div id=rankBox2 style="position:absolute; top:-300; left:-300; visibility:hidden; width:298px;">
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(0);"><span>▼</span>1~10</a></p>
<p onclick="htBS(this)" class=rankClE><a href="#" onclick="return seltab(1);"><span>▼</span>11~20</a></p>
<p onclick="htBS(this)" class=rankOpE><span>▼</span>21~30</p>
<br class=clr>
<table class=rankWrpE summary="ランキングのテーブル">
<tr class=rankDkE><td class=RankBsMl>21</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/even" title="even" onclick="return redirect(this, 'http://ejje.weblio.jp/content/even?erl=true');">even</a></td></tr><tr class=rankLt><td class=RankBsMl>22</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/concern" title="concern" onclick="return redirect(this, 'http://ejje.weblio.jp/content/concern?erl=true');">concern</a></td></tr><tr class=rankDkE><td class=RankBsMl>23</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/assume" title="assume" onclick="return redirect(this, 'http://ejje.weblio.jp/content/assume?erl=true');">assume</a></td></tr><tr class=rankLt><td class=RankBsMl>24</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/still" title="still" onclick="return redirect(this, 'http://ejje.weblio.jp/content/still?erl=true');">still</a></td></tr><tr class=rankDkE><td class=RankBsMl>25</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/awesome" title="awesome" onclick="return redirect(this, 'http://ejje.weblio.jp/content/awesome?erl=true');">awesome</a></td></tr><tr class=rankLt><td class=RankBsMl>26</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/improve" title="improve" onclick="return redirect(this, 'http://ejje.weblio.jp/content/improve?erl=true');">improve</a></td></tr><tr class=rankDkE><td class=RankBsMl>27</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/indicate" title="indicate" onclick="return redirect(this, 'http://ejje.weblio.jp/content/indicate?erl=true');">indicate</a></td></tr><tr class=rankLt><td class=RankBsMl>28</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/property" title="property" onclick="return redirect(this, 'http://ejje.weblio.jp/content/property?erl=true');">property</a></td></tr><tr class=rankDkE><td class=RankBsMl>29</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/further" title="further" onclick="return redirect(this, 'http://ejje.weblio.jp/content/further?erl=true');">further</a></td></tr><tr class=rankLt><td class=RankBsMl>30</td><td class=sideRankU></td><td><a href="http://ejje.weblio.jp/content/remain" title="remain" onclick="return redirect(this, 'http://ejje.weblio.jp/content/remain?erl=true');">remain</a></td></tr>
</table>
<div class=rankMr><a href="http://ejje.weblio.jp/ranking">>>もっとランキングを見る</a></div>
</div>
<!--[if IE]></div><![endif]-->
</div>
</div>
<script type="text/javascript">
<!--
YdnBuffWrite('<div class=ydnContExHead4><div class=ydnSwCls id=ydnSwCls5> </' + 'div></' + 'div>');ydnBack[5] = (function(zSr, ovCnt, label){document.YdnUtils.start();YdnBuffWrite('<div class=adLMIMAd>');if(ovCnt>0&&ovCnt/6>4){var ocmCnt=0;var i=30;while(i<Math.min(54,zSr.length)){var descr=zSr[i++];i++;var clickURL=zSr[i++];var title=zSr[i++];var sitehost=zSr[i++];i++;YdnBuffWrite('<div class=adLMIM'+(ocmCnt == 0 ? 'Hd' : '')+' id=cadILMM'+i+' onclick="au(this,event);"><span class=adHIcn> </' + 'span>');YdnBuffWrite('<span class=adLMIMSp onmouseover="imcLne(this);" onmouseout="imcNon(this);">');adrdYdnWriteAd('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=4&gs=8&dcl=', clickURL, sitehost, (zSr.length - 6) / 6, 'adILMM', title, i);YdnBuffWrite('</' + 'span>');YdnBuffWrite('<p class=adDes><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=4&gs=8&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + descr + '</' + 'a></' + 'p><p class=adSH><a href="'+('http://adrd.weblio.jp/?q=&k=%E6%9B%B8%E9%A1%9E&t=adLMIM&s=4&gs=8&dcl=&u='+encodeURL(clickURL)+'&shu='+encodeURL(sitehost)+'&c='+((zSr.length - 6) / 6))+'" target="_blank">' + sitehost + '</' + 'a></' + 'p>');YdnBuffWrite('</' + 'div>');++ocmCnt;}YdnBuffWrite('<p class=adIFbS>' + label + '</' + 'p>');}YdnBuffWrite('</' + 'div>');document.getElementById('ydnSwCls5').innerHTML = document.YdnUtils.get();});
//-->
</script>
<div id=fdbkWrp></div>
<script type="text/javascript">
<!--
$(document).ready(function(){
$('#fdbkWrp').html(
'<p id=fdbkTtl>Weblioにご意見をお聞かせください</' + 'p>' +
'<div id=fdbkBx>' +
'<textarea cols="30" rows="8" id=feedbackTextArea></' + 'textarea>' +
'</' + 'div>' +
'<div id=fdbkBtnWrp>' +
'<input type="submit" value="Weblioに意見を送る" id=fdbkBtn>' +
'</' + 'div>' +
'<div id=fdbkRmk>' +
'<p>頂いたご意見への回答は行っておりません。</' + 'p>' +
'<a href="http://www.weblio.jp/info/inquiry.jsp">返信の必要なお問い合わせはこちら</' + 'a>' +
'</' + 'div>'
).css('border', '#c0c0c0 solid 1px');
$('#fdbkBtn').click(function() {
// 何も記入せずに送信ボタンを押した場合、メッセージを表示
var msg = $('#feedbackTextArea').val();
if (!msg) {
$('#fdbkTtl').text('下記にご意見をご記入ください').css('color', '#ed1c23');
return;
}
// 字数制限を超えた場合、メッセージを表示
if (msg.length > 1000) {
$('#fdbkTtl').text('入力できる文字数は' + 1000 + '文字までです').css('color', '#ed1c23');
return;
}
// フォームを消す (フォーム連続送信を回避するため)
var docObj = $('#fdbkWrp');
if (!docObj) {
return;
}
docObj.html('');
docObj.css('height', '254px');
// HTTP POSTでサーバサイドにデータ更新のリクエストを実行
$.post(
'http://ejje.weblio.jp/side_feedback', // リクエストURL
{'message': msg}, // データ
function(data, status) {
var resMsg = '<div style="padding-top:85px;">';
// 通信に成功した場合
if (status == 'success') {
resMsg += '<b>ご意見ありがとうございました。</' + 'b><br>';
resMsg += '頂いたご意見は必ず拝見いたします。<br>';
resMsg += 'このフォームから頂いたご意見、ご質問には、<br>';
resMsg += '個別に返信することができませんことを、<br>';
resMsg += 'あらかじめご了承ください。<br>';
}
// 通信に失敗した場合
else {
resMsg += '申し訳ございません。<br>';
resMsg += 'メッセージの送付に失敗しました。<br>';
resMsg += 'お手数ですが時間を置いて、<br>';
resMsg += '再度ご送信をお願いいたします。<br>';
resMsg += '何度もエラーが出る場合は、<br>';
resMsg += 'お手数ですが<a href="http://www.weblio.jp/info/inquiry.jsp">こちら</' + 'a>よりお問い合わせください。<br>';
}
resMsg += '</' + 'div>';
docObj.html(resMsg);
},
'text'
);
});
});
//-->
</script>
</div><!-- サイドメニュー -->
<br class=clr>
<br class=clr>
<!-- メイン -->
<!-- コピーライト -->
<hr class=copyRtHr><p class=copyRt><b>書類のページの著作権</b><br><a href="http://ejje.weblio.jp/" title="英和辞典・和英辞典 - Weblio辞書">和英辞典</a>情報提供元は<a href="http://www.weblio.jp/info/partner_logo.jsp">参加元一覧</a>にて確認できます。</p>
<table class=copyRtTbl>
<tr><td class=copyRtTblL> </td><td class=copyRtTblR> </td></tr>
<tr>
<td>
<div class=copyRtWrp>
<a name="COPYRIGHT_KENJE"></a>
<a href="http://www.weblio.jp/redirect?dictCode=KENJE&url=http%3A%2F%2Fwww.kenkyusha.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lgcr_kejje.png" alt="研究社" width="97" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="研究社" width="99" height="33" style="display:block;position:relative;margin-top:-33px;"></a>
</div>
</td>
<td>
Copyright (c) 1995-2013 Kenkyusha Co., Ltd. All rights reserved.
</td>
</tr>
<tr>
<td>
<div class=copyRtWrp>
<a name="COPYRIGHT_JMDCT"></a>
<a href="http://www.weblio.jp/redirect?dictCode=JMDCT&url=http%3A%2F%2Fwww.edrdg.org%2F" class=lgDict><img src="http://www.westatic.com/img/lgcr_jmdct.png" alt="EDRDG" width="97" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="EDRDG" width="99" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
<td>
This page uses the <a href="http://www.weblio.jp/redirect?dictCode=JMDCT&url=http%3A%2F%2Fwww.csse.monash.edu.au%2F%7Ejwb%2Fj_jmdict.html">JMdict</a> dictionary files. These files are the property of the <a href="http://www.weblio.jp/redirect?dictCode=JMDCT&url=http%3A%2F%2Fwww.edrdg.org%2F">Electronic Dictionary Research and Development Group</a>, and are used in conformance with the Group's <a href="http://www.weblio.jp/redirect?dictCode=JMDCT&url=http%3A%2F%2Fwww.edrdg.org%2Fedrdg%2Flicence.html">licence</a>.
</td>
</tr>
<tr>
<td>
<div class=copyRtWrp>
<a name="COPYRIGHT_CMPYG"></a>
<a href="http://www.weblio.jp/redirect?dictCode=CMPYG&url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lgcr_cmpyg.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="http://www.westatic.com/img/spacer.gif" alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a>
</div>
</td>
<td>
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
</td>
</tr>
<tr>
<td>
<div class=copyRtWrp>
<a name="COPYRIGHT_HYNHT"></a>
<a href="http://www.weblio.jp/redirect?dictCode=HYNHT&url=http%3A%2F%2Fwww.japaneselawtranslation.go.jp%2F" class=lgDict><img src="http://www.westatic.com/img/lgcr_hynht.png" alt="日本法令外国語訳データベースシステム" width="118" height="31"><img src="http://www.westatic.com/img/spacer.gif" alt="日本法令外国語訳データベースシステム" width="120" height="33" style="display:block;position:relative;margin-top:-33px;"></a>