@burger-editor/blocks 4.0.0-alpha.2 → 4.0.0-alpha.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,35 +1,78 @@
1
1
  import { itemImport } from '@burger-editor/core';
2
- import { formatByteSize, markdownToHtml, htmlToMarkdown, parseYTId } from '@burger-editor/utils';
3
- import Trix from 'trix';
2
+ import { mergeItems, formatByteSize, markdownToHtml, htmlToMarkdown, parseYTId, replaceCommentWithHTML } from '@burger-editor/utils';
4
3
 
5
4
  function createItem(item) {
6
5
  return item;
7
6
  }
8
7
 
9
- var editor$9 = "<div>\n\t<label>\n\t\t<span>ボタンの種類</span>\n\t\t<select name=\"bge-kind\">\n\t\t\t<option value=\"link\">リンク</option>\n\t\t\t<option value=\"em\">強調リンク</option>\n\t\t\t<option value=\"external\">外部リンク</option>\n\t\t\t<option value=\"back\">戻る</option>\n\t\t</select>\n\t</label>\n\t<label>\n\t\t<span>テキスト</span>\n\t\t<input type=\"text\" name=\"bge-text\" />\n\t</label>\n\t<label>\n\t\t<span>リンク</span>\n\t\t<input type=\"text\" name=\"bge-link\" />\n\t</label>\n\t<label>\n\t\t<span>ターゲット</span>\n\t\t<select name=\"bge-target\">\n\t\t\t<option value=\"\">指定なし</option>\n\t\t\t<option value=\"_blank\">新しいウィンドウ(_blank)</option>\n\t\t\t<option value=\"_top\">最上部ウィンドウ(_top)</option>\n\t\t\t<option value=\"_self\">同じウィンドウ(_self)</option>\n\t\t</select>\n\t</label>\n</div>\n";
8
+ var editor$a = "<div>\n\t<label>\n\t\t<span>ボタンの種類</span>\n\t\t<select name=\"bge-kind\">\n\t\t\t<!-- 選択肢はJavaScriptで動的に生成されます -->\n\t\t</select>\n\t</label>\n\t<label>\n\t\t<span>テキスト</span>\n\t\t<input type=\"text\" name=\"bge-text\" />\n\t</label>\n\t<label>\n\t\t<span>サブテキスト</span>\n\t\t<input type=\"text\" name=\"bge-subtext\" />\n\t</label>\n\t<label>\n\t\t<span>リンク</span>\n\t\t<input type=\"text\" name=\"bge-link\" />\n\t</label>\n\t<label>\n\t\t<span>ターゲット</span>\n\t\t<select name=\"bge-target\">\n\t\t\t<option value=\"\">指定なし</option>\n\t\t\t<option value=\"_blank\">新しいウィンドウ(_blank)</option>\n\t\t\t<option value=\"_top\">最上部ウィンドウ(_top)</option>\n\t\t\t<option value=\"_self\">同じウィンドウ(_self)</option>\n\t\t</select>\n\t</label>\n</div>\n";
10
9
 
11
- var style$9 = ".bgi-btn-container {\n\ttext-align: center;\n}\n\n.bgi-btn {\n\tappearance: auto;\n}\n";
10
+ var style$a = "/* No Styling */\n";
12
11
 
13
- var template$A = "<div class=\"bgi-btn-container\" data-bgi-button-kind=\"link\" data-bge=\"kind:data-bgi-button-kind\">\n\t<a class=\"bgi-btn\" href=\"\" data-bge=\"link:href, target:target\">\n\t\t<span class=\"bgi-btn__text\" data-bge=\"text\">ボタン</span>\n\t</a>\n</div>\n";
12
+ var template$E = "<a href=\"\" data-bgi-button-kind=\"link\" data-bge=\"link:href, target:target, kind:data-bgi-button-kind\">\n\t<div>\n\t\t<span data-bge=\"text\">ボタン</span>\n\t\t<span data-bge=\"subtext\">サブテキスト</span>\n\t</div>\n</a>\n";
14
13
 
15
14
  var button = createItem({
16
- version: "4.0.0-alpha.1",
15
+ version: "4.0.0-alpha.19",
17
16
  name: "button",
18
- template: template$A,
17
+ template: template$E,
18
+ style: style$a,
19
+ editor: editor$a,
20
+ editorOptions: {
21
+ beforeOpen(data, editor2) {
22
+ const defaultKindOptions = [
23
+ { value: "link", label: "\u30EA\u30F3\u30AF" },
24
+ { value: "em", label: "\u5F37\u8ABF\u30EA\u30F3\u30AF" },
25
+ { value: "external", label: "\u5916\u90E8\u30EA\u30F3\u30AF" },
26
+ { value: "in-page", label: "\u30DA\u30FC\u30B8\u5185\u30EA\u30F3\u30AF" },
27
+ { value: "text", label: "\u30C6\u30AD\u30B9\u30C8\u30EA\u30F3\u30AF" },
28
+ { value: "back", label: "\u623B\u308B" }
29
+ ];
30
+ const configKinds = editor2.engine.config.experimental?.itemOptions?.button?.kinds;
31
+ const kindOptions = mergeItems(
32
+ defaultKindOptions,
33
+ configKinds,
34
+ "value",
35
+ (item) => Boolean(item.label)
36
+ );
37
+ const kindSelect = editor2.find('select[name="bge-kind"]');
38
+ if (kindSelect) {
39
+ kindSelect.innerHTML = "";
40
+ for (const option of kindOptions) {
41
+ const optionElement = kindSelect.ownerDocument.createElement("option");
42
+ optionElement.value = option.value;
43
+ optionElement.textContent = option.label;
44
+ kindSelect.append(optionElement);
45
+ }
46
+ }
47
+ return data;
48
+ }
49
+ }
50
+ });
51
+
52
+ var editor$9 = "<label>\n\t<input type=\"checkbox\" name=\"bge-open\" />\n\t<span>開いた状態で公開する</span>\n</label>\n<label>\n\t<span>概要</span>\n\t<input type=\"text\" name=\"bge-summary\" />\n</label>\n<bge-wysiwyg-editor name=\"bge-content\" item-name=\"details\" commands=\"bold,italic,underline,strikethrough,link,blockquote,bullet-list,ordered-list\"></bge-wysiwyg-editor>\n";
53
+
54
+ var style$9 = "/* No Styling */\n";
55
+
56
+ var template$D = "<details data-bge=\"open:open\">\n\t<summary data-bge=\"summary\">折りたたみコンテンツ</summary>\n\t<div data-bge=\"content\"><p>内容を入力してください</p></div>\n</details>\n";
57
+
58
+ var details = createItem({
59
+ version: "4.0.0-alpha.19",
60
+ name: "details",
61
+ template: template$D,
19
62
  style: style$9,
20
63
  editor: editor$9
21
64
  });
22
65
 
23
66
  var editor$8 = "<div data-bge-dialog=\"2col\">\n\t<div data-bge-dialog-ui=\"sticky\">\n\t\t<div>\n\t\t\t<div data-bge-editor-ui=\"preview\"></div>\n\t\t\t<input type=\"hidden\" name=\"bge-path\" />\n\t\t\t<input type=\"hidden\" name=\"bge-formated-size\" value=\"0kB\" />\n\t\t\t<input type=\"hidden\" name=\"bge-size\" value=\"0\" />\n\t\t</div>\n\n\t\t<div>\n\t\t\t<label>\n\t\t\t\t<span>表示ファイル名</span>\n\t\t\t\t<input type=\"text\" name=\"bge-name\" />\n\t\t\t</label>\n\t\t\t<label><input type=\"checkbox\" name=\"bge-download-check\" />ブラウザで開かずに直接ダウンロードさせる</label>\n\t\t</div>\n\t</div>\n\t<div>\n\t\t<div data-bge-editor-ui=\"fileUploader\"></div>\n\t\t<div data-bge-editor-ui=\"fileList\"></div>\n\t</div>\n</div>\n";
24
67
 
25
- var style$8 = ".bgi-link__size {\n\t&::before {\n\t\tcontent: '(';\n\t}\n\n\t&::after {\n\t\tcontent: ')';\n\t}\n}\n\n.bgi-link__icon {\n\t&.bgi-link__icon--after {\n\t\tdisplay: none;\n\t}\n\n\t&::after {\n\t\tfont-size: 1.3em;\n\t\tvertical-align: bottom;\n\t\tcontent: '\\e623';\n\t}\n}\n\n.bgi-download-file__link {\n\t&[href$='pdf'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c1';\n\t\t}\n\t}\n\n\t&[href$='doc'],\n\t&[href$='docx'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c2';\n\t\t}\n\t}\n\n\t&[href$='xls'],\n\t&[href$='xlsx'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c3';\n\t\t}\n\t}\n\n\t&[href$='ppt'],\n\t&[href$='pptx'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c4';\n\t\t}\n\t}\n\n\t&[href$='zip'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c6';\n\t\t}\n\t}\n\n\t&[href$='xml'],\n\t&[href$='htm'],\n\t&[href$='html'],\n\t&[href$='css'],\n\t&[href$='sass'],\n\t&[href$='scss'],\n\t&[href$='less'],\n\t&[href$='styl'], /* cspell:disable-line */\n\t&[href$='json'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c9';\n\t\t}\n\t}\n\n\t&[href$='jpeg'],\n\t&[href$='jpg'],\n\t&[href$='png'],\n\t&[href$='gif'],\n\t&[href$='tif'],\n\t&[href$='tiff'],\n\t&[href$='webp'],\n\t&[href$='bmp'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c5';\n\t\t}\n\t}\n\n\t&[href$='mov'],\n\t&[href$='mp4'],\n\t&[href$='m4v'],\n\t&[href$='flv'],\n\t&[href$='swf'],\n\t&[href$='mpg'],\n\t&[href$='mpeg'],\n\t&[href$='wmv'],\n\t&[href$='webm'],\n\t&[href$='ogg'] {\n\t\t.bgi-link__icon::after {\n\t\t\tcontent: '\\f1c8';\n\t\t}\n\t}\n}\n";
68
+ var style$8 = "[data-bgi='download-file'] {\n\t[data-bge*='size'] {\n\t\t&::before {\n\t\t\tcontent: '(';\n\t\t}\n\n\t\t&::after {\n\t\t\tcontent: ')';\n\t\t}\n\t}\n}\n";
26
69
 
27
- var template$z = "<div class=\"bgi-download-file\">\n\t<a class=\"bgi-download-file__link\" href=\"./files/bgeditor/bg-sample.pdf\" target=\"_blank\" data-bge=\"path:href, download:download\">\n\t\t<span class=\"bgi-link__icon bgi-link__icon--before\" role=\"none\"></span>\n\t\t<span class=\"bgi-link__name\" data-bge=\"name\">サンプルダウンロードファイル</span>\n\t\t<span class=\"bgi-link__size\" data-bge=\"formated-size, size:data-size\" data-size=\"138158\">134.92kB</span>\n\t\t<span class=\"bgi-link__icon bgi-link__icon--after\" role=\"none\"></span>\n\t</a>\n</div>\n";
70
+ var template$C = "<a href=\"./files/bgeditor/bg-sample.pdf\" target=\"_blank\" data-bge=\"path:href, download:download\">\n\t<div>\n\t\t<span data-bge=\"name\">サンプルダウンロードファイル</span>\n\t\t<span data-bge=\"formated-size, size:data-size\" data-size=\"138158\">134.92kB</span>\n\t</div>\n</a>\n";
28
71
 
29
72
  var downloadFile = createItem({
30
- version: "4.0.0-alpha.1",
73
+ version: "4.0.0-alpha.19",
31
74
  name: "download-file",
32
- template: template$z,
75
+ template: template$C,
33
76
  style: style$8,
34
77
  editor: editor$8,
35
78
  editorOptions: {
@@ -61,14 +104,14 @@ var downloadFile = createItem({
61
104
 
62
105
  var editor$7 = "<div id=\"bge-google-maps\" style=\"inline-size: 100%; aspect-ratio: 8 / 5\">map</div>\n<input type=\"hidden\" name=\"bge-zoom\" />\n<input type=\"hidden\" name=\"bge-url\" />\n<div>\n\t<label>\n\t\t<span>住所から検索</span>\n\t\t<input type=\"search\" name=\"bge-search\" class=\"bge-search\" />\n\t</label>\n\t<button type=\"button\" name=\"bge-search-button\">検索</button>\n</div>\n<div>\n\t<label>\n\t\t<span>緯度</span>\n\t\t<output name=\"bge-lat\"></output>\n\t</label>\n\t<label>\n\t\t<span>経度</span>\n\t\t<output name=\"bge-lng\"></output>\n\t</label>\n</div>\n";
63
106
 
64
- var style$7 = "[data-bgi='google-maps'] {\n\tdiv {\n\t\tinline-size: 100%;\n\t\taspect-ratio: 8 / 5;\n\t}\n\n\timg {\n\t\tdisplay: block;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tmargin: 0 auto;\n\t\tobject-fit: contain;\n\t}\n\n\ta {\n\t\tdisplay: none;\n\t}\n}\n";
107
+ var style$7 = "[data-bgi='google-maps'] {\n\tdiv {\n\t\tinline-size: 100%;\n\t\taspect-ratio: 8 / 5;\n\t}\n\n\timg {\n\t\tdisplay: block;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tmargin-block: 0;\n\t\tmargin-inline: auto;\n\t\tobject-fit: contain;\n\t}\n\n\ta {\n\t\tdisplay: none;\n\t}\n}\n";
65
108
 
66
- var template$y = "<div data-lat=\"35.681382\" data-lng=\"139.766084\" data-zoom=\"16\" data-bge=\"lat:data-lat, lng:data-lng, zoom:data-zoom\">\n\t<img data-bge=\"img:src\" src=\"https://maps.google.com/maps/api/staticmap?center=35.681382,139.766084&amp;zoom=16&amp;size=640x400&amp;markers=color:red|color:red|35.681382,139.766084&amp;scale=2&amp;key=%googleMapsApiKey%\" width=\"8\" height=\"5\" alt=\"Google Maps\" />\n</div>\n<a href=\"https://maps.apple.com/?q=35.681382,139.766084\" data-bge=\"url:href\" target=\"_blank\"><span>アプリで開く</span></a>\n";
109
+ var template$B = "<div data-lat=\"35.681382\" data-lng=\"139.766084\" data-zoom=\"16\" data-bge=\"lat:data-lat, lng:data-lng, zoom:data-zoom\">\n\t<img data-bge=\"img:src\" src=\"https://maps.google.com/maps/api/staticmap?center=35.681382,139.766084&amp;zoom=16&amp;size=640x400&amp;markers=color:red|color:red|35.681382,139.766084&amp;scale=2&amp;key=%googleMapsApiKey%\" width=\"8\" height=\"5\" alt=\"Google Maps\" />\n</div>\n<a href=\"https://maps.apple.com/?q=35.681382,139.766084\" data-bge=\"url:href\" target=\"_blank\"><span>アプリで開く</span></a>\n";
67
110
 
68
111
  var googleMaps = createItem({
69
- version: "4.0.0-alpha.1",
112
+ version: "4.0.0-alpha.19",
70
113
  name: "google-maps",
71
- template: template$y,
114
+ template: template$B,
72
115
  style: style$7,
73
116
  editor: editor$7,
74
117
  editorOptions: {
@@ -194,49 +237,36 @@ var googleMaps = createItem({
194
237
  }
195
238
  });
196
239
 
197
- var editor$6 = "<div>\n\t<label>\n\t\t<span>区切り線の種類</span>\n\t\t<select name=\"bge-kind\">\n\t\t\t<option value=\"primary\">標準</option>\n\t\t\t<option value=\"dashed\">破線</option>\n\t\t\t<option value=\"bold\">太い区切り線</option>\n\t\t\t<option value=\"narrow\">細い区切り線</option>\n\t\t\t<option value=\"short\">短い区切り線</option>\n\t\t</select>\n\t</label>\n</div>\n";
240
+ var editor$6 = "<div>\n\t<label>\n\t\t<span>区切り線の種類</span>\n\t\t<select name=\"bge-kind\">\n\t\t\t<option value=\"primary\">標準</option>\n\t\t\t<option value=\"dashed\">破線</option>\n\t\t\t<option value=\"bold\">太い区切り線</option>\n\t\t\t<option value=\"narrow\">細い区切り線</option>\n\t\t</select>\n\t</label>\n</div>\n";
198
241
 
199
- var style$6 = "[data-bgi='hr'] {\n\t--border-color: #000;\n\t--border-width: 1px;\n\tinline-size: 100%;\n\tblock-size: var(--border-width);\n\tborder: none;\n}\n";
242
+ var style$6 = "[data-bgi='hr'] {\n\t--inline-size: 100%;\n\t--border-color: #000;\n\t--border-width: 1px;\n\t--border-kind: solid;\n\n\t> div {\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t}\n\n\thr {\n\t\tinline-size: var(--inline-size);\n\t\tborder: var(--border-color) var(--border-kind) var(--border-width);\n\t}\n}\n";
200
243
 
201
- var template$x = "<div class=\"bgi-hr-container\" data-bgi-hr-kind=\"primary\" data-bge=\"kind:data-bgi-hr-kind\">\n\t<hr class=\"bgi-hr\" />\n</div>\n";
244
+ var template$A = "<div data-bgi-hr-kind=\"primary\" data-bge=\"kind:data-bgi-hr-kind\">\n\t<hr />\n</div>\n";
202
245
 
203
246
  var hr = createItem({
204
- version: "4.0.0-alpha.1",
247
+ version: "4.0.0-alpha.19",
205
248
  name: "hr",
206
- template: template$x,
249
+ template: template$A,
207
250
  style: style$6,
208
- editor: editor$6,
209
- editorOptions: {
210
- migrate(type) {
211
- const data = type.export();
212
- if (data.type) {
213
- data.kind = data.type.replace(/^bgi-hr--/, "");
214
- delete data.type;
215
- }
216
- if (!data.kind) {
217
- data.kind = "primary";
218
- }
219
- return data;
220
- }
221
- }
251
+ editor: editor$6
222
252
  });
223
253
 
224
- var editor$5 = "<div data-bge-dialog=\"2col\">\n\t<div data-bge-dialog-ui=\"sticky\">\n\t\t<input type=\"hidden\" name=\"bge-width\" />\n\t\t<input type=\"hidden\" name=\"bge-height\" />\n\t\t<input type=\"hidden\" name=\"bge-srcset\" />\n\t\t<input type=\"hidden\" name=\"bge-style\" />\n\n\t\t<div data-bge-editor-ui=\"preview\"></div>\n\t\t<input type=\"hidden\" name=\"bge-path\" />\n\t\t<input type=\"hidden\" name=\"bge-empty\" />\n\t\t<input type=\"hidden\" name=\"bge-file-size\" />\n\n\t\t<div>\n\t\t\t<label>\n\t\t\t\t<span>画像の代替テキスト(alt)</span>\n\t\t\t\t<input type=\"text\" name=\"bge-alt\" />\n\t\t\t</label>\n\t\t\t<label>\n\t\t\t\t<span>キャプション</span>\n\t\t\t\t<input type=\"text\" name=\"bge-caption\" />\n\t\t\t</label>\n\t\t\t<fieldset>\n\t\t\t\t<legend>画像のサイズ</legend>\n\t\t\t\t<div role=\"radiogroup\" aria-labelledby=\"bgi-image__radio-group1\">\n\t\t\t\t\t<div id=\"bgi-image__radio-group1\">基準</div>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-scale-type\" value=\"container\" /><span>基準</span></label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-scale-type\" value=\"original\" checked />画像基準</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<span>\n\t\t\t\t\t\t<label for=\"bgi-image__range\">幅</label>\n\t\t\t\t\t\t<output name=\"bge-css-width\"></output>\n\t\t\t\t\t</span>\n\t\t\t\t\t<input id=\"bgi-image__range\" type=\"range\" name=\"bge-scale\" min=\"1\" max=\"100\" step=\"1\" value=\"100\" />\n\t\t\t\t</div>\n\t\t\t\t<hr />\n\t\t\t\t<div role=\"radiogroup\" aria-labelledby=\"bgi-image__radio-group2\">\n\t\t\t\t\t<div id=\"bgi-image__radio-group2\">縦横比</div>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"unset\" checked />オリジナル</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"1/1\" />1 : 1</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"4/3\" />4 : 3</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"16/9\" />16 : 9</label>\n\t\t\t\t</div>\n\t\t\t</fieldset>\n\t\t\t<fieldset>\n\t\t\t\t<legend>リンク</legend>\n\t\t\t\t<label><input type=\"checkbox\" name=\"bge-popup\" />ポップアップで画像を開く</label>\n\t\t\t\t<label>\n\t\t\t\t\t<span>リンク先URL</span>\n\t\t\t\t\t<input type=\"url\" name=\"bge-href\" />\n\t\t\t\t</label>\n\t\t\t\t<label><input type=\"checkbox\" name=\"bge-target-blank\" />別タブで開く</label>\n\t\t\t</fieldset>\n\t\t\t<label><input type=\"checkbox\" name=\"bge-lazy\" checked aria-describedby=\"bge-lazy-desc\" />遅延読み込み</label>\n\t\t\t<small id=\"bge-lazy-desc\">画像がブラウザの表示エリアに現れるまでファイルを読み込みません。</small>\n\t\t</div>\n\t</div>\n\t<div>\n\t\t<div data-bge-editor-ui=\"imageUploader\"></div>\n\t\t<div data-bge-editor-ui=\"imageList\"></div>\n\t</div>\n</div>\n";
254
+ var editor$5 = "<div data-bge-dialog=\"2col\">\n\t<div data-bge-dialog-ui=\"sticky\">\n\t\t<div>\n\t\t\t<div data-bge-editor-ui=\"tabs\" data-bge-editor-ui-for=\"bgi-image__tabs-content\"></div>\n\n\t\t\t<div id=\"bgi-image__tabs-content\" role=\"tabpanel\" aria-label=\"画像\">\n\t\t\t\t<div data-bge-editor-ui=\"preview\"></div>\n\t\t\t\t<input type=\"hidden\" name=\"bge-path[]\" />\n\t\t\t\t<input type=\"hidden\" name=\"bge-alt[]\" />\n\t\t\t\t<input type=\"hidden\" name=\"bge-width[]\" />\n\t\t\t\t<input type=\"hidden\" name=\"bge-height[]\" />\n\t\t\t\t<input type=\"hidden\" name=\"bge-media[]\" />\n\n\t\t\t\t<input type=\"hidden\" name=\"bge-file-size\" />\n\t\t\t\t<div>\n\t\t\t\t\t<label>\n\t\t\t\t\t\t<span>メディアクエリー</span>\n\t\t\t\t\t\t<input type=\"text\" name=\"bge-media-input\" />\n\t\t\t\t\t</label>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<div>\n\t\t\t<fieldset>\n\t\t\t\t<legend>画像のサイズ</legend>\n\t\t\t\t<div role=\"radiogroup\" aria-labelledby=\"bgi-image__radio-group1\">\n\t\t\t\t\t<div id=\"bgi-image__radio-group1\">基準</div>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-scale-type\" value=\"container\" /><span>基準</span></label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-scale-type\" value=\"original\" checked />画像基準</label>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<span>\n\t\t\t\t\t\t<label for=\"bgi-image__range\">幅</label>\n\t\t\t\t\t\t<output name=\"bge-css-width\"></output>\n\t\t\t\t\t</span>\n\t\t\t\t\t<input id=\"bgi-image__range\" type=\"range\" name=\"bge-scale\" min=\"1\" max=\"100\" step=\"1\" value=\"100\" />\n\t\t\t\t</div>\n\t\t\t\t<div role=\"radiogroup\" aria-labelledby=\"bgi-image__radio-group2\">\n\t\t\t\t\t<div id=\"bgi-image__radio-group2\">縦横比</div>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"unset\" checked />オリジナル</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"1/1\" />1 : 1</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"4/3\" />4 : 3</label>\n\t\t\t\t\t<label><input type=\"radio\" name=\"bge-aspect-ratio\" value=\"16/9\" />16 : 9</label>\n\t\t\t\t</div>\n\t\t\t</fieldset>\n\t\t\t<label>\n\t\t\t\t<span>画像の代替テキスト(alt)</span>\n\t\t\t\t<input type=\"text\" name=\"bge-alt-editable\" />\n\t\t\t</label>\n\t\t\t<label>\n\t\t\t\t<span>キャプション</span>\n\t\t\t\t<input type=\"text\" name=\"bge-caption\" />\n\t\t\t</label>\n\t\t\t<fieldset>\n\t\t\t\t<legend>リンク</legend>\n\t\t\t\t<label><input type=\"checkbox\" name=\"bge-popup\" />ポップアップで画像を開く</label>\n\t\t\t\t<label>\n\t\t\t\t\t<span>リンク先URL</span>\n\t\t\t\t\t<input type=\"url\" name=\"bge-href\" />\n\t\t\t\t</label>\n\t\t\t\t<label><input type=\"checkbox\" name=\"bge-target-blank\" />別タブで開く</label>\n\t\t\t</fieldset>\n\t\t\t<label><input type=\"checkbox\" name=\"bge-lazy\" checked aria-describedby=\"bge-lazy-desc\" />遅延読み込み</label>\n\t\t\t<small id=\"bge-lazy-desc\">画像がブラウザの表示エリアに現れるまでファイルを読み込みません。</small>\n\t\t</div>\n\t</div>\n\t<div>\n\t\t<div data-bge-editor-ui=\"imageUploader\"></div>\n\t\t<div data-bge-editor-ui=\"imageList\"></div>\n\t</div>\n</div>\n";
225
255
 
226
- var style$5 = "[data-bgi='image'] {\n\tinline-size: 100%;\n\n\tfigure {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tinline-size: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\n\t\t> :is(div, a, button) {\n\t\t\tdisplay: block;\n\t\t\tpadding: 0;\n\t\t\tbackground: transparent;\n\t\t\tborder: none;\n\t\t}\n\t}\n\n\timg {\n\t\tdisplay: block;\n\t\tinline-size: var(--css-width, auto);\n\t\tmax-inline-size: 100%;\n\t\tblock-size: auto;\n\t\taspect-ratio: var(--aspect-ratio, unset);\n\t\tobject-fit: var(--object-fit, unset);\n\t}\n\n\tfigcaption {\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\tinline-size: 100%;\n\n\t\t&:empty {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n";
256
+ var style$5 = "[data-bgi='image'] {\n\tfigure {\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tinline-size: var(--css-width, 100%);\n\t\tmax-inline-size: 100cqi;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\n\t\t> :is(div, a, button) {\n\t\t\tdisplay: block;\n\t\t\tpadding: 0;\n\t\t\tbackground: transparent;\n\t\t\tborder: none;\n\t\t}\n\t}\n\n\timg {\n\t\tdisplay: block;\n\t\tinline-size: var(--css-width, auto);\n\t\tmax-inline-size: 100%;\n\t\tblock-size: auto;\n\t\taspect-ratio: var(--aspect-ratio, unset);\n\t\tobject-fit: var(--object-fit, unset);\n\t}\n\n\tfigcaption {\n\t\tdisplay: flex;\n\t\tjustify-content: center;\n\t\tinline-size: 100%;\n\n\t\t&:empty {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n}\n";
227
257
 
228
- var template$w = "<div data-bge=\":style, :scale, :scale-type, :aspect-ratio\" data-bge-scale=\"100\" data-bge-scale-type=\"container\" data-bge-aspect-ratio=\"unset\" style=\"--css-width: 100cqi; --object-fit: cover; --aspect-ratio: unset\">\n\t<figure>\n\t\t<div data-bge=\":node, :href, :target, :command\">\n\t\t\t<img src=\"%sampleImagePath%\" alt=\"サンプル画像\" data-bge=\"path:src, :srcset, :alt, :width, :height, :loading\" width=\"400\" height=\"300\" loading=\"lazy\" />\n\t\t</div>\n\t\t<figcaption data-bge=\"caption\"></figcaption>\n\t</figure>\n</div>\n";
258
+ var template$z = "<div data-bge=\":style, :scale, :scale-type, :aspect-ratio\" data-bge-scale=\"100\" data-bge-scale-type=\"container\" data-bge-aspect-ratio=\"unset\" style=\"--css-width: 100cqi; --object-fit: cover; --aspect-ratio: unset\">\n\t<figure>\n\t\t<div data-bge=\":node, :href, :target, :command\">\n\t\t\t<picture data-bge-list>\n\t\t\t\t<img src=\"%sampleImagePath%\" alt=\"サンプル画像\" data-bge=\"path:src, :alt, :width, :height, :loading, :media\" width=\"400\" height=\"300\" loading=\"lazy\" />\n\t\t\t</picture>\n\t\t</div>\n\t\t<figcaption data-bge=\"caption\"></figcaption>\n\t</figure>\n</div>\n";
229
259
 
230
260
  const ORIGIN = "__org";
231
261
  var image = createItem({
232
- version: "4.0.0-alpha.1",
262
+ version: "4.0.0-alpha.19",
233
263
  name: "image",
234
- template: template$w,
264
+ template: template$z,
235
265
  style: style$5,
236
266
  editor: editor$5,
237
267
  editorOptions: {
238
268
  beforeOpen(data) {
239
- const path = data.path.replace(ORIGIN, "");
269
+ const path = data.path.map((p) => p.replace(ORIGIN, ""));
240
270
  const lazy = data.loading === "lazy";
241
271
  const popup = data.node === "button" && data.command === "show-modal";
242
272
  const targetBlank = data.node === "a" && data.target === "_blank";
@@ -245,57 +275,97 @@ var image = createItem({
245
275
  path,
246
276
  lazy,
247
277
  popup,
248
- targetBlank
278
+ targetBlank,
279
+ altEditable: data.alt?.[0] ?? ""
249
280
  };
250
281
  },
251
- open(data, editor2) {
252
- editor2.engine.componentObserver.notify("file-select", {
253
- path: data.path,
254
- fileSize: Number.parseFloat(data.fileSize ?? "0"),
255
- isEmpty: data.path === "",
256
- isMounted: false
257
- });
282
+ open(_, editor2) {
283
+ let currentIndex = 0;
284
+ selectTab(currentIndex);
285
+ function fileSelect() {
286
+ const $path = editor2.get("$path");
287
+ const currentPath = $path[currentIndex] ?? $path[0];
288
+ if (!currentPath) {
289
+ throw new Error("currentPath is not found");
290
+ }
291
+ editor2.engine.componentObserver.notify("file-select", {
292
+ path: currentPath,
293
+ fileSize: Number.parseFloat(editor2.get("$fileSize") ?? "0"),
294
+ isEmpty: currentPath === "",
295
+ isMounted: false
296
+ });
297
+ }
298
+ function selectTab(index) {
299
+ currentIndex = index;
300
+ fileSelect();
301
+ void _updateImage(editor2.get("$path")[currentIndex]);
302
+ editor2.disable("$mediaInput", currentIndex === 0);
303
+ const media = editor2.get("$media")[currentIndex] ?? "";
304
+ editor2.update("$mediaInput", media);
305
+ }
258
306
  editor2.engine.componentObserver.on("file-select", ({ path, isEmpty }) => {
259
307
  if (isEmpty) {
260
308
  return;
261
309
  }
262
- const { src, origin } = originImage(path);
263
- void Promise.all([loadImage(src), origin ? loadImage(origin) : null]).then(
264
- ([$src, $origin]) => {
265
- if (!$src) {
266
- editor2.update("$path", src);
267
- return;
268
- }
269
- if ($origin) {
270
- editor2.update("$path", $origin.src);
271
- editor2.update("$srcset", `${$src.src}, ${$origin.src} 2x`);
272
- editor2.update("$width", $origin.width);
273
- editor2.update("$height", $origin.height);
274
- updateCSSWidth();
275
- return;
276
- }
277
- editor2.update("$path", $src.src);
278
- editor2.update("$width", $src.width);
279
- editor2.update("$height", $src.height);
280
- updateCSSWidth();
281
- }
282
- );
310
+ void _updateImage(path);
311
+ });
312
+ async function _updateImage(path) {
313
+ if (!path) {
314
+ return;
315
+ }
316
+ const $src = await loadImage(path);
317
+ updateImage($src);
318
+ }
319
+ function updateImage($src) {
320
+ if (!$src) {
321
+ console.error("\u753B\u50CF\u306E\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F");
322
+ return;
323
+ }
324
+ const path = [...editor2.get("$path")];
325
+ path[currentIndex] = $src.src;
326
+ editor2.update("$path", path);
327
+ const width = [...editor2.get("$width")];
328
+ width[currentIndex] = $src.width;
329
+ editor2.update("$width", width);
330
+ const height = [...editor2.get("$height")];
331
+ height[currentIndex] = $src.height;
332
+ editor2.update("$height", height);
333
+ const media = [...editor2.get("$media")];
334
+ media[currentIndex] = editor2.get("$mediaInput");
335
+ editor2.update("$media", media);
336
+ updateCSSWidth();
337
+ }
338
+ editor2.engine.componentObserver.on("select-tab-in-item-editor", ({ index }) => {
339
+ selectTab(index);
283
340
  });
284
341
  editor2.onChange("$scale", updateCSSWidth);
285
342
  editor2.onChange("$scaleType", updateCSSWidth);
343
+ editor2.onChange("$mediaInput", (value) => {
344
+ const media = [...editor2.get("$media")];
345
+ media[currentIndex] = value;
346
+ editor2.update("$media", media);
347
+ });
286
348
  function updateCSSWidth() {
287
349
  const scale = editor2.get("$scale");
288
350
  const width = editor2.get("$width");
289
351
  const scaleType = editor2.get("$scaleType");
290
352
  editor2.update(
291
353
  "$cssWidth",
292
- scaleType === "container" ? `${scale}cqi` : `${Math.round(width * scale / 100)}px`
354
+ scaleType === "container" ? `${scale}cqi` : (
355
+ // TODO: 複数画像の場合は、最初の画像の幅を使用するか、それともすべての画像の幅を使用するか検討
356
+ `${Math.round(width[0] * scale / 100)}px`
357
+ )
293
358
  );
294
359
  }
295
360
  editor2.onChange("$popup", (disable) => {
296
361
  editor2.disable("$href", disable);
297
362
  editor2.disable("$targetBlank", disable);
298
363
  });
364
+ editor2.onChange("$altEditable", (value) => {
365
+ const alt = [...editor2.get("$alt")];
366
+ alt[currentIndex] = value;
367
+ editor2.update("$alt", alt);
368
+ });
299
369
  },
300
370
  beforeChange(newData) {
301
371
  const loading = newData.lazy ? "lazy" : "eager";
@@ -347,31 +417,17 @@ async function loadImage(src) {
347
417
  }, 3e4);
348
418
  });
349
419
  }
350
- function originImage(src) {
351
- const filePath = src.match(/^(.*)(\.(?:jpe?g|gif|png|webp))$/i);
352
- if (filePath) {
353
- const [, name, ext] = filePath;
354
- return {
355
- src,
356
- origin: `${name}${ORIGIN}${ext}`
357
- };
358
- }
359
- return {
360
- src,
361
- origin: null
362
- };
363
- }
364
420
 
365
- var editor$4 = "<div data-bge-dialog=\"wide\">\n\t<div>\n\t\t<label>\n\t\t\t<span>表見出し</span>\n\t\t\t<input type=\"text\" name=\"bge-caption\" />\n\t\t</label>\n\t</div>\n\n\t<div data-bge-editor-ui=\"tableEditor\"></div>\n\t<input type=\"hidden\" name=\"bge\" />\n</div>\n";
421
+ var editor$4 = "<div data-bge-dialog=\"wide\">\n\t<div>\n\t\t<label>\n\t\t\t<input type=\"checkbox\" name=\"bge-scrollable\" />\n\t\t\t<span>横スクロール可能</span>\n\t\t</label>\n\t</div>\n\n\t<div>\n\t\t<label>\n\t\t\t<span>表見出し</span>\n\t\t\t<input type=\"text\" name=\"bge-caption\" />\n\t\t</label>\n\t</div>\n\n\t<div data-bge-editor-ui=\"tableEditor\"></div>\n\t<input type=\"hidden\" name=\"bge\" />\n</div>\n";
366
422
 
367
- var style$4 = ".bge-type-table {\n\tmargin: 0;\n\n\tth {\n\t\tinline-size: calc(100% * 1 / 4);\n\t}\n\n\ttd {\n\t\tinline-size: calc(100% * 3 / 4);\n\t}\n}\n";
423
+ var style$4 = "/* No Styling */\n";
368
424
 
369
- var template$v = "<table>\n\t<caption data-bge=\"caption\">\n\t\tキャプションを入力してください\n\t</caption>\n\t<tbody data-bge-list>\n\t\t<tr>\n\t\t\t<th data-bge=\"th\">表組の見出し</th>\n\t\t\t<td data-bge=\"td\">表組の内容を入力してください</td>\n\t\t</tr>\n\t</tbody>\n</table>\n";
425
+ var template$y = "<div data-bge=\":scrollable\" data-bge-scrollable=\"false\">\n\t<table>\n\t\t<caption data-bge=\"caption\">\n\t\t\tキャプションを入力してください\n\t\t</caption>\n\t\t<tbody data-bge-list>\n\t\t\t<tr>\n\t\t\t\t<th data-bge=\"th\">表組の見出し</th>\n\t\t\t\t<td data-bge=\"td\">表組の内容を入力してください</td>\n\t\t\t</tr>\n\t\t</tbody>\n\t</table>\n</div>\n";
370
426
 
371
427
  var table = createItem({
372
- version: "4.0.0-alpha.1",
428
+ version: "4.0.0-alpha.19",
373
429
  name: "table",
374
- template: template$v,
430
+ template: template$y,
375
431
  style: style$4,
376
432
  editor: editor$4,
377
433
  editorOptions: {
@@ -392,93 +448,57 @@ var table = createItem({
392
448
 
393
449
  var editor$3 = "<input type=\"text\" name=\"bge-title-h2\" placeholder=\"見出しを入力してください\" />\n";
394
450
 
395
- var style$3 = ".bge-title-h2 {\n\tmargin-block-end: 0;\n}\n";
451
+ var style$3 = "/* No Styling */\n";
396
452
 
397
- var template$u = "<h2 class=\"bge-title-h2\" data-bge=\"title-h2\">見出しを入力してください</h2>\n";
453
+ var template$x = "<h2 data-bge=\"title-h2\">見出しを入力してください</h2>\n";
398
454
 
399
455
  var titleH2 = createItem({
400
- version: "4.0.0-alpha.1",
456
+ version: "4.0.0-alpha.19",
401
457
  name: "title-h2",
402
- template: template$u,
458
+ template: template$x,
403
459
  style: style$3,
404
460
  editor: editor$3
405
461
  });
406
462
 
407
463
  var editor$2 = "<input type=\"text\" name=\"bge-title-h3\" placeholder=\"見出しを入力してください\" />\n";
408
464
 
409
- var style$2 = ".bge-title-h3 {\n\tmargin-block-end: 0;\n}\n";
465
+ var style$2 = "/* No Styling */\n";
410
466
 
411
- var template$t = "<h2 class=\"bge-title-h3\" data-bge=\"title-h3\">見出しを入力してください</h2>\n";
467
+ var template$w = "<h3 data-bge=\"title-h3\">見出しを入力してください</h3>\n";
412
468
 
413
469
  var titleH3 = createItem({
414
- version: "4.0.0-alpha.1",
470
+ version: "4.0.0-alpha.19",
415
471
  name: "title-h3",
416
- template: template$t,
472
+ template: template$w,
417
473
  style: style$2,
418
474
  editor: editor$2
419
475
  });
420
476
 
421
- var editor$1 = "<div data-bgi-input=\"wysiwyg\"></div>\n<textarea name=\"bge-wysiwyg\" aria-label=\"入力内容\" hidden></textarea>\n";
477
+ var editor$1 = "<bge-wysiwyg-editor name=\"bge-wysiwyg\" item-name=\"wysiwyg\"></bge-wysiwyg-editor>\n";
422
478
 
423
479
  var style$1 = "/* No Styling */\n";
424
480
 
425
- var template$s = "<div class=\"bge-wysiwyg\" data-bge=\"wysiwyg\"><p>本文を入力してください</p></div>\n";
481
+ var template$v = "<div data-bge=\"wysiwyg\"><p>本文を入力してください</p></div>\n";
426
482
 
427
483
  var wysiwyg = createItem({
428
- version: "4.0.0-alpha.1",
484
+ version: "4.0.0-alpha.19",
429
485
  name: "wysiwyg",
430
- template: template$s,
486
+ template: template$v,
431
487
  style: style$1,
432
- editor: editor$1,
433
- editorOptions: {
434
- async open(data, editor2) {
435
- const EDITOR_AREA_SELECTOR = '[data-bgi-input="wysiwyg"]';
436
- const $editorArea = editor2.find(EDITOR_AREA_SELECTOR);
437
- if (!$editorArea) {
438
- throw new Error(`Not found: "${EDITOR_AREA_SELECTOR}"`);
439
- }
440
- const $editor = new Trix.elements.TrixEditorElement();
441
- $editorArea.append($editor);
442
- $editor.editor.insertHTML(data.wysiwyg);
443
- $editor.addEventListener("trix-change", () => {
444
- editor2.update("$wysiwyg", $editor.innerHTML);
445
- });
446
- $editor.classList.add(...editor2.engine.css.classList);
447
- $editor.style.setProperty("padding", "1em", "important");
448
- $editor.style.setProperty("inline-size", "100%", "important");
449
- const style2 = document.createElement("style");
450
- $editor.hidden = true;
451
- const main = await Promise.all(
452
- editor2.engine.css.stylesheets.filter((url) => url !== "/client.css").map(async (url) => {
453
- const res = await fetch(url);
454
- return res.text();
455
- })
456
- );
457
- style2.textContent = `
458
- @scope (${EDITOR_AREA_SELECTOR}) {
459
- ${main.join("\n")}
460
-
461
- [data-trix-button-group="file-tools"] {
462
- display: none !important;
463
- }
464
- }`;
465
- $editorArea.before(style2);
466
- $editor.hidden = false;
467
- }
468
- }
488
+ editor: editor$1
469
489
  });
470
490
 
471
491
  var editor = "<div>\n\t<iframe class=\"bge-youtube-preview\" title=\"YouTubeプレビュー\" loading=\"lazy\" style=\"aspect-ratio: 16 / 9\"></iframe>\n\t<input type=\"hidden\" name=\"bge-url\" />\n\t<input type=\"hidden\" name=\"bge-thumb\" />\n</div>\n\n<div>\n\t<label>\n\t\t<span>URLもしくは動画ID</span>\n\t\t<input type=\"text\" name=\"bge-id\" />\n\t</label>\n\t<label>\n\t\t<span>動画タイトル</span>\n\t\t<input type=\"text\" name=\"bge-title\" />\n\t</label>\n</div>\n";
472
492
 
473
- var style = "[data-bgi='youtube'] {\n\t> div {\n\t\tposition: relative;\n\t\tinline-size: 100%;\n\t\taspect-ratio: 16 / 9;\n\t\toverflow: hidden;\n\t}\n\n\tiframe {\n\t\tdisplay: block;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tmargin: 0 auto;\n\t\tborder: none;\n\t}\n\n\timg {\n\t\tposition: relative;\n\t\tz-index: 0;\n\t\tdisplay: block;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tobject-fit: cover;\n\t}\n\n\tsvg {\n\t\tposition: absolute;\n\t\tinset: 0;\n\t\tz-index: 1;\n\t\tinline-size: 10%;\n\t\tblock-size: auto;\n\t\tmargin: auto;\n\t}\n}\n";
493
+ var style = "[data-bgi='youtube'] {\n\t> div {\n\t\tposition: relative;\n\t\tdisplay: grid;\n\t\tgrid-template-areas: 'one';\n\t\tinline-size: 100%;\n\t\taspect-ratio: 16 / 9;\n\t\toverflow: hidden;\n\t}\n\n\tiframe {\n\t\tdisplay: block;\n\t\tgrid-area: one;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tmargin: 0;\n\t\tborder: none;\n\t}\n\n\timg {\n\t\tposition: relative;\n\t\tz-index: 0;\n\t\tdisplay: block;\n\t\tgrid-area: one;\n\t\tinline-size: 100%;\n\t\tblock-size: 100%;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tobject-fit: cover;\n\t}\n\n\tsvg {\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\tdisplay: block;\n\t\tgrid-area: one;\n\t\tplace-self: center;\n\t\tinline-size: 10%;\n\t\tblock-size: auto;\n\t}\n}\n";
474
494
 
475
- var template$r = "<div data-id=\"3KtWfp0UopM\" data-title=\"YouTube動画\" data-width=\"1920\" data-height=\"1080\" data-bge=\"id:data-id, title:data-title\">\n\t<img src=\"//img.youtube.com/vi/3KtWfp0UopM/maxresdefault.jpg\" alt=\"動画のサムネイル\" data-bge=\"thumb:src\" width=\"16\" height=\"9\" loading=\"lazy\" decoding=\"auto\" />\n\t<svg viewBox=\"0 0 68 48\" role=\"none\">\n\t\t<path class=\"ytp-large-play-button-bg\" d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"></path>\n\t\t<path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"></path>\n\t</svg>\n</div>\n";
495
+ var template$u = "<div data-id=\"3KtWfp0UopM\" data-title=\"YouTube動画\" data-width=\"1920\" data-height=\"1080\" data-bge=\"id:data-id, title:data-title\">\n\t<img src=\"//img.youtube.com/vi/3KtWfp0UopM/maxresdefault.jpg\" alt=\"動画のサムネイル\" data-bge=\"thumb:src\" width=\"16\" height=\"9\" loading=\"lazy\" decoding=\"auto\" />\n\t<svg viewBox=\"0 0 68 48\" role=\"none\">\n\t\t<path d=\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\" fill=\"#f00\"></path>\n\t\t<path d=\"M 45,24 27,14 27,34\" fill=\"#fff\"></path>\n\t</svg>\n</div>\n";
476
496
 
477
497
  const FALLBACK_TITLE = "YouTube\u52D5\u753B";
478
498
  var youtube = createItem({
479
- version: "4.0.0-alpha.1",
499
+ version: "4.0.0-alpha.19",
480
500
  name: "youtube",
481
- template: template$r,
501
+ template: template$u,
482
502
  style,
483
503
  editor,
484
504
  editorOptions: {
@@ -518,6 +538,7 @@ var youtube = createItem({
518
538
 
519
539
  const items = {
520
540
  button,
541
+ details,
521
542
  "download-file": downloadFile,
522
543
  "google-maps": googleMaps,
523
544
  hr,
@@ -529,227 +550,249 @@ const items = {
529
550
  youtube
530
551
  };
531
552
 
553
+ const templateSeed = Object.fromEntries(
554
+ Object.entries(items).map(([key, value]) => [key, value.template])
555
+ );
532
556
  function importItems(template) {
533
- for (const item of Object.values(items)) {
534
- const typedItem = item;
535
- const itemPlaceholder = new RegExp(`<!-- ${typedItem.name}({[^}]*})? -->`, "g");
536
- template = template.replaceAll(itemPlaceholder, (_, attr) => {
537
- let html = template;
538
- try {
539
- const data = attr ? JSON.parse(`${attr}`) : {};
540
- html = itemImport(typedItem.template, data);
541
- } catch {
542
- throw new Error(`${typedItem.name}\u306E\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u30A4\u30F3\u30DD\u30FC\u30C8\u3067\u304D\u307E\u305B\u3093\u3067\u3057\u305F\u3002`);
543
- }
544
- return `<div data-bgi="${typedItem.name}" data-bgi-ver="${typedItem.version}">${html}</div>`;
545
- });
546
- }
547
- return template;
557
+ return replaceCommentWithHTML(template, templateSeed, (key, html, data) => {
558
+ const result = itemImport(html, data);
559
+ return `<div data-bgi="${key}">${result}</div>`;
560
+ });
548
561
  }
549
562
 
550
- var icon$q = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"fd209399-0134-4350-b981-c8b8ae94ae7e\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"bf554fee-e2dd-4b87-bcb8-62d1fc0d1c7f\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"ffaf2791-f62f-4e94-bf07-d06118b0fa68\" x1=\"179.67\" y1=\"-292.99\" x2=\"180.67\" y2=\"-292.99\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21142.98, 13022.73)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"b4d6358c-dbd1-461c-9863-afc1e103aeb7\"><rect x=\"9.75\" y=\"12.25\" width=\"31.09\" height=\"14.41\" rx=\"2.83\" fill=\"none\"/></clipPath></defs><title>button</title><g id=\"b38853b3-c703-4537-91c6-7499dd3828da\" data-name=\"レイヤー 2\"><g id=\"aad4bf5b-7942-4049-afa3-188448558c80\" data-name=\"レイヤー1\"><g clip-path=\"url(#fd209399-0134-4350-b981-c8b8ae94ae7e)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#bf554fee-e2dd-4b87-bcb8-62d1fc0d1c7f)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#ffaf2791-f62f-4e94-bf07-d06118b0fa68)\"/></g><g clip-path=\"url(#fd209399-0134-4350-b981-c8b8ae94ae7e)\"><path d=\"M12.59,14.1H38a2.84,2.84,0,0,1,2.84,2.84v8.73A2.83,2.83,0,0,1,38,28.5H12.59a2.83,2.83,0,0,1-2.83-2.83V16.93A2.84,2.84,0,0,1,12.59,14.1Z\" fill=\"#905f94\"/><rect x=\"9.75\" y=\"12.22\" width=\"31.09\" height=\"14.41\" rx=\"2.83\" fill=\"#b992bc\"/><path d=\"M18,19.51a2.87,2.87,0,1,1-2.86-2.87A2.86,2.86,0,0,1,18,19.51Z\" fill=\"#fff\"/><g clip-path=\"url(#b4d6358c-dbd1-461c-9863-afc1e103aeb7)\"><polygon points=\"40.84 26.66 9.75 26.66 40.84 12.25 40.84 26.66\" fill=\"#ab7aac\"/></g><polygon points=\"14.35 21.09 14.35 17.92 16.65 19.5 14.35 21.09\" fill=\"#b992bc\"/></g></g></g></svg>";
563
+ var icon$t = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"fd209399-0134-4350-b981-c8b8ae94ae7e\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"bf554fee-e2dd-4b87-bcb8-62d1fc0d1c7f\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"ffaf2791-f62f-4e94-bf07-d06118b0fa68\" x1=\"179.67\" y1=\"-292.99\" x2=\"180.67\" y2=\"-292.99\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21142.98, 13022.73)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"b4d6358c-dbd1-461c-9863-afc1e103aeb7\"><rect x=\"9.75\" y=\"12.25\" width=\"31.09\" height=\"14.41\" rx=\"2.83\" fill=\"none\"/></clipPath></defs><title>button</title><g id=\"b38853b3-c703-4537-91c6-7499dd3828da\" data-name=\"レイヤー 2\"><g id=\"aad4bf5b-7942-4049-afa3-188448558c80\" data-name=\"レイヤー1\"><g clip-path=\"url(#fd209399-0134-4350-b981-c8b8ae94ae7e)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#bf554fee-e2dd-4b87-bcb8-62d1fc0d1c7f)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#ffaf2791-f62f-4e94-bf07-d06118b0fa68)\"/></g><g clip-path=\"url(#fd209399-0134-4350-b981-c8b8ae94ae7e)\"><path d=\"M12.59,14.1H38a2.84,2.84,0,0,1,2.84,2.84v8.73A2.83,2.83,0,0,1,38,28.5H12.59a2.83,2.83,0,0,1-2.83-2.83V16.93A2.84,2.84,0,0,1,12.59,14.1Z\" fill=\"#905f94\"/><rect x=\"9.75\" y=\"12.22\" width=\"31.09\" height=\"14.41\" rx=\"2.83\" fill=\"#b992bc\"/><path d=\"M18,19.51a2.87,2.87,0,1,1-2.86-2.87A2.86,2.86,0,0,1,18,19.51Z\" fill=\"#fff\"/><g clip-path=\"url(#b4d6358c-dbd1-461c-9863-afc1e103aeb7)\"><polygon points=\"40.84 26.66 9.75 26.66 40.84 12.25 40.84 26.66\" fill=\"#ab7aac\"/></g><polygon points=\"14.35 21.09 14.35 17.92 16.65 19.5 14.35 21.09\" fill=\"#b992bc\"/></g></g></g></svg>";
551
564
 
552
- var template$q = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n</div>\n";
565
+ var template$t = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t</div>\n</div>\n";
553
566
 
554
- const blockTemplate$q = {
567
+ const blockTemplate$t = {
555
568
  name: "button",
569
+ template: importItems(template$t),
570
+ icon: icon$t
571
+ };
572
+
573
+ var icon$s = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b153ff07-895d-4804-87cf-aa7badc810a8\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"a7bae0c0-62bc-446c-bf0d-663d897e5a48\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"bb60e0bf-29b7-438c-ad93-35e0141ae3a9\" x1=\"116.39\" y1=\"-292.32\" x2=\"117.39\" y2=\"-292.32\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21094.73, 8451.1)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"a1723d6b-2f4d-4c07-ab69-97a7a59476e0\"><rect y=\"8.76\" width=\"28.03\" height=\"21.78\" fill=\"none\"/></clipPath><clipPath id=\"b0b34d52-2d56-4f80-827a-ad77b7bd7b2f\"><rect x=\"5.4\" y=\"15.55\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"none\"/></clipPath><clipPath id=\"b8d7ec36-a44f-439c-bf3e-ab66c919cbf7\"><rect x=\"22.56\" y=\"8.76\" width=\"28.03\" height=\"21.78\" fill=\"none\"/></clipPath><clipPath id=\"b450c3cd-31c6-4f6c-afbf-34881f955d9c\"><rect x=\"27.97\" y=\"15.55\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"none\"/></clipPath></defs><title>button2</title><g id=\"aeb13426-476a-417b-af4a-dd91ed7b5972\" data-name=\"レイヤー 2\"><g id=\"a3ae9667-184a-49a2-aacf-363d1e760b76\" data-name=\"レイヤー1\"><g clip-path=\"url(#b153ff07-895d-4804-87cf-aa7badc810a8)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#a7bae0c0-62bc-446c-bf0d-663d897e5a48)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#bb60e0bf-29b7-438c-ad93-35e0141ae3a9)\"/></g><g clip-path=\"url(#a1723d6b-2f4d-4c07-ab69-97a7a59476e0)\"><rect x=\"5.4\" y=\"16.57\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#905f94\"/><rect x=\"5.4\" y=\"15.54\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#b992bc\"/><path d=\"M10,19.57A1.59,1.59,0,1,1,8.4,18,1.59,1.59,0,0,1,10,19.57Z\" fill=\"#fff\"/><g clip-path=\"url(#b0b34d52-2d56-4f80-827a-ad77b7bd7b2f)\"><polygon points=\"22.63 23.54 5.4 23.54 22.63 15.55 22.63 23.54\" fill=\"#ab7aac\"/></g><polygon points=\"7.95 20.45 7.95 18.69 9.22 19.57 7.95 20.45\" fill=\"#b992bc\"/></g><g clip-path=\"url(#b8d7ec36-a44f-439c-bf3e-ab66c919cbf7)\"><rect x=\"27.97\" y=\"16.57\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#905f94\"/><rect x=\"27.97\" y=\"15.54\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#b992bc\"/><path d=\"M32.55,19.57A1.59,1.59,0,1,1,31,18,1.59,1.59,0,0,1,32.55,19.57Z\" fill=\"#fff\"/><g clip-path=\"url(#b450c3cd-31c6-4f6c-afbf-34881f955d9c)\"><polygon points=\"45.19 23.54 27.97 23.54 45.19 15.55 45.19 23.54\" fill=\"#ab7aac\"/></g><polygon points=\"30.51 20.45 30.51 18.69 31.79 19.57 30.51 20.45\" fill=\"#b992bc\"/></g></g></g></svg>";
574
+
575
+ var template$s = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t</div>\n</div>\n";
576
+
577
+ const blockTemplate$s = {
578
+ name: "button2",
579
+ template: importItems(template$s),
580
+ icon: icon$s
581
+ };
582
+
583
+ var icon$r = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b056bd87-8dba-4e0d-aa72-716878a05a5f\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b763a0c7-e5d3-4838-81d6-b56aed526447\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"a7cf91cd-fd5f-42ee-ac16-f023fb4564a1\" x1=\"52.39\" y1=\"-293.21\" x2=\"53.39\" y2=\"-293.21\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21158.73, 3827.14)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"e3b93a2c-6a02-4ca9-8019-a0631cefd20c\"><rect y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"bcd3e7b4-6b19-434c-b185-816b541cf24a\"><rect x=\"3.96\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath><clipPath id=\"f3c09aef-9059-4b8e-bdc4-94b27727ec2b\"><rect x=\"15.03\" y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"a582dc04-5370-42cd-8885-ceab0760a39d\"><rect x=\"18.99\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath><clipPath id=\"b0615a06-7c95-4acd-9dc8-079f4b205ef6\"><rect x=\"30.07\" y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"fe839737-2f17-42b7-9195-6f7d6bfc12f9\"><rect x=\"34.03\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath></defs><title>button3</title><g id=\"f1d0597a-7e94-40cc-81d2-7940e55002c1\" data-name=\"レイヤー 2\"><g id=\"bad110ee-d772-42ac-99a1-357d604f079b\" data-name=\"レイヤー1\"><g clip-path=\"url(#b056bd87-8dba-4e0d-aa72-716878a05a5f)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#b763a0c7-e5d3-4838-81d6-b56aed526447)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#a7cf91cd-fd5f-42ee-ac16-f023fb4564a1)\"/></g><g clip-path=\"url(#e3b93a2c-6a02-4ca9-8019-a0631cefd20c)\"><rect x=\"3.96\" y=\"16.5\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"3.96\" y=\"15.74\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M7.31,18.69a1.16,1.16,0,1,1-1.16-1.16A1.16,1.16,0,0,1,7.31,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#bcd3e7b4-6b19-434c-b185-816b541cf24a)\"><polygon points=\"16.57 21.59 3.96 21.59 16.57 15.75 16.57 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"5.82 19.33 5.82 18.05 6.75 18.69 5.82 19.33\" fill=\"#b992bc\"/></g><g clip-path=\"url(#f3c09aef-9059-4b8e-bdc4-94b27727ec2b)\"><rect x=\"18.99\" y=\"16.5\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"18.99\" y=\"15.74\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M22.35,18.69a1.17,1.17,0,1,1-1.16-1.16A1.16,1.16,0,0,1,22.35,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#a582dc04-5370-42cd-8885-ceab0760a39d)\"><polygon points=\"31.6 21.59 18.99 21.59 31.6 15.75 31.6 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"20.85 19.33 20.85 18.05 21.79 18.69 20.85 19.33\" fill=\"#b992bc\"/></g><g clip-path=\"url(#b0615a06-7c95-4acd-9dc8-079f4b205ef6)\"><rect x=\"34.03\" y=\"16.49\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"34.03\" y=\"15.73\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M37.38,18.69a1.16,1.16,0,1,1-1.16-1.16A1.16,1.16,0,0,1,37.38,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#fe839737-2f17-42b7-9195-6f7d6bfc12f9)\"><polygon points=\"46.64 21.59 34.02 21.59 46.64 15.75 46.64 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"35.89 19.33 35.89 18.05 36.82 18.69 35.89 19.33\" fill=\"#b992bc\"/></g></g></g></svg>";
584
+
585
+ var template$r = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button --></div>\n\t\t</div>\n\t</div>\n</div>\n";
586
+
587
+ const blockTemplate$r = {
588
+ name: "button3",
589
+ template: importItems(template$r),
590
+ icon: icon$r
591
+ };
592
+
593
+ var icon$q = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a9e1e99a-d48b-467c-84e1-bdced3515439\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image4</title><g id=\"f0cc911f-7c12-4b14-8f46-1addd9966920\" data-name=\"レイヤー 2\"><g id=\"a6ffb343-0125-41bc-9552-4ed6f8831b95\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a9e1e99a-d48b-467c-84e1-bdced3515439)\"/><rect x=\"4.65\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"15.57\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"26.49\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"37.41\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"13.18 26.63 4.65 26.63 13.18 12.22 13.18 26.63\" fill=\"#649432\"/><polygon points=\"24.11 26.63 15.57 26.63 24.11 12.22 24.11 26.63\" fill=\"#649432\"/><polygon points=\"35.02 26.63 26.49 26.63 35.02 12.22 35.02 26.63\" fill=\"#649432\"/><polygon points=\"45.95 26.63 37.41 26.63 45.95 12.22 45.95 26.63\" fill=\"#649432\"/></g></g></svg>";
594
+
595
+ var template$q = "<div data-bge-container=\"grid:4\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ1\",\"link\":\"#content1\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ2\",\"link\":\"#content2\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ3\",\"link\":\"#content3\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ4\",\"link\":\"#content4\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ5\",\"link\":\"#content5\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ6\",\"link\":\"#content6\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ7\",\"link\":\"#content7\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- button{\"kind\":\"in-page\",\"text\":\"コンテンツ8\",\"link\":\"#content8\"} --></div>\n\t\t</div>\n\t</div>\n</div>\n";
596
+
597
+ const blockTemplate$q = {
598
+ name: "content-navigation",
556
599
  template: importItems(template$q),
557
600
  icon: icon$q
558
601
  };
559
602
 
560
- var icon$p = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b153ff07-895d-4804-87cf-aa7badc810a8\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"a7bae0c0-62bc-446c-bf0d-663d897e5a48\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"bb60e0bf-29b7-438c-ad93-35e0141ae3a9\" x1=\"116.39\" y1=\"-292.32\" x2=\"117.39\" y2=\"-292.32\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21094.73, 8451.1)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"a1723d6b-2f4d-4c07-ab69-97a7a59476e0\"><rect y=\"8.76\" width=\"28.03\" height=\"21.78\" fill=\"none\"/></clipPath><clipPath id=\"b0b34d52-2d56-4f80-827a-ad77b7bd7b2f\"><rect x=\"5.4\" y=\"15.55\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"none\"/></clipPath><clipPath id=\"b8d7ec36-a44f-439c-bf3e-ab66c919cbf7\"><rect x=\"22.56\" y=\"8.76\" width=\"28.03\" height=\"21.78\" fill=\"none\"/></clipPath><clipPath id=\"b450c3cd-31c6-4f6c-afbf-34881f955d9c\"><rect x=\"27.97\" y=\"15.55\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"none\"/></clipPath></defs><title>button2</title><g id=\"aeb13426-476a-417b-af4a-dd91ed7b5972\" data-name=\"レイヤー 2\"><g id=\"a3ae9667-184a-49a2-aacf-363d1e760b76\" data-name=\"レイヤー1\"><g clip-path=\"url(#b153ff07-895d-4804-87cf-aa7badc810a8)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#a7bae0c0-62bc-446c-bf0d-663d897e5a48)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#bb60e0bf-29b7-438c-ad93-35e0141ae3a9)\"/></g><g clip-path=\"url(#a1723d6b-2f4d-4c07-ab69-97a7a59476e0)\"><rect x=\"5.4\" y=\"16.57\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#905f94\"/><rect x=\"5.4\" y=\"15.54\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#b992bc\"/><path d=\"M10,19.57A1.59,1.59,0,1,1,8.4,18,1.59,1.59,0,0,1,10,19.57Z\" fill=\"#fff\"/><g clip-path=\"url(#b0b34d52-2d56-4f80-827a-ad77b7bd7b2f)\"><polygon points=\"22.63 23.54 5.4 23.54 22.63 15.55 22.63 23.54\" fill=\"#ab7aac\"/></g><polygon points=\"7.95 20.45 7.95 18.69 9.22 19.57 7.95 20.45\" fill=\"#b992bc\"/></g><g clip-path=\"url(#b8d7ec36-a44f-439c-bf3e-ab66c919cbf7)\"><rect x=\"27.97\" y=\"16.57\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#905f94\"/><rect x=\"27.97\" y=\"15.54\" width=\"17.22\" height=\"7.98\" rx=\"1.57\" fill=\"#b992bc\"/><path d=\"M32.55,19.57A1.59,1.59,0,1,1,31,18,1.59,1.59,0,0,1,32.55,19.57Z\" fill=\"#fff\"/><g clip-path=\"url(#b450c3cd-31c6-4f6c-afbf-34881f955d9c)\"><polygon points=\"45.19 23.54 27.97 23.54 45.19 15.55 45.19 23.54\" fill=\"#ab7aac\"/></g><polygon points=\"30.51 20.45 30.51 18.69 31.79 19.57 30.51 20.45\" fill=\"#b992bc\"/></g></g></g></svg>";
603
+ var icon$p = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"ac098ab8-4721-4033-811d-03504c007490\" x1=\"25.3\" y1=\"37.04\" x2=\"25.3\" y2=\"-30.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>wysiwyg</title><g id=\"aede14d2-0f85-4f1a-a67b-7eba98691afa\" data-name=\"レイヤー 2\"><g id=\"a92b9d83-2208-4aed-9619-b799895b4f6c\" data-name=\"レイヤー1\"><rect y=\"1.74\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ac098ab8-4721-4033-811d-03504c007490)\"/><line x1=\"11.3\" y1=\"10.04\" x2=\"39.6\" y2=\"10.04\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"15.85\" x2=\"39.6\" y2=\"15.85\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"21.65\" x2=\"39.6\" y2=\"21.65\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"27.46\" x2=\"39.6\" y2=\"27.46\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
561
604
 
562
- var template$p = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n</div>\n";
605
+ var template$p = "<div data-bge-container=\"grid:1:immediate\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- details --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- details --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- details --></div>\n\t\t</div>\n\t</div>\n</div>\n";
563
606
 
564
607
  const blockTemplate$p = {
565
- name: "button2",
608
+ name: "disclosure",
566
609
  template: importItems(template$p),
567
610
  icon: icon$p
568
611
  };
569
612
 
570
- var icon$o = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b056bd87-8dba-4e0d-aa72-716878a05a5f\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b763a0c7-e5d3-4838-81d6-b56aed526447\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"a7cf91cd-fd5f-42ee-ac16-f023fb4564a1\" x1=\"52.39\" y1=\"-293.21\" x2=\"53.39\" y2=\"-293.21\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -21158.73, 3827.14)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#e7dbeb\"/><stop offset=\"1\" stop-color=\"#d6c1da\"/></linearGradient><clipPath id=\"e3b93a2c-6a02-4ca9-8019-a0631cefd20c\"><rect y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"bcd3e7b4-6b19-434c-b185-816b541cf24a\"><rect x=\"3.96\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath><clipPath id=\"f3c09aef-9059-4b8e-bdc4-94b27727ec2b\"><rect x=\"15.03\" y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"a582dc04-5370-42cd-8885-ceab0760a39d\"><rect x=\"18.99\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath><clipPath id=\"b0615a06-7c95-4acd-9dc8-079f4b205ef6\"><rect x=\"30.07\" y=\"10.78\" width=\"20.53\" height=\"15.95\" fill=\"none\"/></clipPath><clipPath id=\"fe839737-2f17-42b7-9195-6f7d6bfc12f9\"><rect x=\"34.03\" y=\"15.75\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"none\"/></clipPath></defs><title>button3</title><g id=\"f1d0597a-7e94-40cc-81d2-7940e55002c1\" data-name=\"レイヤー 2\"><g id=\"bad110ee-d772-42ac-99a1-357d604f079b\" data-name=\"レイヤー1\"><g clip-path=\"url(#b056bd87-8dba-4e0d-aa72-716878a05a5f)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#d1b9d5\"/></g><g clip-path=\"url(#b763a0c7-e5d3-4838-81d6-b56aed526447)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#a7cf91cd-fd5f-42ee-ac16-f023fb4564a1)\"/></g><g clip-path=\"url(#e3b93a2c-6a02-4ca9-8019-a0631cefd20c)\"><rect x=\"3.96\" y=\"16.5\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"3.96\" y=\"15.74\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M7.31,18.69a1.16,1.16,0,1,1-1.16-1.16A1.16,1.16,0,0,1,7.31,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#bcd3e7b4-6b19-434c-b185-816b541cf24a)\"><polygon points=\"16.57 21.59 3.96 21.59 16.57 15.75 16.57 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"5.82 19.33 5.82 18.05 6.75 18.69 5.82 19.33\" fill=\"#b992bc\"/></g><g clip-path=\"url(#f3c09aef-9059-4b8e-bdc4-94b27727ec2b)\"><rect x=\"18.99\" y=\"16.5\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"18.99\" y=\"15.74\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M22.35,18.69a1.17,1.17,0,1,1-1.16-1.16A1.16,1.16,0,0,1,22.35,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#a582dc04-5370-42cd-8885-ceab0760a39d)\"><polygon points=\"31.6 21.59 18.99 21.59 31.6 15.75 31.6 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"20.85 19.33 20.85 18.05 21.79 18.69 20.85 19.33\" fill=\"#b992bc\"/></g><g clip-path=\"url(#b0615a06-7c95-4acd-9dc8-079f4b205ef6)\"><rect x=\"34.03\" y=\"16.49\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#905f94\"/><rect x=\"34.03\" y=\"15.73\" width=\"12.61\" height=\"5.84\" rx=\"1.15\" fill=\"#b992bc\"/><path d=\"M37.38,18.69a1.16,1.16,0,1,1-1.16-1.16A1.16,1.16,0,0,1,37.38,18.69Z\" fill=\"#fff\"/><g clip-path=\"url(#fe839737-2f17-42b7-9195-6f7d6bfc12f9)\"><polygon points=\"46.64 21.59 34.02 21.59 46.64 15.75 46.64 21.59\" fill=\"#ab7aac\"/></g><polygon points=\"35.89 19.33 35.89 18.05 36.82 18.69 35.89 19.33\" fill=\"#b992bc\"/></g></g></g></svg>";
613
+ var icon$o = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.96mm\" viewBox=\"0 0 50.59 39.57\"><defs><linearGradient id=\"becb2f5d-9182-4a22-8379-911159e90b4e\" x1=\"25.3\" y1=\"-7.07\" x2=\"25.3\" y2=\"42.27\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><linearGradient id=\"f7b8815a-3812-4a86-9885-c90d87d413a4\" x1=\"16.52\" y1=\"11.42\" x2=\"33.21\" y2=\"24.26\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient></defs><title>download-file</title><g id=\"a40f4568-d3f8-494e-9ab4-361f542104e6\" data-name=\"レイヤー 2\"><g id=\"eac125cd-6705-4e59-94bd-9b5cf94c3ef0\" data-name=\"レイヤー1\"><rect y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#becb2f5d-9182-4a22-8379-911159e90b4e)\"/><path d=\"M36.6,14.11a5.05,5.05,0,0,0-1.23.15,8.24,8.24,0,0,0,.13-1.42A7.94,7.94,0,0,0,20.24,9.79,4.79,4.79,0,0,0,13.09,14c0,.07,0,.14,0,.21A5.5,5.5,0,0,0,14,25.12H36.6a5.51,5.51,0,1,0,0-11Z\" fill=\"url(#f7b8815a-3812-4a86-9885-c90d87d413a4)\"/><polygon points=\"27.36 27.03 27.36 21.85 23.24 21.85 23.24 27.03 20.48 27.03 25.3 31.85 30.11 27.03 27.36 27.03\" fill=\"#f5a725\"/></g></g></svg>";
571
614
 
572
- var template$o = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- button --></div>\n\t</div>\n</div>\n";
615
+ var template$o = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t</div>\n</div>\n";
573
616
 
574
617
  const blockTemplate$o = {
575
- name: "button3",
618
+ name: "download-file",
576
619
  template: importItems(template$o),
577
620
  icon: icon$o
578
621
  };
579
622
 
580
- var icon$n = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.96mm\" viewBox=\"0 0 50.59 39.57\"><defs><linearGradient id=\"becb2f5d-9182-4a22-8379-911159e90b4e\" x1=\"25.3\" y1=\"-7.07\" x2=\"25.3\" y2=\"42.27\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><linearGradient id=\"f7b8815a-3812-4a86-9885-c90d87d413a4\" x1=\"16.52\" y1=\"11.42\" x2=\"33.21\" y2=\"24.26\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient></defs><title>download-file</title><g id=\"a40f4568-d3f8-494e-9ab4-361f542104e6\" data-name=\"レイヤー 2\"><g id=\"eac125cd-6705-4e59-94bd-9b5cf94c3ef0\" data-name=\"レイヤー1\"><rect y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#becb2f5d-9182-4a22-8379-911159e90b4e)\"/><path d=\"M36.6,14.11a5.05,5.05,0,0,0-1.23.15,8.24,8.24,0,0,0,.13-1.42A7.94,7.94,0,0,0,20.24,9.79,4.79,4.79,0,0,0,13.09,14c0,.07,0,.14,0,.21A5.5,5.5,0,0,0,14,25.12H36.6a5.51,5.51,0,1,0,0-11Z\" fill=\"url(#f7b8815a-3812-4a86-9885-c90d87d413a4)\"/><polygon points=\"27.36 27.03 27.36 21.85 23.24 21.85 23.24 27.03 20.48 27.03 25.3 31.85 30.11 27.03 27.36 27.03\" fill=\"#f5a725\"/></g></g></svg>";
623
+ var icon$n = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"18.31mm\" height=\"13.96mm\" viewBox=\"0 0 51.91 39.57\"><defs><clipPath id=\"aeba98e8-5323-42ea-8924-cab300f24bf1\"><rect x=\"0.66\" width=\"50.59\" height=\"39.57\" fill=\"none\"/></clipPath><clipPath id=\"f6b1f76c-159f-4fd8-9649-7d9b300879fc\"><rect x=\"0.66\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"b46a8061-b6c9-412b-a7e7-7f9ed6e06e92\" x1=\"124.76\" y1=\"-148.78\" x2=\"125.76\" y2=\"-148.78\" gradientTransform=\"matrix(0, 49.34, 49.34, 0, 7367.05, -6163.21)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><clipPath id=\"b4befe88-beb5-4ebe-a1a8-f77c2ac349eb\"><path d=\"M11.09,14.63A2.49,2.49,0,0,0,7.4,16.8s0,.07,0,.1a2.84,2.84,0,0,0,.46,5.64H19.52a2.84,2.84,0,0,0,0-5.68,2.59,2.59,0,0,0-.63.08,4.4,4.4,0,0,0,.07-.73,4.09,4.09,0,0,0-7.87-1.58\" fill=\"none\"/></clipPath><linearGradient id=\"bc621572-15d4-4277-9b6a-7d3d12020503\" x1=\"121.69\" y1=\"-157.15\" x2=\"122.2\" y2=\"-157.15\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3323.5, -2550.12)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient><clipPath id=\"bb111474-00c2-4fbf-a9dc-5e714817e195\"><rect x=\"0.66\" y=\"9.59\" width=\"26.07\" height=\"20.39\" fill=\"none\"/></clipPath><clipPath id=\"b007783d-68bc-413d-9f28-e62e9dfb24f4\"><path d=\"M35.61,14.63a2.48,2.48,0,0,0-3.68,2.17v.1a2.84,2.84,0,0,0,.46,5.64H44.05a2.84,2.84,0,0,0,0-5.68,2.67,2.67,0,0,0-.64.08,4.4,4.4,0,0,0,.07-.73,4.09,4.09,0,0,0-7.87-1.58\" fill=\"none\"/></clipPath><linearGradient id=\"bb87b7e6-813d-403d-866c-7911014b963e\" x1=\"122.61\" y1=\"-156.44\" x2=\"123.12\" y2=\"-156.44\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3333.04, -2569.6)\" xlink:href=\"#bc621572-15d4-4277-9b6a-7d3d12020503\"/><clipPath id=\"b4283aa0-0333-4f0f-8df7-5bf95c6dbc45\"><rect x=\"25.18\" y=\"9.59\" width=\"26.07\" height=\"20.39\" fill=\"none\"/></clipPath></defs><title>download-file2</title><g id=\"b5256a70-7e9c-494d-90e0-da27b974e2cf\" data-name=\"レイヤー 2\"><g id=\"bb18e753-2582-40b5-a26f-b35666026a47\" data-name=\"レイヤー1\"><g clip-path=\"url(#aeba98e8-5323-42ea-8924-cab300f24bf1)\"><rect x=\"0.66\" y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/></g><g clip-path=\"url(#f6b1f76c-159f-4fd8-9649-7d9b300879fc)\"><rect x=\"0.66\" width=\"50.59\" height=\"37.5\" fill=\"url(#b46a8061-b6c9-412b-a7e7-7f9ed6e06e92)\"/></g><g clip-path=\"url(#b4befe88-beb5-4ebe-a1a8-f77c2ac349eb)\"><rect x=\"4.29\" y=\"7.29\" width=\"18.82\" height=\"20.08\" transform=\"translate(-8.39 17.62) rotate(-52.43)\" fill=\"url(#bc621572-15d4-4277-9b6a-7d3d12020503)\"/></g><g clip-path=\"url(#bb111474-00c2-4fbf-a9dc-5e714817e195)\"><polygon points=\"14.76 23.52 14.76 20.85 12.63 20.85 12.63 23.52 11.21 23.52 13.7 26 16.18 23.52 14.76 23.52\" fill=\"#f5a725\"/></g><g clip-path=\"url(#b007783d-68bc-413d-9f28-e62e9dfb24f4)\"><rect x=\"28.81\" y=\"7.29\" width=\"18.82\" height=\"20.08\" transform=\"translate(1.18 37.06) rotate(-52.43)\" fill=\"url(#bb87b7e6-813d-403d-866c-7911014b963e)\"/></g><g clip-path=\"url(#b4283aa0-0333-4f0f-8df7-5bf95c6dbc45)\"><polygon points=\"39.28 23.52 39.28 20.85 37.16 20.85 37.16 23.52 35.74 23.52 38.22 26 40.7 23.52 39.28 23.52\" fill=\"#f5a725\"/></g></g></g></svg>";
581
624
 
582
- var template$n = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n</div>\n";
625
+ var template$n = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t</div>\n</div>\n";
583
626
 
584
627
  const blockTemplate$n = {
585
- name: "download-file",
628
+ name: "download-file2",
586
629
  template: importItems(template$n),
587
630
  icon: icon$n
588
631
  };
589
632
 
590
- var icon$m = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"18.31mm\" height=\"13.96mm\" viewBox=\"0 0 51.91 39.57\"><defs><clipPath id=\"aeba98e8-5323-42ea-8924-cab300f24bf1\"><rect x=\"0.66\" width=\"50.59\" height=\"39.57\" fill=\"none\"/></clipPath><clipPath id=\"f6b1f76c-159f-4fd8-9649-7d9b300879fc\"><rect x=\"0.66\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"b46a8061-b6c9-412b-a7e7-7f9ed6e06e92\" x1=\"124.76\" y1=\"-148.78\" x2=\"125.76\" y2=\"-148.78\" gradientTransform=\"matrix(0, 49.34, 49.34, 0, 7367.05, -6163.21)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><clipPath id=\"b4befe88-beb5-4ebe-a1a8-f77c2ac349eb\"><path d=\"M11.09,14.63A2.49,2.49,0,0,0,7.4,16.8s0,.07,0,.1a2.84,2.84,0,0,0,.46,5.64H19.52a2.84,2.84,0,0,0,0-5.68,2.59,2.59,0,0,0-.63.08,4.4,4.4,0,0,0,.07-.73,4.09,4.09,0,0,0-7.87-1.58\" fill=\"none\"/></clipPath><linearGradient id=\"bc621572-15d4-4277-9b6a-7d3d12020503\" x1=\"121.69\" y1=\"-157.15\" x2=\"122.2\" y2=\"-157.15\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3323.5, -2550.12)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient><clipPath id=\"bb111474-00c2-4fbf-a9dc-5e714817e195\"><rect x=\"0.66\" y=\"9.59\" width=\"26.07\" height=\"20.39\" fill=\"none\"/></clipPath><clipPath id=\"b007783d-68bc-413d-9f28-e62e9dfb24f4\"><path d=\"M35.61,14.63a2.48,2.48,0,0,0-3.68,2.17v.1a2.84,2.84,0,0,0,.46,5.64H44.05a2.84,2.84,0,0,0,0-5.68,2.67,2.67,0,0,0-.64.08,4.4,4.4,0,0,0,.07-.73,4.09,4.09,0,0,0-7.87-1.58\" fill=\"none\"/></clipPath><linearGradient id=\"bb87b7e6-813d-403d-866c-7911014b963e\" x1=\"122.61\" y1=\"-156.44\" x2=\"123.12\" y2=\"-156.44\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3333.04, -2569.6)\" xlink:href=\"#bc621572-15d4-4277-9b6a-7d3d12020503\"/><clipPath id=\"b4283aa0-0333-4f0f-8df7-5bf95c6dbc45\"><rect x=\"25.18\" y=\"9.59\" width=\"26.07\" height=\"20.39\" fill=\"none\"/></clipPath></defs><title>download-file2</title><g id=\"b5256a70-7e9c-494d-90e0-da27b974e2cf\" data-name=\"レイヤー 2\"><g id=\"bb18e753-2582-40b5-a26f-b35666026a47\" data-name=\"レイヤー1\"><g clip-path=\"url(#aeba98e8-5323-42ea-8924-cab300f24bf1)\"><rect x=\"0.66\" y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/></g><g clip-path=\"url(#f6b1f76c-159f-4fd8-9649-7d9b300879fc)\"><rect x=\"0.66\" width=\"50.59\" height=\"37.5\" fill=\"url(#b46a8061-b6c9-412b-a7e7-7f9ed6e06e92)\"/></g><g clip-path=\"url(#b4befe88-beb5-4ebe-a1a8-f77c2ac349eb)\"><rect x=\"4.29\" y=\"7.29\" width=\"18.82\" height=\"20.08\" transform=\"translate(-8.39 17.62) rotate(-52.43)\" fill=\"url(#bc621572-15d4-4277-9b6a-7d3d12020503)\"/></g><g clip-path=\"url(#bb111474-00c2-4fbf-a9dc-5e714817e195)\"><polygon points=\"14.76 23.52 14.76 20.85 12.63 20.85 12.63 23.52 11.21 23.52 13.7 26 16.18 23.52 14.76 23.52\" fill=\"#f5a725\"/></g><g clip-path=\"url(#b007783d-68bc-413d-9f28-e62e9dfb24f4)\"><rect x=\"28.81\" y=\"7.29\" width=\"18.82\" height=\"20.08\" transform=\"translate(1.18 37.06) rotate(-52.43)\" fill=\"url(#bb87b7e6-813d-403d-866c-7911014b963e)\"/></g><g clip-path=\"url(#b4283aa0-0333-4f0f-8df7-5bf95c6dbc45)\"><polygon points=\"39.28 23.52 39.28 20.85 37.16 20.85 37.16 23.52 35.74 23.52 38.22 26 40.7 23.52 39.28 23.52\" fill=\"#f5a725\"/></g></g></g></svg>";
633
+ var icon$m = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"18.38mm\" height=\"13.96mm\" viewBox=\"0 0 52.1 39.57\"><defs><clipPath id=\"fc47c137-c2c6-4e1d-9955-a758446e9717\"><rect x=\"0.51\" width=\"50.59\" height=\"39.57\" fill=\"none\"/></clipPath><clipPath id=\"f2282422-2f7d-4250-a887-40cacb69eba7\"><rect x=\"0.51\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"fd78d5d8-11ba-411c-b50b-9b5a9a2dd933\" x1=\"57.5\" y1=\"-146.09\" x2=\"58.5\" y2=\"-146.09\" gradientTransform=\"matrix(0, 49.34, 49.34, 0, 7234.02, -2844.1)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><clipPath id=\"bfe41910-2927-4cae-bb45-7a9de0746fd6\"><path d=\"M8.51,18.2A1.92,1.92,0,0,0,7.58,18a1.9,1.9,0,0,0-1.9,1.9s0,.06,0,.08A2.18,2.18,0,0,0,6,24.27H15a2.18,2.18,0,0,0,0-4.36,1.86,1.86,0,0,0-.48.06,3.43,3.43,0,0,0,.05-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"a1deedfc-6700-46bc-9326-7e1a5ec9088c\" x1=\"56.95\" y1=\"-154.02\" x2=\"57.35\" y2=\"-154.02\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3254.42, -1182.75)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient><clipPath id=\"a434258f-e726-4759-a348-e9fbf87aadbe\"><rect x=\"0.51\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath><clipPath id=\"fff6c14c-ebcb-43ff-98fa-f3ba704e929a\"><path d=\"M24.45,18.2a1.9,1.9,0,0,0-2.83,1.66s0,.06,0,.08A2.18,2.18,0,0,0,22,24.27h9a2.18,2.18,0,0,0,0-4.36,1.93,1.93,0,0,0-.49.06,3.43,3.43,0,0,0,0-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"b3254dd0-8a5d-4c6b-91e8-02c85f39d2b1\" x1=\"57.55\" y1=\"-153.56\" x2=\"57.95\" y2=\"-153.56\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3260.67, -1195.33)\" xlink:href=\"#a1deedfc-6700-46bc-9326-7e1a5ec9088c\"/><clipPath id=\"b0491421-6c28-4d84-969e-b3c10a878591\"><rect x=\"16.45\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath><clipPath id=\"a49fdbc0-e8fe-4800-a59d-2e8880bd76f6\"><path d=\"M39.59,18.2a2,2,0,0,0-.93-.24,1.9,1.9,0,0,0-1.9,1.9s0,.06,0,.08a2.18,2.18,0,0,0,.35,4.33h8.94a2.18,2.18,0,0,0,0-4.36,2,2,0,0,0-.49.06,2.59,2.59,0,0,0,0-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"e660e89d-723a-418c-bc29-2f24fb2d77c1\" x1=\"58.12\" y1=\"-153.12\" x2=\"58.52\" y2=\"-153.12\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3266.57, -1207.32)\" xlink:href=\"#a1deedfc-6700-46bc-9326-7e1a5ec9088c\"/><clipPath id=\"f738a949-7af7-400f-b077-a7513d9ba0f4\"><rect x=\"31.59\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath></defs><title>download-file3</title><g id=\"a14bcb13-b419-40d8-8d59-261fd7a95c5d\" data-name=\"レイヤー 2\"><g id=\"b152811e-a297-4713-8349-1b7da41a7018\" data-name=\"レイヤー1\"><g clip-path=\"url(#fc47c137-c2c6-4e1d-9955-a758446e9717)\"><rect x=\"0.51\" y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/></g><g clip-path=\"url(#f2282422-2f7d-4250-a887-40cacb69eba7)\"><rect x=\"0.51\" width=\"50.59\" height=\"37.5\" fill=\"url(#fd78d5d8-11ba-411c-b50b-9b5a9a2dd933)\"/></g><g clip-path=\"url(#bfe41910-2927-4cae-bb45-7a9de0746fd6)\"><rect x=\"3.29\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(-11.96 16.24) rotate(-52.43)\" fill=\"url(#a1deedfc-6700-46bc-9326-7e1a5ec9088c)\"/></g><g clip-path=\"url(#a434258f-e726-4759-a348-e9fbf87aadbe)\"><polygon points=\"11.33 25.02 11.33 22.98 9.7 22.98 9.7 25.02 8.61 25.02 10.51 26.93 12.41 25.02 11.33 25.02\" fill=\"#f5a725\"/></g><g clip-path=\"url(#fff6c14c-ebcb-43ff-98fa-f3ba704e929a)\"><rect x=\"19.23\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(-5.74 28.88) rotate(-52.43)\" fill=\"url(#b3254dd0-8a5d-4c6b-91e8-02c85f39d2b1)\"/></g><g clip-path=\"url(#b0491421-6c28-4d84-969e-b3c10a878591)\"><polygon points=\"27.27 25.02 27.27 22.98 25.64 22.98 25.64 25.02 24.55 25.02 26.45 26.93 28.36 25.02 27.27 25.02\" fill=\"#f5a725\"/></g><g clip-path=\"url(#a49fdbc0-e8fe-4800-a59d-2e8880bd76f6)\"><rect x=\"34.37\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(0.17 40.88) rotate(-52.43)\" fill=\"url(#e660e89d-723a-418c-bc29-2f24fb2d77c1)\"/></g><g clip-path=\"url(#f738a949-7af7-400f-b077-a7513d9ba0f4)\"><polygon points=\"42.4 25.02 42.4 22.98 40.77 22.98 40.77 25.02 39.69 25.02 41.59 26.93 43.49 25.02 42.4 25.02\" fill=\"#f5a725\"/></g></g></g></svg>";
591
634
 
592
- var template$m = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n</div>\n";
635
+ var template$m = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- download-file --></div>\n\t\t</div>\n\t</div>\n</div>\n";
593
636
 
594
637
  const blockTemplate$m = {
595
- name: "download-file2",
638
+ name: "download-file3",
596
639
  template: importItems(template$m),
597
640
  icon: icon$m
598
641
  };
599
642
 
600
- var icon$l = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"18.38mm\" height=\"13.96mm\" viewBox=\"0 0 52.1 39.57\"><defs><clipPath id=\"fc47c137-c2c6-4e1d-9955-a758446e9717\"><rect x=\"0.51\" width=\"50.59\" height=\"39.57\" fill=\"none\"/></clipPath><clipPath id=\"f2282422-2f7d-4250-a887-40cacb69eba7\"><rect x=\"0.51\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"fd78d5d8-11ba-411c-b50b-9b5a9a2dd933\" x1=\"57.5\" y1=\"-146.09\" x2=\"58.5\" y2=\"-146.09\" gradientTransform=\"matrix(0, 49.34, 49.34, 0, 7234.02, -2844.1)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#aecaea\"/><stop offset=\"1\" stop-color=\"#c7dcf2\"/></linearGradient><clipPath id=\"bfe41910-2927-4cae-bb45-7a9de0746fd6\"><path d=\"M8.51,18.2A1.92,1.92,0,0,0,7.58,18a1.9,1.9,0,0,0-1.9,1.9s0,.06,0,.08A2.18,2.18,0,0,0,6,24.27H15a2.18,2.18,0,0,0,0-4.36,1.86,1.86,0,0,0-.48.06,3.43,3.43,0,0,0,.05-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"a1deedfc-6700-46bc-9326-7e1a5ec9088c\" x1=\"56.95\" y1=\"-154.02\" x2=\"57.35\" y2=\"-154.02\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3254.42, -1182.75)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4097cb\"/><stop offset=\"0.46\" stop-color=\"#4097cb\"/><stop offset=\"0.49\" stop-color=\"#2a88c2\"/><stop offset=\"1\" stop-color=\"#4097cb\"/></linearGradient><clipPath id=\"a434258f-e726-4759-a348-e9fbf87aadbe\"><rect x=\"0.51\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath><clipPath id=\"fff6c14c-ebcb-43ff-98fa-f3ba704e929a\"><path d=\"M24.45,18.2a1.9,1.9,0,0,0-2.83,1.66s0,.06,0,.08A2.18,2.18,0,0,0,22,24.27h9a2.18,2.18,0,0,0,0-4.36,1.93,1.93,0,0,0-.49.06,3.43,3.43,0,0,0,0-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"b3254dd0-8a5d-4c6b-91e8-02c85f39d2b1\" x1=\"57.55\" y1=\"-153.56\" x2=\"57.95\" y2=\"-153.56\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3260.67, -1195.33)\" xlink:href=\"#a1deedfc-6700-46bc-9326-7e1a5ec9088c\"/><clipPath id=\"b0491421-6c28-4d84-969e-b3c10a878591\"><rect x=\"16.45\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath><clipPath id=\"a49fdbc0-e8fe-4800-a59d-2e8880bd76f6\"><path d=\"M39.59,18.2a2,2,0,0,0-.93-.24,1.9,1.9,0,0,0-1.9,1.9s0,.06,0,.08a2.18,2.18,0,0,0,.35,4.33h8.94a2.18,2.18,0,0,0,0-4.36,2,2,0,0,0-.49.06,2.59,2.59,0,0,0,0-.56,3.14,3.14,0,0,0-6-1.21\" fill=\"none\"/></clipPath><linearGradient id=\"e660e89d-723a-418c-bc29-2f24fb2d77c1\" x1=\"58.12\" y1=\"-153.12\" x2=\"58.52\" y2=\"-153.12\" gradientTransform=\"matrix(0, 21.06, 21.06, 0, 3266.57, -1207.32)\" xlink:href=\"#a1deedfc-6700-46bc-9326-7e1a5ec9088c\"/><clipPath id=\"f738a949-7af7-400f-b077-a7513d9ba0f4\"><rect x=\"31.59\" y=\"14.33\" width=\"20.01\" height=\"15.65\" fill=\"none\"/></clipPath></defs><title>download-file3</title><g id=\"a14bcb13-b419-40d8-8d59-261fd7a95c5d\" data-name=\"レイヤー 2\"><g id=\"b152811e-a297-4713-8349-1b7da41a7018\" data-name=\"レイヤー1\"><g clip-path=\"url(#fc47c137-c2c6-4e1d-9955-a758446e9717)\"><rect x=\"0.51\" y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#759fc8\"/></g><g clip-path=\"url(#f2282422-2f7d-4250-a887-40cacb69eba7)\"><rect x=\"0.51\" width=\"50.59\" height=\"37.5\" fill=\"url(#fd78d5d8-11ba-411c-b50b-9b5a9a2dd933)\"/></g><g clip-path=\"url(#bfe41910-2927-4cae-bb45-7a9de0746fd6)\"><rect x=\"3.29\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(-11.96 16.24) rotate(-52.43)\" fill=\"url(#a1deedfc-6700-46bc-9326-7e1a5ec9088c)\"/></g><g clip-path=\"url(#a434258f-e726-4759-a348-e9fbf87aadbe)\"><polygon points=\"11.33 25.02 11.33 22.98 9.7 22.98 9.7 25.02 8.61 25.02 10.51 26.93 12.41 25.02 11.33 25.02\" fill=\"#f5a725\"/></g><g clip-path=\"url(#fff6c14c-ebcb-43ff-98fa-f3ba704e929a)\"><rect x=\"19.23\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(-5.74 28.88) rotate(-52.43)\" fill=\"url(#b3254dd0-8a5d-4c6b-91e8-02c85f39d2b1)\"/></g><g clip-path=\"url(#b0491421-6c28-4d84-969e-b3c10a878591)\"><polygon points=\"27.27 25.02 27.27 22.98 25.64 22.98 25.64 25.02 24.55 25.02 26.45 26.93 28.36 25.02 27.27 25.02\" fill=\"#f5a725\"/></g><g clip-path=\"url(#a49fdbc0-e8fe-4800-a59d-2e8880bd76f6)\"><rect x=\"34.37\" y=\"12.56\" width=\"14.44\" height=\"15.41\" transform=\"translate(0.17 40.88) rotate(-52.43)\" fill=\"url(#e660e89d-723a-418c-bc29-2f24fb2d77c1)\"/></g><g clip-path=\"url(#f738a949-7af7-400f-b077-a7513d9ba0f4)\"><polygon points=\"42.4 25.02 42.4 22.98 40.77 22.98 40.77 25.02 39.69 25.02 41.59 26.93 43.49 25.02 42.4 25.02\" fill=\"#f5a725\"/></g></g></g></svg>";
643
+ var icon$l = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.96mm\" viewBox=\"0 0 50.59 39.57\"><defs><linearGradient id=\"ae456b20-87fa-4b4f-b171-a8dbd5c3dbf6\" x1=\"25.3\" y1=\"-8.67\" x2=\"25.3\" y2=\"39.13\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#f8ce7b\"/><stop offset=\"1\" stop-color=\"#fade94\"/></linearGradient></defs><title>google-maps</title><g id=\"b66e014b-42e0-4ea9-ba03-3ab3c0771c55\" data-name=\"レイヤー 2\"><g id=\"b39994e8-17e8-400c-a41b-425f36897605\" data-name=\"レイヤー1\"><rect y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#e9a646\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ae456b20-87fa-4b4f-b171-a8dbd5c3dbf6)\"/><path d=\"M33.44,29c0,1.24-3.9,2.24-8.72,2.24S16,30.24,16,29s3.9-2.24,8.71-2.24S33.44,27.76,33.44,29Z\" fill=\"#eabb67\"/><path d=\"M32.19,15.36c0,2.06-1.86,5.53-3,7.09C28,24.2,24.72,29,24.72,29s-2.95-4.72-4.23-6.55c-1.15-1.65-3.23-4.91-3.23-7.09a7.47,7.47,0,0,1,14.93,0Z\" fill=\"#e48e15\" stroke=\"#c1631b\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M27.05,15a2.33,2.33,0,1,1-2.33-2.32A2.32,2.32,0,0,1,27.05,15Z\" fill=\"#4b2111\"/></g></g></svg>";
601
644
 
602
- var template$l = "<div data-bge-container=\"inline:center:wrap\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- download-file --></div>\n\t</div>\n</div>\n";
645
+ var template$l = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- google-maps --></div>\n\t\t</div>\n\t</div>\n</div>\n";
603
646
 
604
647
  const blockTemplate$l = {
605
- name: "download-file3",
648
+ name: "google-maps",
606
649
  template: importItems(template$l),
607
650
  icon: icon$l
608
651
  };
609
652
 
610
- var icon$k = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.96mm\" viewBox=\"0 0 50.59 39.57\"><defs><linearGradient id=\"ae456b20-87fa-4b4f-b171-a8dbd5c3dbf6\" x1=\"25.3\" y1=\"-8.67\" x2=\"25.3\" y2=\"39.13\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#f8ce7b\"/><stop offset=\"1\" stop-color=\"#fade94\"/></linearGradient></defs><title>google-maps</title><g id=\"b66e014b-42e0-4ea9-ba03-3ab3c0771c55\" data-name=\"レイヤー 2\"><g id=\"b39994e8-17e8-400c-a41b-425f36897605\" data-name=\"レイヤー1\"><rect y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#e9a646\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ae456b20-87fa-4b4f-b171-a8dbd5c3dbf6)\"/><path d=\"M33.44,29c0,1.24-3.9,2.24-8.72,2.24S16,30.24,16,29s3.9-2.24,8.71-2.24S33.44,27.76,33.44,29Z\" fill=\"#eabb67\"/><path d=\"M32.19,15.36c0,2.06-1.86,5.53-3,7.09C28,24.2,24.72,29,24.72,29s-2.95-4.72-4.23-6.55c-1.15-1.65-3.23-4.91-3.23-7.09a7.47,7.47,0,0,1,14.93,0Z\" fill=\"#e48e15\" stroke=\"#c1631b\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M27.05,15a2.33,2.33,0,1,1-2.33-2.32A2.32,2.32,0,0,1,27.05,15Z\" fill=\"#4b2111\"/></g></g></svg>";
653
+ var icon$k = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b85f4eba-2cae-4968-861c-1d885106d0a5\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b6e6fc4a-a298-4d6a-ae1f-e3d3394e55ec\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"ad69456d-abad-4bab-92b8-817dd73fdc3e\" x1=\"178.73\" y1=\"-339.45\" x2=\"179.73\" y2=\"-339.45\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -24499.71, 12954.82)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#b8deed\"/><stop offset=\"1\" stop-color=\"#8dcce5\"/></linearGradient></defs><title>hr</title><g id=\"bfd8b054-55a2-4cc9-a151-4d78938e5e97\" data-name=\"レイヤー 2\"><g id=\"bb0c0355-99a0-433f-a5ab-db3c13c14c9a\" data-name=\"レイヤー1\"><g clip-path=\"url(#b85f4eba-2cae-4968-861c-1d885106d0a5)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#7bbbcf\"/></g><g clip-path=\"url(#b6e6fc4a-a298-4d6a-ae1f-e3d3394e55ec)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#ad69456d-abad-4bab-92b8-817dd73fdc3e)\"/></g><g clip-path=\"url(#b85f4eba-2cae-4968-861c-1d885106d0a5)\"><path d=\"M40.84,21.41c0,.31-.14.56-1.7.56h-28c-1.57,0-1.42-.25-1.42-.56V19.68c0-.31-.15-.56,1.42-.56h28c1.56,0,1.7.25,1.7.56Z\" fill=\"#1fa8cc\"/><path d=\"M40.84,20.39c0,.31.15.56-1.42.56H11.17c-1.57,0-1.42-.25-1.42-.56V19.31c0-.31-.15-.56,1.42-.56H39.42c1.57,0,1.42.25,1.42.56Z\" fill=\"#55bcd8\"/></g></g></g></svg>";
611
654
 
612
- var template$k = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- google-maps --></div>\n\t</div>\n</div>\n";
655
+ var template$k = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- hr --></div>\n\t\t</div>\n\t</div>\n</div>\n";
613
656
 
614
657
  const blockTemplate$k = {
615
- name: "google-maps",
658
+ name: "hr",
616
659
  template: importItems(template$k),
617
660
  icon: icon$k
618
661
  };
619
662
 
620
- var icon$j = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"b85f4eba-2cae-4968-861c-1d885106d0a5\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b6e6fc4a-a298-4d6a-ae1f-e3d3394e55ec\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"ad69456d-abad-4bab-92b8-817dd73fdc3e\" x1=\"178.73\" y1=\"-339.45\" x2=\"179.73\" y2=\"-339.45\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -24499.71, 12954.82)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#b8deed\"/><stop offset=\"1\" stop-color=\"#8dcce5\"/></linearGradient></defs><title>hr</title><g id=\"bfd8b054-55a2-4cc9-a151-4d78938e5e97\" data-name=\"レイヤー 2\"><g id=\"bb0c0355-99a0-433f-a5ab-db3c13c14c9a\" data-name=\"レイヤー1\"><g clip-path=\"url(#b85f4eba-2cae-4968-861c-1d885106d0a5)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#7bbbcf\"/></g><g clip-path=\"url(#b6e6fc4a-a298-4d6a-ae1f-e3d3394e55ec)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#ad69456d-abad-4bab-92b8-817dd73fdc3e)\"/></g><g clip-path=\"url(#b85f4eba-2cae-4968-861c-1d885106d0a5)\"><path d=\"M40.84,21.41c0,.31-.14.56-1.7.56h-28c-1.57,0-1.42-.25-1.42-.56V19.68c0-.31-.15-.56,1.42-.56h28c1.56,0,1.7.25,1.7.56Z\" fill=\"#1fa8cc\"/><path d=\"M40.84,20.39c0,.31.15.56-1.42.56H11.17c-1.57,0-1.42-.25-1.42-.56V19.31c0-.31-.15-.56,1.42-.56H39.42c1.57,0,1.42.25,1.42.56Z\" fill=\"#55bcd8\"/></g></g></g></svg>";
663
+ var icon$j = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"a14548ce-d842-4fd8-917c-74fc065283e0\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"a760b4d9-d8b5-4ed5-a648-35d410384b4b\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"f1b0e6a1-76a5-46d8-9e26-0d5144fc95c2\" x1=\"187.4\" y1=\"214.88\" x2=\"188.39\" y2=\"214.88\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 15550.6, 13581.17)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image1</title><g id=\"f1bc02b5-2ece-4cc1-abc8-0695f8a7f32b\" data-name=\"レイヤー 2\"><g id=\"ee57bbe4-f1e8-4009-96f2-c3c0f25e8376\" data-name=\"レイヤー1\"><g clip-path=\"url(#a14548ce-d842-4fd8-917c-74fc065283e0)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/></g><g clip-path=\"url(#a760b4d9-d8b5-4ed5-a648-35d410384b4b)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#f1b0e6a1-76a5-46d8-9e26-0d5144fc95c2)\"/></g><g clip-path=\"url(#a14548ce-d842-4fd8-917c-74fc065283e0)\"><rect x=\"9.75\" y=\"12.22\" width=\"31.09\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"40.84 26.63 9.75 26.63 40.84 12.22 40.84 26.63\" fill=\"#649432\"/></g></g></g></svg>";
621
664
 
622
- var template$j = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-item><!-- hr --></div>\n</div>\n";
665
+ var template$j = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t</div>\n</div>\n";
623
666
 
624
667
  const blockTemplate$j = {
625
- name: "hr",
668
+ name: "image",
626
669
  template: importItems(template$j),
627
670
  icon: icon$j
628
671
  };
629
672
 
630
- var icon$i = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><clipPath id=\"a14548ce-d842-4fd8-917c-74fc065283e0\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"a760b4d9-d8b5-4ed5-a648-35d410384b4b\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"none\"/></clipPath><linearGradient id=\"f1b0e6a1-76a5-46d8-9e26-0d5144fc95c2\" x1=\"187.4\" y1=\"214.88\" x2=\"188.39\" y2=\"214.88\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 15550.6, 13581.17)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image1</title><g id=\"f1bc02b5-2ece-4cc1-abc8-0695f8a7f32b\" data-name=\"レイヤー 2\"><g id=\"ee57bbe4-f1e8-4009-96f2-c3c0f25e8376\" data-name=\"レイヤー1\"><g clip-path=\"url(#a14548ce-d842-4fd8-917c-74fc065283e0)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/></g><g clip-path=\"url(#a760b4d9-d8b5-4ed5-a648-35d410384b4b)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#f1b0e6a1-76a5-46d8-9e26-0d5144fc95c2)\"/></g><g clip-path=\"url(#a14548ce-d842-4fd8-917c-74fc065283e0)\"><rect x=\"9.75\" y=\"12.22\" width=\"31.09\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"40.84 26.63 9.75 26.63 40.84 12.22 40.84 26.63\" fill=\"#649432\"/></g></g></g></svg>";
673
+ var icon$i = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a13e475c-bab2-4f76-88ce-779673ae02cb\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"ae68d89e-846f-4586-bb2c-b01e64f09622\"><rect id=\"b4f97c07-7867-4d0e-927c-7fc5c2f9dfc0\" data-name=\"SVGID\" width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b3576c64-7056-4a6a-9306-b9fca0303334\"><rect id=\"ae6ce2d9-c572-4395-955f-8cd04a0d7672\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a13e475c-bab2-4f76-88ce-779673ae02cb)\"/></clipPath><linearGradient id=\"e1d14a62-69c9-42a0-b381-17bf4a4c7e9a\" x1=\"188.86\" y1=\"1.92\" x2=\"189.86\" y2=\"1.92\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 163.95, 13686.67)\" xlink:href=\"#a13e475c-bab2-4f76-88ce-779673ae02cb\"/></defs><title>image-text2</title><g id=\"a4c5e2eb-5b65-4b99-ba08-1cf0109790e7\" data-name=\"レイヤー 2\"><g id=\"a3092b36-f761-4337-9a42-4ee4608e9277\" data-name=\"レイヤー1\"><g clip-path=\"url(#ae68d89e-846f-4586-bb2c-b01e64f09622)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect id=\"f3d9adbe-e73a-44f5-8cab-0287ece41518\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a13e475c-bab2-4f76-88ce-779673ae02cb)\"/><g clip-path=\"url(#b3576c64-7056-4a6a-9306-b9fca0303334)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#e1d14a62-69c9-42a0-b381-17bf4a4c7e9a)\"/></g><rect x=\"8.96\" y=\"8.39\" width=\"14.69\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"23.65 17.79 8.96 17.79 23.65 8.39 23.65 17.79\" fill=\"#ef7c1b\"/><rect x=\"28.14\" y=\"8.39\" width=\"14.69\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"42.83 17.79 28.14 17.79 42.83 8.39 42.83 17.79\" fill=\"#ef7c1b\"/><line x1=\"9.07\" y1=\"22.64\" x2=\"23.22\" y2=\"22.64\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"22.64\" x2=\"42.56\" y2=\"22.64\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"9.07\" y1=\"26.47\" x2=\"23.22\" y2=\"26.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"26.47\" x2=\"42.56\" y2=\"26.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"9.07\" y1=\"30.47\" x2=\"23.22\" y2=\"30.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"30.47\" x2=\"42.56\" y2=\"30.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
631
674
 
632
- var template$i = "<div data-bge-container=\"grid\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n</div>\n";
675
+ var template$i = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
633
676
 
634
677
  const blockTemplate$i = {
635
- name: "image",
678
+ name: "image-text2",
636
679
  template: importItems(template$i),
637
680
  icon: icon$i
638
681
  };
639
682
 
640
- var icon$h = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a13e475c-bab2-4f76-88ce-779673ae02cb\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"ae68d89e-846f-4586-bb2c-b01e64f09622\"><rect id=\"b4f97c07-7867-4d0e-927c-7fc5c2f9dfc0\" data-name=\"SVGID\" width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b3576c64-7056-4a6a-9306-b9fca0303334\"><rect id=\"ae6ce2d9-c572-4395-955f-8cd04a0d7672\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a13e475c-bab2-4f76-88ce-779673ae02cb)\"/></clipPath><linearGradient id=\"e1d14a62-69c9-42a0-b381-17bf4a4c7e9a\" x1=\"188.86\" y1=\"1.92\" x2=\"189.86\" y2=\"1.92\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 163.95, 13686.67)\" xlink:href=\"#a13e475c-bab2-4f76-88ce-779673ae02cb\"/></defs><title>image-text2</title><g id=\"a4c5e2eb-5b65-4b99-ba08-1cf0109790e7\" data-name=\"レイヤー 2\"><g id=\"a3092b36-f761-4337-9a42-4ee4608e9277\" data-name=\"レイヤー1\"><g clip-path=\"url(#ae68d89e-846f-4586-bb2c-b01e64f09622)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect id=\"f3d9adbe-e73a-44f5-8cab-0287ece41518\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a13e475c-bab2-4f76-88ce-779673ae02cb)\"/><g clip-path=\"url(#b3576c64-7056-4a6a-9306-b9fca0303334)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#e1d14a62-69c9-42a0-b381-17bf4a4c7e9a)\"/></g><rect x=\"8.96\" y=\"8.39\" width=\"14.69\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"23.65 17.79 8.96 17.79 23.65 8.39 23.65 17.79\" fill=\"#ef7c1b\"/><rect x=\"28.14\" y=\"8.39\" width=\"14.69\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"42.83 17.79 28.14 17.79 42.83 8.39 42.83 17.79\" fill=\"#ef7c1b\"/><line x1=\"9.07\" y1=\"22.64\" x2=\"23.22\" y2=\"22.64\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"22.64\" x2=\"42.56\" y2=\"22.64\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"9.07\" y1=\"26.47\" x2=\"23.22\" y2=\"26.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"26.47\" x2=\"42.56\" y2=\"26.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"9.07\" y1=\"30.47\" x2=\"23.22\" y2=\"30.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.41\" y1=\"30.47\" x2=\"42.56\" y2=\"30.47\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
683
+ var icon$h = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b3d7635b-336a-46da-aed2-cf9612dae13e\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"ed9488c5-3778-466e-9222-8a593da8c740\"><rect id=\"aef6018d-3879-474f-b2f3-28e49b30ba73\" data-name=\"SVGID\" width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"be67245b-d108-4df5-a335-be094bd98e34\"><rect id=\"b1946370-457a-47bc-9b88-3f18731c439d\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b3d7635b-336a-46da-aed2-cf9612dae13e)\"/></clipPath><linearGradient id=\"e21256c9-1365-4a22-a5f8-0d944cde7ce0\" x1=\"124.56\" y1=\"1.86\" x2=\"125.56\" y2=\"1.86\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 159.95, 9041.72)\" xlink:href=\"#b3d7635b-336a-46da-aed2-cf9612dae13e\"/></defs><title>image-text3</title><g id=\"b571a902-29a7-4485-a7cf-39843b7c6314\" data-name=\"レイヤー 2\"><g id=\"bff51ce8-e1e6-4f3d-b598-f290df113ca3\" data-name=\"レイヤー1\"><g clip-path=\"url(#ed9488c5-3778-466e-9222-8a593da8c740)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect id=\"f82b2be3-6cd6-460a-a1c3-8828e4d4e846\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b3d7635b-336a-46da-aed2-cf9612dae13e)\"/><g clip-path=\"url(#be67245b-d108-4df5-a335-be094bd98e34)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#e21256c9-1365-4a22-a5f8-0d944cde7ce0)\"/></g><rect x=\"5.42\" y=\"8.61\" width=\"10.81\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"16.24 18.02 5.42 18.02 16.24 8.61 16.24 18.02\" fill=\"#ef7c1b\"/><line x1=\"5.5\" y1=\"22.86\" x2=\"15.92\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.5\" y1=\"26.7\" x2=\"15.92\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.5\" y1=\"30.7\" x2=\"15.92\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"19.89\" y=\"8.5\" width=\"10.81\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"30.71 17.91 19.89 17.91 30.71 8.5 30.71 17.91\" fill=\"#ef7c1b\"/><line x1=\"19.97\" y1=\"22.75\" x2=\"30.39\" y2=\"22.75\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"19.97\" y1=\"26.59\" x2=\"30.39\" y2=\"26.59\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"19.97\" y1=\"30.59\" x2=\"30.39\" y2=\"30.59\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"34.36\" y=\"8.72\" width=\"10.81\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"45.17 18.13 34.36 18.13 45.17 8.72 45.17 18.13\" fill=\"#ef7c1b\"/><line x1=\"34.44\" y1=\"22.97\" x2=\"44.86\" y2=\"22.97\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"34.44\" y1=\"26.81\" x2=\"44.86\" y2=\"26.81\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"34.44\" y1=\"30.81\" x2=\"44.86\" y2=\"30.81\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
641
684
 
642
- var template$h = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
685
+ var template$h = "<div data-bge-container=\"grid:3\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
643
686
 
644
687
  const blockTemplate$h = {
645
- name: "image-text2",
688
+ name: "image-text3",
646
689
  template: importItems(template$h),
647
690
  icon: icon$h
648
691
  };
649
692
 
650
- var icon$g = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b3d7635b-336a-46da-aed2-cf9612dae13e\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"ed9488c5-3778-466e-9222-8a593da8c740\"><rect id=\"aef6018d-3879-474f-b2f3-28e49b30ba73\" data-name=\"SVGID\" width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"be67245b-d108-4df5-a335-be094bd98e34\"><rect id=\"b1946370-457a-47bc-9b88-3f18731c439d\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b3d7635b-336a-46da-aed2-cf9612dae13e)\"/></clipPath><linearGradient id=\"e21256c9-1365-4a22-a5f8-0d944cde7ce0\" x1=\"124.56\" y1=\"1.86\" x2=\"125.56\" y2=\"1.86\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 159.95, 9041.72)\" xlink:href=\"#b3d7635b-336a-46da-aed2-cf9612dae13e\"/></defs><title>image-text3</title><g id=\"b571a902-29a7-4485-a7cf-39843b7c6314\" data-name=\"レイヤー 2\"><g id=\"bff51ce8-e1e6-4f3d-b598-f290df113ca3\" data-name=\"レイヤー1\"><g clip-path=\"url(#ed9488c5-3778-466e-9222-8a593da8c740)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect id=\"f82b2be3-6cd6-460a-a1c3-8828e4d4e846\" data-name=\"SVGID\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b3d7635b-336a-46da-aed2-cf9612dae13e)\"/><g clip-path=\"url(#be67245b-d108-4df5-a335-be094bd98e34)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#e21256c9-1365-4a22-a5f8-0d944cde7ce0)\"/></g><rect x=\"5.42\" y=\"8.61\" width=\"10.81\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"16.24 18.02 5.42 18.02 16.24 8.61 16.24 18.02\" fill=\"#ef7c1b\"/><line x1=\"5.5\" y1=\"22.86\" x2=\"15.92\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.5\" y1=\"26.7\" x2=\"15.92\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.5\" y1=\"30.7\" x2=\"15.92\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"19.89\" y=\"8.5\" width=\"10.81\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"30.71 17.91 19.89 17.91 30.71 8.5 30.71 17.91\" fill=\"#ef7c1b\"/><line x1=\"19.97\" y1=\"22.75\" x2=\"30.39\" y2=\"22.75\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"19.97\" y1=\"26.59\" x2=\"30.39\" y2=\"26.59\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"19.97\" y1=\"30.59\" x2=\"30.39\" y2=\"30.59\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"34.36\" y=\"8.72\" width=\"10.81\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"45.17 18.13 34.36 18.13 45.17 8.72 45.17 18.13\" fill=\"#ef7c1b\"/><line x1=\"34.44\" y1=\"22.97\" x2=\"44.86\" y2=\"22.97\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"34.44\" y1=\"26.81\" x2=\"44.86\" y2=\"26.81\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"34.44\" y1=\"30.81\" x2=\"44.86\" y2=\"30.81\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
693
+ var icon$g = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b4cf61b9-f2cd-49ce-a867-5f8d369c1156\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"a32f8230-a8ad-4b84-be59-3e2bc4f2cb02\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"efbf5247-4c31-4a7f-bccd-4a4094ee5901\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b4cf61b9-f2cd-49ce-a867-5f8d369c1156)\"/></clipPath><linearGradient id=\"b94b4e58-4701-4c56-9961-301112aafc1a\" x1=\"57.58\" y1=\"1.46\" x2=\"58.58\" y2=\"1.46\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 130.91, 4202.32)\" xlink:href=\"#b4cf61b9-f2cd-49ce-a867-5f8d369c1156\"/></defs><title>image-text4</title><g id=\"aad57eb1-9fca-41d0-b938-9d26383317c5\" data-name=\"レイヤー 2\"><g id=\"ef573272-e2dd-4fdb-9979-76c56500efb6\" data-name=\"レイヤー1\"><g clip-path=\"url(#a32f8230-a8ad-4b84-be59-3e2bc4f2cb02)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b4cf61b9-f2cd-49ce-a867-5f8d369c1156)\"/><g clip-path=\"url(#efbf5247-4c31-4a7f-bccd-4a4094ee5901)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#b94b4e58-4701-4c56-9961-301112aafc1a)\"/></g><rect x=\"5.42\" y=\"8.61\" width=\"7.87\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"13.29 18.02 5.42 18.02 13.29 8.61 13.29 18.02\" fill=\"#ef7c1b\"/><line x1=\"5.48\" y1=\"22.86\" x2=\"13.06\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.48\" y1=\"26.7\" x2=\"13.06\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.48\" y1=\"30.7\" x2=\"13.06\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"15.94\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"23.82 18.02 15.94 18.02 23.82 8.61 23.82 18.02\" fill=\"#ef7c1b\"/><line x1=\"16\" y1=\"22.86\" x2=\"23.59\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"16\" y1=\"26.7\" x2=\"23.59\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"16\" y1=\"30.7\" x2=\"23.59\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"26.47\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"34.34 18.02 26.46 18.02 34.34 8.61 34.34 18.02\" fill=\"#ef7c1b\"/><line x1=\"26.53\" y1=\"22.86\" x2=\"34.11\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"26.53\" y1=\"26.7\" x2=\"34.11\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"26.53\" y1=\"30.7\" x2=\"34.11\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"36.99\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"44.86 18.02 36.99 18.02 44.86 8.61 44.86 18.02\" fill=\"#ef7c1b\"/><line x1=\"37.05\" y1=\"22.86\" x2=\"44.63\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"37.05\" y1=\"26.7\" x2=\"44.63\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"37.05\" y1=\"30.7\" x2=\"44.63\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
651
694
 
652
- var template$g = "<div data-bge-container=\"grid:3\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
695
+ var template$g = "<div data-bge-container=\"grid:4\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
653
696
 
654
697
  const blockTemplate$g = {
655
- name: "image-text3",
698
+ name: "image-text4",
656
699
  template: importItems(template$g),
657
700
  icon: icon$g
658
701
  };
659
702
 
660
- var icon$f = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b4cf61b9-f2cd-49ce-a867-5f8d369c1156\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"a32f8230-a8ad-4b84-be59-3e2bc4f2cb02\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"efbf5247-4c31-4a7f-bccd-4a4094ee5901\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b4cf61b9-f2cd-49ce-a867-5f8d369c1156)\"/></clipPath><linearGradient id=\"b94b4e58-4701-4c56-9961-301112aafc1a\" x1=\"57.58\" y1=\"1.46\" x2=\"58.58\" y2=\"1.46\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, 130.91, 4202.32)\" xlink:href=\"#b4cf61b9-f2cd-49ce-a867-5f8d369c1156\"/></defs><title>image-text4</title><g id=\"aad57eb1-9fca-41d0-b938-9d26383317c5\" data-name=\"レイヤー 2\"><g id=\"ef573272-e2dd-4fdb-9979-76c56500efb6\" data-name=\"レイヤー1\"><g clip-path=\"url(#a32f8230-a8ad-4b84-be59-3e2bc4f2cb02)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b4cf61b9-f2cd-49ce-a867-5f8d369c1156)\"/><g clip-path=\"url(#efbf5247-4c31-4a7f-bccd-4a4094ee5901)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#b94b4e58-4701-4c56-9961-301112aafc1a)\"/></g><rect x=\"5.42\" y=\"8.61\" width=\"7.87\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"13.29 18.02 5.42 18.02 13.29 8.61 13.29 18.02\" fill=\"#ef7c1b\"/><line x1=\"5.48\" y1=\"22.86\" x2=\"13.06\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.48\" y1=\"26.7\" x2=\"13.06\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"5.48\" y1=\"30.7\" x2=\"13.06\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"15.94\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"23.82 18.02 15.94 18.02 23.82 8.61 23.82 18.02\" fill=\"#ef7c1b\"/><line x1=\"16\" y1=\"22.86\" x2=\"23.59\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"16\" y1=\"26.7\" x2=\"23.59\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"16\" y1=\"30.7\" x2=\"23.59\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"26.47\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"34.34 18.02 26.46 18.02 34.34 8.61 34.34 18.02\" fill=\"#ef7c1b\"/><line x1=\"26.53\" y1=\"22.86\" x2=\"34.11\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"26.53\" y1=\"26.7\" x2=\"34.11\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"26.53\" y1=\"30.7\" x2=\"34.11\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"36.99\" y=\"8.61\" width=\"7.87\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"44.86 18.02 36.99 18.02 44.86 8.61 44.86 18.02\" fill=\"#ef7c1b\"/><line x1=\"37.05\" y1=\"22.86\" x2=\"44.63\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"37.05\" y1=\"26.7\" x2=\"44.63\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"37.05\" y1=\"30.7\" x2=\"44.63\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
703
+ var icon$f = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"afc1c886-e435-484e-aba3-c8984819c5fa\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"b7083a6f-9b2e-4d64-9eba-c12cea48c5a1\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b32d3dc8-1680-4a0a-bd22-e5d5a9eae871\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#afc1c886-e435-484e-aba3-c8984819c5fa)\"/></clipPath><linearGradient id=\"bc4b7dcc-075a-4cd0-9a0c-f0d98d36f0bf\" x1=\"-7.53\" y1=\"-2.41\" x2=\"-6.53\" y2=\"-2.41\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -148.74, -502.04)\" xlink:href=\"#afc1c886-e435-484e-aba3-c8984819c5fa\"/></defs><title>image-text5</title><g id=\"bbc914e4-9736-4823-acad-792b68f7a4dd\" data-name=\"レイヤー 2\"><g id=\"aba4fae2-89b5-4f3d-82b8-4d0808f83c77\" data-name=\"レイヤー1\"><g clip-path=\"url(#b7083a6f-9b2e-4d64-9eba-c12cea48c5a1)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#afc1c886-e435-484e-aba3-c8984819c5fa)\"/><g clip-path=\"url(#b32d3dc8-1680-4a0a-bd22-e5d5a9eae871)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#bc4b7dcc-075a-4cd0-9a0c-f0d98d36f0bf)\"/></g><rect x=\"3.42\" y=\"8.61\" width=\"6.85\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"10.27 18.02 3.42 18.02 10.27 8.61 10.27 18.02\" fill=\"#ef7c1b\"/><line x1=\"3.47\" y1=\"22.86\" x2=\"10.07\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"3.47\" y1=\"26.7\" x2=\"10.07\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"3.47\" y1=\"30.7\" x2=\"10.07\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"12.58\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"19.43 18.02 12.58 18.02 19.43 8.61 19.43 18.02\" fill=\"#ef7c1b\"/><line x1=\"12.63\" y1=\"22.86\" x2=\"19.23\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"12.63\" y1=\"26.7\" x2=\"19.23\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"12.63\" y1=\"30.7\" x2=\"19.23\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"21.73\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"28.58 18.02 21.73 18.02 28.58 8.61 28.58 18.02\" fill=\"#ef7c1b\"/><line x1=\"21.78\" y1=\"22.86\" x2=\"28.38\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"21.78\" y1=\"26.7\" x2=\"28.38\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"21.78\" y1=\"30.7\" x2=\"28.38\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"30.88\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"37.73 18.02 30.88 18.02 37.73 8.61 37.73 18.02\" fill=\"#ef7c1b\"/><line x1=\"30.94\" y1=\"22.86\" x2=\"37.53\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"30.94\" y1=\"26.7\" x2=\"37.53\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"30.94\" y1=\"30.7\" x2=\"37.53\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"40.13\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"46.98 18.02 40.13 18.02 46.98 8.61 46.98 18.02\" fill=\"#ef7c1b\"/><line x1=\"40.18\" y1=\"22.86\" x2=\"46.78\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.18\" y1=\"26.7\" x2=\"46.78\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.18\" y1=\"30.7\" x2=\"46.78\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
661
704
 
662
- var template$f = "<div data-bge-container=\"grid:4\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
705
+ var template$f = "<div data-bge-container=\"grid:5\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
663
706
 
664
707
  const blockTemplate$f = {
665
- name: "image-text4",
708
+ name: "image-text5",
666
709
  template: importItems(template$f),
667
710
  icon: icon$f
668
711
  };
669
712
 
670
- var icon$e = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"afc1c886-e435-484e-aba3-c8984819c5fa\" y1=\"18.75\" x2=\"50.59\" y2=\"18.75\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient><clipPath id=\"b7083a6f-9b2e-4d64-9eba-c12cea48c5a1\"><rect width=\"50.59\" height=\"39.31\" fill=\"none\"/></clipPath><clipPath id=\"b32d3dc8-1680-4a0a-bd22-e5d5a9eae871\"><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#afc1c886-e435-484e-aba3-c8984819c5fa)\"/></clipPath><linearGradient id=\"bc4b7dcc-075a-4cd0-9a0c-f0d98d36f0bf\" x1=\"-7.53\" y1=\"-2.41\" x2=\"-6.53\" y2=\"-2.41\" gradientTransform=\"matrix(0, -72.25, -72.25, 0, -148.74, -502.04)\" xlink:href=\"#afc1c886-e435-484e-aba3-c8984819c5fa\"/></defs><title>image-text5</title><g id=\"bbc914e4-9736-4823-acad-792b68f7a4dd\" data-name=\"レイヤー 2\"><g id=\"aba4fae2-89b5-4f3d-82b8-4d0808f83c77\" data-name=\"レイヤー1\"><g clip-path=\"url(#b7083a6f-9b2e-4d64-9eba-c12cea48c5a1)\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/></g><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#afc1c886-e435-484e-aba3-c8984819c5fa)\"/><g clip-path=\"url(#b32d3dc8-1680-4a0a-bd22-e5d5a9eae871)\"><rect width=\"50.59\" height=\"37.5\" fill=\"url(#bc4b7dcc-075a-4cd0-9a0c-f0d98d36f0bf)\"/></g><rect x=\"3.42\" y=\"8.61\" width=\"6.85\" height=\"9.41\" fill=\"#f49e16\"/><polygon points=\"10.27 18.02 3.42 18.02 10.27 8.61 10.27 18.02\" fill=\"#ef7c1b\"/><line x1=\"3.47\" y1=\"22.86\" x2=\"10.07\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"3.47\" y1=\"26.7\" x2=\"10.07\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"3.47\" y1=\"30.7\" x2=\"10.07\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"12.58\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"19.43 18.02 12.58 18.02 19.43 8.61 19.43 18.02\" fill=\"#ef7c1b\"/><line x1=\"12.63\" y1=\"22.86\" x2=\"19.23\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"12.63\" y1=\"26.7\" x2=\"19.23\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"12.63\" y1=\"30.7\" x2=\"19.23\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"21.73\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"28.58 18.02 21.73 18.02 28.58 8.61 28.58 18.02\" fill=\"#ef7c1b\"/><line x1=\"21.78\" y1=\"22.86\" x2=\"28.38\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"21.78\" y1=\"26.7\" x2=\"28.38\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"21.78\" y1=\"30.7\" x2=\"28.38\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"30.88\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"37.73 18.02 30.88 18.02 37.73 8.61 37.73 18.02\" fill=\"#ef7c1b\"/><line x1=\"30.94\" y1=\"22.86\" x2=\"37.53\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"30.94\" y1=\"26.7\" x2=\"37.53\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"30.94\" y1=\"30.7\" x2=\"37.53\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"40.13\" y=\"8.61\" width=\"6.85\" height=\"9.4\" fill=\"#f49e16\"/><polygon points=\"46.98 18.02 40.13 18.02 46.98 8.61 46.98 18.02\" fill=\"#ef7c1b\"/><line x1=\"40.18\" y1=\"22.86\" x2=\"46.78\" y2=\"22.86\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.18\" y1=\"26.7\" x2=\"46.78\" y2=\"26.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.18\" y1=\"30.7\" x2=\"46.78\" y2=\"30.7\" fill=\"none\" stroke=\"#f5b618\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
713
+ var icon$e = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a69bbfa8-6885-43d5-b254-8182049f4589\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image2</title><g id=\"b2700d76-3f17-4a5c-9bc0-079d3534dc2d\" data-name=\"レイヤー 2\"><g id=\"a90bf1f4-9d1d-425f-a456-c6304835570e\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a69bbfa8-6885-43d5-b254-8182049f4589)\"/><rect x=\"8.96\" y=\"12.22\" width=\"14.69\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"23.65 26.63 8.96 26.63 23.65 12.22 23.65 26.63\" fill=\"#649432\"/><rect x=\"28.14\" y=\"12.22\" width=\"14.69\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"42.83 26.63 28.14 26.63 42.83 12.22 42.83 26.63\" fill=\"#649432\"/></g></g></svg>";
671
714
 
672
- var template$e = "<div data-bge-container=\"grid:5\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
715
+ var template$e = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t</div>\n</div>\n";
673
716
 
674
717
  const blockTemplate$e = {
675
- name: "image-text5",
718
+ name: "image2",
676
719
  template: importItems(template$e),
677
720
  icon: icon$e
678
721
  };
679
722
 
680
- var icon$d = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a69bbfa8-6885-43d5-b254-8182049f4589\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image2</title><g id=\"b2700d76-3f17-4a5c-9bc0-079d3534dc2d\" data-name=\"レイヤー 2\"><g id=\"a90bf1f4-9d1d-425f-a456-c6304835570e\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a69bbfa8-6885-43d5-b254-8182049f4589)\"/><rect x=\"8.96\" y=\"12.22\" width=\"14.69\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"23.65 26.63 8.96 26.63 23.65 12.22 23.65 26.63\" fill=\"#649432\"/><rect x=\"28.14\" y=\"12.22\" width=\"14.69\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"42.83 26.63 28.14 26.63 42.83 12.22 42.83 26.63\" fill=\"#649432\"/></g></g></svg>";
723
+ var icon$d = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"e81c0481-c03c-4657-928e-93d05f9c6178\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image3</title><g id=\"b24ba5fb-a0d2-45a7-838d-0c7065e8d8a5\" data-name=\"レイヤー 2\"><g id=\"b516c388-dc5d-4637-9a04-3a48fd227d5f\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#e81c0481-c03c-4657-928e-93d05f9c6178)\"/><rect x=\"5.58\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"19.74\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"33.91\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"16.65 26.63 5.58 26.63 16.65 12.22 16.65 26.63\" fill=\"#649432\"/><polygon points=\"30.82 26.63 19.74 26.63 30.82 12.22 30.82 26.63\" fill=\"#649432\"/><polygon points=\"44.98 26.63 33.91 26.63 44.98 12.22 44.98 26.63\" fill=\"#649432\"/></g></g></svg>";
681
724
 
682
- var template$d = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n</div>\n";
725
+ var template$d = "<div data-bge-container=\"grid:3\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t</div>\n</div>\n";
683
726
 
684
727
  const blockTemplate$d = {
685
- name: "image2",
728
+ name: "image3",
686
729
  template: importItems(template$d),
687
730
  icon: icon$d
688
731
  };
689
732
 
690
- var icon$c = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"e81c0481-c03c-4657-928e-93d05f9c6178\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image3</title><g id=\"b24ba5fb-a0d2-45a7-838d-0c7065e8d8a5\" data-name=\"レイヤー 2\"><g id=\"b516c388-dc5d-4637-9a04-3a48fd227d5f\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#e81c0481-c03c-4657-928e-93d05f9c6178)\"/><rect x=\"5.58\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"19.74\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"33.91\" y=\"12.22\" width=\"11.08\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"16.65 26.63 5.58 26.63 16.65 12.22 16.65 26.63\" fill=\"#649432\"/><polygon points=\"30.82 26.63 19.74 26.63 30.82 12.22 30.82 26.63\" fill=\"#649432\"/><polygon points=\"44.98 26.63 33.91 26.63 44.98 12.22 44.98 26.63\" fill=\"#649432\"/></g></g></svg>";
733
+ var icon$c = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a9e1e99a-d48b-467c-84e1-bdced3515439\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image4</title><g id=\"f0cc911f-7c12-4b14-8f46-1addd9966920\" data-name=\"レイヤー 2\"><g id=\"a6ffb343-0125-41bc-9552-4ed6f8831b95\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a9e1e99a-d48b-467c-84e1-bdced3515439)\"/><rect x=\"4.65\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"15.57\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"26.49\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"37.41\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"13.18 26.63 4.65 26.63 13.18 12.22 13.18 26.63\" fill=\"#649432\"/><polygon points=\"24.11 26.63 15.57 26.63 24.11 12.22 24.11 26.63\" fill=\"#649432\"/><polygon points=\"35.02 26.63 26.49 26.63 35.02 12.22 35.02 26.63\" fill=\"#649432\"/><polygon points=\"45.95 26.63 37.41 26.63 45.95 12.22 45.95 26.63\" fill=\"#649432\"/></g></g></svg>";
691
734
 
692
- var template$c = "<div data-bge-container=\"grid:3\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n</div>\n";
735
+ var template$c = "<div data-bge-container=\"grid:4\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t</div>\n</div>\n";
693
736
 
694
737
  const blockTemplate$c = {
695
- name: "image3",
738
+ name: "image4",
696
739
  template: importItems(template$c),
697
740
  icon: icon$c
698
741
  };
699
742
 
700
- var icon$b = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"a9e1e99a-d48b-467c-84e1-bdced3515439\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image4</title><g id=\"f0cc911f-7c12-4b14-8f46-1addd9966920\" data-name=\"レイヤー 2\"><g id=\"a6ffb343-0125-41bc-9552-4ed6f8831b95\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a9e1e99a-d48b-467c-84e1-bdced3515439)\"/><rect x=\"4.65\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"15.57\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"26.49\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"37.41\" y=\"12.22\" width=\"8.53\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"13.18 26.63 4.65 26.63 13.18 12.22 13.18 26.63\" fill=\"#649432\"/><polygon points=\"24.11 26.63 15.57 26.63 24.11 12.22 24.11 26.63\" fill=\"#649432\"/><polygon points=\"35.02 26.63 26.49 26.63 35.02 12.22 35.02 26.63\" fill=\"#649432\"/><polygon points=\"45.95 26.63 37.41 26.63 45.95 12.22 45.95 26.63\" fill=\"#649432\"/></g></g></svg>";
743
+ var icon$b = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b1320079-38fa-401d-9ebf-291981369357\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image5</title><g id=\"be550575-836a-48c2-8654-7b0a40cc90e3\" data-name=\"レイヤー 2\"><g id=\"aa8efe02-0ecd-40bd-8511-c2d557404a19\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b1320079-38fa-401d-9ebf-291981369357)\"/><rect x=\"4.83\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"13.46\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"22.09\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"30.72\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"39.35\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"11.57 26.63 4.83 26.63 11.57 12.22 11.57 26.63\" fill=\"#649432\"/><polygon points=\"20.2 26.63 13.46 26.63 20.2 12.22 20.2 26.63\" fill=\"#649432\"/><polygon points=\"28.83 26.63 22.09 26.63 28.83 12.22 28.83 26.63\" fill=\"#649432\"/><polygon points=\"37.46 26.63 30.72 26.63 37.46 12.22 37.46 26.63\" fill=\"#649432\"/><polygon points=\"46.09 26.63 39.35 26.63 46.09 12.22 46.09 26.63\" fill=\"#649432\"/></g></g></svg>";
701
744
 
702
- var template$b = "<div data-bge-container=\"grid:4\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n</div>\n";
745
+ var template$b = "<div data-bge-container=\"grid:5\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t</div>\n\t</div>\n</div>\n";
703
746
 
704
747
  const blockTemplate$b = {
705
- name: "image4",
748
+ name: "image5",
706
749
  template: importItems(template$b),
707
750
  icon: icon$b
708
751
  };
709
752
 
710
- var icon$a = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.87mm\" viewBox=\"0 0 50.59 39.31\"><defs><linearGradient id=\"b1320079-38fa-401d-9ebf-291981369357\" x1=\"25.3\" y1=\"41.9\" x2=\"25.3\" y2=\"-30.35\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>image5</title><g id=\"be550575-836a-48c2-8654-7b0a40cc90e3\" data-name=\"レイヤー 2\"><g id=\"aa8efe02-0ecd-40bd-8511-c2d557404a19\" data-name=\"レイヤー1\"><rect y=\"1.81\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b1320079-38fa-401d-9ebf-291981369357)\"/><rect x=\"4.83\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"13.46\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"22.09\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"30.72\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><rect x=\"39.35\" y=\"12.22\" width=\"6.74\" height=\"14.41\" fill=\"#7aaf39\"/><polygon points=\"11.57 26.63 4.83 26.63 11.57 12.22 11.57 26.63\" fill=\"#649432\"/><polygon points=\"20.2 26.63 13.46 26.63 20.2 12.22 20.2 26.63\" fill=\"#649432\"/><polygon points=\"28.83 26.63 22.09 26.63 28.83 12.22 28.83 26.63\" fill=\"#649432\"/><polygon points=\"37.46 26.63 30.72 26.63 37.46 12.22 37.46 26.63\" fill=\"#649432\"/><polygon points=\"46.09 26.63 39.35 26.63 46.09 12.22 46.09 26.63\" fill=\"#649432\"/></g></g></svg>";
753
+ var icon$a = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.74mm\" viewBox=\"0 0 50.59 38.94\"><defs><linearGradient id=\"ebf11aa8-86c1-4c54-926e-095803e8493b\" x1=\"25.3\" y1=\"-7.96\" x2=\"25.3\" y2=\"34.98\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#89c5bf\"/><stop offset=\"1\" stop-color=\"#b0dcd3\"/></linearGradient></defs><title>table</title><g id=\"b80a490e-553f-4b14-8300-dcd8743b04ae\" data-name=\"レイヤー 2\"><g id=\"f3eda1bd-bdd6-40ff-9bb3-d857f548204a\" data-name=\"レイヤー1\"><rect y=\"1.44\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#57b4aa\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ebf11aa8-86c1-4c54-926e-095803e8493b)\"/><rect x=\"8.22\" y=\"9.17\" width=\"34.15\" height=\"20.75\" fill=\"#fff\"/><rect x=\"8.22\" y=\"9.17\" width=\"11.75\" height=\"20.75\" fill=\"#3ea6ae\"/><line x1=\"8.22\" y1=\"14.35\" x2=\"42.37\" y2=\"14.35\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"8.22\" y1=\"19.54\" x2=\"42.37\" y2=\"19.54\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"8.22\" y1=\"24.73\" x2=\"42.37\" y2=\"24.73\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"19.97\" y1=\"29.92\" x2=\"19.97\" y2=\"9.17\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/></g></g></svg>";
711
754
 
712
- var template$a = "<div data-bge-container=\"grid:5\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- image --></div>\n\t</div>\n</div>\n";
755
+ var template$a = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- table --></div>\n\t\t</div>\n\t</div>\n</div>\n";
713
756
 
714
757
  const blockTemplate$a = {
715
- name: "image5",
758
+ name: "table",
716
759
  template: importItems(template$a),
717
760
  icon: icon$a
718
761
  };
719
762
 
720
- var icon$9 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.74mm\" viewBox=\"0 0 50.59 38.94\"><defs><linearGradient id=\"ebf11aa8-86c1-4c54-926e-095803e8493b\" x1=\"25.3\" y1=\"-7.96\" x2=\"25.3\" y2=\"34.98\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#89c5bf\"/><stop offset=\"1\" stop-color=\"#b0dcd3\"/></linearGradient></defs><title>table</title><g id=\"b80a490e-553f-4b14-8300-dcd8743b04ae\" data-name=\"レイヤー 2\"><g id=\"f3eda1bd-bdd6-40ff-9bb3-d857f548204a\" data-name=\"レイヤー1\"><rect y=\"1.44\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#57b4aa\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ebf11aa8-86c1-4c54-926e-095803e8493b)\"/><rect x=\"8.22\" y=\"9.17\" width=\"34.15\" height=\"20.75\" fill=\"#fff\"/><rect x=\"8.22\" y=\"9.17\" width=\"11.75\" height=\"20.75\" fill=\"#3ea6ae\"/><line x1=\"8.22\" y1=\"14.35\" x2=\"42.37\" y2=\"14.35\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"8.22\" y1=\"19.54\" x2=\"42.37\" y2=\"19.54\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"8.22\" y1=\"24.73\" x2=\"42.37\" y2=\"24.73\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/><line x1=\"19.97\" y1=\"29.92\" x2=\"19.97\" y2=\"9.17\" fill=\"none\" stroke=\"#a0d6d1\" stroke-miterlimit=\"10\"/></g></g></svg>";
763
+ var icon$9 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"a4929d81-4de7-4c43-9112-5279609b7798\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-float-image1</title><g id=\"f8cab05c-73ac-401a-a7b1-10cb7e7f06cd\" data-name=\"レイヤー 2\"><g id=\"bd3535a6-496b-4816-ab8e-a5c92425a4f1\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a4929d81-4de7-4c43-9112-5279609b7798)\"/><line x1=\"11.15\" y1=\"11.74\" x2=\"25.3\" y2=\"11.74\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"17.54\" x2=\"25.3\" y2=\"17.54\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"23.35\" x2=\"39.45\" y2=\"23.35\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"29.15\" x2=\"39.45\" y2=\"29.15\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"27.9\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"39.45 20.44 27.9 20.44 39.45 9.83 39.45 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
721
764
 
722
- var template$9 = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-item><!-- table --></div>\n</div>\n";
765
+ var template$9 = "<div data-bge-container=\"float:end\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
723
766
 
724
767
  const blockTemplate$9 = {
725
- name: "table",
768
+ name: "text-float-image1",
726
769
  template: importItems(template$9),
727
770
  icon: icon$9
728
771
  };
729
772
 
730
- var icon$8 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"a4929d81-4de7-4c43-9112-5279609b7798\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-float-image1</title><g id=\"f8cab05c-73ac-401a-a7b1-10cb7e7f06cd\" data-name=\"レイヤー 2\"><g id=\"bd3535a6-496b-4816-ab8e-a5c92425a4f1\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#a4929d81-4de7-4c43-9112-5279609b7798)\"/><line x1=\"11.15\" y1=\"11.74\" x2=\"25.3\" y2=\"11.74\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"17.54\" x2=\"25.3\" y2=\"17.54\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"23.35\" x2=\"39.45\" y2=\"23.35\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.15\" y1=\"29.15\" x2=\"39.45\" y2=\"29.15\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"27.9\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"39.45 20.44 27.9 20.44 39.45 9.83 39.45 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
773
+ var icon$8 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"ad7eb2fb-5ad3-4dc1-93fa-411c599f5c4f\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-float-image2</title><g id=\"ab38a4ed-822b-49e7-8a98-f022a4ee3c0b\" data-name=\"レイヤー 2\"><g id=\"e7413325-16e9-46a8-88b2-da176c4bb9e9\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ad7eb2fb-5ad3-4dc1-93fa-411c599f5c4f)\"/><line x1=\"39.45\" y1=\"11.74\" x2=\"25.3\" y2=\"11.74\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"17.54\" x2=\"25.3\" y2=\"17.54\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"23.35\" x2=\"11.15\" y2=\"23.35\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"29.15\" x2=\"11.15\" y2=\"29.15\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"11.15\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"22.69 20.44 11.15 20.44 22.69 9.83 22.69 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
731
774
 
732
- var template$8 = "<div data-bge-container=\"float:end\">\n\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t<div data-bge-item><!-- wysiwyg --></div>\n</div>\n";
775
+ var template$8 = "<div data-bge-container=\"float:start\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
733
776
 
734
777
  const blockTemplate$8 = {
735
- name: "text-float-image1",
778
+ name: "text-float-image2",
736
779
  template: importItems(template$8),
737
780
  icon: icon$8
738
781
  };
739
782
 
740
- var icon$7 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"ad7eb2fb-5ad3-4dc1-93fa-411c599f5c4f\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-float-image2</title><g id=\"ab38a4ed-822b-49e7-8a98-f022a4ee3c0b\" data-name=\"レイヤー 2\"><g id=\"e7413325-16e9-46a8-88b2-da176c4bb9e9\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ad7eb2fb-5ad3-4dc1-93fa-411c599f5c4f)\"/><line x1=\"39.45\" y1=\"11.74\" x2=\"25.3\" y2=\"11.74\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"17.54\" x2=\"25.3\" y2=\"17.54\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"23.35\" x2=\"11.15\" y2=\"23.35\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"39.45\" y1=\"29.15\" x2=\"11.15\" y2=\"29.15\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"11.15\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"22.69 20.44 11.15 20.44 22.69 9.83 22.69 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
783
+ var icon$7 = "<svg clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"13.84mm\" stroke-linecap=\"round\" stroke-linejoin=\"round\" viewBox=\"0 0 50.59 39.23\" width=\"17.85mm\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m50.598 6.871c0-2.793-2.267-5.061-5.06-5.061h-40.477c-2.793 0-5.061 2.268-5.061 5.061v27.385c0 2.793 2.268 5.061 5.061 5.061h40.477c2.793 0 5.06-2.268 5.06-5.061z\" fill=\"#77b7f8\"/><path d=\"m50.598 5.061c0-2.793-2.267-5.061-5.06-5.061h-40.477c-2.793 0-5.061 2.268-5.061 5.061v27.384c0 2.794 2.268 5.061 5.061 5.061h40.477c2.793 0 5.06-2.267 5.06-5.061z\" fill=\"#acd6fb\"/><path d=\"m5.421 12.611h10.812v9.412h-10.812z\" fill=\"#62a9d2\"/><path d=\"m16.243 18.023h-10.822l10.822-9.412z\" fill=\"#1874b1\" fill-rule=\"nonzero\" transform=\"translate(0 4)\"/><g fill=\"none\" stroke-width=\"2\"><path d=\"m5.501 22.864h10.422\" stroke=\"#1e54af\" transform=\"translate(0 -15)\"/><path d=\"m5.501 26.704h10.422\" stroke=\"#639bc7\"/><path d=\"m5.501 30.705h10.422\" stroke=\"#639bc7\"/></g><path d=\"m19.893 12.501h10.812v9.402h-10.812z\" fill=\"#62a9d2\"/><path d=\"m30.715 17.913h-10.822l10.822-9.412z\" fill=\"#1874b1\" fill-rule=\"nonzero\" transform=\"translate(0 4)\"/><path d=\"m19.973 22.754h10.422\" fill=\"none\" stroke=\"#1e54af\" stroke-width=\"2\" transform=\"translate(0 -15)\"/><path d=\"m19.973 26.594h10.422\" fill=\"none\" stroke=\"#639bc7\" stroke-width=\"2\"/><path d=\"m19.973 30.595h10.422\" fill=\"none\" stroke=\"#639bc7\" stroke-width=\"2\"/><path d=\"m34.366 12.721h10.812v9.402h-10.812z\" fill=\"#62a9d2\"/><path d=\"m45.178 18.133h-10.812l10.812-9.412z\" fill=\"#1874b1\" fill-rule=\"nonzero\" transform=\"translate(0 4)\"/><path d=\"m34.446 22.974h10.421\" fill=\"none\" stroke=\"#1e54af\" stroke-width=\"2\" transform=\"translate(0 -15)\"/><path d=\"m34.446 26.814h10.421\" fill=\"none\" stroke=\"#639bc7\" stroke-width=\"2\"/><path d=\"m34.446 30.815h10.421\" fill=\"none\" stroke=\"#639bc7\" stroke-width=\"2\"/></svg>";
741
784
 
742
- var template$7 = "<div data-bge-container=\"float:start\">\n\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t<div data-bge-item><!-- wysiwyg --></div>\n</div>\n";
785
+ var template$7 = "<div data-bge-container=\"grid:3\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t\t<div data-bge-item><!-- image --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
743
786
 
744
787
  const blockTemplate$7 = {
745
- name: "text-float-image2",
788
+ name: "text-image-text",
746
789
  template: importItems(template$7),
747
790
  icon: icon$7
748
791
  };
749
792
 
750
793
  var icon$6 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"ade87fa9-ae19-4174-a9df-549149c22c3a\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-image1</title><g id=\"b5a6612f-092f-46f9-bede-5f7d0c0017e2\" data-name=\"レイヤー 2\"><g id=\"bea1505f-d2e3-463f-9f09-789633cf796a\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ade87fa9-ae19-4174-a9df-549149c22c3a)\"/><line x1=\"10.72\" y1=\"10.89\" x2=\"24.87\" y2=\"10.89\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"10.72\" y1=\"16.69\" x2=\"24.87\" y2=\"16.69\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"10.72\" y1=\"22.5\" x2=\"24.87\" y2=\"22.5\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"10.72\" y1=\"28.3\" x2=\"24.87\" y2=\"28.3\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"28.33\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"39.87 20.44 28.33 20.44 39.87 9.83 39.87 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
751
794
 
752
- var template$6 = "<div data-bge-container=\"inline:nowrap:immutable\">\n\t<div data-bge-item><!-- wysiwyg --></div>\n\t<div data-bge-item><!-- image --></div>\n</div>\n";
795
+ var template$6 = "<div data-bge-container=\"inline:nowrap:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t\t</div>\n\t</div>\n</div>\n";
753
796
 
754
797
  const blockTemplate$6 = {
755
798
  name: "text-image1",
@@ -759,7 +802,7 @@ const blockTemplate$6 = {
759
802
 
760
803
  var icon$5 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"b45c0119-d5be-43a7-860b-ff99ff6b339a\" x1=\"25.3\" y1=\"44.66\" x2=\"25.3\" y2=\"-18.72\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fbe4ac\"/><stop offset=\"1\" stop-color=\"#f9d483\"/></linearGradient></defs><title>text-image2</title><g id=\"b8a07add-b6a7-443b-a099-cbae3fef9912\" data-name=\"レイヤー 2\"><g id=\"e0a06289-c432-465b-8182-049212ef7ffa\" data-name=\"レイヤー1\"><rect y=\"1.73\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#f8d077\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b45c0119-d5be-43a7-860b-ff99ff6b339a)\"/><line x1=\"40.29\" y1=\"10.6\" x2=\"26.15\" y2=\"10.6\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.29\" y1=\"16.41\" x2=\"26.15\" y2=\"16.41\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.29\" y1=\"22.21\" x2=\"26.15\" y2=\"22.21\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"40.29\" y1=\"28.02\" x2=\"26.15\" y2=\"28.02\" fill=\"none\" stroke=\"#f5b717\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><rect x=\"11.15\" y=\"9.83\" width=\"11.54\" height=\"10.62\" fill=\"#f49e16\"/><polygon points=\"22.69 20.44 11.15 20.44 22.69 9.83 22.69 20.44\" fill=\"#ef7c1b\"/></g></g></svg>";
761
804
 
762
- var template$5 = "<div data-bge-container=\"inline:nowrap:immutable\">\n\t<div data-bge-item><!-- image --></div>\n\t<div data-bge-item><!-- wysiwyg --></div>\n</div>\n";
805
+ var template$5 = "<div data-bge-container=\"inline:nowrap:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- image{\"scale\":50,\"cssWidth\":\"50cqi\",\"style\":\"--css-width:50cqi;--object-fit:cover;--aspect-ratio:unset\"} --></div>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
763
806
 
764
807
  const blockTemplate$5 = {
765
808
  name: "text-image2",
@@ -769,7 +812,7 @@ const blockTemplate$5 = {
769
812
 
770
813
  var icon$4 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"b01bebb3-9547-480d-b946-c8b9ea28f59b\" x1=\"25.3\" y1=\"40.64\" x2=\"25.3\" y2=\"-20.19\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient><linearGradient id=\"fbd67f36-f549-469a-afd4-0d48df208de8\" x1=\"25.3\" y1=\"23.54\" x2=\"25.3\" y2=\"43.25\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#fff\"/><stop offset=\"1\"/></linearGradient><linearGradient id=\"e27922de-5641-42ca-babe-0dae1f52bfaf\" x1=\"6.22\" y1=\"27.83\" x2=\"6.22\" y2=\"11.91\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4a7c37\"/><stop offset=\"1\" stop-color=\"#649432\"/></linearGradient></defs><title>title</title><g id=\"b13c3733-c515-4caf-966f-b78f65428ff6\" data-name=\"レイヤー 2\"><g id=\"b8149a68-889c-45e7-b04a-78d6b0bc25ae\" data-name=\"レイヤー1\"><rect y=\"1.74\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b01bebb3-9547-480d-b946-c8b9ea28f59b)\"/><rect x=\"4.38\" y=\"14.94\" width=\"41.83\" height=\"11.43\" rx=\"2.83\" fill=\"#c9c9c9\"/><rect x=\"4.38\" y=\"14.94\" width=\"41.83\" height=\"10.5\" rx=\"2.83\" fill=\"url(#fbd67f36-f549-469a-afd4-0d48df208de8)\"/><path d=\"M16,22.53l-.44.53a3.63,3.63,0,0,1-2.09-2.25,3.46,3.46,0,0,1-2,2.25L11,22.58a3.07,3.07,0,0,0,2.07-2.5H11v-.57h2.11c0-.45,0-.94.06-1.44h.62c0,.49,0,1-.07,1.43H16v.57H13.9A3.09,3.09,0,0,0,16,22.53Z\" fill=\"#543517\"/><path d=\"M16.78,23.07l-.39-.46c1.08-.23,1.44-.66,1.58-1.29h-.81V18.19h3.53v3.13h-1v.84c0,.23,0,.27.24.28h.68c.2,0,.22-.05.23-.61l.57.09c-.05,1-.17,1.08-.75,1.1h-.79c-.64,0-.78-.17-.78-.86v-.84h-.53A2.08,2.08,0,0,1,16.78,23.07Zm1-4h2.33v-.42H17.75Zm0,.85h2.33v-.42H17.75Zm0,.87h2.33v-.44H17.75Z\" fill=\"#543517\"/><path d=\"M24,22.18V20.49H22.34V18.63h.59V20h1V18.07h.61V20h1.1V18.63h.61v1.86H24.58v1.69h1.3V20.82h.61v2.25h-.61v-.33H22.73v.33h-.59V20.82h.59v1.36Z\" fill=\"#543517\"/><path d=\"M28.88,18.28c-.08,1.15-.1,2.23-.1,2.74,0,.93.3,1.26,1,1.26s1.17-.35,1.53-1.49l.59.29c-.53,1.42-1.23,1.82-2.13,1.82-1.11,0-1.6-.63-1.6-1.86,0-.52,0-1.61,0-2.76Z\" fill=\"#543517\"/><rect x=\"4.38\" y=\"14.94\" width=\"3.67\" height=\"11.43\" fill=\"url(#e27922de-5641-42ca-babe-0dae1f52bfaf)\"/></g></g></svg>";
771
814
 
772
- var template$4 = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-item><!-- title-h2 --></div>\n</div>\n";
815
+ var template$4 = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- title-h2 --></div>\n\t\t</div>\n\t</div>\n</div>\n";
773
816
 
774
817
  const blockTemplate$4 = {
775
818
  name: "title",
@@ -779,7 +822,7 @@ const blockTemplate$4 = {
779
822
 
780
823
  var icon$3 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.88mm\" height=\"13.84mm\" viewBox=\"0 0 50.7 39.24\"><defs><linearGradient id=\"b674823f-0627-44de-a8b8-9b7a53c6cba0\" x1=\"25.3\" y1=\"37.04\" x2=\"25.3\" y2=\"-30.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient><linearGradient id=\"fb740430-dd4d-4aab-9c6b-0ed07f83ae8c\" x1=\"4.59\" y1=\"17.93\" x2=\"9.49\" y2=\"17.93\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#4a7c37\"/><stop offset=\"1\" stop-color=\"#649432\"/></linearGradient></defs><title>title2</title><g id=\"b433b5fe-6985-4ffc-bf9a-0be93beb1725\" data-name=\"レイヤー 2\"><g id=\"a8dedeb7-20e4-4052-9f5d-0542d2847718\" data-name=\"レイヤー1\"><rect x=\"0.1\" y=\"1.74\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b674823f-0627-44de-a8b8-9b7a53c6cba0)\"/><path d=\"M11.82,20.47l-.4-.47c1.09-.23,1.45-.66,1.59-1.28H12.2V15.58h3.53v3.14h-1v.83c0,.23,0,.27.25.28h.67c.21,0,.22,0,.23-.61l.58.1c-.06,1-.17,1.07-.76,1.09h-.79c-.63,0-.78-.17-.78-.86v-.83h-.52A2.1,2.1,0,0,1,11.82,20.47Zm1-4h2.34v-.42H12.78Zm0,.85h2.34v-.42H12.78Zm0,.87h2.34v-.43H12.78Z\" fill=\"#543517\"/><path d=\"M19,19.57V17.88H17.38V16H18v1.31H19V15.46h.61v1.88h1.1V16h.6v1.85h-1.7v1.69h1.3V18.21h.6v2.25h-.6v-.32H17.77v.32h-.6V18.21h.6v1.36Z\" fill=\"#543517\"/><path d=\"M23.91,15.67c-.07,1.16-.09,2.24-.09,2.74,0,.93.29,1.26,1,1.26s1.16-.34,1.53-1.48l.58.28c-.52,1.42-1.22,1.82-2.13,1.82-1.1,0-1.59-.63-1.59-1.86,0-.51,0-1.6,0-2.76Z\" fill=\"#543517\"/><rect x=\"4.59\" y=\"15.48\" width=\"4.9\" height=\"4.9\" fill=\"url(#fb740430-dd4d-4aab-9c6b-0ed07f83ae8c)\"/><line x1=\"4.32\" y1=\"22.61\" x2=\"46.97\" y2=\"22.61\" fill=\"none\" stroke=\"#649432\" stroke-miterlimit=\"10\"/></g></g></svg>";
781
824
 
782
- var template$3 = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-item><!-- title-h3 --></div>\n</div>\n";
825
+ var template$3 = "<div data-bge-container=\"inline:immutable\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- title-h3 --></div>\n\t\t</div>\n\t</div>\n</div>\n";
783
826
 
784
827
  const blockTemplate$3 = {
785
828
  name: "title2",
@@ -789,7 +832,7 @@ const blockTemplate$3 = {
789
832
 
790
833
  var icon$2 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"ac098ab8-4721-4033-811d-03504c007490\" x1=\"25.3\" y1=\"37.04\" x2=\"25.3\" y2=\"-30.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>wysiwyg</title><g id=\"aede14d2-0f85-4f1a-a67b-7eba98691afa\" data-name=\"レイヤー 2\"><g id=\"a92b9d83-2208-4aed-9619-b799895b4f6c\" data-name=\"レイヤー1\"><rect y=\"1.74\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#ac098ab8-4721-4033-811d-03504c007490)\"/><line x1=\"11.3\" y1=\"10.04\" x2=\"39.6\" y2=\"10.04\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"15.85\" x2=\"39.6\" y2=\"15.85\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"21.65\" x2=\"39.6\" y2=\"21.65\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"11.3\" y1=\"27.46\" x2=\"39.6\" y2=\"27.46\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
791
834
 
792
- var template$2 = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
835
+ var template$2 = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
793
836
 
794
837
  const blockTemplate$2 = {
795
838
  name: "wysiwyg",
@@ -799,7 +842,7 @@ const blockTemplate$2 = {
799
842
 
800
843
  var icon$1 = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.85mm\" height=\"13.84mm\" viewBox=\"0 0 50.59 39.23\"><defs><linearGradient id=\"b4f854ec-069c-4a2b-ba76-d16dfb5072b0\" x1=\"25.3\" y1=\"37.04\" x2=\"25.3\" y2=\"-30.21\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d9e7a4\"/><stop offset=\"1\" stop-color=\"#b2d57b\"/></linearGradient></defs><title>wysiwyg2</title><g id=\"b6136188-6d4e-4bf9-9355-0e293909a87a\" data-name=\"レイヤー 2\"><g id=\"b7b5af0a-2e8a-41d2-b91b-ce42df427cb7\" data-name=\"レイヤー1\"><rect y=\"1.74\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#b7c678\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#b4f854ec-069c-4a2b-ba76-d16dfb5072b0)\"/><line x1=\"7.37\" y1=\"10.04\" x2=\"22.81\" y2=\"10.04\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"7.37\" y1=\"15.85\" x2=\"22.81\" y2=\"15.85\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"7.37\" y1=\"21.65\" x2=\"22.81\" y2=\"21.65\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"7.37\" y1=\"27.46\" x2=\"22.81\" y2=\"27.46\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.15\" y1=\"10.04\" x2=\"43.58\" y2=\"10.04\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.15\" y1=\"15.85\" x2=\"43.58\" y2=\"15.85\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.15\" y1=\"21.65\" x2=\"43.58\" y2=\"21.65\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><line x1=\"28.15\" y1=\"27.46\" x2=\"43.58\" y2=\"27.46\" fill=\"none\" stroke=\"#649432\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/></g></g></svg>";
801
844
 
802
- var template$1 = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t</div>\n</div>\n";
845
+ var template$1 = "<div data-bge-container=\"grid:2\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- wysiwyg --></div>\n\t\t</div>\n\t</div>\n</div>\n";
803
846
 
804
847
  const blockTemplate$1 = {
805
848
  name: "wysiwyg2",
@@ -809,7 +852,7 @@ const blockTemplate$1 = {
809
852
 
810
853
  var icon = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"17.89mm\" height=\"13.96mm\" viewBox=\"0 0 50.71 39.57\"><defs><linearGradient id=\"e36c4c0c-bb13-4310-984d-713bab5d7816\" x1=\"25.3\" y1=\"-21.02\" x2=\"25.3\" y2=\"36.63\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#f6bebe\"/><stop offset=\"1\" stop-color=\"#f8ced2\"/></linearGradient><linearGradient id=\"a44d64d4-f2ae-4e3a-acbb-c9a91e445ebb\" x1=\"-101.24\" y1=\"-325.26\" x2=\"-101.24\" y2=\"-305.06\" gradientTransform=\"translate(127 334)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#d8322a\"/><stop offset=\"1\" stop-color=\"#b41d23\"/></linearGradient></defs><title>youtube</title><g id=\"a2f001e0-0370-4d29-8ff3-0d77adc1eacf\" data-name=\"レイヤー 2\"><g id=\"f915ee09-82e2-4aa4-8d03-5487fd5fa562\" data-name=\"レイヤー1\"><rect x=\"0.12\" y=\"2.07\" width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"#e08a90\"/><rect width=\"50.59\" height=\"37.5\" rx=\"5.06\" fill=\"url(#e36c4c0c-bb13-4310-984d-713bab5d7816)\"/><path id=\"f1f55903-12c5-4395-b72a-8b0ffa882786\" data-name=\"Triangle\" d=\"M22.79,24.55l7.77-4-7.77-4.05Z\" fill=\"#fff\"/><path id=\"b82d0228-8335-4803-a8fd-0146f476c0ab\" data-name=\"The Sharpness\" d=\"M22.79,16.48,29.6,21l1-.49Z\" fill=\"#400305\" fill-rule=\"evenodd\" opacity=\"0.12\"/><g id=\"f0cbaf52-7846-4e01-b028-a27e3635ac57\" data-name=\"Lozenge\"><path d=\"M39.84,13.1a6.21,6.21,0,0,0-1.14-2.85A4.06,4.06,0,0,0,35.82,9c-4-.29-10-.29-10-.29h0s-6,0-10.06.29a4,4,0,0,0-2.87,1.22,6.21,6.21,0,0,0-1.14,2.85,42.93,42.93,0,0,0-.29,4.65v2.17a42.93,42.93,0,0,0,.29,4.65,6.27,6.27,0,0,0,1.14,2.86A4.88,4.88,0,0,0,16,28.65c2.29.23,9.76.29,9.76.29s6,0,10.06-.3a4.08,4.08,0,0,0,2.88-1.21,6.27,6.27,0,0,0,1.14-2.86,42.93,42.93,0,0,0,.29-4.65V17.75A42.93,42.93,0,0,0,39.84,13.1Zm-17,9.47V14.49l7.77,4Z\" fill=\"url(#a44d64d4-f2ae-4e3a-acbb-c9a91e445ebb)\"/></g></g></g></svg>";
811
854
 
812
- var template = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-group>\n\t\t<div data-bge-item><!-- youtube --></div>\n\t</div>\n</div>\n";
855
+ var template = "<div data-bge-container=\"grid:1\">\n\t<div data-bge-container-frame>\n\t\t<div data-bge-group>\n\t\t\t<div data-bge-item><!-- youtube --></div>\n\t\t</div>\n\t</div>\n</div>\n";
813
856
 
814
857
  const blockTemplate = {
815
858
  name: "youtube",
@@ -818,35 +861,85 @@ const blockTemplate = {
818
861
  };
819
862
 
820
863
  const blocks = {
821
- button: blockTemplate$q,
822
- button2: blockTemplate$p,
823
- button3: blockTemplate$o,
824
- "download-file": blockTemplate$n,
825
- "download-file2": blockTemplate$m,
826
- "download-file3": blockTemplate$l,
827
- "google-maps": blockTemplate$k,
828
- hr: blockTemplate$j,
829
- image: blockTemplate$i,
830
- "image-text2": blockTemplate$h,
831
- "image-text3": blockTemplate$g,
832
- "image-text4": blockTemplate$f,
833
- "image-text5": blockTemplate$e,
834
- image2: blockTemplate$d,
835
- image3: blockTemplate$c,
836
- image4: blockTemplate$b,
837
- image5: blockTemplate$a,
838
- table: blockTemplate$9,
839
- "text-float-image1": blockTemplate$8,
840
- "text-float-image2": blockTemplate$7,
864
+ button: blockTemplate$t,
865
+ button2: blockTemplate$s,
866
+ button3: blockTemplate$r,
867
+ "content-navigation": blockTemplate$q,
868
+ "download-file": blockTemplate$o,
869
+ "download-file2": blockTemplate$n,
870
+ "download-file3": blockTemplate$m,
871
+ "google-maps": blockTemplate$l,
872
+ hr: blockTemplate$k,
873
+ image: blockTemplate$j,
874
+ "image-text2": blockTemplate$i,
875
+ "image-text3": blockTemplate$h,
876
+ "image-text4": blockTemplate$g,
877
+ "image-text5": blockTemplate$f,
878
+ image2: blockTemplate$e,
879
+ image3: blockTemplate$d,
880
+ image4: blockTemplate$c,
881
+ image5: blockTemplate$b,
882
+ table: blockTemplate$a,
883
+ "text-float-image1": blockTemplate$9,
884
+ "text-float-image2": blockTemplate$8,
885
+ "text-image-text": blockTemplate$7,
841
886
  "text-image1": blockTemplate$6,
842
887
  "text-image2": blockTemplate$5,
843
888
  title: blockTemplate$4,
844
889
  title2: blockTemplate$3,
845
890
  wysiwyg: blockTemplate$2,
846
891
  wysiwyg2: blockTemplate$1,
847
- youtube: blockTemplate
892
+ youtube: blockTemplate,
893
+ disclosure: blockTemplate$p
894
+ };
895
+
896
+ const defaultCatalog = {
897
+ "\u898B\u51FA\u3057 / \u30C6\u30AD\u30B9\u30C8 / \u30C6\u30AD\u30B9\u30C8+\u753B\u50CF": {
898
+ title: "\u5927\u898B\u51FA\u3057",
899
+ title2: "\u4E2D\u898B\u51FA\u3057",
900
+ wysiwyg: "1\u30AB\u30E9\u30E0\u30C6\u30AD\u30B9\u30C8",
901
+ wysiwyg2: "2\u30AB\u30E9\u30E0\u30C6\u30AD\u30B9\u30C8",
902
+ "text-float-image1": "\u753B\u50CF\u53F3\u5BC4\u305B: \u30C6\u30AD\u30B9\u30C8\u56DE\u308A\u8FBC\u307F",
903
+ "text-float-image2": "\u753B\u50CF\u5DE6\u5BC4\u305B: \u30C6\u30AD\u30B9\u30C8\u56DE\u308A\u8FBC\u307F",
904
+ "text-image1": "\u753B\u50CF\u53F3\u5BC4\u305B: \u30C6\u30AD\u30B9\u30C8\u56DE\u308A\u8FBC\u307F\u7121\u3057",
905
+ "text-image2": "\u753B\u50CF\u5DE6\u5BC4\u305B: \u30C6\u30AD\u30B9\u30C8\u56DE\u308A\u8FBC\u307F\u7121\u3057"
906
+ },
907
+ \u753B\u50CF: {
908
+ image: "\u753B\u50CF1\u5217",
909
+ image2: "\u753B\u50CF2\u5217",
910
+ image3: "\u753B\u50CF3\u5217",
911
+ image4: "\u753B\u50CF4\u5217",
912
+ image5: "\u753B\u50CF5\u5217"
913
+ },
914
+ "\u753B\u50CF+\u30C6\u30AD\u30B9\u30C8": {
915
+ "image-text2": "\u753B\u50CF2\u5217: \u30C6\u30AD\u30B9\u30C8\u4ED8",
916
+ "image-text3": "\u753B\u50CF3\u5217: \u30C6\u30AD\u30B9\u30C8\u4ED8",
917
+ "image-text4": "\u753B\u50CF4\u5217: \u30C6\u30AD\u30B9\u30C8\u4ED8",
918
+ "image-text5": "\u753B\u50CF5\u5217: \u30C6\u30AD\u30B9\u30C8\u4ED8"
919
+ },
920
+ \u30AB\u30FC\u30C9: {
921
+ "text-image-text": "\u30C6\u30AD\u30B9\u30C8+\u753B\u50CF+\u30C6\u30AD\u30B9\u30C8"
922
+ },
923
+ \u30DC\u30BF\u30F3: {
924
+ button: "\u30DC\u30BF\u30F3",
925
+ button2: "\u30DC\u30BF\u30F3 x2",
926
+ button3: "\u30DC\u30BF\u30F3 x3",
927
+ "download-file": "\u30D5\u30A1\u30A4\u30EB\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",
928
+ "download-file2": "\u30D5\u30A1\u30A4\u30EB\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9 x2",
929
+ "download-file3": "\u30D5\u30A1\u30A4\u30EB\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9 x3"
930
+ },
931
+ \u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3: {
932
+ "content-navigation": "\u30B3\u30F3\u30C6\u30F3\u30C4\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3"
933
+ },
934
+ \u305D\u306E\u4ED6: {
935
+ table: "2\u30AB\u30E9\u30E0\u30C6\u30FC\u30D6\u30EB",
936
+ "google-maps": "Google Maps",
937
+ youtube: "YouTube",
938
+ hr: "\u533A\u5207\u308A\u7DDA",
939
+ disclosure: "\u6298\u308A\u305F\u305F\u307F"
940
+ }
848
941
  };
849
942
 
850
- var general = ":root {\n\t--bge-grid-gap: 1rem;\n\n\t/* Custom margin */\n\t--bge-options-margin-normal: 3rem;\n\t--bge-options-margin-none: 0;\n\t--bge-options-margin-small: 1rem;\n\t--bge-options-margin-large: 8rem;\n\t--bge-options-margin: var(--bge-options-margin-normal);\n\n\t/* Custom background color */\n\t--bge-options-bgcolor-transparent: transparent;\n\t--bge-options-bgcolor-white: #fff;\n\t--bge-options-bgcolor-black: #333;\n\t--bge-options-bgcolor-gray: #ccc;\n\t--bge-options-bgcolor-red: #fcc;\n\t--bge-options-bgcolor: var(--bge-options-bgcolor-transparent);\n\n\t/* Custom border style */\n\t--bge-options-border-none: none;\n\t--bge-options-border-solid: solid 1px currentColor;\n\t--bge-options-border-dashed: dashed 1px currentColor;\n\t--bge-options-border-dotted: dotted 1px currentColor;\n\t--bge-options-border-wide: solid 3px currentColor;\n\t--bge-options-border: var(--bge-options-border-none);\n\n\t/* Custom padding */\n\t--bge-options-padding-none: 0;\n\t--bge-options-padding-small: 1rem;\n\t--bge-options-padding-middle: 3rem;\n\t--bge-options-padding-large: 5rem;\n\t--bge-options-padding: var(--bge-options-padding-none);\n}\n\n:where([data-bge-container]) {\n\t--bge-container-margin-block-end: var(--bge-options-margin);\n\t--bge-container-background-color: var(--bge-options-bgcolor);\n\t--bge-container-border: var(--bge-options-border);\n\t--bge-container-padding: var(--bge-options-padding);\n\tpadding: var(--bge-container-padding);\n\tmargin-block-end: var(--bge-container-margin-block-end);\n\tbackground-color: var(--bge-container-background-color);\n\tborder: var(--bge-container-border);\n\n\t&:where(:last-child) {\n\t\t--bge-container-margin-block-end: 0;\n\t}\n}\n\n:where([data-bge-container='grid'], [data-bge-container^='grid:']) {\n\tdisplay: grid;\n\tgrid-template-columns: repeat(var(--bge-grid-col, 1), minmax(0, 1fr));\n\tgap: var(--bge-grid-gap);\n\n\t&:where([data-bge-container$=':2'], [data-bge-container*=':2:']) {\n\t\t--bge-grid-col: 2;\n\t}\n\n\t&:where([data-bge-container$=':3'], [data-bge-container*=':3:']) {\n\t\t--bge-grid-col: 3;\n\t}\n\n\t&:where([data-bge-container$=':4'], [data-bge-container*=':4:']) {\n\t\t--bge-grid-col: 4;\n\t}\n\n\t&:where([data-bge-container$=':5'], [data-bge-container*=':5:']) {\n\t\t--bge-grid-col: 5;\n\t}\n\n\t:where([data-bge-group]) {\n\t\t--item-count: 1;\n\t\tdisplay: grid;\n\t\tgrid-template-rows: subgrid;\n\t\tgrid-row: span var(--item-count);\n\n\t\t/* Subgrid hack 2 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(2):last-child) {\n\t\t\t--item-count: 2;\n\t\t}\n\n\t\t/* Subgrid hack 3 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(3):last-child) {\n\t\t\t--item-count: 3;\n\t\t}\n\n\t\t/* Subgrid hack 4 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(4):last-child) {\n\t\t\t--item-count: 4;\n\t\t}\n\n\t\t/* Subgrid hack 5 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(5):last-child) {\n\t\t\t--item-count: 5;\n\t\t}\n\n\t\t/* Subgrid hack 6 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(6):last-child) {\n\t\t\t--item-count: 6;\n\t\t}\n\n\t\t/* Subgrid hack 7 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(7):last-child) {\n\t\t\t--item-count: 7;\n\t\t}\n\n\t\t/* Subgrid hack 8 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(8):last-child) {\n\t\t\t--item-count: 8;\n\t\t}\n\t}\n\n\t:where([data-bge-item]) {\n\t\talign-self: self-start;\n\t\tcontainer-type: inline-size;\n\t}\n}\n\n:where([data-bge-container='inline'], [data-bge-container^='inline:']) {\n\t--warp: wrap;\n\t--justify: center;\n\t--align: stretch;\n\tdisplay: flex;\n\tflex-wrap: var(--warp);\n\tgap: var(--bge-grid-gap);\n\tcontainer-type: inline-size;\n\talign-items: var(--align);\n\tjustify-content: var(--justify);\n\n\t&:where([data-bge-container$=':immutable'], [data-bge-container*=':immutable:']) {\n\t\t& > * {\n\t\t\tflex: 1 0 100cqi;\n\t\t}\n\t}\n\n\t&:where([data-bge-container$=':center'], [data-bge-container*=':center:']) {\n\t\t--justify: center;\n\t}\n\n\t&:where([data-bge-container$=':start'], [data-bge-container*=':start:']) {\n\t\t--justify: start;\n\t}\n\n\t&:where([data-bge-container$=':end'], [data-bge-container*=':end:']) {\n\t\t--justify: end;\n\t}\n\n\t&:where([data-bge-container$=':between'], [data-bge-container*=':between:']) {\n\t\t--justify: space-between;\n\t}\n\n\t&:where([data-bge-container$=':around'], [data-bge-container*=':around:']) {\n\t\t--justify: space-around;\n\t}\n\n\t&:where([data-bge-container$=':evenly'], [data-bge-container*=':evenly:']) {\n\t\t--justify: space-evenly;\n\t}\n\n\t&:where([data-bge-container$=':align-center'], [data-bge-container*=':align-center:']) {\n\t\t--align: center;\n\t}\n\n\t&:where([data-bge-container$=':align-start'], [data-bge-container*=':align-start:']) {\n\t\t--align: start;\n\t}\n\n\t&:where([data-bge-container$=':align-end'], [data-bge-container*=':align-end:']) {\n\t\t--align: end;\n\t}\n\n\t&:where(\n\t\t\t[data-bge-container$=':align-stretch'],\n\t\t\t[data-bge-container*=':align-stretch:']\n\t\t) {\n\t\t--align: stretch;\n\t}\n\n\t&:where(\n\t\t\t[data-bge-container$=':align-baseline'],\n\t\t\t[data-bge-container*=':align-baseline:']\n\t\t) {\n\t\t--align: baseline;\n\t}\n\n\t&:where([data-bge-container$=':wrap'], [data-bge-container*=':wrap:']) {\n\t\t--wrap: wrap;\n\t}\n\n\t&:where([data-bge-container$=':nowrap'], [data-bge-container*=':nowrap:']) {\n\t\t--wrap: nowrap;\n\t}\n}\n\n:where([data-bge-container='float'], [data-bge-container^='float:']) {\n\t--bge-grid-float: none;\n\t--margin-inline: 0;\n\tcontainer-type: inline-size;\n\n\t&::after {\n\t\tclear: both;\n\t\tdisplay: block;\n\t\tcontent: '';\n\t}\n\n\t&:where([data-bge-container$=':start'], [data-bge-container*=':start:']) {\n\t\t--bge-grid-float: inline-start;\n\t\t--margin-inline: 0 var(--bge-grid-gap);\n\t}\n\n\t&:where([data-bge-container$=':end'], [data-bge-container*=':end:']) {\n\t\t--bge-grid-float: inline-end;\n\t\t--margin-inline: var(--bge-grid-gap) 0;\n\t}\n\n\t> :first-child {\n\t\tfloat: var(--bge-grid-float, none);\n\t\tinline-size: fit-content;\n\t\tmargin-inline: var(--margin-inline);\n\t}\n}\n";
943
+ var general = "[data-bge-container] {\n\t--bge-auto-repeat-base-width: calc(800 / 16 * 1rem);\n\n\t/* Custom max-width */\n\t--bge-options-max-width--normal: calc(800 / 16 * 1rem);\n\t--bge-options-max-width--small: calc(400 / 16 * 1rem);\n\t--bge-options-max-width--medium: calc(600 / 16 * 1rem);\n\t--bge-options-max-width--large: calc(1200 / 16 * 1rem);\n\t--bge-options-max-width--full: 100dvi;\n\t--bge-options-max-width: var(--bge-options-max-width--normal);\n\n\t/* Custom margin */\n\t--bge-options-margin--normal: 3rem;\n\t--bge-options-margin--none: 0;\n\t--bge-options-margin--small: 1rem;\n\t--bge-options-margin--large: 8rem;\n\t--bge-options-margin: var(--bge-options-margin--normal);\n\n\t/* Custom background color */\n\t--bge-options-bg-color--transparent: transparent;\n\t--bge-options-bg-color--white: #fff;\n\t--bge-options-bg-color--gray: #dfdfdf;\n\t--bge-options-bg-color--blue: #eaf3f8;\n\t--bge-options-bg-color--red: #fcc;\n\t--bge-options-bg-color: var(--bge-options-bg-color--transparent);\n\n\t/* Custom padding-block */\n\t--bge-options-padding-block--none: 0;\n\t--bge-options-padding-block--small: 1rem;\n\t--bge-options-padding-block--middle: 3rem;\n\t--bge-options-padding-block--large: 5rem;\n\t--bge-options-padding-block: var(--bge-options-padding-block--none);\n\n\t/* Custom padding-inline */\n\t--bge-options-padding-inline--default-gutter: 2rem;\n\t--bge-options-padding-inline--none: 0;\n\t--bge-options-padding-inline--small: 1rem;\n\t--bge-options-padding-inline--middle: 3rem;\n\t--bge-options-padding-inline--large: 5rem;\n\t--bge-options-padding-inline: var(--bge-options-padding-inline--default-gutter);\n\n\t/* Custom column gap */\n\t--bge-options-column-gap--normal: 1rem;\n\t--bge-options-column-gap--none: 0;\n\t--bge-options-column-gap--small: 0.5rem;\n\t--bge-options-column-gap--large: 5rem;\n\t--bge-options-column-gap: var(--bge-options-column-gap--normal);\n\n\t/* Custom row gap */\n\t--bge-options-row-gap--normal: 1rem;\n\t--bge-options-row-gap--none: 0;\n\t--bge-options-row-gap--small: 0.5rem;\n\t--bge-options-row-gap--large: 5rem;\n\t--bge-options-row-gap: var(--bge-options-row-gap--normal);\n\n\t/* Custom subgrid gap factor (grid type only) */\n\t--bge-options-_grid_subgrid-gap--normal: 1rem;\n\t--bge-options-_grid_subgrid-gap--none: 0;\n\t--bge-options-_grid_subgrid-gap--small: 0.5rem;\n\t--bge-options-_grid_subgrid-gap--large: 1rem;\n\t--bge-options-_grid_subgrid-gap: var(--bge-options-_grid_subgrid-gap--normal);\n}\n\n:where([data-bge-container]) {\n\t--_margin-block-end: var(--bge-options-margin);\n\t--_margin-block-end_when-last: 0;\n\tinline-size: 100%;\n\tmax-inline-size: var(--bge-options-max-width);\n\tpadding-block: var(--bge-options-padding-block);\n\tpadding-inline: var(--bge-options-padding-inline);\n\tmargin-block-end: var(--_margin-block-end);\n\tmargin-inline: auto;\n\tcontainer-name: bge-container;\n\tcontainer-type: inline-size;\n\tbackground-color: var(--bge-options-bg-color);\n\tborder: var(--bge-options-border);\n\n\t&:where(:last-child) {\n\t\t--_margin-block-end: var(--_margin-block-end_when-last);\n\t}\n}\n\n:where([data-bge-container-frame]) {\n\tinline-size: 100%;\n\n\t/* Reset list styles for semantic container frames */\n\t&:is(ul, ol) {\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tlist-style: none;\n\t}\n}\n\n:where([data-bge-container='grid'], [data-bge-container^='grid:']) {\n\t--_gap-block: var(--bge-options-row-gap, var(--bge-options-gap));\n\t--_gap-inline: var(--bge-options-column-gap, var(--bge-options-gap));\n\t--_subgrid-gap: var(--bge-options-_grid_subgrid-gap, var(--_gap-block));\n\n\t&:where([data-bge-container$=':2'], [data-bge-container*=':2:'])\n\t\t:where([data-bge-container-frame]) {\n\t\t--bge-grid-col: 2;\n\t}\n\n\t&:where([data-bge-container$=':3'], [data-bge-container*=':3:'])\n\t\t:where([data-bge-container-frame]) {\n\t\t--bge-grid-col: 3;\n\t}\n\n\t&:where([data-bge-container$=':4'], [data-bge-container*=':4:'])\n\t\t:where([data-bge-container-frame]) {\n\t\t--bge-grid-col: 4;\n\t}\n\n\t&:where([data-bge-container$=':5'], [data-bge-container*=':5:'])\n\t\t:where([data-bge-container-frame]) {\n\t\t--bge-grid-col: 5;\n\t}\n\n\t:where([data-bge-container-frame]) {\n\t\t--_grid-col: var(--bge-grid-col, 1);\n\t\t--_repeat-base-width: calc(var(--bge-auto-repeat-base-width) / var(--_grid-col));\n\t\tdisplay: grid;\n\t\tgrid-template-columns: repeat(var(--_grid-col), minmax(0, 1fr));\n\t\tgap: var(--_gap-block) var(--_gap-inline);\n\n\t\t&:is([data-bge-container*=':auto-fit:'] *) {\n\t\t\tgrid-template-columns: repeat(\n\t\t\t\tauto-fit,\n\t\t\t\tminmax(min(100%, var(--_repeat-base-width)), 1fr)\n\t\t\t);\n\t\t}\n\n\t\t&:is([data-bge-container*=':auto-fill:'] *) {\n\t\t\tgrid-template-columns: repeat(\n\t\t\t\tauto-fill,\n\t\t\t\tminmax(min(100%, var(--_repeat-base-width)), 1fr)\n\t\t\t);\n\t\t}\n\t}\n\n\t:where([data-bge-group]) {\n\t\t--item-count: 1;\n\t\tdisplay: grid;\n\t\tgrid-template-rows: subgrid;\n\t\tgrid-row: span var(--item-count);\n\t\tgap: var(--_subgrid-gap) 0;\n\n\t\t/* Reset list styles for semantic groups */\n\t\t&:is(li) {\n\t\t\tlist-style: none;\n\t\t}\n\n\t\t/* Subgrid hack 2 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(2):last-child) {\n\t\t\t--item-count: 2;\n\t\t}\n\n\t\t/* Subgrid hack 3 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(3):last-child) {\n\t\t\t--item-count: 3;\n\t\t}\n\n\t\t/* Subgrid hack 4 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(4):last-child) {\n\t\t\t--item-count: 4;\n\t\t}\n\n\t\t/* Subgrid hack 5 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(5):last-child) {\n\t\t\t--item-count: 5;\n\t\t}\n\n\t\t/* Subgrid hack 6 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(6):last-child) {\n\t\t\t--item-count: 6;\n\t\t}\n\n\t\t/* Subgrid hack 7 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(7):last-child) {\n\t\t\t--item-count: 7;\n\t\t}\n\n\t\t/* Subgrid hack 8 items */\n\t\t&[data-bge-group]:has([data-bge-item]:nth-child(8):last-child) {\n\t\t\t--item-count: 8;\n\t\t}\n\t}\n\n\t:where([data-bge-item]) {\n\t\tdisplay: flex;\n\t\talign-items: stretch;\n\t\talign-self: stretch;\n\t\tjustify-content: start;\n\t\tcontainer-name: bge-item;\n\t\tcontainer-type: inline-size;\n\n\t\t> * {\n\t\t\tflex: 0 0 100%;\n\t\t}\n\t}\n}\n\n:where([data-bge-container='inline'], [data-bge-container^='inline:']) {\n\t--_gap-block: var(--bge-options-row-gap, var(--bge-options-gap));\n\t--_gap-inline: var(--bge-options-column-gap, var(--bge-options-gap));\n\n\t:where([data-bge-container-frame]) {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tgap: var(--_gap-block) var(--_gap-inline);\n\t\talign-items: stretch;\n\t\tjustify-content: center;\n\n\t\t&:where(:is([data-bge-container$=':center'], [data-bge-container*=':center:']) *) {\n\t\t\tjustify-content: center;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':start'], [data-bge-container*=':start:']) *) {\n\t\t\tjustify-content: start;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':end'], [data-bge-container*=':end:']) *) {\n\t\t\tjustify-content: end;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':between'], [data-bge-container*=':between:']) *) {\n\t\t\tjustify-content: space-between;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':around'], [data-bge-container*=':around:']) *) {\n\t\t\tjustify-content: space-around;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':evenly'], [data-bge-container*=':evenly:']) *) {\n\t\t\tjustify-content: space-evenly;\n\t\t}\n\n\t\t&:where(\n\t\t\t:is([data-bge-container$=':align-center'], [data-bge-container*=':align-center:']) *\n\t\t) {\n\t\t\talign-items: center;\n\t\t}\n\n\t\t&:where(\n\t\t\t:is([data-bge-container$=':align-start'], [data-bge-container*=':align-start:']) *\n\t\t) {\n\t\t\talign-items: start;\n\t\t}\n\n\t\t&:where(\n\t\t\t:is([data-bge-container$=':align-end'], [data-bge-container*=':align-end:']) *\n\t\t) {\n\t\t\talign-items: end;\n\t\t}\n\n\t\t&:where(\n\t\t\t:is([data-bge-container$=':align-stretch'], [data-bge-container*=':align-stretch:'])\n\t\t\t\t*\n\t\t) {\n\t\t\talign-items: stretch;\n\t\t}\n\n\t\t&:where(\n\t\t\t:is(\n\t\t\t\t\t[data-bge-container$=':align-baseline'],\n\t\t\t\t\t[data-bge-container*=':align-baseline:']\n\t\t\t\t)\n\t\t\t\t*\n\t\t) {\n\t\t\t--align: baseline;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':wrap'], [data-bge-container*=':wrap:']) *) {\n\t\t\tflex-wrap: wrap;\n\t\t}\n\n\t\t&:where(:is([data-bge-container$=':nowrap'], [data-bge-container*=':nowrap:']) *) {\n\t\t\tflex-wrap: nowrap;\n\t\t}\n\t}\n\n\t&:where([data-bge-container$=':immutable'], [data-bge-container*=':immutable:']) {\n\t\t/* Left-right split box with resizable item (has `[data-bge-scale]`) on one side */\n\t\t&:has([data-bge-group]:nth-child(2):last-child) {\n\t\t\t:where([data-bge-group]) {\n\t\t\t\t&:has([data-bge-scale]) {\n\t\t\t\t\tflex-grow: 0;\n\t\t\t\t\tflex-shrink: 0;\n\t\t\t\t}\n\n\t\t\t\t&:not(:has([data-bge-scale])) {\n\t\t\t\t\tflex-grow: 1;\n\t\t\t\t\tflex-shrink: 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/* Standard with immutable container */\n\t\t:where([data-bge-group]) {\n\t\t\tflex: 1 1 auto;\n\t\t}\n\t}\n}\n\n:where([data-bge-container='float'], [data-bge-container^='float:']) {\n\t--_gap-block: var(--bge-options-row-gap, var(--bge-options-gap));\n\t--_gap-inline: var(--bge-options-column-gap, var(--bge-options-gap));\n\t--bge-grid-float: none;\n\t--margin-inline: 0;\n\n\t&:where([data-bge-container$=':start'], [data-bge-container*=':start:']) {\n\t\t--bge-grid-float: inline-start;\n\t\t--margin-inline: 0 var(--_gap-inline);\n\t}\n\n\t&:where([data-bge-container$=':end'], [data-bge-container*=':end:']) {\n\t\t--bge-grid-float: inline-end;\n\t\t--margin-inline: var(--_gap-inline) 0;\n\t}\n\n\t:where([data-bge-container-frame]) {\n\t\t&::after {\n\t\t\tclear: both;\n\t\t\tdisplay: block;\n\t\t\tcontent: '';\n\t\t}\n\n\t\t& > :where(:first-child) {\n\t\t\tfloat: var(--bge-grid-float, none);\n\t\t\tinline-size: fit-content;\n\t\t\tmargin-inline: var(--margin-inline);\n\t\t}\n\t}\n}\n\n/**\n * MARK: Wysiwyg内 横並び(フレックス)ボックス\n */\n:where([data-bgc-flex-box]) {\n\t--_gap-block: var(--bge-options-row-gap, var(--bge-options-gap));\n\t--_gap-inline: var(--bge-options-column-gap, var(--bge-options-gap));\n\tdisplay: flex;\n\tflex-wrap: wrap;\n\tgap: var(--_gap-block) var(--_gap-inline);\n\talign-items: center;\n\n\t&[data-bgc-flex-box='start'] {\n\t\tjustify-content: start;\n\t}\n\n\t&[data-bgc-flex-box='end'] {\n\t\tjustify-content: end;\n\t}\n\n\t&[data-bgc-flex-box='center'] {\n\t\tjustify-content: center;\n\t}\n\n\t&[data-bgc-flex-box='between'] {\n\t\tjustify-content: space-between;\n\t}\n\n\t&[data-bgc-flex-box='around'] {\n\t\tjustify-content: space-around;\n\t}\n\n\t&[data-bgc-flex-box='evenly'] {\n\t\tjustify-content: space-evenly;\n\t}\n}\n";
851
944
 
852
- export { blocks, general as generalCSS, items };
945
+ export { blocks, defaultCatalog, general as generalCSS, items };