Version Description
- [ Specification change ] Change home page title "site name site name | side description"
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 3.6.0 |
Comparing to | |
See all releases |
Code changes from version 3.5.3 to 3.6.0
- README.md +10 -1
- _scss/vkExUnit_style.scss +75 -3
- common_helpers.php +1 -1
- css/vkExUnit_style.css +1 -1
- css/vkExUnit_style_in_bs.css +1 -1
- languages/vkExUnit-ja.mo +0 -0
- languages/vkExUnit-ja.po +86 -73
- languages/vkexunit.mo +0 -0
- languages/vkexunit.pot +82 -70
- packages.php +11 -2
- plugins/pageList_ancestor.php +98 -0
- readme.txt +4 -1
- vkExUnit.php +5 -4
README.md
CHANGED
@@ -26,4 +26,13 @@
|
|
26 |
- 複数の単語の場合はキャメルケース(連結する単語の最初の1文字を大文字)にする
|
27 |
※一つの単語なのか複数の単語が合わさっているのかわからないため
|
28 |
- 要素が複数の場合は、単語をアンダーバーで区切る
|
29 |
-
※ハイフンだとダブルクリックで選択出来ないため
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
- 複数の単語の場合はキャメルケース(連結する単語の最初の1文字を大文字)にする
|
27 |
※一つの単語なのか複数の単語が合わさっているのかわからないため
|
28 |
- 要素が複数の場合は、単語をアンダーバーで区切る
|
29 |
+
※ハイフンだとダブルクリックで選択出来ないため
|
30 |
+
|
31 |
+
## 機能追加の際の注意事項
|
32 |
+
|
33 |
+
- packages.php に書き込む時は、一番下に追加するのではなく、同類の機能は上下隣接するようにする
|
34 |
+
例1)固定ページの本文にフックする 子ページリスト、お問い合わせ情報表示、HTMLサイトマップ出力機能などは隣接
|
35 |
+
例2) 投稿ページの本文にフックする関連記事、Follow Me Section、CTAなどは隣接
|
36 |
+
- vkExUnit.php に機能の有効化部分を書き込む時には上記同様なるべくグルーピングする。
|
37 |
+
※ ただし、この順番は表示には影響しないので絶対きれいに並べておかないといけないわけではない。
|
38 |
+
- vkExUnit.php に機能の有効化部分を書き込む時には vkExUnit_package_is_enable() を使用する。
|
_scss/vkExUnit_style.scss
CHANGED
@@ -16,6 +16,8 @@
|
|
16 |
/*-------------------------------------------*/
|
17 |
/* .veu_childPage_list
|
18 |
/*-------------------------------------------*/
|
|
|
|
|
19 |
/* .veu_cta
|
20 |
/*-------------------------------------------*/
|
21 |
/* .veu_contact
|
@@ -37,7 +39,6 @@
|
|
37 |
/* Widget .veu_prBlocks
|
38 |
/*-------------------------------------------*/
|
39 |
|
40 |
-
|
41 |
$section_margin : 20px;
|
42 |
$color_font_default : #464646;
|
43 |
|
@@ -58,7 +59,7 @@ html { font-size: inherit; } /* reset bootstrap */
|
|
58 |
h1.mainSection-title { font-size:24px; }
|
59 |
|
60 |
.veu_adminEdit { margin-top:5px; }
|
61 |
-
.veu_adminEdit a.btn:before{font-family:FontAwesome;content:"\f040";
|
62 |
|
63 |
.veu_contentAddSection { display:block; clear:both; overflow:hidden; padding-top:20px; }
|
64 |
|
@@ -190,7 +191,78 @@ h1.mainSection-title { font-size:24px; }
|
|
190 |
.veu_childPage_list {
|
191 |
.wp-post-image{ width: 25%; }
|
192 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
/*-------------------------------------------*/
|
196 |
/* .veu_cta
|
@@ -494,4 +566,4 @@ h1.mainSection-title { font-size:24px; }
|
|
494 |
}
|
495 |
}
|
496 |
}
|
497 |
-
}
|
16 |
/*-------------------------------------------*/
|
17 |
/* .veu_childPage_list
|
18 |
/*-------------------------------------------*/
|
19 |
+
/* .veu_pageList_ancestor
|
20 |
+
/*-------------------------------------------*/
|
21 |
/* .veu_cta
|
22 |
/*-------------------------------------------*/
|
23 |
/* .veu_contact
|
39 |
/* Widget .veu_prBlocks
|
40 |
/*-------------------------------------------*/
|
41 |
|
|
|
42 |
$section_margin : 20px;
|
43 |
$color_font_default : #464646;
|
44 |
|
59 |
h1.mainSection-title { font-size:24px; }
|
60 |
|
61 |
.veu_adminEdit { margin-top:5px; }
|
62 |
+
.veu_adminEdit a.btn:before{margin-right:5px;font-family:FontAwesome;content:"\f040";}
|
63 |
|
64 |
.veu_contentAddSection { display:block; clear:both; overflow:hidden; padding-top:20px; }
|
65 |
|
191 |
.veu_childPage_list {
|
192 |
.wp-post-image{ width: 25%; }
|
193 |
}
|
194 |
+
} // @media (max-width: 767px){
|
195 |
+
|
196 |
+
/*-------------------------------------------*/
|
197 |
+
/* .veu_pageList_ancestor
|
198 |
+
/*-------------------------------------------*/
|
199 |
+
.veu_pageList_ancestor{
|
200 |
+
margin: 0 0 15px;
|
201 |
+
.section_title.section_title{
|
202 |
+
margin:0.5em 0;
|
203 |
+
a{
|
204 |
+
color: #333;
|
205 |
+
font-size: 23px;
|
206 |
+
}
|
207 |
+
}
|
208 |
+
.pageList{
|
209 |
+
display: flex;
|
210 |
+
display: -ms-flexbox;
|
211 |
+
display: -webkit-flex;
|
212 |
+
display: flex;
|
213 |
+
overflow: hidden;
|
214 |
+
margin: 0;
|
215 |
+
padding: 0;
|
216 |
+
width: 100%;
|
217 |
+
-ms-flex-wrap:wrap;
|
218 |
+
-webkit-flex-wrap:wrap;
|
219 |
+
flex-wrap:wrap;
|
220 |
+
}
|
221 |
+
.page_item{
|
222 |
+
box-sizing: border-box;
|
223 |
+
width: 33.3%;
|
224 |
+
list-style: none;
|
225 |
+
a{
|
226 |
+
display: block;
|
227 |
+
padding: 12px;
|
228 |
+
color: #333;
|
229 |
+
font-size: 0.8em;
|
230 |
+
}
|
231 |
+
a:hover{
|
232 |
+
background-color: #F0F0F0;
|
233 |
+
}
|
234 |
+
}
|
235 |
+
.current_page_item a{
|
236 |
+
background-color: #F0F0F0;
|
237 |
+
}
|
238 |
+
.children{
|
239 |
+
margin: 0;
|
240 |
+
padding-left: 20px;
|
241 |
+
li{
|
242 |
+
display: block;
|
243 |
+
margin-bottom: 0;
|
244 |
+
width: 100%;
|
245 |
+
}
|
246 |
+
a{
|
247 |
+
padding: 5px;
|
248 |
+
font-size: 12px;
|
249 |
+
}
|
250 |
+
}
|
251 |
}
|
252 |
+
@media screen and (max-width:992px){
|
253 |
+
.veu_pageList_ancestor{
|
254 |
+
.page_item{
|
255 |
+
float: none;
|
256 |
+
margin-bottom: 0;
|
257 |
+
width: 100%;
|
258 |
+
}
|
259 |
+
.children{
|
260 |
+
a{
|
261 |
+
padding: 5px;
|
262 |
+
}
|
263 |
+
}
|
264 |
+
}
|
265 |
+
} // @media screen and (max-width:992px){
|
266 |
|
267 |
/*-------------------------------------------*/
|
268 |
/* .veu_cta
|
566 |
}
|
567 |
}
|
568 |
}
|
569 |
+
}
|
common_helpers.php
CHANGED
@@ -108,7 +108,7 @@ function vkExUnit_get_wp_head_title(){
|
|
108 |
$sep = apply_filters( 'vkExUnit_get_wp_head_title', $sep );
|
109 |
|
110 |
if (is_front_page()) {
|
111 |
-
$title = get_bloginfo('name');
|
112 |
} else if ( is_home() && !is_front_page()) {
|
113 |
$title = vkExUnit_get_the_archive_title().$sep.get_bloginfo('name');
|
114 |
} else if ( is_archive() ) {
|
108 |
$sep = apply_filters( 'vkExUnit_get_wp_head_title', $sep );
|
109 |
|
110 |
if (is_front_page()) {
|
111 |
+
$title = get_bloginfo('name').$sep.get_bloginfo( 'description' );
|
112 |
} else if ( is_home() && !is_front_page()) {
|
113 |
$title = vkExUnit_get_the_archive_title().$sep.get_bloginfo('name');
|
114 |
} else if ( is_archive() ) {
|
css/vkExUnit_style.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.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:0.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-body .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media .media-body p{margin-bottom:0}.media .media-body a.media-body_excerpt{color:#464646}@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:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd: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:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{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:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.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}html{font-size:inherit}.link-list li{padding:0.5em}@media (min-width: 768px){.mainSection .widget{margin-bottom:40px}}.widget .subSection-title{font-size:18px}h1.mainSection-title{font-size:24px}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{font-family:FontAwesome;content:"\f040";margin-right:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.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:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .children{margin-bottom:2em}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0}.veu_socialSet ul li{position:relative;display:block;float:left;overflow:visible;margin-right:10px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:3px 5px 0px;border:1px solid #ccc;border-radius:3px;background-color:#fff;color:#333;text-decoration:none;line-height:100%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-2px;font-size:11px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns{margin-right:5px;font-size:100%}.veu_socialSet ul li.sb_icon.sb_facebook .icon_sns{color:#425dab}.veu_socialSet ul li.sb_icon.sb_hatena .icon_sns{color:#2c6ebd}.veu_socialSet ul li.sb_icon.sb_twitter .icon_sns{color:#00abec}.veu_socialSet ul li.sb_icon.sb_google .icon_sns{color:#dd4b39}.veu_socialSet ul li.sb_icon.sb_line .icon_sns{color:#6ebd30}.veu_socialSet ul li.sb_pocket{margin-left:5px}.veu_count_sns_fb,.veu_count_sns_tw,.veu_count_sns_hb{display:inline-block;margin-left:5px;padding:2px 5px;border-radius:5px;line-height:1;vertical-align:top;font-size:77%;color:#ffffff}.veu_count_sns_fb{background:#425dab}.veu_count_sns_tw{background:#00abec}.veu_count_sns_hb{background:#2c6ebd}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/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:normal;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"}.veu_childPage_list{margin-top:2.5em;margin-bottom:1em}.veu_childPage_list a:hover{text-decoration:none}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1em}.veu_childPage_list .childPage_list_box_inner{display:block;overflow:hidden;position:relative;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;padding:0 20px}.veu_childPage_list .childPage_list_title{margin-top:20px;font-size:16px;line-height:1.4;color:#464646}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px;margin-bottom:5px}.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:0}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}.veu_cta{display:block;overflow:hidden;background-color:#efefef;margin-top:20px;margin-bottom:20px}.veu_cta h1.cta_title{display:block;overflow:hidden;background-color:#333;font-size:22px;color:#fff;padding:12px 20px 10px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 2em 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}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;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{line-height:128.6%;font-size:14px}.veu_contact .contact_txt_tel{font-size:28px;line-height:110%;padding-top:4px}.veu_contact .contact_bt_txt:before{font-family:FontAwesome;content:"\f003";margin-right:7px}.veu_contact .contact_bt_txt:after{font-family:FontAwesome;content:"\f18e";margin-left:7px}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}@media (max-width: 767px){.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}}@media (min-width: 768px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left}.veu_contact .contact_bt{float:right}.veu_contact .contact_bt_subTxt_side{font-size:12px}.widget .veu_contact .contact_bt{margin-top:15px;float:none;display:inline-block}}.veu_insertAds{margin-top:1em;margin-bottom:1.5em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;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}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{border:none}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_newPosts h1.mainSection-title{margin-bottom:0}.veu_newPosts ul.postList{margin:15px 0 20px;padding:0}.veu_newPosts ul.postList li{display:block;overflow:hidden;border-bottom:1px dotted #666;padding:0;clear:both}.veu_newPosts ul.postList a{color:#464646}.veu_newPosts ul.postList .published,.veu_newPosts ul.postList .taxonomies a,.veu_newPosts ul.postList .entry-title{display:block;overflow:hidden;float:left}.veu_newPosts ul.postList .published{margin-right:10px;color:#d44950}.veu_newPosts ul.postList .published:before{content:'';margin:0}.veu_newPosts ul.postList .taxonomies a{background-color:#efefef;padding:2px 5px 1px;border-radius:3px;font-size:12px;margin-right:3px}.veu_newPosts ul.postList .entry-title{clear:both;display:block;margin:5px 0}.veu_newPosts .entry-meta_items.published:before{font-family:FontAwesome;content:"\f073";margin-right:5px}.veu_followSet{display:block;overflow:hidden;margin-top:20px;padding:15px;border:1px solid #f5f5f5;background-color:#efefef}.veu_followSet h3.followSet_title{padding:6px 10px 4px;border:none;background-color:#333;color:#fff;font-size:18px}.veu_followSet h3.followSet_title:after{border:none}.veu_followSet .follow_btn{float:left;margin-right:20px}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:0.5em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:45px;height:45px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.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}.veu_3prArea .media_pr{margin-top:0.8em;margin-bottom:0.8em}.veu_3prArea .media_pc{display:block}.veu_3prArea .media_sp{display:none}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.4em}.veu_3prArea .linkurl a{text-decoration:none}@media screen and (max-width: 992px){.veu_3prArea .media_pc{display:none}.veu_3prArea .media_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}}.veu_prBlocks{display:table;width:100%;table-layout:fixed}.veu_prBlocks .prArea{display:table-cell;padding:0 1em}.veu_prBlocks .prArea:first-child{padding-left:0}.veu_prBlocks .prArea:last-child{padding-right:0}.veu_prBlocks a{color:#333}.veu_prBlocks a:hover{color:#333;text-decoration:none}.veu_prBlocks a .summary:hover{text-decoration:underline}.veu_prBlocks .circle_icon{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.veu_prBlocks .circle_icon .font_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:40px}.veu_prBlocks .prBox_title{margin-top:1.5em;margin-bottom:1em;text-align:center;font-size:18px}.veu_prBlocks .media_pr{display:table;margin:0 auto}.veu_prBlocks .pr_image{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.veu_prBlocks .summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.4em}@media screen and (max-width: 767px){.veu_pr_blocks{display:block}.veu_pr_blocks .prArea{display:block;margin-bottom:3em}.veu_pr_blocks .prArea:first-child{padding-left:1em}.veu_pr_blocks .prArea:last-child{padding-right:1em}}
|
1 |
+
.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:0.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-body .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media .media-body p{margin-bottom:0}.media .media-body a.media-body_excerpt{color:#464646}@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:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd: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:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{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:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.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}html{font-size:inherit}.link-list li{padding:0.5em}@media (min-width: 768px){.mainSection .widget{margin-bottom:40px}}.widget .subSection-title{font-size:18px}h1.mainSection-title{font-size:24px}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;font-family:FontAwesome;content:"\f040"}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.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:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .children{margin-bottom:2em}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0}.veu_socialSet ul li{position:relative;display:block;float:left;overflow:visible;margin-right:10px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:3px 5px 0px;border:1px solid #ccc;border-radius:3px;background-color:#fff;color:#333;text-decoration:none;line-height:100%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-2px;font-size:11px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns{margin-right:5px;font-size:100%}.veu_socialSet ul li.sb_icon.sb_facebook .icon_sns{color:#425dab}.veu_socialSet ul li.sb_icon.sb_hatena .icon_sns{color:#2c6ebd}.veu_socialSet ul li.sb_icon.sb_twitter .icon_sns{color:#00abec}.veu_socialSet ul li.sb_icon.sb_google .icon_sns{color:#dd4b39}.veu_socialSet ul li.sb_icon.sb_line .icon_sns{color:#6ebd30}.veu_socialSet ul li.sb_pocket{margin-left:5px}.veu_count_sns_fb,.veu_count_sns_tw,.veu_count_sns_hb{display:inline-block;margin-left:5px;padding:2px 5px;border-radius:5px;line-height:1;vertical-align:top;font-size:77%;color:#ffffff}.veu_count_sns_fb{background:#425dab}.veu_count_sns_tw{background:#00abec}.veu_count_sns_hb{background:#2c6ebd}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/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:normal;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"}.veu_childPage_list{margin-top:2.5em;margin-bottom:1em}.veu_childPage_list a:hover{text-decoration:none}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1em}.veu_childPage_list .childPage_list_box_inner{display:block;overflow:hidden;position:relative;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;padding:0 20px}.veu_childPage_list .childPage_list_title{margin-top:20px;font-size:16px;line-height:1.4;color:#464646}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px;margin-bottom:5px}.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:0}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}.veu_pageList_ancestor{margin:0 0 15px}.veu_pageList_ancestor .section_title.section_title{margin:0.5em 0}.veu_pageList_ancestor .section_title.section_title a{color:#333;font-size:23px}.veu_pageList_ancestor .pageList{display:flex;display:-ms-flexbox;display:-webkit-flex;display:flex;overflow:hidden;margin:0;padding:0;width:100%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_pageList_ancestor .page_item{box-sizing:border-box;width:33.3%;list-style:none}.veu_pageList_ancestor .page_item a{display:block;padding:12px;color:#333;font-size:0.8em}.veu_pageList_ancestor .page_item a:hover{background-color:#F0F0F0}.veu_pageList_ancestor .current_page_item a{background-color:#F0F0F0}.veu_pageList_ancestor .children{margin:0;padding-left:20px}.veu_pageList_ancestor .children li{display:block;margin-bottom:0;width:100%}.veu_pageList_ancestor .children a{padding:5px;font-size:12px}@media screen and (max-width: 992px){.veu_pageList_ancestor .page_item{float:none;margin-bottom:0;width:100%}.veu_pageList_ancestor .children a{padding:5px}}.veu_cta{display:block;overflow:hidden;background-color:#efefef;margin-top:20px;margin-bottom:20px}.veu_cta h1.cta_title{display:block;overflow:hidden;background-color:#333;font-size:22px;color:#fff;padding:12px 20px 10px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 2em 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}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;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{line-height:128.6%;font-size:14px}.veu_contact .contact_txt_tel{font-size:28px;line-height:110%;padding-top:4px}.veu_contact .contact_bt_txt:before{font-family:FontAwesome;content:"\f003";margin-right:7px}.veu_contact .contact_bt_txt:after{font-family:FontAwesome;content:"\f18e";margin-left:7px}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}@media (max-width: 767px){.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}}@media (min-width: 768px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left}.veu_contact .contact_bt{float:right}.veu_contact .contact_bt_subTxt_side{font-size:12px}.widget .veu_contact .contact_bt{margin-top:15px;float:none;display:inline-block}}.veu_insertAds{margin-top:1em;margin-bottom:1.5em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;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}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{border:none}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_newPosts h1.mainSection-title{margin-bottom:0}.veu_newPosts ul.postList{margin:15px 0 20px;padding:0}.veu_newPosts ul.postList li{display:block;overflow:hidden;border-bottom:1px dotted #666;padding:0;clear:both}.veu_newPosts ul.postList a{color:#464646}.veu_newPosts ul.postList .published,.veu_newPosts ul.postList .taxonomies a,.veu_newPosts ul.postList .entry-title{display:block;overflow:hidden;float:left}.veu_newPosts ul.postList .published{margin-right:10px;color:#d44950}.veu_newPosts ul.postList .published:before{content:'';margin:0}.veu_newPosts ul.postList .taxonomies a{background-color:#efefef;padding:2px 5px 1px;border-radius:3px;font-size:12px;margin-right:3px}.veu_newPosts ul.postList .entry-title{clear:both;display:block;margin:5px 0}.veu_newPosts .entry-meta_items.published:before{font-family:FontAwesome;content:"\f073";margin-right:5px}.veu_followSet{display:block;overflow:hidden;margin-top:20px;padding:15px;border:1px solid #f5f5f5;background-color:#efefef}.veu_followSet h3.followSet_title{padding:6px 10px 4px;border:none;background-color:#333;color:#fff;font-size:18px}.veu_followSet h3.followSet_title:after{border:none}.veu_followSet .follow_btn{float:left;margin-right:20px}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:0.5em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:45px;height:45px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.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}.veu_3prArea .media_pr{margin-top:0.8em;margin-bottom:0.8em}.veu_3prArea .media_pc{display:block}.veu_3prArea .media_sp{display:none}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.4em}.veu_3prArea .linkurl a{text-decoration:none}@media screen and (max-width: 992px){.veu_3prArea .media_pc{display:none}.veu_3prArea .media_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}}.veu_prBlocks{display:table;width:100%;table-layout:fixed}.veu_prBlocks .prArea{display:table-cell;padding:0 1em}.veu_prBlocks .prArea:first-child{padding-left:0}.veu_prBlocks .prArea:last-child{padding-right:0}.veu_prBlocks a{color:#333}.veu_prBlocks a:hover{color:#333;text-decoration:none}.veu_prBlocks a .summary:hover{text-decoration:underline}.veu_prBlocks .circle_icon{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.veu_prBlocks .circle_icon .font_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:40px}.veu_prBlocks .prBox_title{margin-top:1.5em;margin-bottom:1em;text-align:center;font-size:18px}.veu_prBlocks .media_pr{display:table;margin:0 auto}.veu_prBlocks .pr_image{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.veu_prBlocks .summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.4em}@media screen and (max-width: 767px){.veu_pr_blocks{display:block}.veu_pr_blocks .prArea{display:block;margin-bottom:3em}.veu_pr_blocks .prArea:first-child{padding-left:1em}.veu_pr_blocks .prArea:last-child{padding-right:1em}}
|
css/vkExUnit_style_in_bs.css
CHANGED
@@ -9,4 +9,4 @@
|
|
9 |
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
10 |
* Copyright 2011-2015 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 */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{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}@media (min-width: 768px){.col-sm-1,.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-sm-10,.col-sm-11,.col-sm-12{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}}@media (min-width: 992px){.col-md-1,.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-md-10,.col-md-11,.col-md-12{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){.col-lg-1,.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-lg-10,.col-lg-11,.col-lg-12{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}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;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:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;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:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{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,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{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:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{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,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{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:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{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,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{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:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{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,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{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:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{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,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{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:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{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,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{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="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}.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:0.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-body .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media .media-body p{margin-bottom:0}.media .media-body a.media-body_excerpt{color:#464646}@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:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd: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:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{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:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.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}html{font-size:inherit}.link-list li{padding:0.5em}@media (min-width: 768px){.mainSection .widget{margin-bottom:40px}}.widget .subSection-title{font-size:18px}h1.mainSection-title{font-size:24px}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{font-family:FontAwesome;content:"\f040";margin-right:5px}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.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:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .children{margin-bottom:2em}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0}.veu_socialSet ul li{position:relative;display:block;float:left;overflow:visible;margin-right:10px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:3px 5px 0px;border:1px solid #ccc;border-radius:3px;background-color:#fff;color:#333;text-decoration:none;line-height:100%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-2px;font-size:11px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns{margin-right:5px;font-size:100%}.veu_socialSet ul li.sb_icon.sb_facebook .icon_sns{color:#425dab}.veu_socialSet ul li.sb_icon.sb_hatena .icon_sns{color:#2c6ebd}.veu_socialSet ul li.sb_icon.sb_twitter .icon_sns{color:#00abec}.veu_socialSet ul li.sb_icon.sb_google .icon_sns{color:#dd4b39}.veu_socialSet ul li.sb_icon.sb_line .icon_sns{color:#6ebd30}.veu_socialSet ul li.sb_pocket{margin-left:5px}.veu_count_sns_fb,.veu_count_sns_tw,.veu_count_sns_hb{display:inline-block;margin-left:5px;padding:2px 5px;border-radius:5px;line-height:1;vertical-align:top;font-size:77%;color:#ffffff}.veu_count_sns_fb{background:#425dab}.veu_count_sns_tw{background:#00abec}.veu_count_sns_hb{background:#2c6ebd}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/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:normal;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"}.veu_childPage_list{margin-top:2.5em;margin-bottom:1em}.veu_childPage_list a:hover{text-decoration:none}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1em}.veu_childPage_list .childPage_list_box_inner{display:block;overflow:hidden;position:relative;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;padding:0 20px}.veu_childPage_list .childPage_list_title{margin-top:20px;font-size:16px;line-height:1.4;color:#464646}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px;margin-bottom:5px}.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:0}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}.veu_cta{display:block;overflow:hidden;background-color:#efefef;margin-top:20px;margin-bottom:20px}.veu_cta h1.cta_title{display:block;overflow:hidden;background-color:#333;font-size:22px;color:#fff;padding:12px 20px 10px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 2em 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}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;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{line-height:128.6%;font-size:14px}.veu_contact .contact_txt_tel{font-size:28px;line-height:110%;padding-top:4px}.veu_contact .contact_bt_txt:before{font-family:FontAwesome;content:"\f003";margin-right:7px}.veu_contact .contact_bt_txt:after{font-family:FontAwesome;content:"\f18e";margin-left:7px}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}@media (max-width: 767px){.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}}@media (min-width: 768px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left}.veu_contact .contact_bt{float:right}.veu_contact .contact_bt_subTxt_side{font-size:12px}.widget .veu_contact .contact_bt{margin-top:15px;float:none;display:inline-block}}.veu_insertAds{margin-top:1em;margin-bottom:1.5em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;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}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{border:none}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_newPosts h1.mainSection-title{margin-bottom:0}.veu_newPosts ul.postList{margin:15px 0 20px;padding:0}.veu_newPosts ul.postList li{display:block;overflow:hidden;border-bottom:1px dotted #666;padding:0;clear:both}.veu_newPosts ul.postList a{color:#464646}.veu_newPosts ul.postList .published,.veu_newPosts ul.postList .taxonomies a,.veu_newPosts ul.postList .entry-title{display:block;overflow:hidden;float:left}.veu_newPosts ul.postList .published{margin-right:10px;color:#d44950}.veu_newPosts ul.postList .published:before{content:'';margin:0}.veu_newPosts ul.postList .taxonomies a{background-color:#efefef;padding:2px 5px 1px;border-radius:3px;font-size:12px;margin-right:3px}.veu_newPosts ul.postList .entry-title{clear:both;display:block;margin:5px 0}.veu_newPosts .entry-meta_items.published:before{font-family:FontAwesome;content:"\f073";margin-right:5px}.veu_followSet{display:block;overflow:hidden;margin-top:20px;padding:15px;border:1px solid #f5f5f5;background-color:#efefef}.veu_followSet h3.followSet_title{padding:6px 10px 4px;border:none;background-color:#333;color:#fff;font-size:18px}.veu_followSet h3.followSet_title:after{border:none}.veu_followSet .follow_btn{float:left;margin-right:20px}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:0.5em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:45px;height:45px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.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}.veu_3prArea .media_pr{margin-top:0.8em;margin-bottom:0.8em}.veu_3prArea .media_pc{display:block}.veu_3prArea .media_sp{display:none}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.4em}.veu_3prArea .linkurl a{text-decoration:none}@media screen and (max-width: 992px){.veu_3prArea .media_pc{display:none}.veu_3prArea .media_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}}.veu_prBlocks{display:table;width:100%;table-layout:fixed}.veu_prBlocks .prArea{display:table-cell;padding:0 1em}.veu_prBlocks .prArea:first-child{padding-left:0}.veu_prBlocks .prArea:last-child{padding-right:0}.veu_prBlocks a{color:#333}.veu_prBlocks a:hover{color:#333;text-decoration:none}.veu_prBlocks a .summary:hover{text-decoration:underline}.veu_prBlocks .circle_icon{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.veu_prBlocks .circle_icon .font_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:40px}.veu_prBlocks .prBox_title{margin-top:1.5em;margin-bottom:1em;text-align:center;font-size:18px}.veu_prBlocks .media_pr{display:table;margin:0 auto}.veu_prBlocks .pr_image{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.veu_prBlocks .summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.4em}@media screen and (max-width: 767px){.veu_pr_blocks{display:block}.veu_pr_blocks .prArea{display:block;margin-bottom:3em}.veu_pr_blocks .prArea:first-child{padding-left:1em}.veu_pr_blocks .prArea:last-child{padding-right:1em}}
|
9 |
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
10 |
* Copyright 2011-2015 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 */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{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}@media (min-width: 768px){.col-sm-1,.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-sm-10,.col-sm-11,.col-sm-12{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}}@media (min-width: 992px){.col-md-1,.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-md-10,.col-md-11,.col-md-12{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){.col-lg-1,.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-lg-10,.col-lg-11,.col-lg-12{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}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;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:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;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:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{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,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{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:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{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,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{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:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{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,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{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:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{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,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{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:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{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,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{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:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{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,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{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="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}.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:0.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-body .media-heading{font-size:1.8em;line-height:1.3em;margin-top:0;margin-bottom:0.5em;font-weight:normal}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media .media-body p{margin-bottom:0}.media .media-body a.media-body_excerpt{color:#464646}@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:0.5em}}@media (max-width: 500px){.media .postList_thumbnail{width:100px}}.veu_leadTxt,p.veu_leadTxt{font-size:2em;line-height:150%;padding:0}dl.veu_qaItem{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 20px;margin:0px 0px 20px;width:100%;position:relative}dl.veu_qaItem dt,dl.veu_qaItem dd{border:none;padding-left:35px}dl.veu_qaItem dt:before,dl.veu_qaItem dd: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:0px}dl.veu_qaItem dd:before{content:"A ";color:#337ab7;font-family:""}.veu_flowBox{display:block;overflow:hidden}.veu_flowBox:after{font-family:FontAwesome;content:"\f0d7";font-size:50px;margin:0 auto 15px;position:relative;left:48%;line-height:120%;color:#ccc}.veu_flowBox:last-child{padding-bottom:0px;margin-bottom:30px}.veu_flowBox:last-child:after{content:"";font-size:0}.veu_flowBox dl{display:block;overflow:hidden;padding:20px 25px;border:3px solid #e5e5e5;margin:0}.veu_flowBox dl dt,.veu_flowBox dl dd{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:0px}.veu_flowBox dl dd h4{margin:0px;padding:0px}.veu_flowBox dl dd p{margin-bottom:10px}.veu_flowBox dl dd ul{margin-bottom:0px}.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}html{font-size:inherit}.link-list li{padding:0.5em}@media (min-width: 768px){.mainSection .widget{margin-bottom:40px}}.widget .subSection-title{font-size:18px}h1.mainSection-title{font-size:24px}.veu_adminEdit{margin-top:5px}.veu_adminEdit a.btn:before{margin-right:5px;font-family:FontAwesome;content:"\f040"}.veu_contentAddSection{display:block;clear:both;overflow:hidden;padding-top:20px}.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:2.5em}.veu_sitemap .sitemap-col .link-list{margin-top:0;margin-bottom:0}.veu_sitemap .sitemap-col .page_item{padding:0}.veu_sitemap .sitemap-col .children{margin-bottom:2em}.veu_sitemap .sitemap-col .cat-item{padding:0}.veu_socialSet ul{margin:0px;padding:0}.veu_socialSet ul li{position:relative;display:block;float:left;overflow:visible;margin-right:10px;padding:0px;background:none}.veu_socialSet ul li.sb_icon a{display:block;overflow:hidden;padding:3px 5px 0px;border:1px solid #ccc;border-radius:3px;background-color:#fff;color:#333;text-decoration:none;line-height:100%}.veu_socialSet ul li.sb_icon a .sns_txt{position:relative;top:-2px;font-size:11px}.veu_socialSet ul li iframe{border:none}.veu_socialSet ul li a .icon_sns{margin-right:5px;font-size:100%}.veu_socialSet ul li.sb_icon.sb_facebook .icon_sns{color:#425dab}.veu_socialSet ul li.sb_icon.sb_hatena .icon_sns{color:#2c6ebd}.veu_socialSet ul li.sb_icon.sb_twitter .icon_sns{color:#00abec}.veu_socialSet ul li.sb_icon.sb_google .icon_sns{color:#dd4b39}.veu_socialSet ul li.sb_icon.sb_line .icon_sns{color:#6ebd30}.veu_socialSet ul li.sb_pocket{margin-left:5px}.veu_count_sns_fb,.veu_count_sns_tw,.veu_count_sns_hb{display:inline-block;margin-left:5px;padding:2px 5px;border-radius:5px;line-height:1;vertical-align:top;font-size:77%;color:#ffffff}.veu_count_sns_fb{background:#425dab}.veu_count_sns_tw{background:#00abec}.veu_count_sns_hb{background:#2c6ebd}@font-face{font-weight:normal;font-style:normal;font-family:'vk_sns';src:url("../plugins/sns/icons/fonts/vk_sns.eot?-bq20cj");src:url("../plugins/sns/icons/fonts/vk_sns.eot?#iefix-bq20cj") format("embedded-opentype"),url("../plugins/sns/icons/fonts/vk_sns.woff?-bq20cj") format("woff"),url("../plugins/sns/icons/fonts/vk_sns.ttf?-bq20cj") format("truetype"),url("../plugins/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:normal;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"}.veu_childPage_list{margin-top:2.5em;margin-bottom:1em}.veu_childPage_list a:hover{text-decoration:none}.veu_childPage_list .childPage_list_box{display:block;margin-bottom:1em}.veu_childPage_list .childPage_list_box_inner{display:block;overflow:hidden;position:relative;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;padding:0 20px}.veu_childPage_list .childPage_list_title{margin-top:20px;font-size:16px;line-height:1.4;color:#464646}.veu_childPage_list .wp-post-image{float:left;margin-right:1em;width:30%;border:solid 1px #ddd}.veu_childPage_list .childPage_list_body{overflow:hidden;color:#333;font-size:14px;margin-bottom:5px}.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:0}.veu_childPage_list .childPage_list_more{float:right;margin-bottom:20px}@media (max-width: 767px){.veu_childPage_list .wp-post-image{width:25%}}.veu_pageList_ancestor{margin:0 0 15px}.veu_pageList_ancestor .section_title.section_title{margin:0.5em 0}.veu_pageList_ancestor .section_title.section_title a{color:#333;font-size:23px}.veu_pageList_ancestor .pageList{display:flex;display:-ms-flexbox;display:-webkit-flex;display:flex;overflow:hidden;margin:0;padding:0;width:100%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.veu_pageList_ancestor .page_item{box-sizing:border-box;width:33.3%;list-style:none}.veu_pageList_ancestor .page_item a{display:block;padding:12px;color:#333;font-size:0.8em}.veu_pageList_ancestor .page_item a:hover{background-color:#F0F0F0}.veu_pageList_ancestor .current_page_item a{background-color:#F0F0F0}.veu_pageList_ancestor .children{margin:0;padding-left:20px}.veu_pageList_ancestor .children li{display:block;margin-bottom:0;width:100%}.veu_pageList_ancestor .children a{padding:5px;font-size:12px}@media screen and (max-width: 992px){.veu_pageList_ancestor .page_item{float:none;margin-bottom:0;width:100%}.veu_pageList_ancestor .children a{padding:5px}}.veu_cta{display:block;overflow:hidden;background-color:#efefef;margin-top:20px;margin-bottom:20px}.veu_cta h1.cta_title{display:block;overflow:hidden;background-color:#333;font-size:22px;color:#fff;padding:12px 20px 10px;line-height:1.2em}.veu_cta .cta_body{display:block;overflow:hidden;padding:1.5em 2em 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}@media (max-width: 767px){.veu_cta .cta_body_image img{display:block;margin:0 auto 1.5em;max-width:100%}}@media (min-width: 768px){.veu_cta .cta_body_image_right{float:right;margin-left:30px}.veu_cta .cta_body_image_left{float:left;margin-right:30px}}.veu_contact{display:block;overflow:hidden}.veu_contact .contact_frame{display:block;overflow:hidden;padding:25px 24px 21px;border:3px solid #efefef;box-shadow:inset 0px 0px 0px 1px #fff;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{line-height:128.6%;font-size:14px}.veu_contact .contact_txt_tel{font-size:28px;line-height:110%;padding-top:4px}.veu_contact .contact_bt_txt:before{font-family:FontAwesome;content:"\f003";margin-right:7px}.veu_contact .contact_bt_txt:after{font-family:FontAwesome;content:"\f18e";margin-left:7px}.veu_contact .contact_bt_subTxt{display:block;overflow:hidden;font-size:14px}@media (max-width: 767px){.veu_contact .contact_txt{text-align:center}.veu_contact .contact_bt{display:block}}@media (min-width: 768px){.veu_contact p.contact_txt{margin-bottom:0}.veu_contact .contact_txt{float:left}.veu_contact .contact_bt{float:right}.veu_contact .contact_bt_subTxt_side{font-size:12px}.widget .veu_contact .contact_bt{margin-top:15px;float:none;display:inline-block}}.veu_insertAds{margin-top:1em;margin-bottom:1.5em}@media (max-width: 971px){.veu_insertAds{margin-bottom:0.5em}.veu_insertAds .col-md-6{margin-bottom:1em}}.veu_relatedPosts>.row{display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;margin-right:-3%;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;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}.veu_relatedPosts .relatedPosts_item>.media:first-child{border:none}.veu_relatedPosts .relatedPosts_item>.media{border:none}.veu_relatedPosts .relatedPosts_item:nth-child(1){border-top:solid 1px #e5e5e5}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:solid 1px #e5e5e5}@media (max-width: 768px){.veu_relatedPosts .relatedPosts_item{display:block;width:100%}.veu_relatedPosts .relatedPosts_item:nth-child(2){border-top:none}}.veu_fbPagePlugin .fbPagePlugin_body{margin:0 auto;border:4px solid #efefef;background-color:#f9f9f9;text-align:center}.twitter-timeline iframe{margin-right:auto;margin-left:auto}.veu_newPosts h1.mainSection-title{margin-bottom:0}.veu_newPosts ul.postList{margin:15px 0 20px;padding:0}.veu_newPosts ul.postList li{display:block;overflow:hidden;border-bottom:1px dotted #666;padding:0;clear:both}.veu_newPosts ul.postList a{color:#464646}.veu_newPosts ul.postList .published,.veu_newPosts ul.postList .taxonomies a,.veu_newPosts ul.postList .entry-title{display:block;overflow:hidden;float:left}.veu_newPosts ul.postList .published{margin-right:10px;color:#d44950}.veu_newPosts ul.postList .published:before{content:'';margin:0}.veu_newPosts ul.postList .taxonomies a{background-color:#efefef;padding:2px 5px 1px;border-radius:3px;font-size:12px;margin-right:3px}.veu_newPosts ul.postList .entry-title{clear:both;display:block;margin:5px 0}.veu_newPosts .entry-meta_items.published:before{font-family:FontAwesome;content:"\f073";margin-right:5px}.veu_followSet{display:block;overflow:hidden;margin-top:20px;padding:15px;border:1px solid #f5f5f5;background-color:#efefef}.veu_followSet h3.followSet_title{padding:6px 10px 4px;border:none;background-color:#333;color:#fff;font-size:18px}.veu_followSet h3.followSet_title:after{border:none}.veu_followSet .follow_btn{float:left;margin-right:20px}.veu_profile .profile{overflow:hidden}.veu_profile .profile_media{display:block;margin:0.8em auto;max-width:100%}.veu_profile .media_round{border-radius:50%}.veu_profile .media_left .profile_media{margin-left:0}.veu_profile .media_float{float:left;padding-right:10px}.veu_profile .media_float .profile_media{margin:0.8em 0 0}.veu_profile .media_float+.profile_text{padding-top:0.8em}.veu_profile .profile_text{margin-bottom:0.5em;font-size:14px}.veu_profile .sns_btns{margin:0;padding:0;width:100%}.veu_profile .sns_btns li{float:left;margin-right:0.45em;list-style:none;text-align:center}.veu_profile .sns_btns a{display:block;display:table;width:45px;height:45px;border-radius:23px;color:#fff;text-decoration:none;font-size:20px}.veu_profile .sns_btns a:hover{color:#fff;text-decoration:none;opacity:0.8}.veu_profile .sns_btns .fa{display:table-cell;vertical-align:middle;text-align:center}.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}.veu_3prArea .media_pr{margin-top:0.8em;margin-bottom:0.8em}.veu_3prArea .media_pc{display:block}.veu_3prArea .media_sp{display:none}.veu_3prArea .summary{margin-bottom:0.5em;font-size:14px;line-height:1.4em}.veu_3prArea .linkurl a{text-decoration:none}@media screen and (max-width: 992px){.veu_3prArea .media_pc{display:none}.veu_3prArea .media_sp{display:block}.veu_3prArea .linkurl{margin-bottom:1.5em}}.veu_prBlocks{display:table;width:100%;table-layout:fixed}.veu_prBlocks .prArea{display:table-cell;padding:0 1em}.veu_prBlocks .prArea:first-child{padding-left:0}.veu_prBlocks .prArea:last-child{padding-right:0}.veu_prBlocks a{color:#333}.veu_prBlocks a:hover{color:#333;text-decoration:none}.veu_prBlocks a .summary:hover{text-decoration:underline}.veu_prBlocks .circle_icon{display:table;margin:0 auto;width:80px;height:80px;border-radius:50%}.veu_prBlocks .circle_icon .font_icon{display:table-cell;color:#fff;vertical-align:middle;text-align:center;font-size:40px}.veu_prBlocks .prBox_title{margin-top:1.5em;margin-bottom:1em;text-align:center;font-size:18px}.veu_prBlocks .media_pr{display:table;margin:0 auto}.veu_prBlocks .pr_image{display:table-cell;overflow:hidden;width:120px;height:120px;border-radius:50%;vertical-align:middle;text-align:center}.veu_prBlocks .summary{margin-bottom:0.5em;text-align:center;font-size:14px;line-height:1.4em}@media screen and (max-width: 767px){.veu_pr_blocks{display:block}.veu_pr_blocks .prArea{display:block;margin-bottom:3em}.veu_pr_blocks .prArea:first-child{padding-left:1em}.veu_pr_blocks .prArea:last-child{padding-right:1em}}
|
languages/vkExUnit-ja.mo
CHANGED
Binary file
|
languages/vkExUnit-ja.po
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-09-
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
-
#: ../admin_wrapper.php:
|
24 |
msgid "Activated Packages is noting. please activate some package."
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
@@ -107,11 +107,11 @@ msgstr "チャット"
|
|
107 |
msgid "Archives"
|
108 |
msgstr "アーカイブ"
|
109 |
|
110 |
-
#: ../packages.php:
|
111 |
msgid "Print Bootstrap css and js"
|
112 |
msgstr "Bootstrap の CSS と js を出力"
|
113 |
|
114 |
-
#: ../packages.php:
|
115 |
msgid ""
|
116 |
"If your using theme has already including Bootstrap, you deactivate this "
|
117 |
"item."
|
@@ -120,97 +120,97 @@ msgstr ""
|
|
120 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
121 |
"下さい。"
|
122 |
|
123 |
-
#: ../packages.php:
|
124 |
msgid "Print link fontawesome"
|
125 |
msgstr "fontawesome link タグを出力"
|
126 |
|
127 |
-
#: ../packages.php:
|
128 |
msgid "Print fontawesome link tag to html head."
|
129 |
msgstr ""
|
130 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
131 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
132 |
"さい。"
|
133 |
|
134 |
-
#: ../packages.php:
|
135 |
msgid "Favicon setting"
|
136 |
msgstr "ファビコン設定"
|
137 |
|
138 |
-
#: ../packages.php:
|
139 |
msgid "About favicon."
|
140 |
msgstr ""
|
141 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
142 |
"(ファビコン)を設定します。"
|
143 |
|
144 |
-
#: ../packages.php:
|
145 |
msgid "Rewrite the title tag"
|
146 |
msgstr "タイトルタグの書き換え"
|
147 |
|
148 |
-
#: ../packages.php:
|
149 |
msgid "Print is rewritten by its own rules to html head."
|
150 |
msgstr ""
|
151 |
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
152 |
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
153 |
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
154 |
|
155 |
-
#: ../packages.php:
|
156 |
msgid "Print meta Keyword"
|
157 |
msgstr "メタキーワードを出力"
|
158 |
|
159 |
-
#: ../packages.php:
|
160 |
msgid "Print meta Keyword to html head."
|
161 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
162 |
|
163 |
-
#: ../packages.php:
|
164 |
-
#: ../packages.php:
|
165 |
-
#: ../packages.php:
|
166 |
msgid "Setting"
|
167 |
msgstr "設定"
|
168 |
|
169 |
-
#: ../packages.php:
|
170 |
msgid "Print meta description"
|
171 |
msgstr "メタディスクリプションタグを出力"
|
172 |
|
173 |
-
#: ../packages.php:
|
174 |
msgid "Print meta description to html head."
|
175 |
msgstr ""
|
176 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
177 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
178 |
"している場合はチェックを外して下さい。"
|
179 |
|
180 |
-
#: ../packages.php:
|
181 |
msgid "Main setting page"
|
182 |
msgstr "メイン設定画面"
|
183 |
|
184 |
-
#: ../packages.php:
|
185 |
msgid "Print og tags to html head."
|
186 |
msgstr "OG タグを html head 内へ出力します。"
|
187 |
|
188 |
-
#: ../packages.php:
|
189 |
msgid "Print twitter card tags to html head."
|
190 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
191 |
|
192 |
-
#: ../packages.php:
|
193 |
msgid "Print social bookmark buttons."
|
194 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
195 |
|
196 |
-
#: ../packages.php:
|
197 |
msgid "Facebook Page Plugin widget."
|
198 |
msgstr "Facebookページプラグインウィジェット"
|
199 |
|
200 |
-
#: ../packages.php:
|
201 |
msgid "Print Follow me box to content bottom."
|
202 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
203 |
|
204 |
-
#: ../packages.php:
|
205 |
#, php-format
|
206 |
msgid "* You can stop the function separately from the %s."
|
207 |
msgstr "%s から個別に機能を停止する事ができます。"
|
208 |
|
209 |
-
#: ../packages.php:
|
210 |
msgid "Social media cooperation"
|
211 |
msgstr "ソーシャルメディア連携"
|
212 |
|
213 |
-
#: ../packages.php:
|
214 |
msgid "Print Google Analytics tracking code."
|
215 |
msgstr ""
|
216 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
@@ -218,49 +218,49 @@ msgstr ""
|
|
218 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
219 |
"合はチェックを外して下さい。"
|
220 |
|
221 |
-
#: ../packages.php:
|
222 |
msgid "You can use various widgets."
|
223 |
msgstr ""
|
224 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
225 |
"「ウィジェット」の設定画面より行って下さい。"
|
226 |
|
227 |
-
#: ../packages.php:
|
228 |
msgid ""
|
229 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
230 |
"title."
|
231 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
232 |
|
233 |
-
#: ../packages.php:
|
234 |
msgid ""
|
235 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
236 |
msgstr ""
|
237 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
238 |
|
239 |
-
#: ../packages.php:
|
240 |
msgid "VK_Profile - display the profile entered in the widget."
|
241 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
242 |
|
243 |
-
#: ../packages.php:
|
244 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
245 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
246 |
|
247 |
-
#: ../packages.php:
|
248 |
msgid "VK_3PR area - display the 3PR area."
|
249 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
250 |
|
251 |
-
#: ../packages.php:
|
252 |
msgid "categories/tags list"
|
253 |
msgstr "カテゴリー/タグ リスト"
|
254 |
|
255 |
-
#: ../packages.php:
|
256 |
msgid "Displays a categories, tags or format list."
|
257 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
258 |
|
259 |
-
#: ../packages.php:
|
260 |
msgid "archive list"
|
261 |
msgstr "アーカイブリスト"
|
262 |
|
263 |
-
#: ../packages.php:
|
264 |
msgid ""
|
265 |
"Displays a list of archives. You can choose the post type and also to "
|
266 |
"display archives by month or by year."
|
@@ -268,34 +268,34 @@ msgstr ""
|
|
268 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
269 |
"プを選択できます。"
|
270 |
|
271 |
-
#: ../packages.php:
|
272 |
msgid "Widgets"
|
273 |
msgstr "ウィジェット"
|
274 |
|
275 |
-
#: ../packages.php:
|
276 |
msgid "CSS customize"
|
277 |
msgstr "CSSカスタマイズ"
|
278 |
|
279 |
-
#: ../packages.php:
|
280 |
msgid "You can set Customize CSS."
|
281 |
msgstr ""
|
282 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
283 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
284 |
"さい。"
|
285 |
|
286 |
-
#: ../packages.php:
|
287 |
msgid "Contact Section"
|
288 |
msgstr "お問い合わせ"
|
289 |
|
290 |
-
#: ../packages.php:
|
291 |
msgid "Display Contact Section at after content."
|
292 |
msgstr "お問い合わせ情報を本文の下に表示する"
|
293 |
|
294 |
-
#: ../packages.php:
|
295 |
msgid "Child page index"
|
296 |
msgstr "子ページの一覧表示"
|
297 |
|
298 |
-
#: ../packages.php:
|
299 |
msgid ""
|
300 |
"At the bottom of the specified page, it will display a list of the child "
|
301 |
"page."
|
@@ -303,19 +303,28 @@ msgstr ""
|
|
303 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
304 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
305 |
|
306 |
-
#: ../packages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "Display HTML Site Map"
|
308 |
msgstr "HTMLサイトマップの表示"
|
309 |
|
310 |
-
#: ../packages.php:
|
311 |
msgid "It displays a HTML Site Map to the specified page."
|
312 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
313 |
|
314 |
-
#: ../packages.php:
|
315 |
msgid "Display the CTA at the end of the post content."
|
316 |
msgstr "投稿内容の最後にCTAを表示します。"
|
317 |
|
318 |
-
#: ../packages.php:
|
319 |
msgid ""
|
320 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
321 |
"user behavior."
|
@@ -323,7 +332,7 @@ msgstr ""
|
|
323 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
324 |
"情報を表示します。"
|
325 |
|
326 |
-
#: ../packages.php:
|
327 |
msgid ""
|
328 |
"As an example, text message and a link button for induction to the free "
|
329 |
"sample download page."
|
@@ -331,36 +340,36 @@ msgstr ""
|
|
331 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
332 |
"ンなどです。"
|
333 |
|
334 |
-
#: ../packages.php:
|
335 |
msgid "Call To Action"
|
336 |
msgstr "Call To Action"
|
337 |
|
338 |
-
#: ../packages.php:
|
339 |
msgid "Contents setting"
|
340 |
msgstr "CTA表示内容設定"
|
341 |
|
342 |
-
#: ../packages.php:
|
343 |
-
#: ../plugins/insert_ads.php:
|
344 |
msgid "Insert ads"
|
345 |
msgstr "広告の挿入"
|
346 |
|
347 |
-
#: ../packages.php:
|
348 |
msgid "Insert ads to content."
|
349 |
msgstr "記事に広告を挿入します"
|
350 |
|
351 |
-
#: ../packages.php:
|
352 |
msgid "Related posts"
|
353 |
msgstr "関連記事を表示"
|
354 |
|
355 |
-
#: ../packages.php:
|
356 |
msgid "Print Related posts lists to post content bottom."
|
357 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
358 |
|
359 |
-
#: ../packages.php:
|
360 |
msgid "Automatic Eye Catch insert"
|
361 |
msgstr "アイキャッチ画像自動挿入"
|
362 |
|
363 |
-
#: ../packages.php:
|
364 |
msgid "Display Eye Catch image at before content."
|
365 |
msgstr ""
|
366 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
@@ -409,7 +418,7 @@ msgstr "アイキャッチ画像を自動挿入しない"
|
|
409 |
msgid "Read more"
|
410 |
msgstr "詳しくはこちら"
|
411 |
|
412 |
-
#: ../plugins/child_page_index.php:
|
413 |
msgid "Display a child page index"
|
414 |
msgstr "子ページ一覧の表示"
|
415 |
|
@@ -494,15 +503,15 @@ msgstr ""
|
|
494 |
msgid "Display Contact Section"
|
495 |
msgstr "お問い合わせ情報の表示"
|
496 |
|
497 |
-
#: ../plugins/contact_section.php:
|
498 |
msgid "Edit contact information"
|
499 |
msgstr "Contact情報を編集"
|
500 |
|
501 |
-
#: ../plugins/contact_section.php:
|
502 |
msgid "Contact Button"
|
503 |
msgstr "お問い合わせボタン"
|
504 |
|
505 |
-
#: ../plugins/contact_section.php:
|
506 |
#, php-format
|
507 |
msgid ""
|
508 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
@@ -543,23 +552,23 @@ msgstr "アイコンを選択"
|
|
543 |
msgid "Please upload your \".ico\" file"
|
544 |
msgstr "作成したicoファイルをアップロードしてください"
|
545 |
|
546 |
-
#: ../plugins/insert_ads.php:
|
547 |
msgid "Insert ads to post."
|
548 |
msgstr "投稿に広告を挿入"
|
549 |
|
550 |
-
#: ../plugins/insert_ads.php:
|
551 |
msgid "Insert ads to more tag and after content."
|
552 |
msgstr "moreタグの直後と、記事の最後に広告を挿入できます。"
|
553 |
|
554 |
-
#: ../plugins/insert_ads.php:
|
555 |
msgid "If you want to separate ads area, you fill two fields."
|
556 |
msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
|
557 |
|
558 |
-
#: ../plugins/insert_ads.php:
|
559 |
msgid "insert the ad [ more tag ]"
|
560 |
msgstr "広告を挿入 [ moreタグ ]"
|
561 |
|
562 |
-
#: ../plugins/insert_ads.php:
|
563 |
msgid "insert the ad [ after content ]"
|
564 |
msgstr "広告を挿入 [ 記事の最後 ]"
|
565 |
|
@@ -666,6 +675,10 @@ msgstr "サイト全体のキーワードは %s より設定することがで
|
|
666 |
msgid "Setting of insert items"
|
667 |
msgstr "挿入アイテムの設定"
|
668 |
|
|
|
|
|
|
|
|
|
669 |
#: ../plugins/call_to_action/class.call_to_action.php:48
|
670 |
#: ../plugins/call_to_action/view.actionbox.php:39
|
671 |
msgid "Edit CTA"
|
@@ -694,7 +707,7 @@ msgid "Follow common setting"
|
|
694 |
msgstr "共通設定を使用"
|
695 |
|
696 |
#: ../plugins/call_to_action/class.call_to_action.php:90
|
697 |
-
#: ../plugins/call_to_action/class.call_to_action.php:
|
698 |
msgid "Disable display"
|
699 |
msgstr "表示しない"
|
700 |
|
@@ -869,7 +882,7 @@ msgstr "3PR エリア1 設定"
|
|
869 |
#: ../plugins/other_widget/widget-new-posts.php:149
|
870 |
#: ../plugins/other_widget/widget-pr-blocks.php:74
|
871 |
#: ../plugins/other_widget/widget-profile.php:40
|
872 |
-
#: ../plugins/sns/function_fbPagePlugin.php:
|
873 |
msgid "Title:"
|
874 |
msgstr "タイトル"
|
875 |
|
@@ -965,7 +978,7 @@ msgstr "子ページのリスト"
|
|
965 |
#: ../plugins/other_widget/widget-child-page-list.php:15
|
966 |
#: ../plugins/other_widget/widget-child-page-list.php:50
|
967 |
msgid "Display the child pages list from ancestor page."
|
968 |
-
msgstr "
|
969 |
|
970 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
971 |
#: ../plugins/other_widget/widget-new-posts.php:29
|
@@ -1241,19 +1254,19 @@ msgstr "HTMLサイトマップの表示"
|
|
1241 |
msgid "Displays a Facebook Page Plugin"
|
1242 |
msgstr "Facebook ページプラグインを表示します。"
|
1243 |
|
1244 |
-
#: ../plugins/sns/function_fbPagePlugin.php:
|
1245 |
msgid "Height"
|
1246 |
msgstr "高さ"
|
1247 |
|
1248 |
-
#: ../plugins/sns/function_fbPagePlugin.php:
|
1249 |
msgid "Show Friend's Faces"
|
1250 |
msgstr "アイコンを表示する"
|
1251 |
|
1252 |
-
#: ../plugins/sns/function_fbPagePlugin.php:
|
1253 |
msgid "Hide Cover Photo"
|
1254 |
msgstr "カバー画像を表示しない"
|
1255 |
|
1256 |
-
#: ../plugins/sns/function_fbPagePlugin.php:
|
1257 |
msgid "Show Page Posts"
|
1258 |
msgstr "タイムラインを表示"
|
1259 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-09-19 12:23+0900\n"
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor translate Team <info@vektor-inc.co.jp>\n"
|
20 |
msgid "Main setting"
|
21 |
msgstr "メイン設定"
|
22 |
|
23 |
+
#: ../admin_wrapper.php:76
|
24 |
msgid "Activated Packages is noting. please activate some package."
|
25 |
msgstr ""
|
26 |
"有効化されているパッケージがありません。何かの機能を有効化してください。"
|
107 |
msgid "Archives"
|
108 |
msgstr "アーカイブ"
|
109 |
|
110 |
+
#: ../packages.php:69
|
111 |
msgid "Print Bootstrap css and js"
|
112 |
msgstr "Bootstrap の CSS と js を出力"
|
113 |
|
114 |
+
#: ../packages.php:70
|
115 |
msgid ""
|
116 |
"If your using theme has already including Bootstrap, you deactivate this "
|
117 |
"item."
|
120 |
"中のテーマやプラグインで Bootstrap を既に読み込んでいる場合はチェックを外して"
|
121 |
"下さい。"
|
122 |
|
123 |
+
#: ../packages.php:79
|
124 |
msgid "Print link fontawesome"
|
125 |
msgstr "fontawesome link タグを出力"
|
126 |
|
127 |
+
#: ../packages.php:80
|
128 |
msgid "Print fontawesome link tag to html head."
|
129 |
msgstr ""
|
130 |
"fontawesome を読み込むための link タグを html head 内へ出力します。使用中の"
|
131 |
"テーマやプラグインで fontawesome を既に読み込んでいる場合はチェックを外して下"
|
132 |
"さい。"
|
133 |
|
134 |
+
#: ../packages.php:89
|
135 |
msgid "Favicon setting"
|
136 |
msgstr "ファビコン設定"
|
137 |
|
138 |
+
#: ../packages.php:90
|
139 |
msgid "About favicon."
|
140 |
msgstr ""
|
141 |
"ブラウザでページを表示した際にタブやウィンドウのタイトルに表示されるアイコン"
|
142 |
"(ファビコン)を設定します。"
|
143 |
|
144 |
+
#: ../packages.php:99
|
145 |
msgid "Rewrite the title tag"
|
146 |
msgstr "タイトルタグの書き換え"
|
147 |
|
148 |
+
#: ../packages.php:100
|
149 |
msgid "Print is rewritten by its own rules to html head."
|
150 |
msgstr ""
|
151 |
"head title タグ内へ出力される内容を VK EX Unit のルールで出力します。 ( VK "
|
152 |
"EX Unit 側で wp_title() をフィルターフックでカスタマイズ ) 使用中のテーマやプ"
|
153 |
"ラグインで title タグの内容を出力する場合はチェックを外して下さい。"
|
154 |
|
155 |
+
#: ../packages.php:109
|
156 |
msgid "Print meta Keyword"
|
157 |
msgstr "メタキーワードを出力"
|
158 |
|
159 |
+
#: ../packages.php:110
|
160 |
msgid "Print meta Keyword to html head."
|
161 |
msgstr "ヘッダーにメタキーワードを出力します。"
|
162 |
|
163 |
+
#: ../packages.php:113 ../packages.php:150 ../packages.php:167
|
164 |
+
#: ../packages.php:196 ../packages.php:213 ../packages.php:230
|
165 |
+
#: ../packages.php:285 ../packages.php:307
|
166 |
msgid "Setting"
|
167 |
msgstr "設定"
|
168 |
|
169 |
+
#: ../packages.php:125
|
170 |
msgid "Print meta description"
|
171 |
msgstr "メタディスクリプションタグを出力"
|
172 |
|
173 |
+
#: ../packages.php:126
|
174 |
msgid "Print meta description to html head."
|
175 |
msgstr ""
|
176 |
"投稿画面「抜粋」欄に入力されたテキストを meta description タグとして html "
|
177 |
"head 内へ出力します。使用中のテーマやプラグインで meta description タグを出力"
|
178 |
"している場合はチェックを外して下さい。"
|
179 |
|
180 |
+
#: ../packages.php:134
|
181 |
msgid "Main setting page"
|
182 |
msgstr "メイン設定画面"
|
183 |
|
184 |
+
#: ../packages.php:136
|
185 |
msgid "Print og tags to html head."
|
186 |
msgstr "OG タグを html head 内へ出力します。"
|
187 |
|
188 |
+
#: ../packages.php:137
|
189 |
msgid "Print twitter card tags to html head."
|
190 |
msgstr "Twitter カードタグを html head 内へ出力します。"
|
191 |
|
192 |
+
#: ../packages.php:138
|
193 |
msgid "Print social bookmark buttons."
|
194 |
msgstr "ソーシャルブックマークボタンを表示します。"
|
195 |
|
196 |
+
#: ../packages.php:139
|
197 |
msgid "Facebook Page Plugin widget."
|
198 |
msgstr "Facebookページプラグインウィジェット"
|
199 |
|
200 |
+
#: ../packages.php:140
|
201 |
msgid "Print Follow me box to content bottom."
|
202 |
msgstr "Follow me box を記事コンテンツ下のエリアへ表示します。"
|
203 |
|
204 |
+
#: ../packages.php:142
|
205 |
#, php-format
|
206 |
msgid "* You can stop the function separately from the %s."
|
207 |
msgstr "%s から個別に機能を停止する事ができます。"
|
208 |
|
209 |
+
#: ../packages.php:146
|
210 |
msgid "Social media cooperation"
|
211 |
msgstr "ソーシャルメディア連携"
|
212 |
|
213 |
+
#: ../packages.php:164
|
214 |
msgid "Print Google Analytics tracking code."
|
215 |
msgstr ""
|
216 |
"Google アナリティクスのトラッキングコードを出力します。有効化した後「設定」の"
|
218 |
"のテーマやプラグインで Google アナリティクスのトラッキングコードを埋め込む場"
|
219 |
"合はチェックを外して下さい。"
|
220 |
|
221 |
+
#: ../packages.php:179
|
222 |
msgid "You can use various widgets."
|
223 |
msgstr ""
|
224 |
"以下の機能を持ったウィジェットを追加します。各ウィジェットの設定は「外観」→"
|
225 |
"「ウィジェット」の設定画面より行って下さい。"
|
226 |
|
227 |
+
#: ../packages.php:181
|
228 |
msgid ""
|
229 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
230 |
"title."
|
231 |
msgstr "VK_最新記事 - 最新記事タイトルのリンクテキストと日付を表示します。"
|
232 |
|
233 |
+
#: ../packages.php:182
|
234 |
msgid ""
|
235 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
236 |
msgstr ""
|
237 |
"VK_固定ページ本文 - 固定ページのコンテンツ部分をウィジェットに表示します。"
|
238 |
|
239 |
+
#: ../packages.php:183
|
240 |
msgid "VK_Profile - display the profile entered in the widget."
|
241 |
msgstr "VK_プロフィール - ウィジェットに入力されたプロフィールを表示します。"
|
242 |
|
243 |
+
#: ../packages.php:184
|
244 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
245 |
msgstr "VK_FB Page Plugin - Facebook ページプラグインを表示します。"
|
246 |
|
247 |
+
#: ../packages.php:185
|
248 |
msgid "VK_3PR area - display the 3PR area."
|
249 |
msgstr "VK_3PR エリア - 3PR エリアを表示します。"
|
250 |
|
251 |
+
#: ../packages.php:186
|
252 |
msgid "categories/tags list"
|
253 |
msgstr "カテゴリー/タグ リスト"
|
254 |
|
255 |
+
#: ../packages.php:186
|
256 |
msgid "Displays a categories, tags or format list."
|
257 |
msgstr "カテゴリ・タグまたは、フォーマットリストを表示します。"
|
258 |
|
259 |
+
#: ../packages.php:187 ../plugins/other_widget/widget-archives.php:9
|
260 |
msgid "archive list"
|
261 |
msgstr "アーカイブリスト"
|
262 |
|
263 |
+
#: ../packages.php:187 ../plugins/other_widget/widget-archives.php:14
|
264 |
msgid ""
|
265 |
"Displays a list of archives. You can choose the post type and also to "
|
266 |
"display archives by month or by year."
|
268 |
"アーカイブの一覧を表示します。月ごともしくは年ごとでの表示。また、ポストタイ"
|
269 |
"プを選択できます。"
|
270 |
|
271 |
+
#: ../packages.php:192
|
272 |
msgid "Widgets"
|
273 |
msgstr "ウィジェット"
|
274 |
|
275 |
+
#: ../packages.php:209
|
276 |
msgid "CSS customize"
|
277 |
msgstr "CSSカスタマイズ"
|
278 |
|
279 |
+
#: ../packages.php:210
|
280 |
msgid "You can set Customize CSS."
|
281 |
msgstr ""
|
282 |
"テーマデザインをカスタマイズする CSS を管理画面より追加できるようになります。"
|
283 |
"追加する CSS コードは「VK Ex Unit」→「CSS カスタマイズ」の画面にて入力して下"
|
284 |
"さい。"
|
285 |
|
286 |
+
#: ../packages.php:226
|
287 |
msgid "Contact Section"
|
288 |
msgstr "お問い合わせ"
|
289 |
|
290 |
+
#: ../packages.php:227
|
291 |
msgid "Display Contact Section at after content."
|
292 |
msgstr "お問い合わせ情報を本文の下に表示する"
|
293 |
|
294 |
+
#: ../packages.php:244
|
295 |
msgid "Child page index"
|
296 |
msgstr "子ページの一覧表示"
|
297 |
|
298 |
+
#: ../packages.php:245
|
299 |
msgid ""
|
300 |
"At the bottom of the specified page, it will display a list of the child "
|
301 |
"page."
|
303 |
"指定した固定ページの下部へ、その固定ページの下層子ページの「ページタイトル / "
|
304 |
"サムネイル / 抜粋文 / 該当ページへのリンク」をセットで一覧表示します。"
|
305 |
|
306 |
+
#: ../packages.php:254
|
307 |
+
msgid "Page list from ancestor"
|
308 |
+
msgstr "先祖階層からの子ページリスト表示"
|
309 |
+
|
310 |
+
#: ../packages.php:255
|
311 |
+
msgid "Display Page list from ancestor at after content."
|
312 |
+
msgstr ""
|
313 |
+
"現在のページの先祖階層からの子ページリストをページ本文の下に表示します。"
|
314 |
+
|
315 |
+
#: ../packages.php:264
|
316 |
msgid "Display HTML Site Map"
|
317 |
msgstr "HTMLサイトマップの表示"
|
318 |
|
319 |
+
#: ../packages.php:265
|
320 |
msgid "It displays a HTML Site Map to the specified page."
|
321 |
msgstr "指定した固定ページにHTMLサイトマップを表示します。"
|
322 |
|
323 |
+
#: ../packages.php:273 ../plugins/call_to_action/view.adminsetting.php:10
|
324 |
msgid "Display the CTA at the end of the post content."
|
325 |
msgstr "投稿内容の最後にCTAを表示します。"
|
326 |
|
327 |
+
#: ../packages.php:275 ../plugins/call_to_action/view.adminsetting.php:11
|
328 |
msgid ""
|
329 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
330 |
"user behavior."
|
332 |
"CTAは「Call To Action」の略で、ユーザーにとってもらいたい行動へ誘導するための"
|
333 |
"情報を表示します。"
|
334 |
|
335 |
+
#: ../packages.php:277 ../plugins/call_to_action/view.adminsetting.php:12
|
336 |
msgid ""
|
337 |
"As an example, text message and a link button for induction to the free "
|
338 |
"sample download page."
|
340 |
"例えば、無料サンプルのダウンロードページへの誘導のためのテキストやリンクボタ"
|
341 |
"ンなどです。"
|
342 |
|
343 |
+
#: ../packages.php:281 ../plugins/call_to_action/view.adminsetting.php:6
|
344 |
msgid "Call To Action"
|
345 |
msgstr "Call To Action"
|
346 |
|
347 |
+
#: ../packages.php:290
|
348 |
msgid "Contents setting"
|
349 |
msgstr "CTA表示内容設定"
|
350 |
|
351 |
+
#: ../packages.php:303 ../plugins/insert_ads.php:37
|
352 |
+
#: ../plugins/insert_ads.php:119
|
353 |
msgid "Insert ads"
|
354 |
msgstr "広告の挿入"
|
355 |
|
356 |
+
#: ../packages.php:304
|
357 |
msgid "Insert ads to content."
|
358 |
msgstr "記事に広告を挿入します"
|
359 |
|
360 |
+
#: ../packages.php:319 ../plugins/related_posts/related_posts.php:53
|
361 |
msgid "Related posts"
|
362 |
msgstr "関連記事を表示"
|
363 |
|
364 |
+
#: ../packages.php:320
|
365 |
msgid "Print Related posts lists to post content bottom."
|
366 |
msgstr "関連記事を記事コンテンツ下のエリアへ表示します。"
|
367 |
|
368 |
+
#: ../packages.php:329 ../vkExUnit_admin.php:30
|
369 |
msgid "Automatic Eye Catch insert"
|
370 |
msgstr "アイキャッチ画像自動挿入"
|
371 |
|
372 |
+
#: ../packages.php:330
|
373 |
msgid "Display Eye Catch image at before content."
|
374 |
msgstr ""
|
375 |
"アイキャッチ画像を本文の最初に表示します。各記事毎に非表示にする事も出来ま"
|
418 |
msgid "Read more"
|
419 |
msgstr "詳しくはこちら"
|
420 |
|
421 |
+
#: ../plugins/child_page_index.php:82
|
422 |
msgid "Display a child page index"
|
423 |
msgstr "子ページ一覧の表示"
|
424 |
|
503 |
msgid "Display Contact Section"
|
504 |
msgstr "お問い合わせ情報の表示"
|
505 |
|
506 |
+
#: ../plugins/contact_section.php:224 ../plugins/contact_section.php:251
|
507 |
msgid "Edit contact information"
|
508 |
msgstr "Contact情報を編集"
|
509 |
|
510 |
+
#: ../plugins/contact_section.php:270
|
511 |
msgid "Contact Button"
|
512 |
msgstr "お問い合わせボタン"
|
513 |
|
514 |
+
#: ../plugins/contact_section.php:276 ../plugins/contact_section.php:298
|
515 |
#, php-format
|
516 |
msgid ""
|
517 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
552 |
msgid "Please upload your \".ico\" file"
|
553 |
msgstr "作成したicoファイルをアップロードしてください"
|
554 |
|
555 |
+
#: ../plugins/insert_ads.php:122
|
556 |
msgid "Insert ads to post."
|
557 |
msgstr "投稿に広告を挿入"
|
558 |
|
559 |
+
#: ../plugins/insert_ads.php:124
|
560 |
msgid "Insert ads to more tag and after content."
|
561 |
msgstr "moreタグの直後と、記事の最後に広告を挿入できます。"
|
562 |
|
563 |
+
#: ../plugins/insert_ads.php:124
|
564 |
msgid "If you want to separate ads area, you fill two fields."
|
565 |
msgstr "2つのフィールドに分けて挿入すると、横並び(col-md-6)に表示されます。"
|
566 |
|
567 |
+
#: ../plugins/insert_ads.php:126
|
568 |
msgid "insert the ad [ more tag ]"
|
569 |
msgstr "広告を挿入 [ moreタグ ]"
|
570 |
|
571 |
+
#: ../plugins/insert_ads.php:134
|
572 |
msgid "insert the ad [ after content ]"
|
573 |
msgstr "広告を挿入 [ 記事の最後 ]"
|
574 |
|
675 |
msgid "Setting of insert items"
|
676 |
msgstr "挿入アイテムの設定"
|
677 |
|
678 |
+
#: ../plugins/pageList_ancestor.php:64
|
679 |
+
msgid "Display a page list from ancestor"
|
680 |
+
msgstr "現在のページの先祖階層からの子ページリストを表示"
|
681 |
+
|
682 |
#: ../plugins/call_to_action/class.call_to_action.php:48
|
683 |
#: ../plugins/call_to_action/view.actionbox.php:39
|
684 |
msgid "Edit CTA"
|
707 |
msgstr "共通設定を使用"
|
708 |
|
709 |
#: ../plugins/call_to_action/class.call_to_action.php:90
|
710 |
+
#: ../plugins/call_to_action/class.call_to_action.php:400
|
711 |
msgid "Disable display"
|
712 |
msgstr "表示しない"
|
713 |
|
882 |
#: ../plugins/other_widget/widget-new-posts.php:149
|
883 |
#: ../plugins/other_widget/widget-pr-blocks.php:74
|
884 |
#: ../plugins/other_widget/widget-profile.php:40
|
885 |
+
#: ../plugins/sns/function_fbPagePlugin.php:79
|
886 |
msgid "Title:"
|
887 |
msgstr "タイトル"
|
888 |
|
978 |
#: ../plugins/other_widget/widget-child-page-list.php:15
|
979 |
#: ../plugins/other_widget/widget-child-page-list.php:50
|
980 |
msgid "Display the child pages list from ancestor page."
|
981 |
+
msgstr "表示しているページの先祖階層からの子ページリストを表示します。"
|
982 |
|
983 |
#: ../plugins/other_widget/widget-new-posts.php:11
|
984 |
#: ../plugins/other_widget/widget-new-posts.php:29
|
1254 |
msgid "Displays a Facebook Page Plugin"
|
1255 |
msgstr "Facebook ページプラグインを表示します。"
|
1256 |
|
1257 |
+
#: ../plugins/sns/function_fbPagePlugin.php:89
|
1258 |
msgid "Height"
|
1259 |
msgstr "高さ"
|
1260 |
|
1261 |
+
#: ../plugins/sns/function_fbPagePlugin.php:94
|
1262 |
msgid "Show Friend's Faces"
|
1263 |
msgstr "アイコンを表示する"
|
1264 |
|
1265 |
+
#: ../plugins/sns/function_fbPagePlugin.php:99
|
1266 |
msgid "Hide Cover Photo"
|
1267 |
msgstr "カバー画像を表示しない"
|
1268 |
|
1269 |
+
#: ../plugins/sns/function_fbPagePlugin.php:104
|
1270 |
msgid "Show Page Posts"
|
1271 |
msgstr "タイムラインを表示"
|
1272 |
|
languages/vkexunit.mo
CHANGED
Binary file
|
languages/vkexunit.pot
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
-
"POT-Creation-Date: 2015-09-
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
msgid "Main setting"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: admin_wrapper.php:
|
22 |
msgid "Activated Packages is noting. please activate some package."
|
23 |
msgstr ""
|
24 |
|
@@ -104,226 +104,234 @@ msgstr ""
|
|
104 |
msgid "Archives"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: packages.php:
|
108 |
msgid "Print Bootstrap css and js"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: packages.php:
|
112 |
msgid ""
|
113 |
"If your using theme has already including Bootstrap, you deactivate this "
|
114 |
"item."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: packages.php:
|
118 |
msgid "Print link fontawesome"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: packages.php:
|
122 |
msgid "Print fontawesome link tag to html head."
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: packages.php:
|
126 |
msgid "Favicon setting"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: packages.php:
|
130 |
msgid "About favicon."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: packages.php:
|
134 |
msgid "Rewrite the title tag"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: packages.php:
|
138 |
msgid "Print is rewritten by its own rules to html head."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: packages.php:
|
142 |
msgid "Print meta Keyword"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: packages.php:
|
146 |
msgid "Print meta Keyword to html head."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: packages.php:
|
150 |
-
#: packages.php:
|
151 |
msgid "Setting"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: packages.php:
|
155 |
msgid "Print meta description"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: packages.php:
|
159 |
msgid "Print meta description to html head."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: packages.php:
|
163 |
msgid "Main setting page"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: packages.php:
|
167 |
msgid "Print og tags to html head."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: packages.php:
|
171 |
msgid "Print twitter card tags to html head."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: packages.php:
|
175 |
msgid "Print social bookmark buttons."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: packages.php:
|
179 |
msgid "Facebook Page Plugin widget."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: packages.php:
|
183 |
msgid "Print Follow me box to content bottom."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: packages.php:
|
187 |
#, php-format
|
188 |
msgid "* You can stop the function separately from the %s."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: packages.php:
|
192 |
msgid "Social media cooperation"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: packages.php:
|
196 |
msgid "Print Google Analytics tracking code."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: packages.php:
|
200 |
msgid "You can use various widgets."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: packages.php:
|
204 |
msgid ""
|
205 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
206 |
"title."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: packages.php:
|
210 |
msgid ""
|
211 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: packages.php:
|
215 |
msgid "VK_Profile - display the profile entered in the widget."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: packages.php:
|
219 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: packages.php:
|
223 |
msgid "VK_3PR area - display the 3PR area."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: packages.php:
|
227 |
msgid "categories/tags list"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: packages.php:
|
231 |
msgid "Displays a categories, tags or format list."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: packages.php:
|
235 |
msgid "archive list"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: packages.php:
|
239 |
msgid ""
|
240 |
"Displays a list of archives. You can choose the post type and also to "
|
241 |
"display archives by month or by year."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: packages.php:
|
245 |
msgid "Widgets"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: packages.php:
|
249 |
msgid "CSS customize"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: packages.php:
|
253 |
msgid "You can set Customize CSS."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: packages.php:
|
257 |
msgid "Contact Section"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: packages.php:
|
261 |
msgid "Display Contact Section at after content."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: packages.php:
|
265 |
msgid "Child page index"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: packages.php:
|
269 |
msgid ""
|
270 |
"At the bottom of the specified page, it will display a list of the child "
|
271 |
"page."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: packages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "Display HTML Site Map"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: packages.php:
|
279 |
msgid "It displays a HTML Site Map to the specified page."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: packages.php:
|
283 |
msgid "Display the CTA at the end of the post content."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: packages.php:
|
287 |
msgid ""
|
288 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
289 |
"user behavior."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: packages.php:
|
293 |
msgid ""
|
294 |
"As an example, text message and a link button for induction to the free "
|
295 |
"sample download page."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: packages.php:
|
299 |
msgid "Call To Action"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: packages.php:
|
303 |
msgid "Contents setting"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: packages.php:
|
307 |
msgid "Insert ads"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: packages.php:
|
311 |
msgid "Insert ads to content."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: packages.php:
|
315 |
msgid "Related posts"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: packages.php:
|
319 |
msgid "Print Related posts lists to post content bottom."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: packages.php:
|
323 |
msgid "Automatic Eye Catch insert"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: packages.php:
|
327 |
msgid "Display Eye Catch image at before content."
|
328 |
msgstr ""
|
329 |
|
@@ -370,7 +378,7 @@ msgstr ""
|
|
370 |
msgid "Read more"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: plugins/child_page_index.php:
|
374 |
msgid "Display a child page index"
|
375 |
msgstr ""
|
376 |
|
@@ -453,15 +461,15 @@ msgstr ""
|
|
453 |
msgid "Display Contact Section"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: plugins/contact_section.php:
|
457 |
msgid "Edit contact information"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: plugins/contact_section.php:
|
461 |
msgid "Contact Button"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: plugins/contact_section.php:
|
465 |
#, php-format
|
466 |
msgid ""
|
467 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
@@ -494,23 +502,23 @@ msgstr ""
|
|
494 |
msgid "Please upload your \".ico\" file"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: plugins/insert_ads.php:
|
498 |
msgid "Insert ads to post."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: plugins/insert_ads.php:
|
502 |
msgid "Insert ads to more tag and after content."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: plugins/insert_ads.php:
|
506 |
msgid "If you want to separate ads area, you fill two fields."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: plugins/insert_ads.php:
|
510 |
msgid "insert the ad [ more tag ]"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: plugins/insert_ads.php:
|
514 |
msgid "insert the ad [ after content ]"
|
515 |
msgstr ""
|
516 |
|
@@ -600,6 +608,10 @@ msgstr ""
|
|
600 |
msgid "Setting of insert items"
|
601 |
msgstr ""
|
602 |
|
|
|
|
|
|
|
|
|
603 |
#: plugins/call_to_action/class.call_to_action.php:48
|
604 |
#: plugins/call_to_action/view.actionbox.php:39
|
605 |
msgid "Edit CTA"
|
@@ -628,7 +640,7 @@ msgid "Follow common setting"
|
|
628 |
msgstr ""
|
629 |
|
630 |
#: plugins/call_to_action/class.call_to_action.php:90
|
631 |
-
#: plugins/call_to_action/class.call_to_action.php:
|
632 |
msgid "Disable display"
|
633 |
msgstr ""
|
634 |
|
@@ -799,7 +811,7 @@ msgstr ""
|
|
799 |
#: plugins/other_widget/widget-new-posts.php:149
|
800 |
#: plugins/other_widget/widget-pr-blocks.php:74
|
801 |
#: plugins/other_widget/widget-profile.php:40
|
802 |
-
#: plugins/sns/function_fbPagePlugin.php:
|
803 |
msgid "Title:"
|
804 |
msgstr ""
|
805 |
|
@@ -1164,19 +1176,19 @@ msgstr ""
|
|
1164 |
msgid "Displays a Facebook Page Plugin"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: plugins/sns/function_fbPagePlugin.php:
|
1168 |
msgid "Height"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: plugins/sns/function_fbPagePlugin.php:
|
1172 |
msgid "Show Friend's Faces"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: plugins/sns/function_fbPagePlugin.php:
|
1176 |
msgid "Hide Cover Photo"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: plugins/sns/function_fbPagePlugin.php:
|
1180 |
msgid "Show Page Posts"
|
1181 |
msgstr ""
|
1182 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
+
"POT-Creation-Date: 2015-09-19 11:37+0900\n"
|
5 |
"PO-Revision-Date: \n"
|
6 |
"Last-Translator: Kurudrive <kurudrive@gmail.com>\n"
|
7 |
"Language-Team: Vektor,Inc. <info@vektor-inc.co.jp>\n"
|
18 |
msgid "Main setting"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: admin_wrapper.php:76
|
22 |
msgid "Activated Packages is noting. please activate some package."
|
23 |
msgstr ""
|
24 |
|
104 |
msgid "Archives"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: packages.php:69
|
108 |
msgid "Print Bootstrap css and js"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: packages.php:70
|
112 |
msgid ""
|
113 |
"If your using theme has already including Bootstrap, you deactivate this "
|
114 |
"item."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: packages.php:79
|
118 |
msgid "Print link fontawesome"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: packages.php:80
|
122 |
msgid "Print fontawesome link tag to html head."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: packages.php:89
|
126 |
msgid "Favicon setting"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: packages.php:90
|
130 |
msgid "About favicon."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: packages.php:99
|
134 |
msgid "Rewrite the title tag"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: packages.php:100
|
138 |
msgid "Print is rewritten by its own rules to html head."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: packages.php:109
|
142 |
msgid "Print meta Keyword"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: packages.php:110
|
146 |
msgid "Print meta Keyword to html head."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: packages.php:113 packages.php:150 packages.php:167 packages.php:196
|
150 |
+
#: packages.php:213 packages.php:230 packages.php:285 packages.php:307
|
151 |
msgid "Setting"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: packages.php:125
|
155 |
msgid "Print meta description"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: packages.php:126
|
159 |
msgid "Print meta description to html head."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: packages.php:134
|
163 |
msgid "Main setting page"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: packages.php:136
|
167 |
msgid "Print og tags to html head."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: packages.php:137
|
171 |
msgid "Print twitter card tags to html head."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: packages.php:138
|
175 |
msgid "Print social bookmark buttons."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: packages.php:139
|
179 |
msgid "Facebook Page Plugin widget."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: packages.php:140
|
183 |
msgid "Print Follow me box to content bottom."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: packages.php:142
|
187 |
#, php-format
|
188 |
msgid "* You can stop the function separately from the %s."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: packages.php:146
|
192 |
msgid "Social media cooperation"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: packages.php:164
|
196 |
msgid "Print Google Analytics tracking code."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: packages.php:179
|
200 |
msgid "You can use various widgets."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: packages.php:181
|
204 |
msgid ""
|
205 |
"VK_Recent Posts - display the link text and the date of the latest article "
|
206 |
"title."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: packages.php:182
|
210 |
msgid ""
|
211 |
"VK_Page content to widget - display the contents of the page to the widgets."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: packages.php:183
|
215 |
msgid "VK_Profile - display the profile entered in the widget."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: packages.php:184
|
219 |
msgid "VK_FB Page Plugin - display the Facebook Page Plugin."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: packages.php:185
|
223 |
msgid "VK_3PR area - display the 3PR area."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: packages.php:186
|
227 |
msgid "categories/tags list"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: packages.php:186
|
231 |
msgid "Displays a categories, tags or format list."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: packages.php:187 plugins/other_widget/widget-archives.php:9
|
235 |
msgid "archive list"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: packages.php:187 plugins/other_widget/widget-archives.php:14
|
239 |
msgid ""
|
240 |
"Displays a list of archives. You can choose the post type and also to "
|
241 |
"display archives by month or by year."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: packages.php:192
|
245 |
msgid "Widgets"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: packages.php:209
|
249 |
msgid "CSS customize"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: packages.php:210
|
253 |
msgid "You can set Customize CSS."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: packages.php:226
|
257 |
msgid "Contact Section"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: packages.php:227
|
261 |
msgid "Display Contact Section at after content."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: packages.php:244
|
265 |
msgid "Child page index"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: packages.php:245
|
269 |
msgid ""
|
270 |
"At the bottom of the specified page, it will display a list of the child "
|
271 |
"page."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: packages.php:254
|
275 |
+
msgid "Page list from ancestor"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: packages.php:255
|
279 |
+
msgid "Display Page list from ancestor at after content."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: packages.php:264
|
283 |
msgid "Display HTML Site Map"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: packages.php:265
|
287 |
msgid "It displays a HTML Site Map to the specified page."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: packages.php:273 plugins/call_to_action/view.adminsetting.php:10
|
291 |
msgid "Display the CTA at the end of the post content."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: packages.php:275 plugins/call_to_action/view.adminsetting.php:11
|
295 |
msgid ""
|
296 |
"The CTA stands for \"Call to action\" and this is the area that prompts the "
|
297 |
"user behavior."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: packages.php:277 plugins/call_to_action/view.adminsetting.php:12
|
301 |
msgid ""
|
302 |
"As an example, text message and a link button for induction to the free "
|
303 |
"sample download page."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: packages.php:281 plugins/call_to_action/view.adminsetting.php:6
|
307 |
msgid "Call To Action"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: packages.php:290
|
311 |
msgid "Contents setting"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: packages.php:303 plugins/insert_ads.php:37 plugins/insert_ads.php:119
|
315 |
msgid "Insert ads"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: packages.php:304
|
319 |
msgid "Insert ads to content."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: packages.php:319 plugins/related_posts/related_posts.php:53
|
323 |
msgid "Related posts"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: packages.php:320
|
327 |
msgid "Print Related posts lists to post content bottom."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: packages.php:329 vkExUnit_admin.php:30
|
331 |
msgid "Automatic Eye Catch insert"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: packages.php:330
|
335 |
msgid "Display Eye Catch image at before content."
|
336 |
msgstr ""
|
337 |
|
378 |
msgid "Read more"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: plugins/child_page_index.php:82
|
382 |
msgid "Display a child page index"
|
383 |
msgstr ""
|
384 |
|
461 |
msgid "Display Contact Section"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: plugins/contact_section.php:224 plugins/contact_section.php:251
|
465 |
msgid "Edit contact information"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: plugins/contact_section.php:270
|
469 |
msgid "Contact Button"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: plugins/contact_section.php:276 plugins/contact_section.php:298
|
473 |
#, php-format
|
474 |
msgid ""
|
475 |
"*It is necessary to set the \"%s\" -> \"Contact Information\" section in "
|
502 |
msgid "Please upload your \".ico\" file"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: plugins/insert_ads.php:122
|
506 |
msgid "Insert ads to post."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: plugins/insert_ads.php:124
|
510 |
msgid "Insert ads to more tag and after content."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: plugins/insert_ads.php:124
|
514 |
msgid "If you want to separate ads area, you fill two fields."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: plugins/insert_ads.php:126
|
518 |
msgid "insert the ad [ more tag ]"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: plugins/insert_ads.php:134
|
522 |
msgid "insert the ad [ after content ]"
|
523 |
msgstr ""
|
524 |
|
608 |
msgid "Setting of insert items"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: plugins/pageList_ancestor.php:64
|
612 |
+
msgid "Display a page list from ancestor"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
#: plugins/call_to_action/class.call_to_action.php:48
|
616 |
#: plugins/call_to_action/view.actionbox.php:39
|
617 |
msgid "Edit CTA"
|
640 |
msgstr ""
|
641 |
|
642 |
#: plugins/call_to_action/class.call_to_action.php:90
|
643 |
+
#: plugins/call_to_action/class.call_to_action.php:400
|
644 |
msgid "Disable display"
|
645 |
msgstr ""
|
646 |
|
811 |
#: plugins/other_widget/widget-new-posts.php:149
|
812 |
#: plugins/other_widget/widget-pr-blocks.php:74
|
813 |
#: plugins/other_widget/widget-profile.php:40
|
814 |
+
#: plugins/sns/function_fbPagePlugin.php:79
|
815 |
msgid "Title:"
|
816 |
msgstr ""
|
817 |
|
1176 |
msgid "Displays a Facebook Page Plugin"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: plugins/sns/function_fbPagePlugin.php:89
|
1180 |
msgid "Height"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: plugins/sns/function_fbPagePlugin.php:94
|
1184 |
msgid "Show Friend's Faces"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: plugins/sns/function_fbPagePlugin.php:99
|
1188 |
msgid "Hide Cover Photo"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: plugins/sns/function_fbPagePlugin.php:104
|
1192 |
msgid "Show Page Posts"
|
1193 |
msgstr ""
|
1194 |
|
packages.php
CHANGED
@@ -44,6 +44,8 @@ $required_packages[] = array(
|
|
44 |
/*-------------------------------------------*/
|
45 |
/* ChildPageIndex
|
46 |
/*-------------------------------------------*/
|
|
|
|
|
47 |
/* Sitemap_page
|
48 |
/*-------------------------------------------*/
|
49 |
/* Call To Action
|
@@ -242,6 +244,15 @@ $required_packages[] = array(
|
|
242 |
'default' => true,
|
243 |
);
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
|
246 |
/*-------------------------------------------*/
|
247 |
/* Sitemap_page
|
@@ -328,8 +339,6 @@ $required_packages[] = array(
|
|
328 |
// 'default' => false,
|
329 |
// );
|
330 |
|
331 |
-
|
332 |
-
|
333 |
foreach( $required_packages as $package ){
|
334 |
vkExUnit_package_register( $package );
|
335 |
}
|
44 |
/*-------------------------------------------*/
|
45 |
/* ChildPageIndex
|
46 |
/*-------------------------------------------*/
|
47 |
+
/* pageList_ancestor
|
48 |
+
/*-------------------------------------------*/
|
49 |
/* Sitemap_page
|
50 |
/*-------------------------------------------*/
|
51 |
/* Call To Action
|
244 |
'default' => true,
|
245 |
);
|
246 |
|
247 |
+
/*-------------------------------------------*/
|
248 |
+
/* pageList_ancestor
|
249 |
+
/*-------------------------------------------*/
|
250 |
+
// $required_packages[] = array(
|
251 |
+
// 'name' => 'pageList_ancestor',
|
252 |
+
// 'title' => __('Page list from ancestor', 'vkExUnit'),
|
253 |
+
// 'description' => __('Display Page list from ancestor at after content.', 'vkExUnit'),
|
254 |
+
// 'default' => true
|
255 |
+
// );
|
256 |
|
257 |
/*-------------------------------------------*/
|
258 |
/* Sitemap_page
|
339 |
// 'default' => false,
|
340 |
// );
|
341 |
|
|
|
|
|
342 |
foreach( $required_packages as $package ){
|
343 |
vkExUnit_package_register( $package );
|
344 |
}
|
plugins/pageList_ancestor.php
ADDED
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*-------------------------------------------*/
|
3 |
+
/* pageList_ancestor
|
4 |
+
/*-------------------------------------------*/
|
5 |
+
|
6 |
+
add_shortcode('pageList_ancestor', 'vkExUnit_pageList_ancestor_shortcode');
|
7 |
+
function vkExUnit_pageList_ancestor_shortcode(){
|
8 |
+
global $post;
|
9 |
+
if( !is_page() || !get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true ) ) return;
|
10 |
+
|
11 |
+
$pageList_ancestor_html = PHP_EOL.'<section class="veu_pageList_ancestor">'.PHP_EOL;
|
12 |
+
|
13 |
+
if( $post->ancestors ){
|
14 |
+
foreach( $post->ancestors as $post_anc_id ){
|
15 |
+
$post_id = $post_anc_id;
|
16 |
+
}
|
17 |
+
} else {
|
18 |
+
$post_id = $post->ID;
|
19 |
+
}
|
20 |
+
|
21 |
+
if ( $post_id ) {
|
22 |
+
$children = wp_list_pages( 'title_li=&child_of='.$post_id.'&echo=0' );
|
23 |
+
if ( $children ) {
|
24 |
+
$pageList_ancestor_html .= '<h1 class="section_title subSection-title"><a href="'.get_permalink( $post_id ).'">'.get_the_title( $post_id ).'</a></h1>';
|
25 |
+
$pageList_ancestor_html .= '<ul class="pageList">';
|
26 |
+
$pageList_ancestor_html .= $children;
|
27 |
+
$pageList_ancestor_html .= '</ul>';
|
28 |
+
$pageList_ancestor_html .= '</section>';
|
29 |
+
}
|
30 |
+
}
|
31 |
+
return $pageList_ancestor_html;
|
32 |
+
}
|
33 |
+
|
34 |
+
add_filter('the_content', 'vkExUnit_pageList_ancestor_contentHook');
|
35 |
+
function vkExUnit_pageList_ancestor_contentHook( $content ){
|
36 |
+
|
37 |
+
global $post;
|
38 |
+
|
39 |
+
if( !is_page() || !get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor',true ) ) return $content;
|
40 |
+
|
41 |
+
if( get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor',true ) ){
|
42 |
+
$content .= "\n[pageList_ancestor]";
|
43 |
+
}
|
44 |
+
return $content;
|
45 |
+
}
|
46 |
+
add_filter('vkExUnit_customField_Page_activation', 'vkExUnit_pageList_ancestor_activate_meta_box', 10, 1);
|
47 |
+
function vkExUnit_pageList_ancestor_activate_meta_box( $flag ){
|
48 |
+
return true;
|
49 |
+
}
|
50 |
+
|
51 |
+
// admin screen -------------------------------
|
52 |
+
|
53 |
+
add_action('vkExUnit_customField_Page_box', 'vkExUnit_pageList_ancestor_meta_box' );
|
54 |
+
add_action('save_post', 'vkExUnit_pageList_ancestor');
|
55 |
+
|
56 |
+
function vkExUnit_pageList_ancestor_meta_box() {
|
57 |
+
global $post;
|
58 |
+
$enable = get_post_meta( $post->ID, 'vkExUnit_pageList_ancestor', true); ?>
|
59 |
+
|
60 |
+
<div>
|
61 |
+
<input type="hidden" name="_nonce_vkExUnit__custom_field_pageList_ancestor" id="_nonce_vkExUnit__custom_field_pageList_ancestor" value="<?php echo wp_create_nonce(plugin_basename(__FILE__));?>" />
|
62 |
+
<label for="vkExUnit_pageList_ancestor">
|
63 |
+
<input type="checkbox" id="vkExUnit_pageList_ancestor" name="vkExUnit_pageList_ancestor"<?php echo ($enable)? ' checked' : ''; ?> />
|
64 |
+
<?php _e('Display a page list from ancestor', 'vkExUnit');?>
|
65 |
+
</label>
|
66 |
+
</div>
|
67 |
+
<?php
|
68 |
+
}
|
69 |
+
|
70 |
+
// seve function -------------------------------
|
71 |
+
|
72 |
+
function vkExUnit_pageList_ancestor( $post_id ) {
|
73 |
+
|
74 |
+
$pageList_ancestor = isset($_POST['_nonce_vkExUnit__custom_field_pageList_ancestor']) ? htmlspecialchars($_POST['_nonce_vkExUnit__custom_field_pageList_ancestor']) : null;
|
75 |
+
|
76 |
+
if( !wp_verify_nonce( $pageList_ancestor, plugin_basename(__FILE__) )){
|
77 |
+
return $post_id;
|
78 |
+
}
|
79 |
+
|
80 |
+
if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
|
81 |
+
return $post_id;
|
82 |
+
|
83 |
+
$mydata = isset($_POST['vkExUnit_pageList_ancestor']) ? htmlspecialchars($_POST['vkExUnit_pageList_ancestor']) : null;
|
84 |
+
|
85 |
+
if('page' == $mydata){
|
86 |
+
if(!current_user_can('edit_page', $post_id)) return $post_id;
|
87 |
+
}
|
88 |
+
|
89 |
+
if ( "" == get_post_meta( $post_id, 'vkExUnit_pageList_ancestor' )) {
|
90 |
+
add_post_meta( $post_id, 'vkExUnit_pageList_ancestor', $mydata, true ) ;
|
91 |
+
} else if ( $mydata != get_post_meta( $post_id, 'vkExUnit_pageList_ancestor' )) {
|
92 |
+
update_post_meta( $post_id, 'vkExUnit_pageList_ancestor', $mydata ) ;
|
93 |
+
} else if ( "" == $mydata ) {
|
94 |
+
delete_post_meta( $post_id, 'vkExUnit_pageList_ancestor' ) ;
|
95 |
+
}
|
96 |
+
|
97 |
+
do_action('vkExUnit_customField_Page_save_customField');
|
98 |
+
}
|
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: 4.2
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -70,6 +70,9 @@ e.g.
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 3.5.3 =
|
74 |
* [ bug fix ] front page OGP
|
75 |
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 3.6.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 3.6.0 =
|
74 |
+
* [ Specification change ] Change home page title "site name → site name | side description"
|
75 |
+
|
76 |
= 3.5.3 =
|
77 |
* [ bug fix ] front page OGP
|
78 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 3.
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
@@ -102,7 +102,7 @@ require vkExUnit_get_directory() . '/plugins/page_custom_field.php';
|
|
102 |
|
103 |
|
104 |
if ( vkExUnit_package_is_enable( 'wpTitle' ) )
|
105 |
-
add_filter('wp_title','vkExUnit_get_wp_head_title');
|
106 |
|
107 |
if ( vkExUnit_package_is_enable( 'sns' ) )
|
108 |
require vkExUnit_get_directory() . '/plugins/sns/sns.php';
|
@@ -134,6 +134,9 @@ if ( vkExUnit_package_is_enable( 'auto_eyecatch' ) )
|
|
134 |
if ( vkExUnit_package_is_enable( 'childPageIndex' ) )
|
135 |
require vkExUnit_get_directory() . '/plugins/child_page_index.php';
|
136 |
|
|
|
|
|
|
|
137 |
if ( vkExUnit_package_is_enable( 'sitemap_page' ) )
|
138 |
require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
|
139 |
|
@@ -149,8 +152,6 @@ if ( vkExUnit_package_is_enable( 'insert_ads' ) )
|
|
149 |
// if ( isset($options['active_disable_ping-back']) && $options['active_disable_ping-back'] )
|
150 |
// require vkExUnit_get_directory() . '/plugins/disable_ping-back.php';
|
151 |
|
152 |
-
|
153 |
-
|
154 |
/*-------------------------------------------*/
|
155 |
/* Add vkExUnit css
|
156 |
/*-------------------------------------------*/
|
3 |
Plugin Name: VK All in One Expansion Unit
|
4 |
Plugin URI: http://ex-unit.vektor-inc.co.jp
|
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: 3.6.0
|
7 |
Author: Vektor,Inc.
|
8 |
Author URI: http://vektor-inc.co.jp
|
9 |
License: GPL2
|
102 |
|
103 |
|
104 |
if ( vkExUnit_package_is_enable( 'wpTitle' ) )
|
105 |
+
add_filter('wp_title','vkExUnit_get_wp_head_title',11);
|
106 |
|
107 |
if ( vkExUnit_package_is_enable( 'sns' ) )
|
108 |
require vkExUnit_get_directory() . '/plugins/sns/sns.php';
|
134 |
if ( vkExUnit_package_is_enable( 'childPageIndex' ) )
|
135 |
require vkExUnit_get_directory() . '/plugins/child_page_index.php';
|
136 |
|
137 |
+
// if ( vkExUnit_package_is_enable('pageList_ancestor' ) )
|
138 |
+
// require vkExUnit_get_directory() . '/plugins/pageList_ancestor.php';
|
139 |
+
|
140 |
if ( vkExUnit_package_is_enable( 'sitemap_page' ) )
|
141 |
require vkExUnit_get_directory() . '/plugins/sitemap_page/sitemap_page.php';
|
142 |
|
152 |
// if ( isset($options['active_disable_ping-back']) && $options['active_disable_ping-back'] )
|
153 |
// require vkExUnit_get_directory() . '/plugins/disable_ping-back.php';
|
154 |
|
|
|
|
|
155 |
/*-------------------------------------------*/
|
156 |
/* Add vkExUnit css
|
157 |
/*-------------------------------------------*/
|