File size: 36,579 Bytes
b655bd2 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 | {
"version": "2026.04_part9",
"categories": {
"ビス・釘・アンカー全サイズ": [
{
"name": "コーススレッド 3.8×16mm(徳用500本)",
"unit": "箱",
"unit_price": 680,
"memo": "薄物固定"
},
{
"name": "コーススレッド 3.8×25mm(徳用500本)",
"unit": "箱",
"unit_price": 720,
"memo": ""
},
{
"name": "コーススレッド 3.8×32mm(徳用500本)",
"unit": "箱",
"unit_price": 780,
"memo": ""
},
{
"name": "コーススレッド 3.8×38mm(徳用500本)",
"unit": "箱",
"unit_price": 820,
"memo": ""
},
{
"name": "コーススレッド 3.8×45mm(徳用500本)",
"unit": "箱",
"unit_price": 880,
"memo": ""
},
{
"name": "コーススレッド 3.8×51mm(徳用500本)",
"unit": "箱",
"unit_price": 950,
"memo": ""
},
{
"name": "コーススレッド 3.8×57mm(徳用500本)",
"unit": "箱",
"unit_price": 1050,
"memo": ""
},
{
"name": "コーススレッド 3.8×65mm(徳用500本)",
"unit": "箱",
"unit_price": 1100,
"memo": ""
},
{
"name": "コーススレッド 3.8×75mm(徳用500本)",
"unit": "箱",
"unit_price": 1200,
"memo": ""
},
{
"name": "コーススレッド 3.8×90mm(徳用500本)",
"unit": "箱",
"unit_price": 1400,
"memo": ""
},
{
"name": "コーススレッド 4.2×75mm(徳用500本)",
"unit": "箱",
"unit_price": 1500,
"memo": ""
},
{
"name": "コーススレッド 4.2×90mm(徳用500本)",
"unit": "箱",
"unit_price": 1800,
"memo": ""
},
{
"name": "コーススレッド 4.2×100mm(徳用500本)",
"unit": "箱",
"unit_price": 2000,
"memo": ""
},
{
"name": "ビス 3.5×16mm(徳用500本)",
"unit": "箱",
"unit_price": 580,
"memo": "内装用"
},
{
"name": "ビス 3.5×25mm(徳用500本)",
"unit": "箱",
"unit_price": 620,
"memo": ""
},
{
"name": "ビス 3.5×32mm(徳用500本)",
"unit": "箱",
"unit_price": 680,
"memo": ""
},
{
"name": "ビス 3.5×38mm(徳用500本)",
"unit": "箱",
"unit_price": 720,
"memo": ""
},
{
"name": "ビス 3.5×45mm(徳用500本)",
"unit": "箱",
"unit_price": 780,
"memo": ""
},
{
"name": "ビス 3.5×55mm(徳用500本)",
"unit": "箱",
"unit_price": 850,
"memo": ""
},
{
"name": "ビス 3.5×65mm(徳用500本)",
"unit": "箱",
"unit_price": 950,
"memo": ""
},
{
"name": "フロアビス 3.8×38mm(200本)",
"unit": "箱",
"unit_price": 680,
"memo": "床材固定専用"
},
{
"name": "フロアビス 3.8×45mm(200本)",
"unit": "箱",
"unit_price": 720,
"memo": ""
},
{
"name": "フロアビス 3.8×55mm(200本)",
"unit": "箱",
"unit_price": 780,
"memo": ""
},
{
"name": "ステンレスビス 3.5×32mm(100本)",
"unit": "箱",
"unit_price": 1200,
"memo": "外部・水回り"
},
{
"name": "ステンレスビス 3.5×45mm(100本)",
"unit": "箱",
"unit_price": 1400,
"memo": ""
},
{
"name": "ステンレスビス 4.0×65mm(100本)",
"unit": "箱",
"unit_price": 1800,
"memo": ""
},
{
"name": "N釘 N45(1kg)",
"unit": "kg",
"unit_price": 280,
"memo": ""
},
{
"name": "N釘 N50(1kg)",
"unit": "kg",
"unit_price": 300,
"memo": ""
},
{
"name": "N釘 N65(1kg)",
"unit": "kg",
"unit_price": 320,
"memo": ""
},
{
"name": "N釘 N75(1kg)",
"unit": "kg",
"unit_price": 340,
"memo": "構造用"
},
{
"name": "N釘 N90(1kg)",
"unit": "kg",
"unit_price": 360,
"memo": ""
},
{
"name": "N釘 N100(1kg)",
"unit": "kg",
"unit_price": 380,
"memo": ""
},
{
"name": "CN釘 CN50(1kg)",
"unit": "kg",
"unit_price": 420,
"memo": "構造用合板固定"
},
{
"name": "CN釘 CN65(1kg)",
"unit": "kg",
"unit_price": 440,
"memo": ""
},
{
"name": "CN釘 CN75(1kg)",
"unit": "kg",
"unit_price": 460,
"memo": ""
},
{
"name": "CN釘 CN90(1kg)",
"unit": "kg",
"unit_price": 480,
"memo": ""
},
{
"name": "ケミカルアンカー M8×110mm",
"unit": "本",
"unit_price": 180,
"memo": ""
},
{
"name": "ケミカルアンカー M10×130mm",
"unit": "本",
"unit_price": 220,
"memo": ""
},
{
"name": "ケミカルアンカー M12×160mm",
"unit": "本",
"unit_price": 280,
"memo": ""
},
{
"name": "ケミカルアンカー M16×190mm",
"unit": "本",
"unit_price": 380,
"memo": ""
},
{
"name": "プラグ(樹脂 6mm 100個)",
"unit": "袋",
"unit_price": 280,
"memo": "コンクリート用"
},
{
"name": "プラグ(樹脂 8mm 100個)",
"unit": "袋",
"unit_price": 320,
"memo": ""
},
{
"name": "プラグ(樹脂 10mm 100個)",
"unit": "袋",
"unit_price": 380,
"memo": ""
},
{
"name": "コンクリートビス 4.5×40mm(100本)",
"unit": "箱",
"unit_price": 880,
"memo": ""
},
{
"name": "コンクリートビス 4.5×60mm(100本)",
"unit": "箱",
"unit_price": 980,
"memo": ""
}
],
"フロアコーティング全種類": [
{
"name": "ガラスコーティング(1m2)",
"unit": "m2",
"unit_price": 8500,
"memo": "耐久20〜30年。最高グレード。材工込み"
},
{
"name": "UVコーティング(1m2)",
"unit": "m2",
"unit_price": 5500,
"memo": "耐久10〜15年。材工込み"
},
{
"name": "シリコンコーティング(1m2)",
"unit": "m2",
"unit_price": 3500,
"memo": "耐久8〜10年。材工込み"
},
{
"name": "ウレタンコーティング(1m2)",
"unit": "m2",
"unit_price": 3000,
"memo": "耐久5〜8年。材工込み"
},
{
"name": "アクリルコーティング(1m2)",
"unit": "m2",
"unit_price": 2500,
"memo": "耐久3〜5年。材工込み"
},
{
"name": "ナノコーティング(1m2)",
"unit": "m2",
"unit_price": 4500,
"memo": "耐久15年。抗菌効果あり"
},
{
"name": "フロアコーティング(新築30坪LDK)",
"unit": "式",
"unit_price": 180000,
"memo": "材工込み。ガラスコート標準"
},
{
"name": "フロアコーティング(新築全室30坪)",
"unit": "式",
"unit_price": 350000,
"memo": "材工込み"
},
{
"name": "ワックス剥離・再塗布(1m2)",
"unit": "m2",
"unit_price": 1200,
"memo": "既存ワックス除去込み"
},
{
"name": "艶消しコーティング(1m2)",
"unit": "m2",
"unit_price": 4000,
"memo": "マット仕上げ"
},
{
"name": "防滑コーティング(1m2)",
"unit": "m2",
"unit_price": 3500,
"memo": "玄関・浴室前・介護施設"
},
{
"name": "抗ウイルスコーティング(1m2)",
"unit": "m2",
"unit_price": 3000,
"memo": "医療・保育施設向け"
}
],
"外壁材メーカー品番": [
{
"name": "ニチハ モエン14 サイディング(14mm)",
"unit": "m2",
"unit_price": 3800,
"memo": "標準品。防火認定取得"
},
{
"name": "ニチハ モエン16 サイディング(16mm)",
"unit": "m2",
"unit_price": 4500,
"memo": "高耐久"
},
{
"name": "ニチハ フュージェ(16mm 超高耐久)",
"unit": "m2",
"unit_price": 6500,
"memo": "30年塗り替え不要"
},
{
"name": "ケイミュー KMEW 親水コートサイディング(16mm)",
"unit": "m2",
"unit_price": 4200,
"memo": "光触媒コート"
},
{
"name": "ケイミュー SOLIDO(16mm 高意匠)",
"unit": "m2",
"unit_price": 7500,
"memo": "高級外壁材"
},
{
"name": "旭トステム AT-WALL(16mm)",
"unit": "m2",
"unit_price": 4000,
"memo": ""
},
{
"name": "東レ ラップサイディング(14mm)",
"unit": "m2",
"unit_price": 5500,
"memo": "木目調"
},
{
"name": "金属サイディング アイジー工業(断熱材付)",
"unit": "m2",
"unit_price": 6500,
"memo": "断熱一体型"
},
{
"name": "金属サイディング ガルスパン(スチール)",
"unit": "m2",
"unit_price": 5800,
"memo": ""
},
{
"name": "ALC旭化成 ヘーベル(75mm)",
"unit": "m2",
"unit_price": 8500,
"memo": "耐火・断熱"
},
{
"name": "ALC旭化成 ヘーベル(100mm)",
"unit": "m2",
"unit_price": 11000,
"memo": ""
},
{
"name": "モルタル外壁(リシン吹付 材工)",
"unit": "m2",
"unit_price": 3500,
"memo": ""
},
{
"name": "モルタル外壁(スタッコ 材工)",
"unit": "m2",
"unit_price": 4500,
"memo": ""
},
{
"name": "タイル外壁 LIXIL エコカラット",
"unit": "m2",
"unit_price": 15000,
"memo": "材工込み"
}
],
"屋根材メーカー品番": [
{
"name": "ケイミュー コロニアルクァッド(スレート)",
"unit": "m2",
"unit_price": 3200,
"memo": "標準スレート"
},
{
"name": "ケイミュー コロニアルグラッサ",
"unit": "m2",
"unit_price": 4500,
"memo": "高耐久グラッサコート"
},
{
"name": "ケイミュー ROOGA(軽量瓦)",
"unit": "m2",
"unit_price": 8500,
"memo": "地震に強い軽量"
},
{
"name": "ガルバリウム鋼板 アイジー工業 スーパーガルテクト",
"unit": "m2",
"unit_price": 7500,
"memo": "断熱材一体型"
},
{
"name": "ガルバリウム鋼板 アイジー工業 ガルテクト",
"unit": "m2",
"unit_price": 6500,
"memo": ""
},
{
"name": "ガルバリウム鋼板 日鉄鋼板 SGL(縦葺き)",
"unit": "m2",
"unit_price": 5800,
"memo": ""
},
{
"name": "アスファルトシングル CertainTeed",
"unit": "m2",
"unit_price": 3800,
"memo": "北米系デザイン"
},
{
"name": "三州瓦(J形 和瓦)",
"unit": "m2",
"unit_price": 8500,
"memo": "日本伝統。重量注意"
},
{
"name": "平板瓦 鶴弥(スーパートライ110)",
"unit": "m2",
"unit_price": 7500,
"memo": "軽量瓦"
},
{
"name": "ソーラールーフ テスラ Solar Roof",
"unit": "m2",
"unit_price": 85000,
"memo": "太陽光一体型"
}
],
"断熱材メーカー品番": [
{
"name": "旭化成 ネオマフォーム(25mm)",
"unit": "m2",
"unit_price": 2200,
"memo": "受注制限中2026年4月。代替品検討必須"
},
{
"name": "旭化成 ネオマフォーム(50mm)",
"unit": "m2",
"unit_price": 3800,
"memo": ""
},
{
"name": "旭化成 ネオマフォーム(75mm)",
"unit": "m2",
"unit_price": 5500,
"memo": ""
},
{
"name": "積水化学 フェノバボード(25mm)",
"unit": "m2",
"unit_price": 2500,
"memo": "フェノールフォーム代替"
},
{
"name": "積水化学 フェノバボード(50mm)",
"unit": "m2",
"unit_price": 4200,
"memo": ""
},
{
"name": "コーンウォールグラスウール(16K 105mm)",
"unit": "m2",
"unit_price": 680,
"memo": ""
},
{
"name": "マグ・イゾベール グラスウール(24K 105mm)",
"unit": "m2",
"unit_price": 980,
"memo": "高性能"
},
{
"name": "旭ファイバーグラス グラスウール(16K 155mm)",
"unit": "m2",
"unit_price": 1200,
"memo": "天井用"
},
{
"name": "ニチアス ロックウール(50mm)",
"unit": "m2",
"unit_price": 1500,
"memo": "防火・防音"
},
{
"name": "カネカ カネライトフォーム(30mm)",
"unit": "m2",
"unit_price": 1100,
"memo": "押出法ポリスチレン"
},
{
"name": "カネカ カネライトフォーム(50mm)",
"unit": "m2",
"unit_price": 1600,
"memo": ""
},
{
"name": "住友化学 スタイロフォーム(30mm)",
"unit": "m2",
"unit_price": 1050,
"memo": "床断熱標準"
},
{
"name": "住友化学 スタイロフォーム(50mm)",
"unit": "m2",
"unit_price": 1600,
"memo": ""
},
{
"name": "フクビ エアテック断熱(100mm)",
"unit": "m2",
"unit_price": 2800,
"memo": ""
}
],
"サッシメーカー品番詳細": [
{
"name": "YKK AP 引違い窓 エピソードNEO 1690×970",
"unit": "枚",
"unit_price": 55000,
"memo": "複層ガラス標準"
},
{
"name": "YKK AP 引違い窓 エピソードNEO 1690×1170",
"unit": "枚",
"unit_price": 62000,
"memo": ""
},
{
"name": "YKK AP 樹脂窓 APW330 引違い 1690×970",
"unit": "枚",
"unit_price": 88000,
"memo": "高断熱"
},
{
"name": "YKK AP 樹脂窓 APW430 引違い 1690×970",
"unit": "枚",
"unit_price": 128000,
"memo": "トリプルガラス"
},
{
"name": "YKK AP 玄関ドア イノベスト D50",
"unit": "式",
"unit_price": 320000,
"memo": ""
},
{
"name": "YKK AP 玄関ドア イノベスト D70",
"unit": "式",
"unit_price": 420000,
"memo": ""
},
{
"name": "LIXIL サーモスII-H 引違い 1690×970",
"unit": "枚",
"unit_price": 52000,
"memo": ""
},
{
"name": "LIXIL エルスターS 引違い 1690×970",
"unit": "枚",
"unit_price": 78000,
"memo": "高断熱樹脂"
},
{
"name": "LIXIL エルスターX 引違い 1690×970",
"unit": "枚",
"unit_price": 95000,
"memo": "トリプルガラス"
},
{
"name": "LIXIL 玄関ドア ジエスタ2 D2仕様",
"unit": "式",
"unit_price": 280000,
"memo": ""
},
{
"name": "三協アルミ 引違い窓 ノイスタ 1690×970",
"unit": "枚",
"unit_price": 48000,
"memo": ""
},
{
"name": "インプラス(内窓 LIXIL)引違い 1690×970",
"unit": "枚",
"unit_price": 45000,
"memo": "断熱リフォーム"
},
{
"name": "プラマードU(内窓 YKK)引違い 1690×970",
"unit": "枚",
"unit_price": 48000,
"memo": ""
}
],
"床材メーカー品番": [
{
"name": "朝日ウッドテック ライブナチュラル(12mm)",
"unit": "m2",
"unit_price": 5500,
"memo": "複合フローリング高級品"
},
{
"name": "朝日ウッドテック ライブナチュラルプラス(12mm)",
"unit": "m2",
"unit_price": 7500,
"memo": "無垢材表面"
},
{
"name": "大建工業 トリニティ(12mm)",
"unit": "m2",
"unit_price": 6500,
"memo": ""
},
{
"name": "大建工業 マンション用(10mm)",
"unit": "m2",
"unit_price": 5000,
"memo": "遮音フローリング"
},
{
"name": "永大産業 エクオス(12mm)",
"unit": "m2",
"unit_price": 4800,
"memo": ""
},
{
"name": "永大産業 マルチ ハードコート(12mm)",
"unit": "m2",
"unit_price": 5500,
"memo": ""
},
{
"name": "ウッドワン 無垢フローリング 杉(15mm)",
"unit": "m2",
"unit_price": 7500,
"memo": ""
},
{
"name": "ウッドワン 無垢フローリング 桧(15mm)",
"unit": "m2",
"unit_price": 9500,
"memo": ""
},
{
"name": "ウッドワン 無垢フローリング オーク(15mm)",
"unit": "m2",
"unit_price": 12000,
"memo": ""
},
{
"name": "パナソニック ベリティス(12mm)",
"unit": "m2",
"unit_price": 6000,
"memo": ""
},
{
"name": "東リ クッションフロア CF(1.8m幅 m単価)",
"unit": "m",
"unit_price": 1800,
"memo": "水回り標準"
},
{
"name": "東リ フロアタイル(300角)",
"unit": "枚",
"unit_price": 680,
"memo": ""
},
{
"name": "サンゲツ クッションフロア(1.8m幅)",
"unit": "m",
"unit_price": 1900,
"memo": ""
},
{
"name": "リリカラ 木目フロア(12mm)",
"unit": "m2",
"unit_price": 4500,
"memo": ""
}
],
"クロスメーカー品番": [
{
"name": "サンゲツ SP-9701(量産クロス 92cm幅)",
"unit": "m",
"unit_price": 850,
"memo": "標準量産品"
},
{
"name": "サンゲツ RE-51011(1000番台)",
"unit": "m",
"unit_price": 1200,
"memo": "デザイン品"
},
{
"name": "サンゲツ FE-74244(抗菌・抗ウイルス)",
"unit": "m",
"unit_price": 1500,
"memo": "医療・保育"
},
{
"name": "リリカラ LL-7001(量産クロス)",
"unit": "m",
"unit_price": 820,
"memo": ""
},
{
"name": "リリカラ LW-2501(1000番台)",
"unit": "m",
"unit_price": 1150,
"memo": ""
},
{
"name": "シンコール SLP-648(量産クロス)",
"unit": "m",
"unit_price": 800,
"memo": ""
},
{
"name": "東リ WVP2001(ビニルクロス 量産)",
"unit": "m",
"unit_price": 830,
"memo": ""
},
{
"name": "トキワ TWP-1001(量産クロス)",
"unit": "m",
"unit_price": 810,
"memo": ""
},
{
"name": "ルノン RH-9001(量産クロス)",
"unit": "m",
"unit_price": 840,
"memo": ""
},
{
"name": "壁紙(輸入品 ウィリアムモリス)",
"unit": "m",
"unit_price": 4500,
"memo": "高級輸入壁紙"
},
{
"name": "珪藻土クロス(1m2)",
"unit": "m2",
"unit_price": 2800,
"memo": "調湿効果"
},
{
"name": "エコクロス(再生紙系)",
"unit": "m",
"unit_price": 950,
"memo": "環境配慮型"
}
],
"照明器具詳細": [
{
"name": "パナソニック シーリングライト LEDシリーズ 6畳",
"unit": "台",
"unit_price": 8500,
"memo": ""
},
{
"name": "パナソニック シーリングライト LEDシリーズ 12畳",
"unit": "台",
"unit_price": 15000,
"memo": ""
},
{
"name": "パナソニック ダウンライト LGB73022",
"unit": "台",
"unit_price": 3800,
"memo": "埋込型"
},
{
"name": "パナソニック ダウンライト 調光調色",
"unit": "台",
"unit_price": 6500,
"memo": ""
},
{
"name": "オーデリック シーリング OL-251",
"unit": "台",
"unit_price": 12000,
"memo": ""
},
{
"name": "オーデリック ダウンライト OD-251",
"unit": "台",
"unit_price": 4500,
"memo": ""
},
{
"name": "東芝ライテック LEDダウンライト",
"unit": "台",
"unit_price": 3500,
"memo": ""
},
{
"name": "コイズミ ペンダントライト",
"unit": "台",
"unit_price": 18000,
"memo": ""
},
{
"name": "山田照明 スポットライト",
"unit": "台",
"unit_price": 8500,
"memo": ""
},
{
"name": "遠藤照明 ベースダウンライト",
"unit": "台",
"unit_price": 5500,
"memo": ""
},
{
"name": "LED蛍光灯 40W型(直管)",
"unit": "本",
"unit_price": 1500,
"memo": "既存器具流用"
},
{
"name": "LED電球 E26(60W相当)",
"unit": "個",
"unit_price": 580,
"memo": ""
},
{
"name": "非常灯 誘導灯(小型)",
"unit": "台",
"unit_price": 28000,
"memo": "材工込み"
},
{
"name": "外部照明 玄関センサーライト",
"unit": "台",
"unit_price": 8500,
"memo": "材工込み"
},
{
"name": "フットライト 階段用",
"unit": "台",
"unit_price": 3800,
"memo": "材工込み"
}
],
"47都道府県別労務単価_大工(2026年)": [
{
"name": "大工労務単価 北海道",
"unit": "日",
"unit_price": 29000,
"memo": "公共工事設計労務単価2026年"
},
{
"name": "大工労務単価 青森県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 岩手県",
"unit": "日",
"unit_price": 27000,
"memo": ""
},
{
"name": "大工労務単価 宮城県",
"unit": "日",
"unit_price": 33000,
"memo": ""
},
{
"name": "大工労務単価 秋田県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 山形県",
"unit": "日",
"unit_price": 27000,
"memo": ""
},
{
"name": "大工労務単価 福島県",
"unit": "日",
"unit_price": 29000,
"memo": ""
},
{
"name": "大工労務単価 茨城県",
"unit": "日",
"unit_price": 32000,
"memo": ""
},
{
"name": "大工労務単価 栃木県",
"unit": "日",
"unit_price": 31000,
"memo": ""
},
{
"name": "大工労務単価 群馬県",
"unit": "日",
"unit_price": 31000,
"memo": ""
},
{
"name": "大工労務単価 埼玉県",
"unit": "日",
"unit_price": 38000,
"memo": ""
},
{
"name": "大工労務単価 千葉県",
"unit": "日",
"unit_price": 38000,
"memo": ""
},
{
"name": "大工労務単価 東京都",
"unit": "日",
"unit_price": 45000,
"memo": "最高水準"
},
{
"name": "大工労務単価 神奈川県",
"unit": "日",
"unit_price": 42000,
"memo": ""
},
{
"name": "大工労務単価 新潟県",
"unit": "日",
"unit_price": 28000,
"memo": ""
},
{
"name": "大工労務単価 富山県",
"unit": "日",
"unit_price": 29000,
"memo": ""
},
{
"name": "大工労務単価 石川県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 福井県",
"unit": "日",
"unit_price": 29000,
"memo": ""
},
{
"name": "大工労務単価 山梨県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 長野県",
"unit": "日",
"unit_price": 29000,
"memo": ""
},
{
"name": "大工労務単価 岐阜県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 静岡県",
"unit": "日",
"unit_price": 32000,
"memo": ""
},
{
"name": "大工労務単価 愛知県",
"unit": "日",
"unit_price": 38000,
"memo": ""
},
{
"name": "大工労務単価 三重県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 滋賀県",
"unit": "日",
"unit_price": 32000,
"memo": ""
},
{
"name": "大工労務単価 京都府",
"unit": "日",
"unit_price": 37000,
"memo": ""
},
{
"name": "大工労務単価 大阪府",
"unit": "日",
"unit_price": 40000,
"memo": ""
},
{
"name": "大工労務単価 兵庫県",
"unit": "日",
"unit_price": 36000,
"memo": ""
},
{
"name": "大工労務単価 奈良県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 和歌山県",
"unit": "日",
"unit_price": 27000,
"memo": ""
},
{
"name": "大工労務単価 鳥取県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 島根県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 岡山県",
"unit": "日",
"unit_price": 30000,
"memo": ""
},
{
"name": "大工労務単価 広島県",
"unit": "日",
"unit_price": 33000,
"memo": ""
},
{
"name": "大工労務単価 山口県",
"unit": "日",
"unit_price": 28000,
"memo": ""
},
{
"name": "大工労務単価 徳島県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 香川県",
"unit": "日",
"unit_price": 27000,
"memo": ""
},
{
"name": "大工労務単価 愛媛県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 高知県",
"unit": "日",
"unit_price": 25000,
"memo": ""
},
{
"name": "大工労務単価 福岡県",
"unit": "日",
"unit_price": 35000,
"memo": ""
},
{
"name": "大工労務単価 佐賀県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 長崎県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 熊本県",
"unit": "日",
"unit_price": 27000,
"memo": ""
},
{
"name": "大工労務単価 大分県",
"unit": "日",
"unit_price": 26000,
"memo": ""
},
{
"name": "大工労務単価 宮崎県",
"unit": "日",
"unit_price": 25000,
"memo": ""
},
{
"name": "大工労務単価 鹿児島県",
"unit": "日",
"unit_price": 25000,
"memo": ""
},
{
"name": "大工労務単価 沖縄県",
"unit": "日",
"unit_price": 28000,
"memo": ""
}
],
"防蟻処理剤・防腐材": [
{
"name": "エコボロン PRO(ホウ酸系 1L)",
"unit": "L",
"unit_price": 4500,
"memo": "人体無害。半永久効果"
},
{
"name": "エコボロン PRO(ホウ酸系 18L)",
"unit": "缶",
"unit_price": 68000,
"memo": ""
},
{
"name": "木材保存剤 ACQ(銅系 18L)",
"unit": "缶",
"unit_price": 28000,
"memo": "土台・柱の加圧注入"
},
{
"name": "防蟻防腐処理剤 シロアリハンター(18L)",
"unit": "缶",
"unit_price": 22000,
"memo": ""
},
{
"name": "防蟻処理剤 タケロック(18L)",
"unit": "缶",
"unit_price": 18000,
"memo": ""
},
{
"name": "木部保護塗料 キシラデコール(4L)",
"unit": "缶",
"unit_price": 8500,
"memo": "屋外木部"
},
{
"name": "木部保護塗料 キシラデコール(16L)",
"unit": "缶",
"unit_price": 28000,
"memo": ""
},
{
"name": "木部保護塗料 オスモカラー(2.5L)",
"unit": "缶",
"unit_price": 8500,
"memo": "自然塗料"
},
{
"name": "床下防腐防蟻処理(1m2 材工)",
"unit": "m2",
"unit_price": 2000,
"memo": "新築・既存"
},
{
"name": "土台防蟻処理(加圧注入材 1m)",
"unit": "m",
"unit_price": 1500,
"memo": ""
}
],
"接着剤・コーキング全品番": [
{
"name": "セメダイン スーパーX(135ml)",
"unit": "本",
"unit_price": 980,
"memo": "多用途強力接着"
},
{
"name": "セメダイン スーパーXG(135ml)",
"unit": "本",
"unit_price": 1200,
"memo": "耐熱・耐水"
},
{
"name": "コニシ ボンド E350R(1kg)",
"unit": "缶",
"unit_price": 2800,
"memo": "エポキシ系"
},
{
"name": "コニシ フロアメント(18kg)",
"unit": "缶",
"unit_price": 8500,
"memo": "フローリング用"
},
{
"name": "コニシ ウレタンボンド(18kg)",
"unit": "缶",
"unit_price": 12000,
"memo": "無垢フローリング用"
},
{
"name": "サンスター ペンギンシール 変成シリコン(330ml)",
"unit": "本",
"unit_price": 680,
"memo": ""
},
{
"name": "サンスター ペンギンシール ウレタン(330ml)",
"unit": "本",
"unit_price": 620,
"memo": ""
},
{
"name": "信越シリコーン KE-45(330ml)",
"unit": "本",
"unit_price": 580,
"memo": ""
},
{
"name": "横浜ゴム スーパーシール(330ml)",
"unit": "本",
"unit_price": 650,
"memo": ""
},
{
"name": "オート化学 オートンイクシード(1成分 330ml)",
"unit": "本",
"unit_price": 1500,
"memo": "超高耐久30年"
},
{
"name": "オート化学 オートンサイディングシーラント",
"unit": "本",
"unit_price": 1200,
"memo": "サイディング専用"
},
{
"name": "発泡ウレタン フォームガン用(750ml)",
"unit": "本",
"unit_price": 1800,
"memo": "気密・断熱充填"
},
{
"name": "発泡ウレタン スプレー缶(500ml)",
"unit": "本",
"unit_price": 1200,
"memo": ""
}
],
"換気設備詳細": [
{
"name": "パナソニック 天井埋込型換気扇 FY-17C8",
"unit": "台",
"unit_price": 8500,
"memo": "トイレ・洗面用"
},
{
"name": "パナソニック 天井埋込型換気扇 FY-24BK6",
"unit": "台",
"unit_price": 15000,
"memo": ""
},
{
"name": "パナソニック 熱交換換気 FY-12VBD2",
"unit": "台",
"unit_price": 85000,
"memo": "第1種換気"
},
{
"name": "パナソニック 全熱交換換気 FY-18DPX",
"unit": "台",
"unit_price": 280000,
"memo": "大型"
},
{
"name": "三菱電機 ロスナイ VL-100ZMG2",
"unit": "台",
"unit_price": 45000,
"memo": "壁掛け型熱交換"
},
{
"name": "三菱電機 ロスナイ VL-150ZMG2",
"unit": "台",
"unit_price": 65000,
"memo": ""
},
{
"name": "マックス 換気扇 VF-H08K5",
"unit": "台",
"unit_price": 6500,
"memo": ""
},
{
"name": "東芝 換気扇 DVF-T14LMD",
"unit": "台",
"unit_price": 12000,
"memo": ""
},
{
"name": "富士工業 レンジフード 60cm スタンダード",
"unit": "台",
"unit_price": 45000,
"memo": ""
},
{
"name": "富士工業 レンジフード 75cm スタンダード",
"unit": "台",
"unit_price": 55000,
"memo": ""
},
{
"name": "富士工業 レンジフード 60cm ハイグレード",
"unit": "台",
"unit_price": 85000,
"memo": ""
},
{
"name": "クリナップ レンジフード ZRS75ABY14FSZ",
"unit": "台",
"unit_price": 75000,
"memo": ""
},
{
"name": "ダクト用消音ボックス(Φ100)",
"unit": "個",
"unit_price": 3500,
"memo": ""
},
{
"name": "外壁用換気口 防虫網付き(Φ100)",
"unit": "個",
"unit_price": 1800,
"memo": ""
},
{
"name": "外壁用換気口 防虫網付き(Φ150)",
"unit": "個",
"unit_price": 2800,
"memo": ""
}
]
}
} |