VK All in One Expansion Unit - Version 9.19.0.0

Version Description

[ Add Function ][ Add block ] HTML SiteMap [ Add Function ][ Add block ] Page list from ancestor

Download this release

Release Info

Developer kurudrive
Plugin Icon 128x128 VK All in One Expansion Unit
Version 9.19.0.0
Comparing to
See all releases

Code changes from version 9.18.1.0 to 9.19.0.0

.svnignore CHANGED
@@ -1,13 +1,23 @@
1
- *sftp-config.json
 
 
 
 
 
2
  node_modules/
3
- .sass-cache/
 
 
 
 
 
 
 
 
 
4
  .DS_Store
5
  Thumbs.db
6
- _notes/
7
- *~
8
  vkexunit.mo
9
  .travis.yml
10
- vendor/
11
- .*.before
12
- Dockerfile
13
- docker-compose.yml
1
+ .git/
2
+ .github/
3
+ _js/
4
+ _notes/
5
+ _scss/
6
+ bin/
7
  node_modules/
8
+ tests/
9
+ dist/
10
+ *.po
11
+ *.pot
12
+ block.jsx
13
+ docker-compose*.yml
14
+ Dockerfile*
15
+ gulpfile.js
16
+ package*.json
17
+ phpunit.xml
18
  .DS_Store
19
  Thumbs.db
20
+ sftp-config*.json
 
21
  vkexunit.mo
22
  .travis.yml
23
+ *.before
 
 
 
assets/_js/master.js CHANGED
@@ -32,6 +32,7 @@ var a = null;
32
  }
33
  let linkurl = encodeURIComponent(location.href);
34
 
 
35
  fetch(
36
  vkExOpt.hatena_entry + linkurl,
37
  {
@@ -52,6 +53,32 @@ var a = null;
52
  }
53
  })
54
  .catch((x)=>{})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  }, false)
56
 
57
  })(window, document, 'veu_socialSet');
32
  }
33
  let linkurl = encodeURIComponent(location.href);
34
 
35
+ // hatena
36
  fetch(
37
  vkExOpt.hatena_entry + linkurl,
38
  {
53
  }
54
  })
55
  .catch((x)=>{})
56
+
57
+ // facebook
58
+ let fb_elements = document.getElementsByClassName('veu_count_sns_fb')
59
+ if(vkExOpt.facebook_count_enable) {
60
+ fetch(
61
+ vkExOpt.facebook_entry + linkurl,
62
+ {
63
+ method: 'GET',
64
+ }
65
+ ).then((r)=>{
66
+ if (r.ok) {
67
+ r.json().then((body)=>{
68
+ if (body.count === undefined) {
69
+ return
70
+ }
71
+ Array.prototype.forEach.call(
72
+ fb_elements,
73
+ (elm) => elm.innerHTML = body.count
74
+ )
75
+
76
+ })
77
+ }
78
+ })
79
+ .catch((x)=>{})
80
+ }
81
+
82
  }, false)
83
 
84
  })(window, document, 'veu_socialSet');
assets/_scss/_media.scss ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* .media(bootstrap)
2
+ /* 2020.05.09
3
+ /* 過去のファイルに存在していたが、本来 プラグイン側で .media という共有で使われるclass名に対してCSSを当てるべきではないので、
4
+ /* 読み込まないように変更済み。しばらく問題が出ないようなら削除
5
+ /*-------------------------------------------*/
6
+ .media {
7
+ border-bottom: $border_primary;
8
+ padding: 2em 0;
9
+ margin-top: 0;
10
+ &:first-child {
11
+ border-top: $border_primary;
12
+ }
13
+ .postList_thumbnail {
14
+ width: 160px;
15
+ margin-bottom: 0.5em;
16
+ padding-right: 30px;
17
+ display: block;
18
+ overflow: hidden;
19
+ float: left;
20
+ a {
21
+ position: relative;
22
+ display: block;
23
+ overflow: hidden;
24
+ }
25
+ img {
26
+ width: 100%;
27
+ height: auto;
28
+ }
29
+ .postList_cateLabel {
30
+ position: absolute;
31
+ bottom: 0;
32
+ left: 0;
33
+ }
34
+ }
35
+ .media-heading {
36
+ // font-size: 1.8em;
37
+ line-height: 1.3em;
38
+ margin-top: 0;
39
+ margin-bottom: 0.5em;
40
+ font-weight: normal;
41
+ a {
42
+ color: $color_font_default;
43
+ &:hover {
44
+ text-decoration: none;
45
+ }
46
+ }
47
+ }
48
+ p {
49
+ margin-bottom: 0;
50
+ }
51
+ a.media-body_excerpt {
52
+ color: $color_font_default;
53
+ }
54
+ }
55
+ @media (max-width: 767px) {
56
+ .media {
57
+ .postList_thumbnail {
58
+ padding-right: 20px;
59
+ }
60
+ .media-body {
61
+ .media-heading {
62
+ font-size: 1.2em;
63
+ line-height: 1.3em;
64
+ margin-bottom: 0.5em;
65
+ }
66
+ } // .media-body
67
+ } // .media
68
+ } // @media (max-width: 767px){
69
+ @media (max-width: 500px) {
70
+ .media {
71
+ .postList_thumbnail {
72
+ width: 100px;
73
+ }
74
+ } // .media
75
+ } // @media (max-width: 767px){
76
+
77
+ @mixin clear() {
78
+ content: none;
79
+ }
assets/_scss/_page_list_ancestor.scss ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .veu_pageList_ancestor {
2
+ clear: both;
3
+ margin: 2.5em 0 1em;
4
+ .pageList_ancestor_title {
5
+ margin-bottom: 0.5em;
6
+ }
7
+ .pageList {
8
+ margin-top: 0;
9
+ margin-bottom: 0;
10
+ padding-left: 0;
11
+ a {
12
+ display: block;
13
+ padding: 8px 5px;
14
+ border-bottom: solid 1px #ddd;
15
+ color: #333;
16
+ font-size: 14px;
17
+ }
18
+ a:hover {
19
+ text-decoration: underline;
20
+ }
21
+ & > .page_item {
22
+ list-style: none;
23
+ }
24
+ li {
25
+ margin-bottom: 0;
26
+ }
27
+ ul {
28
+ margin: 0;
29
+ padding-left: 0px;
30
+ padding-bottom: 0;
31
+ li {
32
+ position: relative;
33
+ list-style: none;
34
+ &:before {
35
+ position: absolute;
36
+ top: 0.26em;
37
+ left: 5px;
38
+ display: inline-block;
39
+ // content: "・";
40
+ }
41
+ }
42
+ li a {
43
+ padding-left: 20px;
44
+ }
45
+ li li a {
46
+ padding-left: 30px;
47
+ }
48
+ li li li a {
49
+ padding-left: 40px;
50
+ }
51
+ }
52
+ }
53
+ .current_page_item > a {
54
+ // background-color: #F0F0F0;
55
+ // box-shadow: inset 0 0 5px #eee;
56
+ font-weight: bold;
57
+ }
58
+ }
assets/_scss/_sitemap.scss ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .veu_sitemap {
2
+ .sectionBox {
3
+ padding-top: 0;
4
+ }
5
+ .sitemap-col {
6
+ margin-top: 1em;
7
+ padding-bottom: 2em;
8
+ .link-list {
9
+ a {
10
+ display: block;
11
+ overflow: hidden;
12
+ }
13
+ }
14
+ .page_item {
15
+ padding: 0;
16
+ }
17
+ .cat-item {
18
+ padding: 0;
19
+ }
20
+ }
21
+ .sitemap-post-type-title {
22
+ margin-bottom: 0.8em;
23
+ padding: 0.2em 0;
24
+ font-size: 18px;
25
+ }
26
+
27
+ .sitemap-taxonomy-title {
28
+ margin: 1em 0;
29
+ padding: 0;
30
+ font-size: 16px;
31
+ }
32
+ a {
33
+ color: $color_font_default;
34
+ }
35
+ ul {
36
+ margin: 0 0 0 1em;
37
+ padding-left: 0;
38
+ li {
39
+ font-size: 14px;
40
+ }
41
+ & > li > a {
42
+ position: relative;
43
+ margin-bottom: 1em;
44
+ }
45
+ }
46
+ .sitemap-term-list {
47
+ margin-bottom: 1.5em;
48
+ }
49
+ }
assets/_scss/vkExUnit_editor_style.scss CHANGED
@@ -1,12 +1,15 @@
1
  @charset "utf-8";
2
  @import "_variable";
3
  @import "_card";
 
4
  @import "_contents_option_style";
5
  @import "_child_page_list";
 
6
  @import "_contact_section";
7
 
8
  div.veu_contact_section_block .disabled,
9
- div.veu_child_page_list_block .disabled {
 
10
  display: block !important;
11
  background-color: rgba(139, 139, 150, 0.1);
12
  padding: 0.7em;
1
  @charset "utf-8";
2
  @import "_variable";
3
  @import "_card";
4
+ @import "_sitemap";
5
  @import "_contents_option_style";
6
  @import "_child_page_list";
7
+ @import "_page_list_ancestor";
8
  @import "_contact_section";
9
 
10
  div.veu_contact_section_block .disabled,
11
+ div.veu_child_page_list_block .disabled,
12
+ div.veu_page_list_ancestor_block .disabled {
13
  display: block !important;
14
  background-color: rgba(139, 139, 150, 0.1);
15
  padding: 0.7em;
assets/_scss/vkExUnit_style.scss CHANGED
@@ -55,82 +55,10 @@
55
 
56
  @import "_common";
57
 
58
- /* .media(bootstrap)
59
  /*-------------------------------------------*/
60
- .media {
61
- border-bottom: $border_primary;
62
- padding: 2em 0;
63
- margin-top: 0;
64
- &:first-child {
65
- border-top: $border_primary;
66
- }
67
- .postList_thumbnail {
68
- width: 160px;
69
- margin-bottom: 0.5em;
70
- padding-right: 30px;
71
- display: block;
72
- overflow: hidden;
73
- float: left;
74
- a {
75
- position: relative;
76
- display: block;
77
- overflow: hidden;
78
- }
79
- img {
80
- width: 100%;
81
- height: auto;
82
- }
83
- .postList_cateLabel {
84
- position: absolute;
85
- bottom: 0;
86
- left: 0;
87
- }
88
- }
89
- .media-heading {
90
- font-size: 1.8em;
91
- line-height: 1.3em;
92
- margin-top: 0;
93
- margin-bottom: 0.5em;
94
- font-weight: normal;
95
- a {
96
- color: $color_font_default;
97
- &:hover {
98
- text-decoration: none;
99
- }
100
- }
101
- }
102
- p {
103
- margin-bottom: 0;
104
- }
105
- a.media-body_excerpt {
106
- color: $color_font_default;
107
- }
108
- }
109
- @media (max-width: 767px) {
110
- .media {
111
- .postList_thumbnail {
112
- padding-right: 20px;
113
- }
114
- .media-body {
115
- .media-heading {
116
- font-size: 1.2em;
117
- line-height: 1.3em;
118
- margin-bottom: 0.5em;
119
- }
120
- } // .media-body
121
- } // .media
122
- } // @media (max-width: 767px){
123
- @media (max-width: 500px) {
124
- .media {
125
- .postList_thumbnail {
126
- width: 100px;
127
- }
128
- } // .media
129
- } // @media (max-width: 767px){
130
-
131
- @mixin clear() {
132
- content: none;
133
- }
134
 
135
  /*-------------------------------------------*/
136
  /* .veu_card
@@ -160,27 +88,7 @@
160
  /* .veu_sitemap
161
  /*-------------------------------------------*/
162
 
163
- .veu_sitemap {
164
- .sectionBox {
165
- padding-top: 0;
166
- }
167
- .sitemap-col {
168
- padding-bottom: 2em;
169
- }
170
- .sitemap-col {
171
- margin-top: 1em;
172
- .link-list {
173
- margin-top: 0;
174
- margin-bottom: 0;
175
- }
176
- .page_item {
177
- padding: 0;
178
- }
179
- .cat-item {
180
- padding: 0;
181
- }
182
- }
183
- }
184
 
185
  /*-------------------------------------------*/
186
  /* .veu_socialSet
@@ -204,70 +112,7 @@
204
  /* .veu_pageList_ancestor
205
  /*-------------------------------------------*/
206
 
207
- .veu_pageList_ancestor {
208
- clear: both;
209
- margin: 2.5em 0 1em;
210
- .pageList_ancestor_title {
211
- margin-bottom: 0.5em;
212
- }
213
- .pageList {
214
- margin-top: 0;
215
- margin-bottom: 0;
216
- padding-left: 0;
217
- a {
218
- display: block;
219
- padding: 8px 5px;
220
- border-bottom: solid 1px #ddd;
221
- color: #333;
222
- font-size: 14px;
223
- }
224
- a:hover {
225
- text-decoration: underline;
226
- }
227
- & > .page_item {
228
- list-style: none;
229
- }
230
- li {
231
- margin-bottom: 0;
232
- }
233
- ul {
234
- margin: 0;
235
- padding-left: 0px;
236
- padding-bottom: 0;
237
- li {
238
- position: relative;
239
- list-style: none;
240
- &:before {
241
- position: absolute;
242
- top: 0.26em;
243
- left: 5px;
244
- display: inline-block;
245
- // content: "・";
246
- }
247
- }
248
- li a {
249
- padding-left: 20px;
250
- }
251
- li li a {
252
- padding-left: 30px;
253
- }
254
- li li li a {
255
- padding-left: 40px;
256
- }
257
- }
258
- }
259
- .current_page_item > a {
260
- // background-color: #F0F0F0;
261
- // box-shadow: inset 0 0 5px #eee;
262
- font-weight: bold;
263
- }
264
- }
265
- // 1カラムの時に表示されないと困るので非表示解除
266
- // @media screen and (max-width:992px){
267
- // .page-template-default .veu_pageList_ancestor{
268
- // display: none;
269
- // }
270
- // } // @media screen and (max-width:992px){
271
 
272
  @mixin veu_content_bottom_section {
273
  display: block;
@@ -565,21 +410,21 @@ iframe.twitter-timeline {
565
  /* Lightning Charm 1.2.0 での表示崩れ回避用
566
  /* Lightning Charm 1.4.0 以降になったら削除
567
  */
568
- .mainSection .veu_postList.pt_0 .postList.postList_miniThumb {
569
- padding: 0;
570
- margin-left: 0;
571
- margin-right: 0;
572
- }
573
- @media (min-width: 992px) {
574
- .mainSection .veu_postList.pt_0.postList_item .postList_thumbnail {
575
- margin-right: 30px;
576
- margin-left: 0;
577
- }
578
- .mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail {
579
- margin-left: 30px;
580
- margin-right: 0;
581
- }
582
- }
583
 
584
  /*-------------------------------------------*/
585
  /* Widget .veu_profile
55
 
56
  @import "_common";
57
 
 
58
  /*-------------------------------------------*/
59
+ /* 過去のファイルに存在していたが、本来 プラグイン側で .media という共有で使われるclass名に対してCSSを当てるべきではないので、
60
+ /* 読み込まないように変更済み。しばらく問題が出ないようなら削除
61
+ // @import "_media";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  /*-------------------------------------------*/
64
  /* .veu_card
88
  /* .veu_sitemap
89
  /*-------------------------------------------*/
90
 
91
+ @import "_sitemap";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
 
93
  /*-------------------------------------------*/
94
  /* .veu_socialSet
112
  /* .veu_pageList_ancestor
113
  /*-------------------------------------------*/
114
 
115
+ @import "_page_list_ancestor";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
  @mixin veu_content_bottom_section {
118
  display: block;
410
  /* Lightning Charm 1.2.0 での表示崩れ回避用
411
  /* Lightning Charm 1.4.0 以降になったら削除
412
  */
413
+ // .mainSection .veu_postList.pt_0 .postList.postList_miniThumb {
414
+ // padding: 0;
415
+ // margin-left: 0;
416
+ // margin-right: 0;
417
+ // }
418
+ // @media (min-width: 992px) {
419
+ // .mainSection .veu_postList.pt_0.postList_item .postList_thumbnail {
420
+ // margin-right: 30px;
421
+ // margin-left: 0;
422
+ // }
423
+ // .mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail {
424
+ // margin-left: 30px;
425
+ // margin-right: 0;
426
+ // }
427
+ // }
428
 
429
  /*-------------------------------------------*/
430
  /* Widget .veu_profile
assets/css/vkExUnit_editor_style.css CHANGED
@@ -1 +1 @@
1
- .veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}div.veu_child_page_list_block .disabled,div.veu_contact_section_block .disabled{display:block!important;background-color:rgba(139,139,150,.1);padding:.7em;text-align:center}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}}@media (min-width:1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media (max-width:767px){.veu_childPage_list .wp-post-image{width:25%}}
1
+ .veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{margin-top:1em;padding-bottom:2em}.veu_sitemap .sitemap-col .link-list a{display:block;overflow:hidden}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_sitemap .sitemap-post-type-title{margin-bottom:.8em;padding:.2em 0;font-size:18px}.veu_sitemap .sitemap-taxonomy-title{margin:1em 0;padding:0;font-size:16px}.veu_sitemap a{color:#464646}.veu_sitemap ul{margin:0 0 0 1em;padding-left:0}.veu_sitemap ul li{font-size:14px}.veu_sitemap ul>li>a{position:relative;margin-bottom:1em}.veu_sitemap .sitemap-term-list{margin-bottom:1.5em}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}div.veu_child_page_list_block .disabled,div.veu_contact_section_block .disabled,div.veu_page_list_ancestor_block .disabled{display:block!important;background-color:rgba(139,139,150,.1);padding:.7em;text-align:center}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}}@media (min-width:1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media (max-width:767px){.veu_childPage_list .wp-post-image{width:25%}}
assets/css/vkExUnit_style.css CHANGED
@@ -1 +1 @@
1
- .veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:20px;margin-bottom:1.5rem}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:.5em;font-weight:400}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}.veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:1em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon a{display:block;overflow:hidden;padding:5px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet .sb_icon a:hover{box-shadow:none;transform:translate3d(0,2px,0);-webkit-transform:translate3d(0,2px,0)}.veu_socialSet .sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet iframe{border:none}.veu_socialSet a .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet .sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet .sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet .sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet .sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet .sb_icon.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}@font-face{font-weight:400;font-style:normal;font-family:vk_sns;src:url(../../inc/sns/icons/fonts/vk_sns.eot?-bq20cj);src:url(../../inc/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj) format("embedded-opentype"),url(../../inc/sns/icons/fonts/vk_sns.woff?-bq20cj) format("woff"),url(../../inc/sns/icons/fonts/vk_sns.ttf?-bq20cj) format("truetype"),url(../../inc/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns) format("svg")}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.vk_icon_w_r_sns_pocket:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5;flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;text-indent:100%;white-space:nowrap;overflow:hidden;border:none;background:rgba(0,0,0,.8);outline:1px solid rgba(0,0,0,.8);border:1px solid rgba(255,255,255,.8);background-image:url(../images/to-top-btn-icon.svg);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s}.page_top_btn:hover{transition:opacity .3s}.scrolled .page_top_btn{display:block;opacity:1}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px dotted #666;line-height:1.4em}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (min-width:992px){.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}@media (min-width:1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media screen and (max-width:768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media (max-width:767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:.5em}.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (max-width:500px){.media .postList_thumbnail{width:100px}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
1
+ .veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:20px;margin-bottom:1.5rem}.btn{white-space:inherit}.veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{margin-top:1em;padding-bottom:2em}.veu_sitemap .sitemap-col .link-list a{display:block;overflow:hidden}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_sitemap .sitemap-post-type-title{margin-bottom:.8em;padding:.2em 0;font-size:18px}.veu_sitemap .sitemap-taxonomy-title{margin:1em 0;padding:0;font-size:16px}.veu_sitemap a{color:#464646}.veu_sitemap ul{margin:0 0 0 1em;padding-left:0}.veu_sitemap ul li{font-size:14px}.veu_sitemap ul>li>a{position:relative;margin-bottom:1em}.veu_sitemap .sitemap-term-list{margin-bottom:1.5em}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon a{display:block;overflow:hidden;padding:5px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet .sb_icon a:hover{box-shadow:none;transform:translate3d(0,2px,0);-webkit-transform:translate3d(0,2px,0)}.veu_socialSet .sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet iframe{border:none}.veu_socialSet a .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet .sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet .sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet .sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet .sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet .sb_icon.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}@font-face{font-weight:400;font-style:normal;font-family:vk_sns;src:url(../../inc/sns/icons/fonts/vk_sns.eot?-bq20cj);src:url(../../inc/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj) format("embedded-opentype"),url(../../inc/sns/icons/fonts/vk_sns.woff?-bq20cj) format("woff"),url(../../inc/sns/icons/fonts/vk_sns.ttf?-bq20cj) format("truetype"),url(../../inc/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns) format("svg")}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.vk_icon_w_r_sns_pocket:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5;flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;text-indent:100%;white-space:nowrap;overflow:hidden;border:none;background:rgba(0,0,0,.8);outline:1px solid rgba(0,0,0,.8);border:1px solid rgba(255,255,255,.8);background-image:url(../images/to-top-btn-icon.svg);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s}.page_top_btn:hover{transition:opacity .3s}.scrolled .page_top_btn{display:block;opacity:1}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px dotted #666;line-height:1.4em}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (min-width:1200px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media screen and (max-width:768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media (max-width:767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
assets/css/vkExUnit_style_in_bs.css CHANGED
@@ -9,4 +9,4 @@
9
  * Bootstrap v3.3.7 (http://getbootstrap.com)
10
  * Copyright 2011-2016 Twitter, Inc.
11
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
12
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */[role=button]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:20px;margin-bottom:1.5rem}.btn{white-space:inherit}.media{border-bottom:1px solid #e5e5e5;padding:2em 0;margin-top:0}.media:first-child{border-top:1px solid #e5e5e5}.media .postList_thumbnail{width:160px;margin-bottom:.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden}.media .postList_thumbnail img{width:100%;height:auto}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:.5em;font-weight:400}.media .media-heading a{color:#464646}.media .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0}.media a.media-body_excerpt{color:#464646}.veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{padding-bottom:2em}.veu_sitemap .sitemap-col{margin-top:1em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon a{display:block;overflow:hidden;padding:5px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet .sb_icon a:hover{box-shadow:none;transform:translate3d(0,2px,0);-webkit-transform:translate3d(0,2px,0)}.veu_socialSet .sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet iframe{border:none}.veu_socialSet a .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet .sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet .sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet .sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet .sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet .sb_icon.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}@font-face{font-weight:400;font-style:normal;font-family:vk_sns;src:url(../../inc/sns/icons/fonts/vk_sns.eot?-bq20cj);src:url(../../inc/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj) format("embedded-opentype"),url(../../inc/sns/icons/fonts/vk_sns.woff?-bq20cj) format("woff"),url(../../inc/sns/icons/fonts/vk_sns.ttf?-bq20cj) format("truetype"),url(../../inc/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns) format("svg")}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.vk_icon_w_r_sns_pocket:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5;flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;text-indent:100%;white-space:nowrap;overflow:hidden;border:none;background:rgba(0,0,0,.8);outline:1px solid rgba(0,0,0,.8);border:1px solid rgba(255,255,255,.8);background-image:url(../images/to-top-btn-icon.svg);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s}.page_top_btn:hover{transition:opacity .3s}.scrolled .page_top_btn{display:block;opacity:1}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px dotted #666;line-height:1.4em}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.mainSection .veu_postList.pt_0 .postList.postList_miniThumb{padding:0;margin-left:0;margin-right:0}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.container{width:750px}.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (min-width:992px){.container{width:970px}.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}.mainSection .veu_postList.pt_0.postList_item .postList_thumbnail{margin-right:30px;margin-left:0}.mainSection .veu_postList.pt_0.postList_item.even .postList_thumbnail{margin-left:30px;margin-right:0}}@media (min-width:1200px){.container{width:1170px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media screen and (max-width:768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}@media (max-width:767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:.5em}.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (max-width:500px){.media .postList_thumbnail{width:100px}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
9
  * Bootstrap v3.3.7 (http://getbootstrap.com)
10
  * Copyright 2011-2016 Twitter, Inc.
11
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
12
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */[role=button]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}.veu_caption{font-size:.8em}.fa_v4 .btn.btn-blank::after{margin-left:.7em;font-family:FontAwesome;content:"\f08e"}.fa_v5_css .btn.btn-blank::after{margin-left:.7em;font-family:Font Awesome\ 5 Free;content:"\f35d";font-weight:900}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}dl.veu_qaItem dd,dl.veu_qaItem dt{border:none;padding-left:35px}dl.veu_qaItem dd:before,dl.veu_qaItem dt:before{position:absolute;left:0;font-size:24px;line-height:105%}dl.veu_qaItem dt{margin-bottom:15px;font-size:18px}dl.veu_qaItem dt:before{font-family:areal;content:"Q ";color:#e50000}dl.veu_qaItem dd{margin-bottom:0}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.veu_flowBox:last-child{padding-bottom:0;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0;background-image:none}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dd,.veu_flowBox dl dt{padding-left:0;border:none}.veu_flowBox dl dt{border-bottom:1px dotted #ccc;margin-bottom:10px;font-size:1.2em}.veu_flowBox dl dd{margin-bottom:0}.veu_flowBox dl dd h4{margin:0;padding:0}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0}.veu_dummyImage{padding:20px;display:block;vertical-align:middle;text-align:center;background-color:#f5f5f5;border:1px solid #ccc;margin-bottom:15px}.veu_floatLeft{float:left;margin-right:20px}.veu_floatRight{float:right;margin-left:20px}.veu_feat_list{background:0 0;border:none;padding:0 0 0 2em;font-size:2em;margin-top:1.5em;position:relative}.veu_feat_list::after,.veu_feat_list::before{border:none;background:0 0}.veu_feat_list::before{position:absolute;left:0;top:-.2em;background-color:#4e7729;color:#fff;border-radius:100%;margin-right:.5em;padding:.2em .5em}.veu_feat_list_1::before{content:"1"}.veu_feat_list_2::before{content:"2"}.veu_feat_list_3::before{content:"3"}.veu_feat_list_4::before{content:"4"}.veu_feat_list_5::before{content:"5"}.veu_feat_list_6::before{content:"6"}.veu_feat_list_7::before{content:"7"}.veu_feat_list_8::before{content:"8"}.veu_feat_list_9::before{content:"9"}.link-list li{padding:.5em}iframe.wp-embedded-content{width:100%}.veu_adminEdit{margin-top:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;margin-top:20px;margin-bottom:1.5rem}.btn{white-space:inherit}.veu_card{border:3px solid #efefef}.veu_card .veu_card_inner{position:relative;display:block;overflow:hidden;padding:1.5rem;box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.veu_card .veu_card_title{color:#464646;font-size:16px;line-height:1.4;border:none;background:0 0;padding:0 0 .4em;margin:0 0 1em;display:block;text-align:left;border-bottom:1px solid #e5e5e5}.veu_card .veu_card_title a{color:#464646}.veu_card .veu_card_title::after,.veu_card .veu_card_title::before{content:"";border:none;border-right:none;margin:0;background:0 0;height:0;left:inherit}.relatedPosts h2{margin-bottom:10px}.veu_autoEyeCatchBox{display:block;overflow:hidden;margin-bottom:2em}.veu_sitemap .sectionBox{padding-top:0}.veu_sitemap .sitemap-col{margin-top:1em;padding-bottom:2em}.veu_sitemap .sitemap-col .link-list a{display:block;overflow:hidden}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_sitemap .sitemap-post-type-title{margin-bottom:.8em;padding:.2em 0;font-size:18px}.veu_sitemap .sitemap-taxonomy-title{margin:1em 0;padding:0;font-size:16px}.veu_sitemap a{color:#464646}.veu_sitemap ul{margin:0 0 0 1em;padding-left:0}.veu_sitemap ul li{font-size:14px}.veu_sitemap ul>li>a{position:relative;margin-bottom:1em}.veu_sitemap .sitemap-term-list{margin-bottom:1.5em}.veu_socialSet-position-before{margin-top:-1em;margin-bottom:2em}.veu_socialSet-position-after{margin-top:3em}.veu_socialSet{margin-bottom:1.5em}.veu_socialSet ul{display:flex}.veu_socialSet li{width:50%;background:0 0;position:relative;display:block;overflow:visible;box-sizing:border-box}.veu_socialSet .sb_icon a{display:block;overflow:hidden;padding:5px 10px;border-radius:4px;color:#fff;text-decoration:none;line-height:100%;font-size:90%}.veu_socialSet .sb_icon a:hover{box-shadow:none;transform:translate3d(0,2px,0);-webkit-transform:translate3d(0,2px,0)}.veu_socialSet .sb_icon a .sns_txt{position:relative;top:-1px}.veu_socialSet iframe{border:none}.veu_socialSet a .icon_sns{font-size:100%;padding:5px 8px 5px 0;display:inline-block}.veu_socialSet .sb_icon.sb_facebook a{background:#425dab;box-shadow:0 4px 0 #344e84}.veu_socialSet .sb_icon.sb_hatena a{background:#007fc5;box-shadow:0 4px 0 #00679f}.veu_socialSet .sb_icon.sb_twitter a{background:#00abec;box-shadow:0 4px 0 #007eaa}.veu_socialSet .sb_icon.sb_google a{background:#dd4b39;box-shadow:0 4px 0 #a03524}.veu_socialSet .sb_icon.sb_line a{background:#6ebd30;box-shadow:0 4px 0 #5b9c28}.veu_socialSet .sb_icon.sb_pocket a{background:#ea4654;box-shadow:0 4px 0 #c1303c}.veu_count_sns_fb,.veu_count_sns_hb,.veu_count_sns_pocket{position:absolute;bottom:5px;right:5px;font-size:77%;line-height:1;font-weight:700}.veu_socialSet.veu_contentAddSection ul{margin:0;padding:0}.veu_socialSet.veu_contentAddSection ul li{margin:3px;padding:0}@font-face{font-weight:400;font-style:normal;font-family:vk_sns;src:url(../../inc/sns/icons/fonts/vk_sns.eot?-bq20cj);src:url(../../inc/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj) format("embedded-opentype"),url(../../inc/sns/icons/fonts/vk_sns.woff?-bq20cj) format("woff"),url(../../inc/sns/icons/fonts/vk_sns.ttf?-bq20cj) format("truetype"),url(../../inc/sns/icons/fonts/vk_sns.svg?-bq20cj#vk_sns) format("svg")}[class*=" vk_icon_w_r_sns_"],[class^=vk_icon_w_r_sns_]{text-transform:none;font-weight:400;font-style:normal;font-variant:normal;font-family:vk_sns;line-height:1;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vk_icon_w_r_sns_twitter:before{content:"\e600"}.vk_icon_w_r_sns_line:before{content:"\e601"}.vk_icon_w_r_sns_hatena:before{content:"\e602"}.vk_icon_w_r_sns_google:before{content:"\e603"}.vk_icon_w_r_sns_fb:before{content:"\e604"}.vk_icon_w_r_sns_pocket:before{content:"\e605"}.veu_childPage_list{margin-top:2.5em}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1.5em;width:100%;text-decoration:none}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;margin-bottom:1em;width:30%;height:auto;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px}.veu_childPage_list .childPage_list_body:hover{text-decoration:underline}.veu_childPage_list p{line-height:1.5em}.veu_childPage_list .childPage_list_text{overflow:hidden;margin-bottom:1em}.veu_childPage_list .childPage_list_more{float:right}.veu_pageList_ancestor{clear:both;margin:2.5em 0 1em}.veu_pageList_ancestor .pageList_ancestor_title{margin-bottom:.5em}.veu_pageList_ancestor .pageList{margin-top:0;margin-bottom:0;padding-left:0}.veu_pageList_ancestor .pageList a{display:block;padding:8px 5px;border-bottom:solid 1px #ddd;color:#333;font-size:14px}.veu_pageList_ancestor .pageList a:hover{text-decoration:underline}.veu_pageList_ancestor .pageList>.page_item{list-style:none}.veu_pageList_ancestor .pageList li{margin-bottom:0}.veu_pageList_ancestor .pageList ul{margin:0;padding-left:0;padding-bottom:0}.veu_pageList_ancestor .pageList ul li{position:relative;list-style:none}.veu_pageList_ancestor .pageList ul li:before{position:absolute;top:.26em;left:5px;display:inline-block}.veu_pageList_ancestor .pageList ul li a{padding-left:20px}.veu_pageList_ancestor .pageList ul li li a{padding-left:30px}.veu_pageList_ancestor .pageList ul li li li a{padding-left:40px}.veu_pageList_ancestor .current_page_item>a{font-weight:700}.veu_followSet{margin:30px 0;display:table;table-layout:fixed;width:100%;background-color:#2b2b2b;color:#fff}.veu_followSet .followSet_img{display:table-cell;min-width:240px;background-position:center;background-size:cover}.veu_followSet .followSet_body{display:table-cell;padding:15px;text-align:center;vertical-align:middle;line-height:1.4;font-size:20px}.veu_followSet .followSet_fb_page{margin-top:0;display:block;width:100%;transform:scale(1.2)}.veu_followSet .followSet_tw_follow{width:100%;padding:15px 0 0}.veu_followSet .followSet_feedly{text-align:center}.veu_cta{display:block;overflow:hidden;margin-top:30px;margin-bottom:30px;background-color:#efefef}.veu_cta .cta_title{display:block;overflow:hidden;margin:0;padding:12px 20px 10px;background-color:#333;color:#fff;font-size:22px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 1.5em 2em;line-height:170%}.veu_cta .cta_body_image{margin-bottom:1.5em}.veu_cta .cta_body_image img{max-width:250px}.veu_cta .cta_body_image_center{display:block;overflow:hidden;text-align:center}.veu_cta .cta_body_image_center img{display:block;margin:0 auto 15px;max-width:100%}.veu_cta .cta_body_txt{display:block;overflow:hidden}.veu_cta .cta_body_link{clear:both;margin-top:1.5em}.veu_contact .contact_frame{display:block;overflow:hidden;background-color:#f9f9f9}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_tel,.veu_contact .contact_txt_time{display:block;overflow:hidden}.veu_contact .contact_txt_catch,.veu_contact .contact_txt_time{font-size:14px;line-height:128.6%}.veu_contact .contact_txt_tel{padding:4px 0;font-size:28px;line-height:105%;font-weight:700}.veu_contact .contact_txt_tel_icon{margin-right:.3rem}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:12px;margin-top:.4rem}.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}.widget .veu_contact>.contact_bt{display:inline-block;float:none}.veu_insertAds{margin-top:1em;margin-bottom:2em}.veu_relatedPosts>.row{display:flex;margin:0;margin-right:-3%;flex-wrap:wrap}.veu_relatedPosts .relatedPosts_item{float:none;margin-right:2.9%;padding-right:0;padding-left:0;width:47%;border-bottom:solid 1px #e5e5e5;flex:initial}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{padding:1em 0 .8em;margin-top:0;border:none}.veu_relatedPosts .relatedPosts_item>.media .media-body{font-size:14px}.veu_relatedPosts .relatedPosts_item>.media .postList_thumbnail{width:80px;padding-right:15px;margin-bottom:0}.veu_relatedPosts .relatedPosts_item>.media .media-heading{font-size:14px}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}.page_top_btn{position:fixed;right:2%;bottom:3%;z-index:99999;width:40px;height:38px;text-indent:100%;white-space:nowrap;overflow:hidden;border:none;background:rgba(0,0,0,.8);outline:1px solid rgba(0,0,0,.8);border:1px solid rgba(255,255,255,.8);background-image:url(../images/to-top-btn-icon.svg);background-size:50%;background-repeat:no-repeat;background-position:center;opacity:0;transition:opacity .3s}.page_top_btn:hover{transition:opacity .3s}.scrolled .page_top_btn{display:block;opacity:1}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}iframe.twitter-timeline{margin-right:auto;margin-left:auto;width:740px!important}.veu_postList{margin-bottom:30px}.veu_postList .subSection-title,.veu_postList h1.mainSection-title{margin-bottom:0}.veu_postList ul.postList{margin:0;padding:0}.veu_postList ul.postList li{display:block;clear:both;overflow:hidden;margin:0;padding:15px 0;border-bottom:1px dotted #666;line-height:1.4em}.veu_postList .postList a{color:#464646;text-decoration:none}.veu_postList .postList a:hover{text-decoration:underline}.veu_postList .postList_title{display:block;clear:both;margin:3px 0 0}.veu_postList .postList_meta_items{font-size:14px;color:#666}.veu_postList .postList_date{margin-right:10px;color:#d44950}.veu_postList .postList_date:before{content:"";margin-right:0}.veu_postList .postList_terms a{margin-right:3px;padding:2px 5px 1px;border-radius:3px;background-color:#efefef;font-size:12px}.veu_postList .postList_more{margin:10px 5px 0 0;text-align:right}.veu_postList .postList_miniThumb .postList_item{display:block;overflow:hidden;clear:both;position:relative;padding:15px 0;border-bottom:1px dotted #666;margin-bottom:0}.veu_postList .postList_miniThumb .postList_thumbnail{float:left;margin-right:15px}.veu_postList .postList_miniThumb .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.veu_postList .postList_miniThumb .postList_thumbnail img{width:80px;height:auto}.veu_postList .postList_miniThumb .postList_body{display:block;overflow:hidden;width:auto}.veu_postList .postList_miniThumb .postList_title{font-size:14px}.veu_profile .profile{overflow:hidden}.veu_profile .media_outer{position:relative;display:block;overflow:hidden;margin:.8em 0 .8em;box-sizing:border-box}.veu_profile .media_outer img{max-width:100%;height:auto}.veu_profile .media_round{border-radius:50%;width:120px;height:120px;position:relative}.veu_profile .media_round img{position:absolute;left:-9999px}.veu_profile .media_center{margin-left:auto;margin-right:auto}.veu_profile .media_center img{display:block;margin-left:auto;margin-right:auto}.veu_profile .media_float{float:left;margin-right:1em}.veu_profile .media_float+.profile_text{padding-top:.8em}.veu_profile .profile_text{margin-bottom:1em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;position:relative;width:40px;height:40px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:.8}.veu_profile .sns_btns .icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)}.veu_profile .sns_btns .facebook_btn a{background:#3b5998}.veu_profile .sns_btns .twitter_btn a{background:#55acee}.veu_profile .sns_btns .mail_btn a{background:#2f915f}.veu_profile .sns_btns .youtube_btn a{background:#c81d1c}.veu_profile .sns_btns .rss_btn a{background:#f26522}.veu_profile .sns_btns .instagram_btn a{background:#3f729b}.veu_profile .sns_btns .linkedin_btn a{background:#0077b5}.veu_3prArea .subSection-title{font-size:18px;margin-top:.8em}.veu_3prArea .summary{margin-bottom:.5em;font-size:14px;line-height:1.6em}.veu_3prArea .linkurl a{text-decoration:none}.veu_3prArea_image{margin-bottom:.8em;border:1px solid #e5e5e5}.veu_3prArea_image .image_pc{display:block}.veu_3prArea_image .image_sp{display:none}.veu_3prArea_image img{width:100%}.veu_3prArea_image_link{border:1px solid #fff;display:block;overflow:hidden}.prBlock a{color:#333}.prBlock a:hover{color:#333;text-decoration:none}.prBlock a .prBlock_summary:hover{text-decoration:underline}.prBlock .prBlock_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.prBlock .prBlock_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px}.prBlock .prBlock_title{margin-top:.9em;margin-bottom:.7em;text-align:center;font-size:18px;line-height:1.4em}.prBlock .prBlock_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.prBlock .prBlock_summary{margin-bottom:.5em;text-align:center;font-size:14px;line-height:1.6em}.veu_button i,.veu_button svg{margin-left:.3em;margin-right:.3em}.veu_button .button_mainText,.veu_button .button_subText{display:block}.veu_button .btn.btn-sm{padding-top:.6em;padding-bottom:.45em}.veu_button .btn{padding-top:.8em;padding-bottom:.6em}.veu_button .btn.btn-lg{padding-top:.8em;padding-bottom:.7em}.veu_banner{text-align:center;display:block;overflow:hidden}@media (min-width:481px){.veu_followSet .followSet_body{padding:40px}.veu_followSet .followSet_title{font-size:18px;margin-bottom:10px}}@media (min-width:541px){.veu_childPage_list{display:flex;align-items:stretch;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:space-between;-webkit-justify-content:space-between}.veu_childPage_list .childPage_list_box{width:48%}}@media (min-width:768px){.container{width:750px}.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}.veu_leadTxt,p.veu_leadTxt{margin-bottom:.7em}.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}@media (min-width:992px){.container{width:970px}.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.container{width:1170px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left;text-align:left}.veu_contact .contact_bt{float:right;padding:.7em 1.5em}}@media screen and (max-width:992px){.prBlock{margin-bottom:1.5em}}@media (max-width:971px){.veu_insertAds{margin-bottom:.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}@media (max-width:768px){.veu_relatedPosts .relatedPosts_item{max-width:100%}.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}@media screen and (max-width:768px){.veu_3prArea .prArea{margin-bottom:1em;display:block;overflow:hidden}.veu_3prArea .image_pc{display:none}.veu_3prArea .image_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}.veu_3prArea_image{width:138px;margin:0 1em 0 0;float:left}}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}@media (max-width:767px){.veu_socialSet ul{flex-wrap:wrap}.veu_socialSet li{width:calc(50% - 6px)}.veu_socialSet .veu_count_sns_fb,.veu_socialSet .veu_count_sns_hb,.veu_socialSet .veu_count_sns_pocket{bottom:2px}.veu_socialSet .sb_icon a{padding:8px 10px}.veu_socialSet.veu_contentAddSection ul li{margin-bottom:9px}.veu_childPage_list .wp-post-image{width:25%}.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (max-width:480px){.veu_followSet .followSet_title{font-size:12px;margin-bottom:0}}
assets/js/all.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";jQuery.changeLetterSize={handlers:[],interval:1e3,currentSize:0},function(t){function e(){i.appendTo("body");var t=i[0].offsetHeight;return i.remove(),n.currentSize!=t&&(n.currentSize=t,!0)}var n=t.changeLetterSize,i=t("<ins>M</ins>").css({display:"block",visibility:"hidden",position:"absolute",padding:"0",top:"0"});t(e);n.addHandler=function(t){n.handlers.push(t),n.handlers.length}}(jQuery),function(t){function e(t){var e=0;t.each(function(){var t=this.offsetHeight;e<t&&(e=t)}),t.css("height",e+"px")}var n=[];jQuery.fn.flatHeights=function(){return 1<this.length&&(e(this),n.push(this)),this};function i(){t.each(n,function(){this.height("auto"),e(this)})}t.changeLetterSize.addHandler(i),t(window).resize(i)}(jQuery),jQuery(document).ready(function(t){jQuery(".topPrTit a").flatHeights(),jQuery(".topPrDescription").flatHeights(),jQuery(".child_page_block h4 a").flatHeights()});var a=null;!function(t){t(function(){t(".prArea > .subSection-title").flatHeights(),t(".prArea > .summary").flatHeights()}),window.addEventListener("DOMContentLoaded",function(){t(".childPage_list_text").flatHeights()})}(jQuery),function(t,e){t.addEventListener("load",function(){var n=e.getElementsByClassName("veu_count_sns_hb");if(0!=n.length){var t=encodeURIComponent(location.href);fetch(vkExOpt.hatena_entry+t,{method:"GET"}).then(function(t){t.ok&&t.json().then(function(e){void 0!==e.count&&Array.prototype.forEach.call(n,function(t){return t.innerHTML=e.count})})}).catch(function(t){})}},!1)}(window,document),function(a,c){vkExOpt.enable_smooth_scroll&&a.addEventListener("load",function(){function n(t){for(var e=0;e<t.path.length&&!t.path[e].getAttribute("href");e++);var n=t.path[e].getAttribute("href");if(n&&!(0<["tab","button"].indexOf(t.path[e].getAttribute("role"))||t.path[e].getAttribute("data-toggle")||t.path[e].getAttribute("carousel-control"))){var i=0,o=c.getElementById(n.slice(1));if(o){var r=a.pageYOffset||c.documentElement.scrollTop;i=o.getBoundingClientRect().top+r}a.scrollTo({top:i,behavior:"smooth"}),t.preventDefault()}}Array.prototype.forEach.call(c.getElementsByTagName("a"),function(t){var e=t.getAttribute("href");e&&0==e.indexOf("#")&&t.addEventListener("click",n)})})}(window,document),function(t,e,n){t.addEventListener("scroll",function(){0<t.pageYOffset?e.body.classList.add(n):e.body.classList.remove(n)})}(window,document,"scrolled");
1
+ "use strict";jQuery.changeLetterSize={handlers:[],interval:1e3,currentSize:0},function(t){function e(){o.appendTo("body");var t=o[0].offsetHeight;return o.remove(),n.currentSize!=t&&(n.currentSize=t,!0)}var n=t.changeLetterSize,o=t("<ins>M</ins>").css({display:"block",visibility:"hidden",position:"absolute",padding:"0",top:"0"});t(e);n.addHandler=function(t){n.handlers.push(t),n.handlers.length}}(jQuery),function(t){function e(t){var e=0;t.each(function(){var t=this.offsetHeight;e<t&&(e=t)}),t.css("height",e+"px")}var n=[];jQuery.fn.flatHeights=function(){return 1<this.length&&(e(this),n.push(this)),this};function o(){t.each(n,function(){this.height("auto"),e(this)})}t.changeLetterSize.addHandler(o),t(window).resize(o)}(jQuery),jQuery(document).ready(function(t){jQuery(".topPrTit a").flatHeights(),jQuery(".topPrDescription").flatHeights(),jQuery(".child_page_block h4 a").flatHeights()});var a=null;!function(t){t(function(){t(".prArea > .subSection-title").flatHeights(),t(".prArea > .summary").flatHeights()}),window.addEventListener("DOMContentLoaded",function(){t(".childPage_list_text").flatHeights()})}(jQuery),function(t,e){t.addEventListener("load",function(){var n=e.getElementsByClassName("veu_count_sns_hb");if(0!=n.length){var t=encodeURIComponent(location.href);fetch(vkExOpt.hatena_entry+t,{method:"GET"}).then(function(t){t.ok&&t.json().then(function(e){void 0!==e.count&&Array.prototype.forEach.call(n,function(t){return t.innerHTML=e.count})})}).catch(function(t){});var o=e.getElementsByClassName("veu_count_sns_fb");vkExOpt.facebook_count_enable&&fetch(vkExOpt.facebook_entry+t,{method:"GET"}).then(function(t){t.ok&&t.json().then(function(e){void 0!==e.count&&Array.prototype.forEach.call(o,function(t){return t.innerHTML=e.count})})}).catch(function(t){})}},!1)}(window,document),function(a,c){vkExOpt.enable_smooth_scroll&&a.addEventListener("load",function(){function n(t){for(var e=0;e<t.path.length&&!t.path[e].getAttribute("href");e++);var n=t.path[e].getAttribute("href");if(n&&!(0<["tab","button"].indexOf(t.path[e].getAttribute("role"))||t.path[e].getAttribute("data-toggle")||t.path[e].getAttribute("carousel-control"))){var o=0,i=c.getElementById(n.slice(1));if(i){var r=a.pageYOffset||c.documentElement.scrollTop;o=i.getBoundingClientRect().top+r}a.scrollTo({top:o,behavior:"smooth"}),t.preventDefault()}}Array.prototype.forEach.call(c.getElementsByTagName("a"),function(t){var e=t.getAttribute("href");e&&0==e.indexOf("#")&&t.addEventListener("click",n)})})}(window,document),function(t,e,n){t.addEventListener("scroll",function(){0<t.pageYOffset?e.body.classList.add(n):e.body.classList.remove(n)})}(window,document,"scrolled");
assets/js/block.min.js CHANGED
@@ -1 +1,5 @@
1
- "use strict";!function(e){var t=e.i18n.__,l=e.blocks.registerBlockType,n=e.components,c=n.ServerSideRender,a=(n.PanelBody,e.element.Fragment),o=e.element;l("vk-blocks/share-button",{title:t("Share button","veu-block"),icon:"share",category:"veu-block",edit:function(e){var t=e.className;return o.createElement(a,null,o.createElement("div",{className:"".concat(t," veu_share_button_block")},o.createElement(c,{block:"vk-blocks/share-button",attributes:{position:"After"}})))},save:function(){return null}})}(wp),function(e){var t=e.i18n.__,l=e.blocks.registerBlockType,n=e.components,c=n.ServerSideRender,a=(n.PanelBody,e.element.Fragment),o=e.element,r=o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 576 512"},o.createElement("g",null,o.createElement("path",{d:"M177.8,325L49,324.9c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,20.6,16.7,37.3,37.3,37.4l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C215.1,341.8,198.4,325,177.8,325z M57.5,464.3l0.1-93.4L169,371v93.4L57.5,464.3z"}),o.createElement("path",{d:"M532.7,325.3l-128.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C570,342.1,553.2,325.3,532.7,325.3z M412.4,464.6l0.1-93.4l111.4,0.1l-0.1,93.4L412.4,464.6 z"}),o.createElement("path",{d:"M355.2,0.1L226.4,0c-20.6,0-37.3,16.7-37.3,37.3L189,148c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C392.5,16.9,375.7,0.1,355.2,0.1z M234.9,139.4L235,46l111.4,0.1l-0.1,93.4L234.9,139.4z"})),o.createElement("polygon",{points:"308.7,237.7 308.8,200.1 272.8,200 272.7,237.7 92.1,237.5 92.1,310.2 128.1,310.2 128.1,273.5 453.4,273.9 453.4,310.2 489.4,310.2 489.4,237.9 "}));l("vk-blocks/child-page-index",{title:t("Child page index","veu-block"),icon:r,category:"veu-block",edit:function(e){var t=e.className;return o.createElement(a,null,o.createElement("div",{className:"veu_child_page_list_block"},o.createElement(c,{block:"vk-blocks/child-page-index",attributes:{className:t}})))},save:function(){return null}})}(wp),function(e){var t=e.i18n.__,l=e.blocks.registerBlockType,n=e.components,c=n.ServerSideRender,a=(n.PanelBody,e.element.Fragment),o=e.element;l("vk-blocks/contact-section",{title:t("Contact section","veu-block"),icon:"phone",category:"veu-block",edit:function(e){var t=e.className;return o.createElement(a,null,o.createElement("div",{className:"veu_contact_section_block"},o.createElement(c,{block:"vk-blocks/contact-section",attributes:{className:t}})))},save:function(){return null}})}(wp);
 
 
 
 
1
+ "use strict";!function(e){var t=e.i18n.__,n=e.blocks.registerBlockType,r=e.components,o=r.ServerSideRender,c=(r.PanelBody,e.element.Fragment),l=e.element;n("vk-blocks/share-button",{title:t("Share button","veu-block"),icon:"share",category:"veu-block",edit:function(e){var t=e.className;return l.createElement(c,null,l.createElement("div",{className:"".concat(t," veu_share_button_block")},l.createElement(o,{block:"vk-blocks/share-button",attributes:{position:"After"}})))},save:function(){return null}})}(wp);
2
+ "use strict";!function(e){var l=e.i18n.__,c=e.blocks.registerBlockType,t=e.components,n=t.ServerSideRender,a=(t.PanelBody,e.element.Fragment),r=e.element,m=r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 576 512"},r.createElement("g",null,r.createElement("path",{d:"M236.2,272l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3L0,449.9c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C273.5,288.8,256.8,272,236.2,272z M45.9,431.2L46,328c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1 c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1L56,441.3C50.4,441.3,45.9,436.8,45.9,431.2z"})),r.createElement("g",null,r.createElement("path",{d:"M136.8,337.8l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9 C149.1,343.3,143.6,337.8,136.8,337.8z"})),r.createElement("g",null,r.createElement("path",{d:"M538.7,272l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,140.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C576,288.8,559.3,272,538.7,272z M348.4,431.2l0.1-103.3c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1 c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1l-161.4-0.1C352.9,441.3,348.4,436.8,348.4,431.2z"})),r.createElement("g",null,r.createElement("path",{d:"M439.3,337.8l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9 C451.6,343.3,446.1,337.8,439.3,337.8z"})),r.createElement("g",null,r.createElement("path",{d:"M236.2,30.8L37.4,30.7C16.8,30.7,0.1,47.4,0.1,68L0,208.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C273.5,47.6,256.8,30.8,236.2,30.8z M45.9,190L46,86.8c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1 c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1L56,200.1C50.4,200.1,45.9,195.6,45.9,190z"})),r.createElement("g",null,r.createElement("path",{d:"M136.8,96.6l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9 C149.1,102.2,143.6,96.6,136.8,96.6z"})),r.createElement("g",null,r.createElement("path",{d:"M538.7,30.8l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,140.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1 c20.6,0,37.3-16.7,37.3-37.3L576,68.2C576,47.6,559.3,30.8,538.7,30.8z M348.4,190l0.1-103.3c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1 c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1l-161.4-0.1C352.9,200.1,348.4,195.6,348.4,190z"})),r.createElement("g",null,r.createElement("path",{d:"M439.3,96.6l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9 C451.6,102.2,446.1,96.6,439.3,96.6z"})));c("vk-blocks/child-page-index",{title:l("Child page index","veu-block"),icon:m,category:"veu-block",edit:function(e){var l=e.className;return r.createElement(a,null,r.createElement("div",{className:"veu_child_page_list_block"},r.createElement(n,{block:"vk-blocks/child-page-index",attributes:{className:l}})))},save:function(){return null}})}(wp);
3
+ "use strict";!function(e){var t=e.i18n.__,c=e.blocks.registerBlockType,n=e.components,o=n.ServerSideRender,l=(n.PanelBody,e.element.Fragment),a=e.element;c("vk-blocks/contact-section",{title:t("Contact section","veu-block"),icon:"phone",category:"veu-block",edit:function(e){var t=e.className;return a.createElement(l,null,a.createElement("div",{className:"veu_contact_section_block"},a.createElement(o,{block:"vk-blocks/contact-section",attributes:{className:t}})))},save:function(){return null}})}(wp);
4
+ "use strict";!function(e){var t=e.i18n.__,c=e.blocks.registerBlockType,l=e.components,n=l.ServerSideRender,a=(l.PanelBody,e.element.Fragment),r=e.element;c("vk-blocks/page-list-ancestor",{title:t("Page list ancestor","veu-block"),icon:"editor-ul",category:"veu-block",edit:function(e){var t=e.className;return r.createElement(a,null,r.createElement("div",{className:"".concat(t," veu_page_list_ancestor_block")},r.createElement(n,{block:"vk-blocks/page-list-ancestor",attributes:{className:t}})))},save:function(){return null}})}(wp);
5
+ "use strict";!function(e){var t=e.i18n.__,l=e.blocks.registerBlockType,c=e.components.ServerSideRender,n=e.element.Fragment,a=e.element,r=a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 576 512"},a.createElement("g",null,a.createElement("path",{d:"M177.8,325L49,324.9c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,20.6,16.7,37.3,37.3,37.4l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C215.1,341.8,198.4,325,177.8,325z M57.5,464.3l0.1-93.4L169,371v93.4L57.5,464.3z"}),a.createElement("path",{d:"M532.7,325.3l-128.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C570,342.1,553.2,325.3,532.7,325.3z M412.4,464.6l0.1-93.4l111.4,0.1l-0.1,93.4L412.4,464.6 z"}),a.createElement("path",{d:"M355.2,0.1L226.4,0c-20.6,0-37.3,16.7-37.3,37.3L189,148c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1 c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C392.5,16.9,375.7,0.1,355.2,0.1z M234.9,139.4L235,46l111.4,0.1l-0.1,93.4L234.9,139.4z"})),a.createElement("polygon",{points:"308.7,237.7 308.8,200.1 272.8,200 272.7,237.7 92.1,237.5 92.1,310.2 128.1,310.2 128.1,273.5 453.4,273.9 453.4,310.2 489.4,310.2 489.4,237.9 "}));l("vk-blocks/sitemap",{title:t("HTML Sitemap","veu-block"),icon:r,category:"veu-block",edit:function(e){var t=e.className;return a.createElement(n,null,a.createElement("div",{className:"".concat(t," veu_sitemap_block")},a.createElement(c,{block:"vk-blocks/sitemap",attributes:{className:t}})))},save:function(){return null}})}(wp);
bin/dist ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ set -ex
4
+
5
+ PLUGIN_NAME='vk-all-in-one-expansion-unit'
6
+ PLUGIN_DIR=$(cd $(dirname $(dirname $0)); pwd)
7
+ CURRENT_VERSION=$(cat vkExUnit.php|grep -i version|head -n 1|sed -E 's/^[ *]*Version: *([^ ]*) *$/\1/i')
8
+
9
+ dist_dir=${PLUGIN_DIR}/dist
10
+ src_dir=${dist_dir}/${PLUGIN_NAME}
11
+
12
+ ZIPBALL=${dist_dir}/${PLUGIN_NAME}_v${CURRENT_VERSION}.zip
13
+
14
+ [[ -e ${dist_dir} ]] || mkdir ${dist_dir}
15
+ [[ -e "${ZIPBALL}" ]] && rm -r ${ZIPBALL}
16
+
17
+ rsync -av ${PLUGIN_DIR}/ ${src_dir}/ --exclude="dist/" --exclude-from='.svnignore'
18
+
19
+ cd ${dist_dir}
20
+
21
+ zip -r ${ZIPBALL} ${PLUGIN_NAME}/
22
+
23
+ exit 0
bin/sdist ADDED
File without changes
gulpfile.js CHANGED
@@ -24,6 +24,8 @@ var cleanCss = require('gulp-clean-css');
24
  // 同期的に処理してくれる( distで使用している )
25
  var runSequence = require('run-sequence');
26
  var replace = require('gulp-replace');
 
 
27
 
28
  let error_stop = true
29
 
@@ -43,10 +45,11 @@ gulp.task('block', function (done) {
43
  [
44
  './inc/sns/package/block.jsx',
45
  './inc/child-page-index/block.jsx',
46
- './inc/contact-section/block.jsx'
 
 
47
  ]
48
  )
49
- .pipe(concat('block.min.js'))
50
  .pipe(babel({
51
  plugins: [
52
  'transform-react-jsx',
@@ -60,6 +63,7 @@ gulp.task('block', function (done) {
60
  presets: ['@babel/env']
61
  }))
62
  .pipe(jsmin())
 
63
  .pipe(gulp.dest('./assets/js/'));
64
  });
65
 
@@ -115,7 +119,9 @@ gulp.task('watch', function() {
115
  [
116
  './inc/sns/package/block.jsx',
117
  './inc/child-page-index/block.jsx',
118
- './inc/contact-section/block.jsx'
 
 
119
  ],
120
  gulp.series('block')
121
  )
@@ -131,9 +137,16 @@ gulp.task('watch', function() {
131
  gulp.watch('./inc/pagetop-btn/assets/_scss/*.scss', gulp.series('sass'))
132
  });
133
 
134
- // gulp.task('default', ['scripts','watch','sprite']);
135
  gulp.task('default', gulp.series('text-domain','watch'))
136
  gulp.task('compile', gulp.series('scripts', 'sass', 'block'))
 
 
 
 
 
 
 
 
137
 
138
  // copy dist ////////////////////////////////////////////////
139
 
@@ -169,13 +182,7 @@ gulp.task('copy_dist', function() {
169
  )
170
  .pipe( gulp.dest( 'dist' ) ); // distディレクトリに出力
171
  } );
172
- // gulp.task('build:dist',function(){
173
- // /* ここで、CSS とか JS をコンパイルする */
174
- // });
175
 
176
  gulp.task('dist', function(cb){
177
- // return runSequence( 'build:dist', 'copy', cb );
178
- // return runSequence( 'build:dist', 'copy_dist', cb );
179
  return runSequence( 'copy_dist', cb );
180
- });
181
-
24
  // 同期的に処理してくれる( distで使用している )
25
  var runSequence = require('run-sequence');
26
  var replace = require('gulp-replace');
27
+ const ps = require('child_process').exec
28
+
29
 
30
  let error_stop = true
31
 
45
  [
46
  './inc/sns/package/block.jsx',
47
  './inc/child-page-index/block.jsx',
48
+ './inc/contact-section/block.jsx',
49
+ './inc/page-list-ancestor/block.jsx',
50
+ './inc/sitemap-page/block.jsx'
51
  ]
52
  )
 
53
  .pipe(babel({
54
  plugins: [
55
  'transform-react-jsx',
63
  presets: ['@babel/env']
64
  }))
65
  .pipe(jsmin())
66
+ .pipe(concat('block.min.js'))
67
  .pipe(gulp.dest('./assets/js/'));
68
  });
69
 
119
  [
120
  './inc/sns/package/block.jsx',
121
  './inc/child-page-index/block.jsx',
122
+ './inc/contact-section/block.jsx',
123
+ './inc/page-list-ancestor/block.jsx',
124
+ './inc/sitemap-page/block.jsx'
125
  ],
126
  gulp.series('block')
127
  )
137
  gulp.watch('./inc/pagetop-btn/assets/_scss/*.scss', gulp.series('sass'))
138
  });
139
 
 
140
  gulp.task('default', gulp.series('text-domain','watch'))
141
  gulp.task('compile', gulp.series('scripts', 'sass', 'block'))
142
+ gulp.task('copy_dist', (done)=>{
143
+ ps('bin/dist', (err, stdout, stderr)=>{
144
+ console.log(stdout)
145
+ done()
146
+ })
147
+ })
148
+
149
+ gulp.task('build', gulp.series('scripts', 'sass', 'block'))
150
 
151
  // copy dist ////////////////////////////////////////////////
152
 
182
  )
183
  .pipe( gulp.dest( 'dist' ) ); // distディレクトリに出力
184
  } );
 
 
 
185
 
186
  gulp.task('dist', function(cb){
 
 
187
  return runSequence( 'copy_dist', cb );
188
+ });
 
inc/child-page-index/block.jsx CHANGED
@@ -7,16 +7,41 @@
7
  const BlockIcon = (
8
  <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 576 512">
9
  <g>
10
- <path d="M177.8,325L49,324.9c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,20.6,16.7,37.3,37.3,37.4l128.8,0.1
11
- c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C215.1,341.8,198.4,325,177.8,325z M57.5,464.3l0.1-93.4L169,371v93.4L57.5,464.3z"/>
12
- <path d="M532.7,325.3l-128.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1
13
- c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C570,342.1,553.2,325.3,532.7,325.3z M412.4,464.6l0.1-93.4l111.4,0.1l-0.1,93.4L412.4,464.6
14
- z"/>
15
- <path d="M355.2,0.1L226.4,0c-20.6,0-37.3,16.7-37.3,37.3L189,148c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1
16
- c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C392.5,16.9,375.7,0.1,355.2,0.1z M234.9,139.4L235,46l111.4,0.1l-0.1,93.4L234.9,139.4z"/>
17
- </g>
18
- <polygon points="308.7,237.7 308.8,200.1 272.8,200 272.7,237.7 92.1,237.5 92.1,310.2 128.1,310.2 128.1,273.5 453.4,273.9
19
- 453.4,310.2 489.4,310.2 489.4,237.9 "/>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  </svg>
21
  );
22
 
7
  const BlockIcon = (
8
  <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 576 512">
9
  <g>
10
+ <path d="M236.2,272l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3L0,449.9c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1
11
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C273.5,288.8,256.8,272,236.2,272z M45.9,431.2L46,328c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1
12
+ c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1L56,441.3C50.4,441.3,45.9,436.8,45.9,431.2z"/>
13
+ </g>
14
+ <g>
15
+ <path d="M136.8,337.8l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9
16
+ C149.1,343.3,143.6,337.8,136.8,337.8z"/>
17
+ </g>
18
+ <g>
19
+ <path d="M538.7,272l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,140.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1
20
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C576,288.8,559.3,272,538.7,272z M348.4,431.2l0.1-103.3c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1
21
+ c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1l-161.4-0.1C352.9,441.3,348.4,436.8,348.4,431.2z"/>
22
+ </g>
23
+ <g>
24
+ <path d="M439.3,337.8l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9
25
+ C451.6,343.3,446.1,337.8,439.3,337.8z"/>
26
+ </g>
27
+ <g>
28
+ <path d="M236.2,30.8L37.4,30.7C16.8,30.7,0.1,47.4,0.1,68L0,208.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1
29
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-140.7C273.5,47.6,256.8,30.8,236.2,30.8z M45.9,190L46,86.8c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1
30
+ c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1L56,200.1C50.4,200.1,45.9,195.6,45.9,190z"/>
31
+ </g>
32
+ <g>
33
+ <path d="M136.8,96.6l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9
34
+ C149.1,102.2,143.6,96.6,136.8,96.6z"/>
35
+ </g>
36
+ <g>
37
+ <path d="M538.7,30.8l-198.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,140.7c0,20.6,16.7,37.3,37.3,37.4l198.8,0.1
38
+ c20.6,0,37.3-16.7,37.3-37.3L576,68.2C576,47.6,559.3,30.8,538.7,30.8z M348.4,190l0.1-103.3c0-5.6,4.5-10.1,10.1-10.1l161.3,0.1
39
+ c5.6,0,10.1,4.5,10.1,10.1v103.3c0,5.6-4.5,10.1-10.1,10.1l-161.4-0.1C352.9,200.1,348.4,195.6,348.4,190z"/>
40
+ </g>
41
+ <g>
42
+ <path d="M439.3,96.6l-57,0c-6.8,0-12.2,5.5-12.2,12.2l0,41.9c0,6.8,5.5,12.2,12.2,12.3l57,0c6.8,0,12.2-5.5,12.2-12.2l0-41.9
43
+ C451.6,102.2,446.1,96.6,439.3,96.6z"/>
44
+ </g>
45
  </svg>
46
  );
47
 
inc/page-list-ancestor/block.jsx ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ;(function(wp){
2
+ const { __ } = wp.i18n
3
+ const { registerBlockType } = wp.blocks
4
+ const { ServerSideRender, PanelBody } = wp.components
5
+ const { Fragment } = wp.element
6
+ const React = wp.element
7
+
8
+ registerBlockType("vk-blocks/page-list-ancestor", {
9
+ title: __("Page list ancestor", "veu-block"),
10
+ icon: 'editor-ul',
11
+ category: "veu-block",
12
+ edit: ({className}) => {
13
+ return (
14
+ <Fragment>
15
+ <div className={`${className} veu_page_list_ancestor_block`} >
16
+ <ServerSideRender
17
+ block="vk-blocks/page-list-ancestor"
18
+ attributes={{className: className}}
19
+ />
20
+ </div>
21
+ </Fragment>
22
+ )
23
+ },
24
+ save: () => null
25
+ })
26
+ })(wp);
inc/{page-list-ancestor.php → page-list-ancestor/page-list-ancestor.php} RENAMED
@@ -20,8 +20,7 @@ function vkExUnit_pageList_ancestor_loopend( $query ) {
20
  }
21
 
22
 
23
- function vkExUnit_pageList_ancestor_shortcode() {
24
-
25
  global $is_pagewidget;
26
 
27
  if ( $is_pagewidget ) {
@@ -31,10 +30,14 @@ function vkExUnit_pageList_ancestor_shortcode() {
31
  $post = get_post( $widget_pageid );
32
 
33
  } else {
34
-
35
  global $post;
36
- if ( ! is_page() || ! get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true ) ) {
37
- return; }
 
 
 
 
 
38
  }
39
 
40
  if ( $post->ancestors ) {
@@ -48,7 +51,7 @@ function vkExUnit_pageList_ancestor_shortcode() {
48
  if ( $post_id ) {
49
  $children = wp_list_pages( 'title_li=&child_of=' . $post_id . '&echo=0' );
50
  if ( $children ) {
51
- $pageList_ancestor_html = '<section class="veu_pageList_ancestor veu_card">';
52
  $pageList_ancestor_html .= '<div class="veu_card_inner">';
53
  $pageList_ancestor_html .= '<h3 class="pageList_ancestor_title veu_card_title"><a href="' . get_permalink( $post_id ) . '">' . get_the_title( $post_id ) . '</a></h3>';
54
  $pageList_ancestor_html .= '<ul class="pageList">';
@@ -130,3 +133,38 @@ function veu_page_list_ancestor_save_custom_field( $post_id ) {
130
 
131
  do_action( 'vkExUnit_customField_Page_save_customField' );
132
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
 
23
+ function vkExUnit_pageList_ancestor_shortcode( $classes='', $force=false ) {
 
24
  global $is_pagewidget;
25
 
26
  if ( $is_pagewidget ) {
30
  $post = get_post( $widget_pageid );
31
 
32
  } else {
 
33
  global $post;
34
+ if (
35
+ ! $force
36
+ && ! $post->is_page
37
+ || get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true )
38
+ ) {
39
+ return '';
40
+ }
41
  }
42
 
43
  if ( $post->ancestors ) {
51
  if ( $post_id ) {
52
  $children = wp_list_pages( 'title_li=&child_of=' . $post_id . '&echo=0' );
53
  if ( $children ) {
54
+ $pageList_ancestor_html = '<section class="veu_pageList_ancestor veu_card '. $classes . '">';
55
  $pageList_ancestor_html .= '<div class="veu_card_inner">';
56
  $pageList_ancestor_html .= '<h3 class="pageList_ancestor_title veu_card_title"><a href="' . get_permalink( $post_id ) . '">' . get_the_title( $post_id ) . '</a></h3>';
57
  $pageList_ancestor_html .= '<ul class="pageList">';
133
 
134
  do_action( 'vkExUnit_customField_Page_save_customField' );
135
  }
136
+
137
+ add_action( 'init', 'veu_page_list_ancestor_block_setup', 15 );
138
+ function veu_page_list_ancestor_block_setup() {
139
+ register_block_type(
140
+ 'vk-blocks/page-list-ancestor',
141
+ array(
142
+ 'attributes' => array(
143
+ 'className' => array(
144
+ 'type' => 'string',
145
+ 'default' => ''
146
+ )
147
+ ),
148
+ 'editor_script' => 'veu-block',
149
+ 'render_callback' => 'veu_pageListAncestor_block_callback',
150
+ )
151
+ );
152
+ }
153
+
154
+ function veu_pageListAncestor_block_callback( $attr=array() ) {
155
+ $classes = 'veu_childPageIndex_block';
156
+
157
+ if ( isset($attributes['className']) ) {
158
+ $classes .= ' ' . $attributes['className'];
159
+ }
160
+
161
+ $r = vkExUnit_pageList_ancestor_shortcode( $classes, true );
162
+
163
+ if ( empty($r) ) {
164
+ if ( isset($_GET['context']) ) {
165
+ return '<div class="disabled">' . __('No Child Pages.', 'vk-all-in-one-expansion-unit') . '</div>';
166
+ }
167
+ return '';
168
+ }
169
+ return $r;
170
+ }
inc/sitemap-page/block.jsx ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ;(function(wp){
2
+ const { __ } = wp.i18n
3
+ const { registerBlockType } = wp.blocks
4
+ const { ServerSideRender } = wp.components
5
+ const { Fragment } = wp.element
6
+ const React = wp.element
7
+ const BlockIcon = (
8
+ <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 576 512">
9
+ <g>
10
+ <path d="M177.8,325L49,324.9c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,20.6,16.7,37.3,37.3,37.4l128.8,0.1
11
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C215.1,341.8,198.4,325,177.8,325z M57.5,464.3l0.1-93.4L169,371v93.4L57.5,464.3z"/>
12
+ <path d="M532.7,325.3l-128.8-0.1c-20.6,0-37.3,16.7-37.3,37.3l-0.1,110.7c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1
13
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C570,342.1,553.2,325.3,532.7,325.3z M412.4,464.6l0.1-93.4l111.4,0.1l-0.1,93.4L412.4,464.6
14
+ z"/>
15
+ <path d="M355.2,0.1L226.4,0c-20.6,0-37.3,16.7-37.3,37.3L189,148c0,10,3.9,19.4,10.9,26.4c7,7.1,16.4,11,26.4,11l128.8,0.1
16
+ c20.6,0,37.3-16.7,37.3-37.3l0.1-110.7C392.5,16.9,375.7,0.1,355.2,0.1z M234.9,139.4L235,46l111.4,0.1l-0.1,93.4L234.9,139.4z"/>
17
+ </g>
18
+ <polygon points="308.7,237.7 308.8,200.1 272.8,200 272.7,237.7 92.1,237.5 92.1,310.2 128.1,310.2 128.1,273.5 453.4,273.9
19
+ 453.4,310.2 489.4,310.2 489.4,237.9 "/>
20
+ </svg>
21
+ );
22
+
23
+ registerBlockType("vk-blocks/sitemap", {
24
+ title: __( 'HTML Sitemap', 'veu-block' ),
25
+ icon: BlockIcon,
26
+ category: "veu-block",
27
+ edit: ({className}) => {
28
+ return (
29
+ <Fragment>
30
+ <div className={`${className} veu_sitemap_block`} >
31
+ <ServerSideRender
32
+ block="vk-blocks/sitemap"
33
+ attributes={{className: className}}
34
+ />
35
+ </div>
36
+ </Fragment>
37
+ )
38
+ },
39
+ save: () => null
40
+ })
41
+ })(wp);
inc/sitemap-page/sitemap-page.php CHANGED
@@ -1,27 +1,31 @@
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  /*-------------------------------------------*/
4
- /* Add setting page
5
- /*-------------------------------------------*/
6
- /* Options Init
7
- /*-------------------------------------------*/
8
- /* insert sitemap page
9
- /*-------------------------------------------*/
10
- /* admin _ meta box
11
- /*-------------------------------------------*/
12
-
13
 
14
- /*-------------------------------------------*/
15
- /* Add setting page
16
- /*-------------------------------------------*/
17
 
18
- require_once( dirname( __FILE__ ) . '/class-veu-metabox-sitemap.php' );
19
- require_once( dirname( __FILE__ ) . '/sitemap-page-admin-main-setting.php' );
20
- require_once( dirname( __FILE__ ) . '/sitemap-page-helpers.php' );
21
 
22
 
23
- /*-------------------------------------------*/
24
- /* Options Init
25
  /*-------------------------------------------*/
26
  function vkExUnit_sitemap_options_init() {
27
  if ( false === veu_get_sitemap_options() ) {
@@ -29,8 +33,9 @@ function vkExUnit_sitemap_options_init() {
29
  }
30
  add_action( 'veu_package_init', 'vkExUnit_sitemap_options_init' );
31
 
32
- /*-------------------------------------------*/
33
- /* insert sitemap page
 
34
  /*-------------------------------------------*/
35
  if ( veu_content_filter_state() == 'content' ) {
36
  add_filter( 'the_content', 'veu_show_sitemap', 7, 1 );
@@ -47,6 +52,7 @@ function veu_sitemap_loopend( $query ) {
47
 
48
  /**
49
  * 現在は veu_show_sitemap() に変更になっているのが、旧 show_sitemap で飛び出された時用
 
50
  * @param [type] $content [description]
51
  * @return [type] [description]
52
  */
@@ -55,6 +61,7 @@ function show_sitemap( $content ) {
55
  }
56
  /**
57
  * [veu_show_sitemap description]
 
58
  * @since 7.0
59
  * @param [type] $content [description]
60
  * @return [type] [description]
@@ -72,20 +79,20 @@ function veu_show_sitemap( $content ) {
72
  return $content;
73
  }
74
 
75
- function vkExUnit_sitemap( $atts ) {
76
 
77
- extract(
78
- shortcode_atts(
79
- array(
80
- 'exclude' => '',
81
- ), $atts
82
- )
83
  );
84
 
85
- $sitemap_html = '<div class="row veu_sitemap">' . PHP_EOL;
86
 
87
- /*-------------------------------------------*/
88
- /* Exclude Page ids by ExUnit Main Setting Page
89
  /*-------------------------------------------*/
90
  $options = veu_get_sitemap_options();
91
  $excludes = '';
@@ -95,8 +102,8 @@ function vkExUnit_sitemap( $atts ) {
95
  $excludes = mb_convert_kana( $excludes, 'kvrn' );
96
  }
97
 
98
- /*-------------------------------------------*/
99
- /* Exclude Page ids by Page Edit meta box
100
  /*-------------------------------------------*/
101
  $veu_sitemap_exclude_page_ids = veu_sitemap_exclude_page_ids();
102
  if ( ! $excludes ) {
@@ -105,8 +112,8 @@ function vkExUnit_sitemap( $atts ) {
105
  $excludes .= ',' . $veu_sitemap_exclude_page_ids;
106
  }
107
 
108
- /*-------------------------------------------*/
109
- /* pages
110
  /*-------------------------------------------*/
111
  $sitemap_html .= '<div class="col-md-6 sitemap-col">' . PHP_EOL;
112
  $sitemap_html .= '<ul class="link-list">' . PHP_EOL;
@@ -118,10 +125,10 @@ function vkExUnit_sitemap( $atts ) {
118
  $sitemap_html .= wp_list_pages( $args );
119
 
120
  $sitemap_html .= '</ul>' . PHP_EOL; // <!-- [ /.link-list ] -->
121
- $sitemap_html .= '</div>' . PHP_EOL; //<!-- [ /.sitemap-col ] -->
122
 
123
- /*-------------------------------------------*/
124
- /* Posts & Custom posts
125
  /*-------------------------------------------*/
126
  $sitemap_html .= '<div class="col-md-6 sitemap-col">' . PHP_EOL;
127
 
@@ -155,7 +162,8 @@ function vkExUnit_sitemap( $atts ) {
155
  $sitemap_html .= '<div class="sitemap-' . esc_attr( $postType ) . '">' . PHP_EOL;
156
  $sitemap_html .= '<div class="sectionBox">' . PHP_EOL;
157
 
158
- /* Post type name
 
159
  /*-------------------------------------------*/
160
  if ( $postType == 'post' && $page_for_posts['post_top_use'] ) {
161
  $postTypeName = $page_for_posts['post_top_name'];
@@ -164,9 +172,10 @@ function vkExUnit_sitemap( $atts ) {
164
  $postTypeName = $post_type_object->labels->name;
165
  $postTypeTopUrl = get_post_type_archive_link( $postType );
166
  }
167
- $sitemap_html .= '<h4 class="sitemap-post-type-' . $postType . '"><a href="' . $postTypeTopUrl . '">' . esc_html( $postTypeName ) . '</a></h4>' . PHP_EOL;
168
 
169
- /* Taxonomy name
 
170
  /*-------------------------------------------*/
171
  // 投稿タイプに紐付いている taxonomy名だけ配列で取得
172
  $taxonomies = get_object_taxonomies( $postType );
@@ -179,7 +188,8 @@ function vkExUnit_sitemap( $atts ) {
179
  if ( $taxonomy_object->show_in_menu ) {
180
  $sitemap_html .= '<h5 class="sitemap-taxonomy-title sitemap-taxonomy-' . esc_attr( $taxonomy_object->name ) . '">' . wp_kses_post( $taxonomy_object->label ) . '</h5>' . PHP_EOL;
181
 
182
- /* Term
 
183
  /*-------------------------------------------*/
184
 
185
  $sitemap_html .= '<ul class="sitemap-term-list sitemap-taxonomy-' . esc_attr( $taxonomy_object->name ) . ' link-list">' . PHP_EOL;
@@ -211,9 +221,9 @@ function vkExUnit_sitemap( $atts ) {
211
  }
212
  add_shortcode( 'vkExUnit_sitemap', 'vkExUnit_sitemap' );
213
 
214
- /*-------------------------------------------*/
215
- /* admin _ meta box
216
- /* こちらは非表示設定ではなく サイトマップ自体を表示するかどうか
217
  /*-------------------------------------------*/
218
  add_action( 'veu_metabox_insert_items', 'vkExUnit_sitemap_meta_box' );
219
  function vkExUnit_sitemap_meta_box() {
@@ -260,3 +270,20 @@ function vkExUnit_save_custom_field_sitemapData( $post_id ) {
260
  delete_post_meta( $post_id, 'vkExUnit_sitemap' );
261
  }
262
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
 
3
+ /*
4
+ Add setting page
5
+ -------------------------------------------*/
6
+ /*
7
+ Options Init
8
+ -------------------------------------------*/
9
+ /*
10
+ insert sitemap page
11
+ -------------------------------------------*/
12
+ /*
13
+ admin _ meta box
14
+ -------------------------------------------*/
15
+
16
+
17
+ /*
18
+ Add setting page
19
  /*-------------------------------------------*/
 
 
 
 
 
 
 
 
 
20
 
21
+ require_once dirname( __FILE__ ) . '/class-veu-metabox-sitemap.php';
22
+ require_once dirname( __FILE__ ) . '/sitemap-page-admin-main-setting.php';
23
+ require_once dirname( __FILE__ ) . '/sitemap-page-helpers.php';
24
 
 
 
 
25
 
26
 
27
+ /*
28
+ Options Init
29
  /*-------------------------------------------*/
30
  function vkExUnit_sitemap_options_init() {
31
  if ( false === veu_get_sitemap_options() ) {
33
  }
34
  add_action( 'veu_package_init', 'vkExUnit_sitemap_options_init' );
35
 
36
+
37
+ /*
38
+ insert sitemap page
39
  /*-------------------------------------------*/
40
  if ( veu_content_filter_state() == 'content' ) {
41
  add_filter( 'the_content', 'veu_show_sitemap', 7, 1 );
52
 
53
  /**
54
  * 現在は veu_show_sitemap() に変更になっているのが、旧 show_sitemap で飛び出された時用
55
+ *
56
  * @param [type] $content [description]
57
  * @return [type] [description]
58
  */
61
  }
62
  /**
63
  * [veu_show_sitemap description]
64
+ *
65
  * @since 7.0
66
  * @param [type] $content [description]
67
  * @return [type] [description]
79
  return $content;
80
  }
81
 
82
+ function vkExUnit_sitemap( $attr ) {
83
 
84
+ $attr = shortcode_atts(
85
+ array(
86
+ 'exclude' => '',
87
+ 'className' => '',
88
+ ),
89
+ $attr
90
  );
91
 
92
+ $sitemap_html = '<div class="row veu_sitemap ' . $attr['className'] . '">' . PHP_EOL;
93
 
94
+ /*
95
+ Exclude Page ids by ExUnit Main Setting Page
96
  /*-------------------------------------------*/
97
  $options = veu_get_sitemap_options();
98
  $excludes = '';
102
  $excludes = mb_convert_kana( $excludes, 'kvrn' );
103
  }
104
 
105
+ /*
106
+ Exclude Page ids by Page Edit meta box
107
  /*-------------------------------------------*/
108
  $veu_sitemap_exclude_page_ids = veu_sitemap_exclude_page_ids();
109
  if ( ! $excludes ) {
112
  $excludes .= ',' . $veu_sitemap_exclude_page_ids;
113
  }
114
 
115
+ /*
116
+ pages
117
  /*-------------------------------------------*/
118
  $sitemap_html .= '<div class="col-md-6 sitemap-col">' . PHP_EOL;
119
  $sitemap_html .= '<ul class="link-list">' . PHP_EOL;
125
  $sitemap_html .= wp_list_pages( $args );
126
 
127
  $sitemap_html .= '</ul>' . PHP_EOL; // <!-- [ /.link-list ] -->
128
+ $sitemap_html .= '</div>' . PHP_EOL; // <!-- [ /.sitemap-col ] -->
129
 
130
+ /*
131
+ Posts & Custom posts
132
  /*-------------------------------------------*/
133
  $sitemap_html .= '<div class="col-md-6 sitemap-col">' . PHP_EOL;
134
 
162
  $sitemap_html .= '<div class="sitemap-' . esc_attr( $postType ) . '">' . PHP_EOL;
163
  $sitemap_html .= '<div class="sectionBox">' . PHP_EOL;
164
 
165
+ /*
166
+ Post type name
167
  /*-------------------------------------------*/
168
  if ( $postType == 'post' && $page_for_posts['post_top_use'] ) {
169
  $postTypeName = $page_for_posts['post_top_name'];
172
  $postTypeName = $post_type_object->labels->name;
173
  $postTypeTopUrl = get_post_type_archive_link( $postType );
174
  }
175
+ $sitemap_html .= '<h4 class="sitemap-post-type-title sitemap-post-type-' . $postType . '"><a href="' . $postTypeTopUrl . '">' . esc_html( $postTypeName ) . '</a></h4>' . PHP_EOL;
176
 
177
+ /*
178
+ Taxonomy name
179
  /*-------------------------------------------*/
180
  // 投稿タイプに紐付いている taxonomy名だけ配列で取得
181
  $taxonomies = get_object_taxonomies( $postType );
188
  if ( $taxonomy_object->show_in_menu ) {
189
  $sitemap_html .= '<h5 class="sitemap-taxonomy-title sitemap-taxonomy-' . esc_attr( $taxonomy_object->name ) . '">' . wp_kses_post( $taxonomy_object->label ) . '</h5>' . PHP_EOL;
190
 
191
+ /*
192
+ Term
193
  /*-------------------------------------------*/
194
 
195
  $sitemap_html .= '<ul class="sitemap-term-list sitemap-taxonomy-' . esc_attr( $taxonomy_object->name ) . ' link-list">' . PHP_EOL;
221
  }
222
  add_shortcode( 'vkExUnit_sitemap', 'vkExUnit_sitemap' );
223
 
224
+ /*
225
+ admin _ meta box
226
+ こちらは非表示設定ではなく サイトマップ自体を表示するかどうか
227
  /*-------------------------------------------*/
228
  add_action( 'veu_metabox_insert_items', 'vkExUnit_sitemap_meta_box' );
229
  function vkExUnit_sitemap_meta_box() {
270
  delete_post_meta( $post_id, 'vkExUnit_sitemap' );
271
  }
272
  }
273
+
274
+ add_action( 'init', 'veu_sitemap_block_setup', 15 );
275
+ function veu_sitemap_block_setup() {
276
+ register_block_type(
277
+ 'vk-blocks/sitemap',
278
+ array(
279
+ 'attributes' => array(
280
+ 'className' => array(
281
+ 'type' => 'string',
282
+ 'default' => '',
283
+ ),
284
+ ),
285
+ 'editor_script' => 'veu-block',
286
+ 'render_callback' => 'vkExUnit_sitemap',
287
+ )
288
+ );
289
+ }
inc/sns/function_snsBtns.php CHANGED
@@ -220,10 +220,25 @@ add_action( 'rest_api_init', function () {
220
  'callback' => 'vew_sns_hatena_restapi_callback',
221
  )
222
  );
 
 
 
 
 
 
 
 
223
  });
224
 
225
  add_filter( 'vkExUnit_master_js_options', function( $options ){
226
  $options['hatena_entry'] = get_rest_url(0, 'vk_ex_unit/v1/hatena_entry/');
 
 
 
 
 
 
 
227
  return $options;
228
  }, 10, 1 );
229
 
@@ -240,18 +255,53 @@ function vew_sns_hatena_restapi_callback( $data ) {
240
  $r = wp_safe_remote_get('https://bookmark.hatenaapis.com/count/entry?url=' . $linkurl);
241
 
242
  if ( ! is_wp_error( $r ) ) {
243
- $response = new WP_REST_Response(array('count' => $r['body']));
244
  if ( empty($r['headers']['cache-control']) ) {
245
  $cache_control = 'Cache-Control: public, max-age=3600, s-maxage=3600';
246
  }else{
247
  $cache_control = $r['headers']['cache-control'];
248
  }
249
- $response->header('Cache-Control', $r['headers']['cache-control']);
250
  $response->set_status(200);
251
  return $response;
252
  }
253
- $response = new WP_REST_Response(array());
254
- $response->set_status(500);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
  return $response;
257
  }
220
  'callback' => 'vew_sns_hatena_restapi_callback',
221
  )
222
  );
223
+ register_rest_route(
224
+ 'vk_ex_unit/v1',
225
+ '/facebook_entry/(?P<linkurl>[a-zA-Z0-9\-\._%]+)',
226
+ array(
227
+ 'methods' => 'GET',
228
+ 'callback' => 'vew_sns_facebook_restapi_callback',
229
+ )
230
+ );
231
  });
232
 
233
  add_filter( 'vkExUnit_master_js_options', function( $options ){
234
  $options['hatena_entry'] = get_rest_url(0, 'vk_ex_unit/v1/hatena_entry/');
235
+ $options['facebook_entry'] = get_rest_url(0, 'vk_ex_unit/v1/facebook_entry/');
236
+ $options['facebook_count_enable'] = false;
237
+
238
+ $opt = veu_get_sns_options();
239
+ if ( ! empty( $opt['fbAccessToken'] ) ) {
240
+ $options['facebook_count_enable'] = true;
241
+ }
242
  return $options;
243
  }, 10, 1 );
244
 
255
  $r = wp_safe_remote_get('https://bookmark.hatenaapis.com/count/entry?url=' . $linkurl);
256
 
257
  if ( ! is_wp_error( $r ) ) {
258
+ $response = new WP_REST_Response(array( 'count' => $r['body'] ) );
259
  if ( empty($r['headers']['cache-control']) ) {
260
  $cache_control = 'Cache-Control: public, max-age=3600, s-maxage=3600';
261
  }else{
262
  $cache_control = $r['headers']['cache-control'];
263
  }
264
+ $response->header( 'Cache-Control', $cache_control );
265
  $response->set_status(200);
266
  return $response;
267
  }
268
+ $response = new WP_REST_Response( array( 'errors' => array( 'Service Unavailable' ) ) );
269
+ $response->set_status(503);
270
+
271
+ return $response;
272
+ }
273
+
274
+ function vew_sns_facebook_restapi_callback( $data ) {
275
+ $linkurl = $data['linkurl'];
276
+ $siteurl = get_site_url();
277
+
278
+ if ( $siteurl !== substr( urldecode( $linkurl ), 0, strlen( $siteurl ) ) ) {
279
+ $response = new WP_REST_Response(array());
280
+ $response->set_status(403);
281
+ return $response;
282
+ }
283
+
284
+ $options = veu_get_sns_options();
285
+ if ( empty( $options['fbAccessToken'] ) ) {
286
+ $response = new WP_REST_Response( array( 'errors' => array( 'Service Unavailable' ) ) );
287
+ $response->set_status(503);
288
+ return $response;
289
+ }
290
+
291
+ $r = wp_safe_remote_get('https://graph.facebook.com/?fields=engagement&access_token=' . $options['fbAccessToken'] . '&id=' . $linkurl);
292
+
293
+ if ( ! is_wp_error( $r ) ) {
294
+ $j = json_decode($r['body']);
295
+
296
+ if( isset( $j->engagement->share_count ) ) {
297
+ $response = new WP_REST_Response( array( 'count' => $j->engagement->share_count ) );
298
+ $response->header('Cache-Control', 'Cache-Control: public, max-age=3600, s-maxage=3600' );
299
+ $response->set_status(200);
300
+ return $response;
301
+ }
302
+ }
303
+ $response = new WP_REST_Response( array( 'errors' => array( 'Service Unavailable' ) ) );
304
+ $response->set_status(503);
305
 
306
  return $response;
307
  }
inc/sns/sns.php CHANGED
@@ -54,6 +54,7 @@ function veu_get_sns_options_default() {
54
  $default_options = array(
55
  'fbAppId' => '',
56
  'fbPageUrl' => '',
 
57
  'ogImage' => '',
58
  'twitterId' => '',
59
  'enableOGTags' => true,
@@ -127,6 +128,7 @@ function vkExUnit_sns_options_validate( $input ) {
127
 
128
  $output['fbAppId'] = esc_attr( $input['fbAppId'] );
129
  $output['fbPageUrl'] = esc_url( $input['fbPageUrl'] );
 
130
  $output['ogImage'] = esc_url( $input['ogImage'] );
131
  $output['twitterId'] = esc_attr( $input['twitterId'] );
132
  $output['snsBtn_ignorePosts'] = preg_replace( '/[^0-9,]/', '', $input['snsBtn_ignorePosts'] );
54
  $default_options = array(
55
  'fbAppId' => '',
56
  'fbPageUrl' => '',
57
+ 'fbAccessToken' => '',
58
  'ogImage' => '',
59
  'twitterId' => '',
60
  'enableOGTags' => true,
128
 
129
  $output['fbAppId'] = esc_attr( $input['fbAppId'] );
130
  $output['fbPageUrl'] = esc_url( $input['fbPageUrl'] );
131
+ $output['fbAccessToken'] = esc_attr( $input['fbAccessToken'] );
132
  $output['ogImage'] = esc_url( $input['ogImage'] );
133
  $output['twitterId'] = esc_attr( $input['twitterId'] );
134
  $output['snsBtn_ignorePosts'] = preg_replace( '/[^0-9,]/', '', $input['snsBtn_ignorePosts'] );
inc/sns/sns_admin.php CHANGED
@@ -28,6 +28,14 @@
28
  <th><?php _e( 'facebook page URL', 'vk-all-in-one-expansion-unit' ); ?></th>
29
  <td><input type="text" name="vkExUnit_sns_options[fbPageUrl]" id="fbPageUrl" value="<?php echo esc_url( $options['fbPageUrl'] ); ?>" /></td>
30
  </tr>
 
 
 
 
 
 
 
 
31
  <!-- OGP -->
32
  <tr>
33
  <th><?php _e( 'OG default image', 'vk-all-in-one-expansion-unit' ); ?></th>
28
  <th><?php _e( 'facebook page URL', 'vk-all-in-one-expansion-unit' ); ?></th>
29
  <td><input type="text" name="vkExUnit_sns_options[fbPageUrl]" id="fbPageUrl" value="<?php echo esc_url( $options['fbPageUrl'] ); ?>" /></td>
30
  </tr>
31
+ </tr>
32
+ <tr>
33
+ <th><?php _e( 'facebook Access Token', 'vk-all-in-one-expansion-unit' ); ?></th>
34
+ <td><input type="text" name="vkExUnit_sns_options[fbAccessToken]" id="fbAccessToken" value="<?php echo esc_attr( $options['fbAccessToken'] ); ?>" /><br />
35
+ <span>[ <a href="https://developers.facebook.com/docs/facebook-login/access-tokens?locale=<?php _e( 'en_US', 'vk-all-in-one-expansion-unit' ); ?>" > &raquo; <?php _e( 'Access Tokens', 'vk-all-in-one-expansion-unit' ); ?></a>]</span><br/>
36
+ <?php _e( 'If you need show share counts in SNS buttons. You need get Access Token in facebook developers.', 'vk-all-in-one-expansion-unit' ); ?>
37
+ </td>
38
+ </tr>
39
  <!-- OGP -->
40
  <tr>
41
  <th><?php _e( 'OG default image', 'vk-all-in-one-expansion-unit' ); ?></th>
languages/ja_JP.mo CHANGED
Binary file
languages/ja_JP.po CHANGED
@@ -1,25 +1,33 @@
1
  msgid ""
2
  msgstr ""
3
- "Content-Type: text/plain; charset=UTF-8\n"
4
- "X-Generator: Poedit 1.8.7.1\n"
5
  "Project-Id-Version: \n"
6
  "POT-Creation-Date: \n"
7
  "PO-Revision-Date: \n"
 
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
 
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "Last-Translator: Vektor, inc. <info@vektor-inc.co.jp>\n"
12
  "Plural-Forms: nplurals=1; plural=0;\n"
13
- "Language: ja_JP\n"
14
 
15
- #: inc/sns/package/block.min.js:35
16
  msgid "Child page index"
17
  msgstr "子ページ一覧"
18
 
19
- #: inc/sns/package/block.min.js:61
20
  msgid "Contact section"
21
  msgstr "お問い合わせ"
22
 
23
- #: inc/sns/package/block.min.js:9
 
 
 
 
 
 
 
 
24
  msgid "Share button"
25
  msgstr "シェアボタン"
1
  msgid ""
2
  msgstr ""
 
 
3
  "Project-Id-Version: \n"
4
  "POT-Creation-Date: \n"
5
  "PO-Revision-Date: \n"
6
+ "Last-Translator: Vektor, inc. <info@vektor-inc.co.jp>\n"
7
  "Language-Team: \n"
8
+ "Language: ja_JP\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
 
14
 
15
+ #: inc/child-page-index/block.jsx:24
16
  msgid "Child page index"
17
  msgstr "子ページ一覧"
18
 
19
+ #: inc/contact-section/block.jsx:9
20
  msgid "Contact section"
21
  msgstr "お問い合わせ"
22
 
23
+ #: inc/page-list-ancestor/block.jsx:9
24
+ msgid "Page list ancestor"
25
+ msgstr "先祖階層からの子ページリスト"
26
+
27
+ #: inc/sitemap-page/block.jsx:9
28
+ msgid "Sitemap"
29
+ msgstr "サイトマップ"
30
+
31
+ #: inc/sns/package/block.jsx:9
32
  msgid "Share button"
33
  msgstr "シェアボタン"
languages/veu-block-ja-veu-block.json CHANGED
@@ -1 +1 @@
1
- {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Child page index":["子ページ一覧"],"Contact section":["お問い合わせ"],"Share button":["シェアボタン"]}}}
1
+ {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Child page index":["子ページ一覧"],"Contact section":["お問い合わせ"],"Page list ancestor":["先祖階層からの子ページリスト"],"Sitemap":["サイトマップ"],"Share button":["シェアボタン"]}}}
languages/veu-block.pot CHANGED
@@ -3,14 +3,22 @@ msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot\n"
5
 
6
- #: inc/child-page-index/block.min.js:50
7
  msgid "Child page index"
8
  msgstr ""
9
 
10
- #: inc/child-page-index/block.min.js:76
11
  msgid "Contact section"
12
  msgstr ""
13
 
14
- #: inc/child-page-index/block.min.js:9
 
 
 
 
 
 
 
 
15
  msgid "Share button"
16
  msgstr ""
3
  "Content-Type: text/plain; charset=utf-8\n"
4
  "X-Generator: babel-plugin-makepot\n"
5
 
6
+ #: inc/child-page-index/block.jsx:49
7
  msgid "Child page index"
8
  msgstr ""
9
 
10
+ #: inc/contact-section/block.jsx:9
11
  msgid "Contact section"
12
  msgstr ""
13
 
14
+ #: inc/page-list-ancestor/block.jsx:9
15
+ msgid "Page list ancestor"
16
+ msgstr ""
17
+
18
+ #: inc/sitemap-page/block.jsx:24
19
+ msgid "HTML Sitemap"
20
+ msgstr ""
21
+
22
+ #: inc/sns/package/block.jsx:9
23
  msgid "Share button"
24
  msgstr ""
package-lock.json CHANGED
@@ -1570,6 +1570,12 @@
1570
  "supports-color": "^5.3.0"
1571
  }
1572
  },
 
 
 
 
 
 
1573
  "chokidar": {
1574
  "version": "2.1.8",
1575
  "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
1570
  "supports-color": "^5.3.0"
1571
  }
1572
  },
1573
+ "child_process": {
1574
+ "version": "1.0.2",
1575
+ "resolved": "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz",
1576
+ "integrity": "sha1-sffn/HPSXn/R1FWtyU4UODAYK1o=",
1577
+ "dev": true
1578
+ },
1579
  "chokidar": {
1580
  "version": "2.1.8",
1581
  "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
package.json CHANGED
@@ -8,6 +8,7 @@
8
  "@babel/preset-env": "^7.8.7",
9
  "@wordpress/babel-plugin-makepot": "^3.4.0",
10
  "babel-plugin-transform-react-jsx": "^6.24.1",
 
11
  "gulp": "^4.0.2",
12
  "gulp-autoprefixer": "^7.0.1",
13
  "gulp-babel": "^8.0.0",
@@ -24,7 +25,10 @@
24
  "run-sequence": "^2.2.1"
25
  },
26
  "scripts": {
 
27
  "gulp": "gulp",
 
 
28
  "translate": "po2json languages/ja_JP.po languages/veu-block-ja-veu-block.json -f jed"
29
  },
30
  "repository": {
8
  "@babel/preset-env": "^7.8.7",
9
  "@wordpress/babel-plugin-makepot": "^3.4.0",
10
  "babel-plugin-transform-react-jsx": "^6.24.1",
11
+ "child_process": "^1.0.2",
12
  "gulp": "^4.0.2",
13
  "gulp-autoprefixer": "^7.0.1",
14
  "gulp-babel": "^8.0.0",
25
  "run-sequence": "^2.2.1"
26
  },
27
  "scripts": {
28
+ "dist": "bash bin/dist",
29
  "gulp": "gulp",
30
+ "watch": "gulp watch",
31
+ "build": "gulp build",
32
  "translate": "po2json languages/ja_JP.po languages/veu-block-ja-veu-block.json -f jed"
33
  },
34
  "repository": {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.0.0
6
  Tested up to: 5.4.0
7
- Stable tag: 9.18.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -44,6 +44,12 @@ Many features can be stopped individually.
44
  * Title(with sub text)
45
  * Responsive Spacer
46
 
 
 
 
 
 
 
47
  [ Gutenberg core blocks extend ]
48
 
49
  * Title
@@ -93,6 +99,10 @@ e.g.
93
 
94
  == Changelog ==
95
 
 
 
 
 
96
  = 9.18.1.0 =
97
  [ bug fix ][ other widget ] bug fix of save all widget disable setting.
98
 
4
  Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
5
  Requires at least: 5.0.0
6
  Tested up to: 5.4.0
7
+ Stable tag: 9.19.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
44
  * Title(with sub text)
45
  * Responsive Spacer
46
 
47
+ * HTML SiteMap
48
+ * Child Page List
49
+ * Page list from ancestor
50
+ * Share Button
51
+ * Contact Section
52
+
53
  [ Gutenberg core blocks extend ]
54
 
55
  * Title
99
 
100
  == Changelog ==
101
 
102
+ = 9.19.0.0 =
103
+ [ Add Function ][ Add block ] HTML SiteMap
104
+ [ Add Function ][ Add block ] Page list from ancestor
105
+
106
  = 9.18.1.0 =
107
  [ bug fix ][ other widget ] bug fix of save all widget disable setting.
108
 
veu-packages.php CHANGED
@@ -221,7 +221,8 @@ function veu_get_packages() {
221
  'title' => __( 'Page list from ancestor', 'vk-all-in-one-expansion-unit' ),
222
  'description' => __( 'Display Page list from ancestor at after content.', 'vk-all-in-one-expansion-unit' ),
223
  'default' => true,
224
- 'include' => 'page-list-ancestor.php',
 
225
  );
226
 
227
  /*
221
  'title' => __( 'Page list from ancestor', 'vk-all-in-one-expansion-unit' ),
222
  'description' => __( 'Display Page list from ancestor at after content.', 'vk-all-in-one-expansion-unit' ),
223
  'default' => true,
224
+ 'include' => 'page-list-ancestor/page-list-ancestor.php',
225
+ 'use_ex_blocks' => true,
226
  );
227
 
228
  /*
vkExUnit.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
- * Version: 9.18.1.0
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages
@@ -37,11 +37,6 @@ $data = get_file_data( __FILE__, array( 'version' => 'Version' ) );
37
  global $vkExUnit_version;
38
  $vkExUnit_version = $data['version'];
39
 
40
- // include('plugins/css_customize/css-customize.php');
41
- // load_plugin_textdomain( 'vk-all-in-one-expansion-unit', false, basename( dirname( __FILE__ ) ) . '/languages' );
42
-
43
-
44
-
45
  function veu_get_directory( $path = '' ) {
46
  return $dirctory = dirname( __FILE__ ) . $path;
47
  }
3
  * Plugin Name: VK All in One Expansion Unit
4
  * Plugin URI: https://ex-unit.nagoya
5
  * Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
6
+ * Version: 9.19.0.0
7
  * Author: Vektor,Inc.
8
  * Text Domain: vk-all-in-one-expansion-unit
9
  * Domain Path: /languages
37
  global $vkExUnit_version;
38
  $vkExUnit_version = $data['version'];
39
 
 
 
 
 
 
40
  function veu_get_directory( $path = '' ) {
41
  return $dirctory = dirname( __FILE__ ) . $path;
42
  }