/* Widget Name: Button Description: Create a custom button with flexible styling, icon support, and click tracking functionality. Author: SiteOrigin Author URI: https://siteorigin.com Documentation: https://siteorigin.com/widgets-bundle/button-widget-documentation/ Keywords: event, icon, link */ class SiteOrigin_Widget_Button_Widget extends SiteOrigin_Widget { public function __construct() { parent::__construct( 'sow-button', __( 'SiteOrigin Button', 'so-widgets-bundle' ), array( 'description' => __( 'Create a custom button with flexible styling, icon support, and click tracking functionality.', 'so-widgets-bundle' ), 'help' => 'https://siteorigin.com/widgets-bundle/button-widget-documentation/', ), array( ), false, plugin_dir_path( __FILE__ ) ); } public function get_settings_form() { return array( 'responsive_breakpoint' => array( 'type' => 'measurement', 'label' => __( 'Responsive Breakpoint', 'so-widgets-bundle' ), 'default' => '780px', 'description' => __( 'This setting controls when the Mobile Align setting will be used. The default value is 780px.', 'so-widgets-bundle' ), ), ); } public function initialize() { $this->register_frontend_styles( array( array( 'sow-button-base', plugin_dir_url( __FILE__ ) . 'css/style.css', array(), SOW_BUNDLE_VERSION, ), ) ); } public function get_widget_form() { return array( 'text' => array( 'type' => 'text', 'label' => __( 'Button Text', 'so-widgets-bundle' ), ), 'url' => array( 'type' => 'link', 'label' => __( 'Destination URL', 'so-widgets-bundle' ), 'allow_shortcode' => true, ), 'new_window' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Open in a new window', 'so-widgets-bundle' ), ), 'download' => array( 'type' => 'checkbox', 'default' => false, 'label' => __( 'Download', 'so-widgets-bundle' ), 'description' => __( 'The Destination URL will be downloaded when a user clicks on the button.', 'so-widgets-bundle' ), ), 'button_icon' => array( 'type' => 'section', 'label' => __( 'Icon', 'so-widgets-bundle' ), 'fields' => array( 'icon_selected' => array( 'type' => 'icon', 'label' => __( 'Icon', 'so-widgets-bundle' ), ), 'icon_color' => array( 'type' => 'color', 'label' => __( 'Icon Color', 'so-widgets-bundle' ), ), 'icon' => array( 'type' => 'media', 'label' => __( 'Image Icon', 'so-widgets-bundle' ), 'description' => __( 'Replaces the icon with your own image icon.', 'so-widgets-bundle' ), ), 'icon_placement' => array( 'type' => 'select', 'label' => __( 'Icon Placement', 'so-widgets-bundle' ), 'default' => 'left', 'options' => array( 'top' => __( 'Top', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'bottom' => __( 'Bottom', 'so-widgets-bundle' ), 'left' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), 'design' => array( 'type' => 'section', 'label' => __( 'Design and Layout', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'width' => array( 'type' => 'measurement', 'label' => __( 'Width', 'so-widgets-bundle' ), 'description' => __( 'Leave blank to let the button resize according to content.', 'so-widgets-bundle' ), ), 'align' => array( 'type' => 'select', 'label' => __( 'Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'mobile_align' => array( 'type' => 'select', 'label' => __( 'Mobile Align', 'so-widgets-bundle' ), 'default' => 'center', 'options' => array( 'left' => __( 'Left', 'so-widgets-bundle' ), 'right' => __( 'Right', 'so-widgets-bundle' ), 'center' => __( 'Center', 'so-widgets-bundle' ), 'justify' => __( 'Full Width', 'so-widgets-bundle' ), ), ), 'theme' => array( 'type' => 'select', 'label' => __( 'Button Theme', 'so-widgets-bundle' ), 'default' => 'flat', 'options' => array( 'atom' => __( 'Atom', 'so-widgets-bundle' ), 'flat' => __( 'Flat', 'so-widgets-bundle' ), 'wire' => __( 'Wire', 'so-widgets-bundle' ), ), ), 'button_color' => array( 'type' => 'color', 'label' => __( 'Button Color', 'so-widgets-bundle' ), ), 'text_color' => array( 'type' => 'color', 'label' => __( 'Text Color', 'so-widgets-bundle' ), ), 'hover' => array( 'type' => 'checkbox', 'default' => true, 'label' => __( 'Use hover effects', 'so-widgets-bundle' ), 'state_emitter' => array( 'callback' => 'conditional', 'args' => array( 'hover[show]: val', 'hover[hide]: ! val', ), ), ), 'hover_background_color' => array( 'type' => 'color', 'label' => __( 'Hover Background Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'hover_text_color' => array( 'type' => 'color', 'label' => __( 'Hover Text Color', 'so-widgets-bundle' ), 'state_handler' => array( 'hover[show]' => array( 'show' ), 'hover[hide]' => array( 'hide' ), ), ), 'font' => array( 'type' => 'font', 'label' => __( 'Font', 'so-widgets-bundle' ), 'default' => 'default', ), 'font_size' => array( 'type' => 'measurement', 'label' => __( 'Font Size', 'so-widgets-bundle' ), 'default' => '1em', ), 'icon_size' => array( 'type' => 'measurement', 'label' => __( 'Icon Size', 'so-widgets-bundle' ), 'default' => '1.3em', ), 'padding' => array( 'type' => 'measurement', 'label' => __( 'Padding', 'so-widgets-bundle' ), 'default' => '1em', ), 'rounding' => array( 'type' => 'multi-measurement', 'label' => __( 'Rounding', 'so-widgets-bundle' ), 'default' => '0.25em 0.25em 0.25em 0.25em', 'measurements' => array( 'top' => array( 'label' => __( 'Top', 'so-widgets-bundle' ), ), 'right' => array( 'label' => __( 'Right', 'so-widgets-bundle' ), ), 'bottom' => array( 'label' => __( 'Bottom', 'so-widgets-bundle' ), ), 'left' => array( 'label' => __( 'Left', 'so-widgets-bundle' ), ), ), ), ), ), 'attributes' => array( 'type' => 'section', 'label' => __( 'Other Attributes and SEO', 'so-widgets-bundle' ), 'hide' => true, 'fields' => array( 'id' => array( 'type' => 'text', 'label' => __( 'Button ID', 'so-widgets-bundle' ), 'description' => __( 'An ID attribute allows you to target this button in JavaScript.', 'so-widgets-bundle' ), ), 'classes' => array( 'type' => 'text', 'label' => __( 'Button Classes', 'so-widgets-bundle' ), 'description' => __( 'Additional CSS classes added to the button link.', 'so-widgets-bundle' ), ), 'title' => array( 'type' => 'text', 'label' => __( 'Title Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a title attribute to the button link.', 'so-widgets-bundle' ), ), 'on_click' => array( 'type' => 'text', 'label' => __( 'Onclick', 'so-widgets-bundle' ), 'description' => __( 'Run this JavaScript when the button is clicked. Ideal for tracking.', 'so-widgets-bundle' ), 'onclick' => true, ), 'rel' => array( 'type' => 'text', 'label' => __( 'Rel Attribute', 'so-widgets-bundle' ), 'description' => __( 'Adds a rel attribute to the button link.', 'so-widgets-bundle' ), ), ), ), ); } public function get_style_name( $instance ) { if ( empty( $instance['design']['theme'] ) ) { return 'atom'; } return $instance['design']['theme']; } /** * Get the variables for the Button Widget. * * @return array */ public function get_template_variables( $instance, $args ) { $button_attributes = array(); $attributes = $instance['attributes']; $classes = ! empty( $attributes['classes'] ) ? $attributes['classes'] : ''; if ( ! empty( $classes ) ) { $classes .= ' '; } $classes .= 'sowb-button ow-icon-placement-' . $instance['button_icon']['icon_placement']; if ( ! empty( $instance['design']['hover'] ) ) { $classes .= ' ow-button-hover'; } $button_attributes['class'] = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $classes ) ) ); if ( ! empty( $instance['new_window'] ) ) { $button_attributes['target'] = '_blank'; $button_attributes['rel'] = 'noopener noreferrer'; } if ( ! empty( $instance['download'] ) ) { $button_attributes['download'] = null; } if ( ! empty( $attributes['id'] ) ) { $button_attributes['id'] = $attributes['id']; } if ( ! empty( $attributes['title'] ) ) { $button_attributes['title'] = $attributes['title']; } if ( ! empty( $attributes['rel'] ) ) { if ( isset( $button_attributes['rel'] ) ) { $button_attributes['rel'] .= " $attributes[rel]"; } else { $button_attributes['rel'] = $attributes['rel']; } } $icon_image_url = ''; if ( ! empty( $instance['button_icon']['icon'] ) ) { $attachment = wp_get_attachment_image_src( $instance['button_icon']['icon'] ); if ( ! empty( $attachment ) ) { $icon_image_url = $attachment[0]; } } return array( 'button_attributes' => apply_filters( 'siteorigin_widgets_button_attributes', $button_attributes, $instance ), 'href' => ! empty( $instance['url'] ) ? $instance['url'] : '', 'on_click' => ! empty( $attributes['on_click'] ) ? $attributes['on_click'] : '', 'align' => $instance['design']['align'], 'icon_image_url' => $icon_image_url, 'icon' => $instance['button_icon']['icon_selected'], 'icon_color' => $instance['button_icon']['icon_color'], 'text' => $instance['text'], ); } /** * Get the variables that we'll be injecting into the less stylesheet. * * @return array */ public function get_less_variables( $instance ) { if ( empty( $instance ) || empty( $instance['design'] ) ) { return array(); } $text_color = isset( $instance['design']['text_color'] ) ? $instance['design']['text_color'] : ''; $button_color = isset( $instance['design']['button_color'] ) ? $instance['design']['button_color'] : ''; $less_vars = array( 'button_width' => isset( $instance['design']['width'] ) ? $instance['design']['width'] : '', 'button_color' => $button_color, 'text_color' => $text_color, 'icon_size' => ! empty( $instance['design']['icon_size'] ) ? $instance['design']['icon_size'] : '1.3em', 'hover_text_color' => ! empty( $instance['design']['hover_text_color'] ) ? $instance['design']['hover_text_color'] : $text_color, 'hover_background_color' => ! empty( $instance['design']['hover_background_color'] ) ? $instance['design']['hover_background_color'] : $button_color, 'font_size' => isset( $instance['design']['font_size'] ) ? $instance['design']['font_size'] : '', 'rounding' => isset( $instance['design']['rounding'] ) ? $instance['design']['rounding'] : '', 'padding' => isset( $instance['design']['padding'] ) ? $instance['design']['padding'] : '', 'has_text' => empty( $instance['text'] ) ? 'false' : 'true', 'responsive_breakpoint' => $this->get_global_settings( 'responsive_breakpoint' ), 'align' => ! empty( $instance['design']['align'] ) ? $instance['design']['align'] : 'center', 'mobile_align' => ! empty( $instance['design']['mobile_align'] ) ? $instance['design']['mobile_align'] : 'center', 'has_button_icon' => empty( $instance['button_icon']['icon_selected'] ) ? 'false' : 'true', ); if ( ! empty( $instance['design']['font'] ) ) { $font = siteorigin_widget_get_font( $instance['design']['font'] ); $less_vars['button_font'] = $font['family']; if ( ! empty( $font['weight'] ) ) { $less_vars['button_font_weight'] = $font['weight_raw']; $less_vars['button_font_style'] = $font['style']; } } return $less_vars; } /** * Make sure the instance is the most up to date version. * * @return mixed */ public function modify_instance( $instance ) { if ( empty( $instance ) ) { return array(); } $migrate_props = array( 'button_icon' => array( 'icon_selected', 'icon_color', 'icon', ), 'design' => array( 'align', 'theme', 'button_color', 'text_color', 'hover', 'hover_text_color', 'hover_background_color', 'font_size', 'rounding', 'padding', ), 'attributes' => array( 'id', ), ); foreach ( $migrate_props as $prop => $sub_props ) { if ( empty( $instance[ $prop ] ) ) { $instance[ $prop ] = array(); foreach ( $sub_props as $sub_prop ) { if ( isset( $instance[ $sub_prop ] ) ) { $instance[ $prop ][ $sub_prop ] = $instance[ $sub_prop ]; unset( $instance[ $sub_prop ] ); } } } } // Migrate onclick setting to prevent Wordfence flag. if ( ! empty( $instance['attributes'] ) && ! empty( $instance['attributes']['onclick'] ) ) { $instance['attributes']['on_click'] = $instance['attributes']['onclick']; } // If the mobile_align setting isn't set, set it to the same value as the align value. if ( ! empty( $instance['design'] ) && ! empty( $instance['design']['align'] ) && empty( $instance['design']['mobile_align'] ) ) { $instance['design']['mobile_align'] = $instance['design']['align']; } // Migrate predefined settings to more customizable settings. if ( ! empty( $instance['design']['font_size'] ) && is_numeric( $instance['design']['font_size'] ) ) { $instance['design']['font_size'] .= 'em'; } if ( ! empty( $instance['design']['padding'] ) && is_numeric( $instance['design']['padding'] ) ) { $instance['design']['padding'] .= 'em'; } if ( ! empty( $instance['design']['rounding'] ) && is_numeric( $instance['design']['rounding'] ) ) { $instance['design']['rounding'] = $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em ' . $instance['design']['rounding'] . 'em'; } if ( empty( $instance['design']['icon_size'] ) ) { $instance['design']['icon_size'] = '1.3em'; } return $instance; } public function get_form_teaser() { if ( class_exists( 'SiteOrigin_Premium' ) ) { return false; } return array( sprintf( __( 'Add a beautiful tooltip to the Button Widget with %sSiteOrigin Premium%s', 'so-widgets-bundle' ), '', '' ), ); } } siteorigin_widget_register( 'sow-button', __FILE__, 'SiteOrigin_Widget_Button_Widget' );{"id":161416,"date":"2026-06-20T16:31:17","date_gmt":"2026-06-20T16:31:17","guid":{"rendered":"https:\/\/klecet.edu.in\/alumni\/?p=161416"},"modified":"2026-06-20T16:31:18","modified_gmt":"2026-06-20T16:31:18","slug":"https-viewvht6fmk9a2t8","status":"publish","type":"post","link":"http:\/\/klecet.edu.in\/alumni\/https-viewvht6fmk9a2t8\/","title":{"rendered":"https:\/\/view?v=hT6FMk9A2t8"},"content":{"rendered":"
\u30b3\u30f3\u30c6\u30f3\u30c4<\/p>\n
\u3053\u306e\u30b2\u30fc\u30e0\u304c\u5370\u8c61\u306b\u6b8b\u308b\u7406\u7531\u306f\u3001\u304a\u305d\u3089\u304f\u3053\u306e\u5206\u91ce\u3067\u6700\u65b0\u306e\u6700\u3082\u9a12\u3005\u3057\u3044\u30d3\u30c7\u30aa\u30b2\u30fc\u30e0\u3060\u304b\u3089\u3067\u306f\u306a\u304f\u3001\u5341\u5206\u306a\u30d1\u30f3\u30c1\u529b\u304c\u3042\u308a\u3001\u8a18\u61b6\u306b\u6b8b\u308b\u3082\u306e\u306b\u3059\u308b\u305f\u3081\u306e\u5927\u304d\u306a\u30de\u30eb\u30c1\u30d7\u30e9\u30a4\u30e4\u30fc\u52dd\u5229\u3078\u306e\u9053\u7b4b\u304c\u3042\u308b\u304b\u3089\u3067\u3057\u3087\u3046\u3002\u5404\u30dc\u30fc\u30ca\u30b9\u30e9\u30a6\u30f3\u30c9\u3067\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u904b\u3092\u3069\u308c\u3060\u3051\u5f37\u3081\u308b\u304b\u3092\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u3001\u3053\u308c\u306f\u53e4\u3044\u30b9\u30ed\u30c3\u30c8\u306b\u306f\u307b\u3068\u3093\u3069\u898b\u3089\u308c\u306a\u3044\u6226\u7565\u8981\u7d20\u3092\u8ffd\u52a0\u3059\u308b\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3059\u3002\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2\u306e\u30ae\u30e3\u30f3\u30d6\u30e9\u30fc\u306f\u3001\u6700\u65b0\u306e\u7126\u70b9\u306f\u30b7\u30f3\u30d7\u30eb\u306a\u30ea\u30b9\u30af\u3068\u5831\u916c\u306e\u69cb\u6210\u306b\u57fa\u3065\u3044\u3066\u3044\u308b\u3068\u3088\u304f\u8a00\u3044\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u7c21\u5358\u3055\u3068\u8208\u596e\u306e\u30d0\u30e9\u30f3\u30b9\u3092\u5b8c\u74a7\u306b\u53d6\u3063\u305f\u53e4\u5178\u7684\u306a\u30b2\u30fc\u30e0\u3067\u3059\u3002\u30b9\u30ea\u30eb\u3092\u6c42\u3081\u308b\u4eba\u306b\u3082\u793e\u4ea4\u7684\u306a\u30ab\u30c3\u30d7\u30eb\u306b\u3082\u8a2d\u8a08\u3055\u308c\u3066\u304a\u308a\u3001\u5927\u304d\u306a\u52dd\u5229\u306e\u53ef\u80fd\u6027\u3001\u5f37\u529b\u306a\u30e2\u30d0\u30a4\u30eb\u30b5\u30dd\u30fc\u30c8\u3001\u5b8c\u5168\u306a\u30b9\u30ed\u30c3\u30c8\u4f53\u9a13\u3092\u63d0\u4f9b\u3059\u308b\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u53ef\u80fd\u306a\u30d7\u30ec\u30a4\u6a5f\u5668\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u3044\u307e\u3059\u3002<\/p>\n
Aristocrat\u306f\u3001\u30de\u30eb\u30c1\u30d7\u30e9\u30a4\u30e4\u30fc\u4ed8\u304d\u306e\u30d5\u30ea\u30fc\u30b9\u30d4\u30f3\u30685\u3064\u306e\u30dc\u30fc\u30ca\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u3001\u6d3b\u6c17\u306b\u6e80\u3061\u305f\u30dc\u30fc\u30ca\u30b9\u8c4a\u5bcc\u306a\u30dd\u30b8\u30b7\u30e7\u30f3\u3092\u5ba3\u4f1d\u3057\u3066\u304a\u308a\u3001\u4ee5\u4e0b\u3067\u3055\u3089\u306b\u8a73\u3057\u304f\u8aac\u660e\u3057\u307e\u3059\u3002\u30b9\u30ed\u30c3\u30c8\u3001\u30bd\u30fc\u30b7\u30e3\u30eb\u30d7\u30ec\u30a4\u3001\u30ab\u30b8\u30ce\u7ba1\u7406\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3069\u3001\u3055\u307e\u3056\u307e\u306a\u88fd\u54c1\u3068\u624b\u9806\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u78ba\u304b\u306b\u3001\u753b\u9762\u4e0a\u3067\u30af\u30ec\u30a4\u30b8\u30fc\u306a\u6c17\u5206\u306b\u306a\u308c\u308b1\uff5e30\u500d\u306e\u30de\u30eb\u30c1\u30d7\u30e9\u30a4\u30e4\u30fc\u306f\u7d20\u6674\u3089\u3057\u3044\u3067\u3059\u304c\u3001\u7c21\u5358\u306b\u9054\u6210\u3067\u304d\u308b\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u307e\u305f\u3001Microgaming\u306e\u3059\u3079\u3066\u306e\u30ab\u30b8\u30ce\u30dd\u30fc\u30c8\u306b\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3060\u3051\u306710\u500d\u306e\u30de\u30eb\u30c1\u30d7\u30e9\u30a4\u30e4\u30fc\u3092\u7372\u5f97\u3067\u304d\u307e\u3059\u3002Choy Sun Doa\u306e\u8ced\u3051\u91d1\u306f\u308f\u305a\u304b0.01\u30b3\u30a4\u30f3\u304b\u3089\u6700\u592750\u30b4\u30fc\u30eb\u30c9\u30b3\u30a4\u30f3\u307e\u3067\u306a\u306e\u3067\u3001\u30d7\u30ed\u306e\u30ae\u30e3\u30f3\u30d6\u30e9\u30fc\u306b\u3082\u5927\u91d1\u3092\u8ced\u3051\u308b\u4eba\u306b\u3082\u9069\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n
\u30c8\u30e9\u30f3\u30d7\u306e\u30b7\u30f3\u30dc\u30eb\u30926\u3064\u63c3\u3048\u308b\u3068\u30015\u3064\u306eA\u307e\u305f\u306fK\u30b7\u30f3\u30dc\u30eb\u306b\u5bfe\u3057\u3066200\u306e\u30ed\u30fc\u30f3\u3092\u652f\u6255\u3046\u3053\u3068\u306b\u306a\u308a\u3001Q\u3001J\u300110\u30019\u306e\u5834\u5408\u306f100\u306b\u306a\u308a\u307e\u3059\u3002\u5b9f\u969b\u306e\u304a\u91d1\u3092\u30ea\u30b9\u30af\u306b\u3055\u3089\u3059\u3053\u3068\u306a\u304f\u65b0\u3057\u3044\u9078\u629e\u65b9\u6cd5\u3092\u898b\u3064\u3051\u308b\u306e\u306f\u672c\u5f53\u306b\u65b0\u3057\u3044\u3053\u3068\u306a\u306e\u3067\u3001\u305c\u3072\u8a66\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002\u5b9f\u969b\u306b\u4f55\u3082\u9078\u629e\u3057\u306a\u3044\u4eba\u3082\u3001\u6700\u65b0\u306e\u6700\u5927\u8ced\u3051\u91d1\u3067\u3042\u308b200\u30c9\u30eb\u3092\u8ced\u3051\u305f\u4eba\u3082\u3001\u6700\u9ad8\u984d\u306e\u901a\u8ca8\u3092\u7372\u5f97\u3059\u308b\u78ba\u7387\u306f\u540c\u3058\u3067\u3059\u3002\u6709\u52b9\u306a\u7d44\u307f\u5408\u308f\u305b\u306e\u6570\u3068\u7d44\u307f\u5408\u308f\u305b\u306b\u542b\u307e\u308c\u308b\u30a2\u30a4\u30b3\u30f3\u306e\u307f\u306b\u57fa\u3065\u3044\u3066\u3001\u6700\u521d\u306e\u9078\u629e\u306e20,000\u500d\u304b\u308980,000\u500d\u3092\u7372\u5f97\u3067\u304d\u307e\u3059\u3002\u56de\u8ee2\u6570\u3092\u5c11\u306a\u304f\u9078\u629e\u3059\u308b\u3068\u3001\u5927\u304d\u306a\u30de\u30eb\u30c1\u30d7\u30e9\u30a4\u30e4\u30fc\u3067\u9650\u754c\u3092\u8d85\u3048\u3001\u9b45\u529b\u7684\u306a\u30d9\u30b9\u30c8\u30c7\u30a3\u30d5\u30a7\u30f3\u30b9\u306e\u52dd\u5229\u3092\u5f97\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c\u3001\u904b\u304c\u5473\u65b9\u3057\u306a\u3044\u5834\u5408\u306f\u3001\u3059\u3050\u306b\u8ca0\u3051\u3066\u3057\u307e\u3044\u307e\u3059\u3002<\/p>\n
<\/p>\n
\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u5185\u306b\u3082\u5c0f\u3055\u306a\u30b5\u30d6\u30a4\u30f3\u30bb\u30f3\u30c6\u30a3\u30d6\u8a2d\u5b9a\u304c\u3042\u308a\u3001\u3053\u308c\u306f\u304b\u306a\u308a\u52b1\u307f\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u306e\u8ffd\u52a0\u6a5f\u80fd\u306f\u7121\u6599\u30b2\u30fc\u30e0\u3092\u512a\u9047\u3057\u307e\u3059\u304c\u3001\u5c11\u306a\u304f\u3068\u30823\u3064\u306e\u9280\u306e\u30a4\u30f3\u30b4\u30c3\u30c8\u30a2\u30a4\u30b3\u30f3\u306e\u304a\u304b\u3052\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002Choy Sunshine Doa\u30b9\u30ed\u30c3\u30c8\u306e\u65b0\u3057\u3044\u5206\u6563\u30a2\u30a4\u30b3\u30f3\u306f\u3001\u8ffd\u52a0\u6a5f\u80fd\u3092\u30aa\u30f3\u306b\u3059\u308b\u512a\u308c\u305f\u9280\u306e\u30a4\u30f3\u30b4\u30c3\u30c8\u3067\u3059\u3002\u30ea\u30b9\u30af\u3092\u8ca0\u3044\u305f\u3044\u5834\u5408\u300130,000\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u5225\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u306f\u30014\u56de\u306e100%\u30d5\u30ea\u30fc\u30b9\u30d4\u30f3\u3057\u304b\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\n