CINXE.COM
Institute of Developing Economies
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="shortcut icon" href="/favicon.ico?dummy=1705374019" /> <link rel="stylesheet" type="text/css" href="/css/English.css" charset="UTF-8" /> <link rel="stylesheet" type="text/css" href="/publis.css" /><meta name="keywords" content="" /> <meta name="description" content="" /> <title>Institute of Developing Economies</title> <script > <!-- var pbGlobalAliasBase = '/'; //--> </script> <script src="/public.js"></script> <script src="/scripts/jquery-1.12.4.min.js"></script> <script>var isSP = false; var tmpformat = '{first}th to {last}th out of {total}'; function loadTag(pager, blockId, tagId, offset, func, pathinfo) { $("#ajax-tab-container-" + blockId + "-" + tagId).data('loaded', 1); var url = '/view_interface.php'; pathinfo = pathinfo || null; $.ajax({ type: "GET", url: url, data : { 'cmd' : 'loadTag' ,'blockId' : blockId ,'offset' : offset ,'tagId' : tagId ,'pathinfo' : pathinfo ,'ut' : parseInt((new Date)/1000) }, crossDomain: false, async: false, dataType : 'json', scriptCharset: 'utf-8', beforeSend: function(xhr) { xhr.setRequestHeader('Pragma', 'no-cache'); xhr.setRequestHeader('Cache-Control', 'no-cache'); xhr.setRequestHeader('If-Modified-Since', 'Thu, 01 Jun 1970 00:00:00 GMT'); }, }).success(function(response){ eval(func + "(pager, response);"); }).fail(function(XMLHttpRequest, textStatus, errorThrown){ alert(errorThrown); }); } function _loadArticle(pager, response) { var articles = response.articleList; var blockId = response.blockId; var tagId = response.tagId; var tableId = "#recordList" + blockId + "-" + tagId; if ($(tableId + " tr.record:first").size() !== 0) { var recordOrigin = $(tableId + " tr.record:first").clone(); } else { var recordOrigin = $(tableId + " li.record:first").clone(); } $(tableId + " tr.record ," + tableId + " li.record").remove(); $.each(articles, function(i, a) { if (a['page_id']) { var record = $(recordOrigin).clone(); $.each(record.find('span'), function(index, sp) { changePageDatas(a, sp); }); $(tableId).append(record); } }); setPageInfo(pager); trimPager(pager); } function changePageDatas(a, sp) { var roleName = $(sp).data('role'); if (!roleName) return; var value = ''; if (roleName == 'link') { var linkItems = $(sp).data('items'); if (linkItems) { linkItems = linkItems.split(','); for (var i=0; i<linkItems.length; i++) { var itemVal = linkItems[i].split(':'); var keyName = itemVal[0]; if (a[keyName]) { var pre = itemVal[1] ? itemVal[1] : ''; var suf = itemVal[2] ? itemVal[2] : ''; value += pre + a[keyName] + suf; } } value = "<a href='" + a['url'] + "'>" + value + "</a>"; } else { value = "<a href='" + a['url'] + "'>" + a['title'] + "</a>"; } } else if (roleName == 'title') { var titleItems = $(sp).data('items'); value = a['title']; } else if (roleName == 'textarea_summary') { if (a['pageItems'][roleName] != undefined) { var summaryItems = a['pageItems'][roleName][roleName]; if (summaryItems) { value = a['pageItems'][roleName][roleName]; } } } else if (roleName == 'tag_labels') { if (a['tag_labels']) { $.each(a['tag_labels'], function(index3, lbl) { value += value ? '<br />' : ''; value += '<span class="cate">' + lbl + '</span>'; }); } else { value = a['tag_name']; } } else if (roleName == 'flag_jetro_support') { if (a['pageItems'][roleName] != undefined) { value = a['pageItems'][roleName][roleName] != "" ? '<span class="cate">ジェトロ支援</span><br />' : ''; } } else if (roleName == 'flag_free') { if (a['pageItems'][roleName] != undefined) { value = a['pageItems'][roleName][roleName] != "" ? '<span class="muryo tag">無料</span>' : ''; } } //else if(roleName == 'textarea_rakusatsu_sha'){ else if(roleName == 'date_koukoku_date_result'){ if(a['pageItems'][roleName] != undefined){ if(a['pageItems'][roleName][roleName] != "" && a['pageItems'][roleName][roleName] != undefined){ value = "<ul><li><a href=\"" + a['url'] + "#result\">結果</a></li></ul>" } else { value = ""; } } else { value = ""; } } else if(roleName == 'date_proc_result_pubdate'){ if(a['pageItems'][roleName] != undefined){ if(a['pageItems'][roleName][roleName] != "" && a['pageItems'][roleName][roleName] != undefined){ value = "<ul><li><a href=\"" + a['url'] + "#result\">結果</a></li></ul>" } else { value = ""; } } else { value = ""; } } else if(roleName == 'tag_labels_invest'){ if(a['tag'] != undefined){ $.each(a['tag'], function(index4, tagData){ $.each(tagData ,function(index5, tagSub){ if(tagSub.tag_type == 5){ if(value == ''){ value = '<span class="cate">' + tagSub.tag_name + '</span>'; } } }); }); } } else if(roleName == 'publication_shubetsu'){ if(a['pageItems']['list_publication_shubetsu']['list_publication_shubetsu'] != undefined){ if(a['pageItems']['list_publication_shubetsu']['list_publication_shubetsu'] == "雑誌"){ value = a['pageItems']['text_subtitle'] ? "(" + a['pageItems']['text_subtitle']['text_subtitle'] + ")" : ''; } else { value = a['pageItems']['date_hakkoubi'] ? a['pageItems']['date_hakkoubi']['date_hakkoubi'] + '発売' : ''; } } else { value = ""; } if (value) { value = "<a href='" + a['url'] + "'>" + a['title'] + " " + value + "</a>"; } } else { value = a[roleName] ? a[roleName] : !a['pageItems'] ? '' : a['pageItems'][roleName] && a['pageItems'][roleName][roleName] ? a['pageItems'][roleName][roleName] : ''; } $(sp).html(value); } function setPageInfo(pager) { if (!pager.p.infoSelector) { return; } var p = pager.p; var info = $(p.infoSelector); if (!p.total) { var message = (p.nothingMessage) ? p.nothingMessage : '該当する記事はありません'; info.html(message); } else { //var format = '{total}件中 {first}から{last}件目'; var format = tmpformat; var maxView = p.curPage * p.limit; var minView = maxView - (p.limit - 1); if (maxView > p.total) { maxView = p.total; } if (p.infoFormat) { format = p.infoFormat; } var data = { total:p.total, first:minView, last:maxView }; info.html(format.replace(/{(total|first|last)}/g, function(all, g) { return data[g]; })); } } function _loadTag(response) { var articles = response.articleList; var blockId = response.blockId; var tagId = response.tagId; var content = $("#ajax-tab-container-" + blockId + "-" + tagId); var tagHtml = '<table>'; var count = 1; $.each(articles, function(i, tag) { if (tag['articleList']) { var articleCount = tag['articleList'].length; $.each(tag['articleList'], function(i, a) { tagHtml += "<tr>"; if (i == 0) { tagHtml += "<td rowspan='"+ articleCount +"'>" + tag['tag_name'] + "</td>"; } tagHtml += "<td data-role='link'><a href='" + a['url'] + "'>" + a['title'] + "</a></td>"; tagHtml += "</tr>"; }); } $("#ajax-tab-container-" + blockId + "-" + tagId).html(tagHtml); }); } function getTotal(blockId, tagId, pathinfo) { var url = '/view_interface.php'; var count = 0; $.ajax({ type: "GET", url: url, data : { 'cmd' : 'getTotal' ,'blockId' : blockId ,'tagId' : tagId ,'pathinfo' : pathinfo ,'ut' : parseInt((new Date)/1000) }, crossDomain: false, async: false, dataType : 'json', scriptCharset: 'utf-8', beforeSend: function(xhr) { xhr.setRequestHeader('Pragma', 'no-cache'); xhr.setRequestHeader('Cache-Control', 'no-cache'); xhr.setRequestHeader('If-Modified-Since', 'Thu, 01 Jun 1970 00:00:00 GMT'); }, }).success(function(response){ count = response.recordCount; }).fail(function(XMLHttpRequest, textStatus, errorThrown){ alert(errorThrown); }); return count; } function genPager(pagerSelector, blockId, tagId, dispNum, loadFunc, otherOpt, pathinfo) { if (!otherOpt) { otherOpt = {}; } if (dispNum <= 0) { return; } var _pager = $(pagerSelector).pager($.extend({ curPage: 1, total: getTotal(blockId, tagId, pathinfo), limit: dispNum, callback: function(pager, page) { var offset = page == 1 ? 0 : (page - 1) * dispNum; loadTag(pager, blockId, tagId, offset, loadFunc, pathinfo); } }, otherOpt)); window._pagerSelector = pagerSelector; setPageInfo(_pager); trimPager(_pager); location.href.match(/\?_page=(\d+)/); if (RegExp.$1) { window._pager.pagerJump(RegExp.$1); if (pdfIconFilter) { pdfIconFilter(); } } $('.elem_pagination:not(.noAjax) a').click(function() { var p = $(this).text(); switch (p) { case '...': p = parseInt($(this).data('more'), 10); break; case _pager.p.nextLabel: p = parseInt($('.elem_pagination li.current').attr('data-p'), 10) + 1; break; case _pager.p.prevLabel: p = parseInt($('.elem_pagination li.current').attr('data-p'), 10) - 1; break; } var gets = location.href.split('?'); var newGets = ['_page=' + p]; if (gets[1]) { gets = gets[1].split('&'); for (var i in gets) { if (!gets[i].match(/^_page=/)) { newGets.unshift(gets[i]); } } } var newUrl = location.pathname + '?' + newGets.join('&'); if (window.history && window.history.pushState && window.history.replaceState) { window.history.pushState(null, null, newUrl); window.history.replaceState(null, null, newUrl); if(!$(this).parent().data('p')) { window._pager.pagerJump(p); } return true; } else { location.href = newUrl; return false; } }); } function trimPager(pager) { if (window.pdfIconFilter) { pdfIconFilter(); } window._pager = pager; var showPagerNum = (isSP) ? 2 : 5; var curr = pager.p.curPage - 0; var minNum = curr - Math.floor(showPagerNum / 2); if ((showPagerNum % 2) == 0) { minNum++; } var maxNum = curr + Math.floor(showPagerNum / 2); if (minNum < 1) { maxNum += (minNum * -1) + 1; minNum = 1; } if (maxNum > pager.p.totalPage) { minNum -= maxNum - pager.p.totalPage; if (minNum < 1) { minNum = 1; } } $(_pagerSelector+' li').each(function() { var num = $(this).text() - 0; (minNum > num || num > maxNum) ? $(this).hide() : $(this).show(); }); var targetP = $(_pagerSelector+' a[class="pageprev"]').parent(); var mPrev = curr - showPagerNum; if (mPrev <= 1) { mPrev = 2; } if (!$('#firstPage').length) { targetP.after('<li id="firstPage"><a href="javascript:void(0)">1</a></li>'); } if (!$('#morePrev').length) { $('#firstPage').after('<li id="morePrev"><a data-more="'+mPrev+'" href="javascript:void(0)">...</a></li>'); } else { $('#morePrev').find('a').data('more', mPrev); } (minNum > 1) ? $('#firstPage').show() : $('#firstPage').hide(); (minNum > 2) ? $('#morePrev').show() : $('#morePrev').hide(); var targetN = $(_pagerSelector+' a[class="pagenext"]').parent(); var last = pager.p.totalPage; var mNext = curr + showPagerNum; if (mNext >= last) { mNext = last - 1; } if (!$('#lastPage').length) { targetN.before('<li id="lastPage"><a href="javascript:void(0)">'+last+'</a></li>'); } if (!$('#moreNext').length) { $('#lastPage').before('<li id="moreNext"><a data-more="'+mNext+'" href="javascript:void(0)">...</a></li>'); } else { $('#moreNext').find('a').data('more', mNext); } (maxNum < pager.p.totalPage) ? $('#lastPage').show() : $('#lastPage').hide(); (maxNum < pager.p.totalPage - 1) ? $('#moreNext').show() : $('#moreNext').hide(); (last == curr) ? $(pager.selector).find('.pagenext').hide() : $(pager.selector).find('.pagenext').show(); (1 == curr) ? $(pager.selector).find('.pageprev').hide() : $(pager.selector).find('.pageprev').show(); if (isSP) { if (curr > 4) { if (!$('#spAppendPager').length) { var clone = $(pager.selector).find('.pagination').clone(true); clone.attr('id', 'spAppendPager').html(''); $(pager.selector).find('.pagination').before(clone); $(pager.selector).not('#spAppendPager').find('.pageprev').parent().appendTo('#spAppendPager'); $(pager.selector).not('#spAppendPager').find('.pagenext').parent().appendTo('#spAppendPager'); $(pager.selector).find('.pageprev').parent().width('43%'); $(pager.selector).find('.pagenext').parent().width('43%'); $('#spAppendPager').css('padding-bottom', '5px'); } } else { $('#firstPage').hide(); $('#morePrev').hide(); } } }</script> <meta property="og:title" content="Institute of Developing Economies" /> <meta property="og:image" content="https://www.ide.go.jp/library/common/images/twitter_card.jpg" /> <meta property="og:description" content="The Institute of Developing Economies (IDE) aims to make intellectual contributions to the world as a leading center of social-science research on developing regions." /> <meta property="og:url" content="https://www.ide.go.jp/English.html" /> <script> window.addEventListener('DOMContentLoaded', function(){ $('.agree').on('click', function() { checkUseCookie('/view_interface.php?blockId=4974136&agree=1', true); }) $('.disagree').on('click', function() { deleteAllCookies(); checkUseCookie('/view_interface.php?blockId=4974136&disagree=1', false); }) var agree_use_cookie = GetCookieValue('agree_use_cookie'); if (agree_use_cookie == 'agree') { $('head').append('<script async src="https://www.googletagmanager.com/gtag/js?id=G-77K3MXXL2P"><\/script>'); window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-77K3MXXL2P'); gtag('config', 'UA-3371816-1'); } if (agree_use_cookie == 'disagreeFlash') { deleteAllCookies(); } if (!agree_use_cookie) { $('.use_cookie_footer').show(); } function checkUseCookie(interface_url, is_agree) { $.ajax({ type: 'GET', async: false, url: interface_url, }).done(function(result) { if (is_agree) { $('head').append('<script async src="https://www.googletagmanager.com/gtag/js?id=G-77K3MXXL2P"><\/script>'); window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-77K3MXXL2P'); gtag('config', 'UA-3371816-1'); } else { $('head').append('<script>$(function() {deleteAllCookies();});<\/script>'); } $('.use_cookie_footer').hide(); }).fail(function(result) { alert('システムエラーが発生しました。'); }); } }); function deleteAllCookies() { const cookies = document.cookie.split(';') for (let i = 0; i < cookies.length; i++) { const cookie = cookies[i] const eqPos = cookie.indexOf('=') const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie if (!(name.trim() == 'agree_use_cookie' || name.trim() == 'PHPSESSID')) { document.cookie = name + '=; path = /;max-age=0' document.cookie = name + '=;domain = .nishikeinet.co.jp; path = /;max-age = 0' } } } function GetCookieValue(targetName) { var name, index, cookies = document.cookie.split(';'); for (var i = 0; i < cookies.length; i++) { index = cookies[i].indexOf('='); if (index > 0 && cookies[i].length > index + 1) { name = cookies[i].substr(0, index).trim(); if (name == targetName) { return cookies[i].substr(index + 1); } } } return ''; } </script> <style> .use_cookie_fixed_display { width: 756px; margin-left: auto; margin-right: auto; } .use_cookie_text{ padding: 20px; } .use_cookie_footer { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #000; color: #fff; font-size: 140%; opacity: 0.9; z-index: 1000; } .use_cookie_footer p { width: 80%; margin-left: auto; margin-right: auto; font-size: 16px!important; } .use_cookie_footer a { color: #fff!important; text-decoration:underline!important; margin-top: 10px; display: inline-block; } .use_cookie_button { float: right; margin: 20px 0 10px; } .use_cookie_button input[type="button"] { padding: 5px; margin-right: 5px; margin-bottom: 10px; } .use_cookie_footer .agree, .use_cookie_footer .disagree { font-size: 100%; } </style> <script src="/scripts/jquery-1.12.4.min.js"></script> <link rel="stylesheet" type="text/css" href="/library/common/css/reset.css" /> <link rel="stylesheet" type="text/css" href="/library/common/css/slider.css" /> <link rel="stylesheet" type="text/css" href="/library/common/css/jquery-ui.min.css" /> <link rel="stylesheet" type="text/css" href="/library/common/css/common.css?202310" /> <script src="/library/common/js/jquery.slider.js"></script> <script src="/library/common/js/jquery-ui.min.js"></script> <script src="/library/common/js/common.js"></script> <script src="/library/common/js/jquery.cookie.js"></script> <script src="/library/common/js/jquery.textresizer.min.js"></script> <style > .modal-content { position:fixed; display:none; z-index:2; } .modal-content p { margin:0; padding:0; } .modal-overlay { z-index:1; display:none; position:fixed; top:0; left:0; width:100%; height:120%; background-color:rgba(0,0,0,0.75); } .modal-open { color:#00f; text-decoration:underline; } .modal-open:hover { cursor:pointer; color:#f00; } .list-textcontent2 ol ol { font-size: 1em; } .list1x ul ol { font-size: 1em; } .list1x ul ol > li { font-size: 1em; list-style-type:decimal; text-indent: 0; } .list1x ul ol > li:before { content: ""; } </style> <link rel="stylesheet" type="text/css" href="/library/common/css/publish.css" /> <script src="/library/common/js/publish.js"></script> <meta name="referrer" content="no-referrer" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@ide_jetro" /> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <link rel="stylesheet" type="text/css" href="/library/rn23/common_pc/css/rn23_headerfooter_pc.css" /> <script> $(function(){ var gnav01W = $(".gnav01 a").width() / 2 + 95; var gnav02W = $(".gnav02 a").width() / 2 + 95; var gnav03W = $(".gnav03 a").width() / 2 + 95; var gnav04W = $(".gnav04 a").width() / 2 + 95; var gnav05W = $(".gnav05 a").width() / 2 + 95; var gnav06W = $(".gnav06 a").width() / 2 + 95; var style = ''; style += '<style >'; style += 'li.gnav01 .gnavDrawerMenuWrapper:before { left:' + gnav01W + 'px!important;}'; style += 'li.gnav02 .gnavDrawerMenuWrapper:before { left:' + gnav02W + 'px!important;}'; style += 'li.gnav03 .gnavDrawerMenuWrapper:before { left:' + gnav03W + 'px!important;}'; style += 'li.gnav04 .gnavDrawerMenuWrapper:before { right:' + gnav04W + 'px!important;}'; style += 'li.gnav05 .gnavDrawerMenuWrapper:before { right:' + gnav05W + 'px!important;}'; style += 'li.gnav06 .gnavDrawerMenuWrapper:before { right:' + gnav06W + 'px!important;}'; style += '</style>'; $('head').append(style); }); </script> <script > window.addEventListener('DOMContentLoaded', function(){ $('a').each(function () { const $this = $(this); $this.removeClass('typeBlanklink'); if (!$this.attr('href')) { return true; } if (!$this.attr('href').startsWith('/') && !$this.attr('href').startsWith('http://www.ide.go.jp') && !$this.attr('href').startsWith('https://www.ide.go.jp') && !$this.find('img').length && !$this.attr('href').startsWith('#') ) { $this.addClass('typeBlanklink'); } }); }); </script> <style > a.typeBlanklink:after { display: inline-block; content: ""; width: 13px; height: 11px; background: url(/library/images/open_win.gif) 0 0 no-repeat; background-size: contain; margin-left: 5px; vertical-align: middle; } .researcher-linktable a.typeBlanklink:after { display: none!important; } .pageMove.typeBlanklink:after { display: none!important; } .pagination .typeBlanklink:after { display: none!important; } .anchorbtn .typeBlanklink:after { display: none!important; } </style> <link rel="stylesheet" type="text/css" href="/library/rn23/common_pc/css/rn23_top_pc.css?202310" /> <link rel="stylesheet" type="text/css" href="/library/rn23/common/css/slick.css" /> <link rel="stylesheet" type="text/css" href="/library/rn23/common/css/slick-theme.css" /> <script src="/library/rn23/common/js/slick.js"></script> <script > $(document).ready(function(){ $('.topMainSliderList').slick({ autoplay: true, arrows: false, dots: true, fade: true }); }); $(document).ready(function(){ $('.topInfoSliderInner').slick({ slidesToShow: 3, arrows: true, dots: false }); }); </script> </head> <body> <div id="page" class="pbPage"> <div id="headerArea" class="pbHeaderArea"> <div id="area1" class="pbArea "> <div class="pbNested " > <div class=" pbNested pbNestedWrapper " id="pbBlock72313"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4396446"> <header id="headerEN"> <div class="headerInner"> <div class="headerLeft"> <div class="headerLogo"> <a href="/English.html"> <img src="/library/rn23/common/images/mainlogo.png" alt="Institute of Developing Economies" title="Institute of Developing Economies"> </a> </div> <div class="headerGnav"> <ul> <li class="gnav01" id="gnav01"> <a href="/English/Research.html">Research<br>Activities</a> <div class="gnavDrawerMenu" id="gnavdr01"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/Research.html">Research Activities</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="/English/Research/Project.html">Research Projects</a> </li> <li> <a href="/English/Research/Net.html">Research Networks</a> </li> <li> <a href="/English/Events.html">Seminars & Events</a> </li> </ul> </div> </div> </div> </div> </li> <li class="gnav02" id="gnav02"> <a href="/English/ResearchColumns.html">Research<br>Columns</a> <div class="gnavDrawerMenu" id="gnavdr02"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/ResearchColumns.html">Research Columns</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="/English/ResearchColumns/Columns.html">Columns</a> </li> <li> <a href="/English/ResearchColumns/About.html">About</a> </li> </ul> </div> </div> </div> </div> </li> <li class="gnav03" id="gnav03"> <a href="/English/Publish.html">Papers &<br>Publications</a> <div class="gnavDrawerMenu" id="gnavdr03"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/Publish.html">Papers & Publications</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="/English/Search/pub_search.html">Publication Search</a> </li> <li> <a href="/English/Publish/NewBooks.html">New Books</a> </li> <li> <a href="/English/Publish/NewPeriodicals.html">New Journals</a> </li> <li> <a href="/English/Publish/NewReports.html">New Reports</a> </li> <li> <a href="/English/Publish/Books.html">Books</a> </li> <li> <a href="/English/Publish/Periodicals.html">Journals & Magazines</a> </li> <li> <a href="/English/Publish/Reports.html">Reports</a> </li> </ul> </div> </div> </div> </div> </li> <li class="gnav04" id="gnav04"> <a href="/English/Researchers.html">Researchers</a> <div class="gnavDrawerMenu" id="gnavdr04"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/Researchers.html">Researchers</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="/English/Researchers/abc.html">Alphabetical Order</a> </li> <li> <a href="/English/Researchers/area.html">By Region</a> </li> <li> <a href="/English/Researchers/theme.html">By Topic</a> </li> <li> <a href="/English/Researchers/group.html">By Department</a> </li> <li> Fixed-term Researchers </li> <li> <a href="/English/Researchers/Vrf.html">Visiting Research Fellows</a> </li> </ul> </div> </div> </div> </div> </li> <li class="gnav05" id="gnav05"> <a href="/English/Library.html">Library</a> <div class="gnavDrawerMenu" id="gnavdr05"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/Library.html">Library</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="https://opac.ide.go.jp/drupal/en/" target="_blank">Calendar</a> </li> <li> <a href="/English/Library/Info.html">Information</a> </li> <li> <a href="/English/Library/Search.html">Finding Materials</a> </li> <li> <a href="https://ir.ide.go.jp/" target="_blank">Institutional Repository(ARRIDE)</a> </li> <li> <a href="https://d-arch.ide.go.jp/" target="_blank">Digital Archives</a> </li> </ul> </div> </div> </div> </div> </li> <li class="gnav06" id="gnav06"> <a href="/English/Info.html">About IDE</a> <div class="gnavDrawerMenu" id="gnavdr06"> <div class="gnavDrawerMenuWrapper"> <p class="gnavDrawerMenuTitle"><a href="/English/Info.html">About IDE</a></p> <div class="gnavDrawerMenuInner"> <div class="gnavDrawerMenuList"> <ul> <li> <a href="/English/Info/Message.html">Message from the President</a> </li> <li> <a href="/English/Info/Profile.html">Outline of IDE</a> </li> <li> <a href="/English/Info/Direct.html">Location</a> </li> <li> <a href="/English/Info/Inquiries.html">Inquiries</a> </li> <li> <a href="/English/New.html">News</a> </li> <li> <a href="/English/Recruit.html">Fellowships / Job Openings</a> </li> <li> <a href="/English/Ideas.html">IDEAS</a> </li> </ul> </div> </div> </div> </div> </li> </ul> </div> </div> <div class="headerRight"> <div class="headerUtil"> <div class="headerSearchWrapper"> <form action="/English/Search/result.html" id="cse-search-box" name="cse-search-box"> <input type="hidden" name="cx" value="017478955533769994456:johxnlhfwl8"> <input type="hidden" name="ie" value="UTF-8"> <input type="text" name="q" class="search-text" style="background: url("https://www.google.com/cse/static/images/1x/en/branding.png") left 9px top 50% no-repeat rgb(255, 255, 255); background-size: 65%;!important" placeholder=""> <input type="submit" name="sa" value="Search" class="search-btn"> <input name="siteurl" value="www.ide.go.jp/English.html" type="hidden"><input name="ref" value="" type="hidden"><input name="ss" value="" type="hidden"> </form> <script src="//www.google.com/cse/brand?form=cse-search-box&lang=en"></script> </div> <div class="headerLangChange"> <a href="/Japanese.html">Japanese</a> </div> </div> </div> </div> </header> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4396448"> <!-- --> </div> </div> </div> <div class=" pbNested pbNestedWrapper " id="pbBlock1328062"> <div class="pbNested " > </div> </div> </div> </div> </div><div id="areaWrapper1" class="pbAreaWrapper1"><div id="areaWrapper2" class="pbAreaWrapper2"><div id="mainArea" class="pbMainArea allindex"> <div id="area0" class="pbArea "> <div class="pbNested " > <div class="pcSection pbNested pbNestedWrapper " id="pbBlock4410419"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4410429"> <div class="topMainSlider"> <div class="topMainSliderList"> <div class="topMainSliderItem"> <a href="https://www.wto.org/english/res_e/publications_e/gvc_dev_rep23_e.htm" > <img src="/library/English/images/pc_gvc2023_eg.jpg" alt="GVC REPORT 2023「RESILIENT AND SUSTAINABLE GVCS IN TURBULENT TIMES」"> </a> </div> <div class="topMainSliderItem"> <a href="/English/ResearchColumns.html" > <img src="/library/English/images/IDERC_PC.png" alt="IDE Research Columns"> </a> </div> <div class="topMainSliderItem"> <a href="/English/Library.html" > <img src="/library/English/images/library_PC.png" alt="Library"> </a> </div> <div class="topMainSliderItem"> <a href="/English/Researchers.html" > <img src="/library/English/images/researcher_PC.png" alt="Researchers"> </a> </div> <div class="topMainSliderItem"> <a href="/English/Publish.html" > <img src="/library/English/images/publication2023_PC.png" alt="publication"> </a> </div> </div></div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410431"> <div class="topInfoSliderSection"> <div class="topInfoSliderInner"> <div class="topInfoSliderItem"> <a href="/English/Publish/Reports/IDEPolicyBrief.html" > <div class="topInfoSliderImage"><img src="/library/English/images/PB.jpg" alt=""></div> <div class="topInfoSliderText"> <p class="infoTitle">IDE Policy Brief</p> <p class="infoDetail">The IDE Policy Brief series are designed to contribute to the debate on appropriate public policies for developing economies.</p> </div> </a> </div> <div class="topInfoSliderItem"> <a href="/English/Research/Net/overseas_network.html" > <div class="topInfoSliderImage"><img src="/library/English/images/NW.png" alt=""></div> <div class="topInfoSliderText"> <p class="infoTitle">Research Networks</p> <p class="infoDetail">IDE-JETRO is endeavoring to conclude agreements on research exchanges with outstanding research and educational institutions abroad.</p> </div> </a> </div> <div class="topInfoSliderItem"> <a href="/English/Publish/Periodicals/De.html" > <div class="topInfoSliderImage"><img src="/library/English/images/DE.jpg" alt=""></div> <div class="topInfoSliderText"> <p class="infoTitle">The Developing Economies</p> <p class="infoDetail">An English-language quarterly journal.</p> </div> </a> </div> </div></div> </div> <div class="sectionBlock01 pbNested pbNestedWrapper " id="pbBlock4410420"> <div class="pbNested " > <div class="sectionTopNews pbNested pbNestedWrapper " id="pbBlock4410421"> <div class="pbNested " > <div class="sectionTopNewsLeft pbNested pbNestedWrapper " id="pbBlock4410422"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4410423"> <div class="sectionTopNewsTitle"> <img src="/library/rn23/common/images/sectionHeader_news.png" alt="IDE-News"> </div> <div class="sectionTopNewsImage"> <img src="/library/rn23/common_pc/images/sectionHeaderImage_news.jpg"> </div> </div> </div> </div> <div class="sectionTopNewsRight pbNested pbNestedWrapper " id="pbBlock4410424"> <div class="pbNested " > <div class=" pbNested pbNestedWrapper " id="pbBlock4410425"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4396453"> <ul> <li> <span class="newsDate"> October 31, 2024</span> <a href="/English/New/2024/20241031.html"> Interview Video of Dr. ROMANOVA Valentyna (Research Fellow, IDE-JETRO) </a> </li> <li> <span class="newsDate"> August 1, 2024</span> <a href="/English/New/2024/20240801.html"> IDE-JETRO has extended the MOU with the International Institute for Asian Studies (IIAS) </a> </li> <li> <span class="newsDate">July 5, 2024</span> <a href="/Japanese/Research/Awards/2407_cheng.html"> Dr. CHENG Wenyin received the Fellows Prize for best flash-session presentation at the 30th IIOA conference </a> </li> <li> <span class="newsDate">July 4, 2024</span> <a href="/English/New/2024/20240704.html"> Chaiman KIMURA Fukunari Holds Meeting with the Chairman of the Indonesian Chamber of Commerce and Industry (KADIN). </a> </li> <li> <span class="newsDate">June 14, 2024</span> <a href="/English/New/2024/20240614.html"> IDE-JETRO has extended the MOU with the National Institute of International Strategy, Chinese Academy of Social Sciences (NIIS, CASS) </a> </li> <li> <span class="newsDate">April 1, 2024</span> <a href="/English/New/2024/20240401.html"> [Press Release] Notice of Change in President of IDE-JETRO </a> </li> <li> <span class="newsDate">March 25, 2024</span> <a href="/English/Library/New/20240325.html"> IDE Library: Advance Reservations Required for All Visits from April 8, 2024 </a> </li> </ul> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410426"> <div class="sectionTopNewsLinks"> <a href="/English/New.html">>>more</a> <a href="#">>>RSS</a> </div> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410427"> <div class="topGatewaySection"> <div class="topGatewayTitle"> <img src="/library/rn23/common/images/sectionHeader_gateway.png" alt="Gateway to Developing Country Research"> </div> <div class="topGatewayMain"> <div class="topGatewayInner"> <div class="topGatewayItem" id="gateway01"> <a href="/English/Research/Region/Asia.html"> <img src="/library/rn23/common_pc/images/gateway_en_01.png" alt="Asia"> </a> </div> <div class="topGatewayItem" id="gateway02"> <a href="/English/Research/Region/Africa.html"> <img src="/library/rn23/common_pc/images/gateway_en_02.png" alt="Africa"> </a> </div> <div class="topGatewayItem" id="gateway03"> <a href="/English/Research/Region/Mid_e.html"> <img src="/library/rn23/common_pc/images/gateway_en_03.png" alt="Middle East Central Asia"> </a> </div> <div class="topGatewayItem" id="gateway04"> <a href="/English/Research/Region/Latin.html"> <img src="/library/rn23/common_pc/images/gateway_en_04.png" alt="Latin America"> </a> </div> <div class="topGatewayItem" id="gateway05"> <a href="/English/Research/Topics/Eco.html"> <img src="/library/rn23/common_pc/images/gateway_en_05.png" alt="Economics"> </a> </div> <div class="topGatewayItem" id="gateway06"> <a href="/English/Research/Topics/Soc.html"> <img src="/library/rn23/common_pc/images/gateway_en_06.png" alt="Society"> </a> </div> <div class="topGatewayItem" id="gateway07"> <a href="/English/Research/Topics/Pol.html"> <img src="/library/rn23/common_pc/images/gateway_en_07.png" alt="Politics"> </a> </div> <div class="topGatewayItem" id="gateway08"> <a href="/English/Research/Topics/Law.html"> <img src="/library/rn23/common_pc/images/gateway_en_08.png" alt="Law"> </a> </div> </div> <div class="topGatewayText"> <p> Browse our researchers, publications and research projects </p> </div> </div> </div> </div> </div> </div> <div class="sectionTopEvents pbNested pbNestedWrapper " id="pbBlock4809624"> <div class="pbNested " > <div class="sectionTopEventsLeft pbNested pbNestedWrapper " id="pbBlock4809625"> <div class="sectionTopEventsTitle"> <h2><img src="/library/rn23/common/images/sectionHeader_event.png" alt="Events"></h2> </div> </div> <div class="sectionTopEventsRight pbNested pbNestedWrapper " id="pbBlock4809626"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4809627"> <ul> <li class="topEventsTypeSeminar"> <div class="topEventsArticleInner"> <span class="eventsDate">2024.12.19<strong style="color:#ee0000;">Accepting</strong></span> <span class="eventsTitle"> <a href="/English/Events/Sympo/241219.html">Sustainable Development and Value Chains: Rethinking from Human Rights and the Environment</a> </span> </div> </li> <li class="topEventsTypeSeminar"> <div class="topEventsArticleInner"> <span class="eventsDate">2024.12.06<strong style="color:#ee0000;">Accepting</strong></span> <span class="eventsTitle"> <a href="/English/Events/Seminar/241206.html">Mekong research and dialogue online workshop “How can “data and technology” enhance the governance of the Mekong River Basin? Insights from the MRC project and beyond ”</a> </span> </div> </li> <li class="topEventsTypeSeminar"> <div class="topEventsArticleInner"> <span class="eventsDate">2024.11.21</span> <span class="eventsTitle"> <a href="/English/Events/Seminar/241121.html">Seminar on the National Big Project of Indonesia “Challenges of Economic Cooperation in National Projects of the Global South: The Case of Indonesia's New Capital Construction”</a> </span> </div> </li> </ul> <div class="sectionTopEventsLinks"> <a href="/English/Events.html">>>more</a> <a href="/rss/english_event.xml">>>RSS</a> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4809628"> <div class="new_reports_title"><p>Reports</p></div> <ul class="new_reports_ul"> <li class="topEventsTypeReport"> <div class="topEventsArticleInner"> <span class="eventsDate">2024.03.06</span> <span class="eventsTitle"> <a href="/English/Events/Reports/20240306.html">Emerging powers in the 'Global South' and the restructuring of the world order</a> </span> </div> </li> </ul> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410432"> <div class="sectionTopNewbooks"> <div class="sectionTopNewbooksList"> <ul> <li> <a href="/English/Publish/Books/Jpn_eBooks/eBook/202411_01.html"> <img src="/library/Japanese/Publish/Books/Jpn_Books/eBook/images/202411_01.png" alt="Compilation of the 2015 Asia-Japan Transnational Interregional Input-Output Table" title="Compilation of the 2015 Asia-Japan Transnational Interregional Input-Output Table" /> <div class="sectionTopNewbooksTips"> <p>Compilation of the 2015 Asia-Japan Transnational Interregional Input-Output Table</p> </div> </a> </li> <li> <a href="/English/Publish/Periodicals/De/062_4.html"> <img src="/library/English/Publish/Periodicals/De/images/6204.png" alt="The Developing Economies" title="The Developing Economies" /> <div class="sectionTopNewbooksTips"> <p>The Developing Economies, Volume 62, Number 4(December 2024) </p> </div> </a> </li> <li> <a href="/English/Publish/Periodicals/De/062_3.html"> <img src="/library/English/Publish/Periodicals/De/images/6203.jpg" alt="The Developing Economies" title="The Developing Economies" /> <div class="sectionTopNewbooksTips"> <p>The Developing Economies, Volume 62, Number 3(September 2024) </p> </div> </a> </li> <li> <a href="/English/Publish/Periodicals/De/062_2.html"> <img src="/library/English/Publish/Periodicals/De/images/6202.png" alt="The Developing Economies" title="The Developing Economies" /> <div class="sectionTopNewbooksTips"> <p>The Developing Economies, Volume 62, Number 2(June 2024) </p> </div> </a> </li> <li> <a href="/English/Publish/Books/Eng_Books/Extpub/035.html"> <img src="/library/English/Publish/Books/Eng_Books/Extpub/images/035.jpg" alt="Global Value Chains and Industrial Development: Participation, Upgrading, and Connectivity" title="Global Value Chains and Industrial Development: Participation, Upgrading, and Connectivity" /> <div class="sectionTopNewbooksTips"> <p>Global Value Chains and Industrial Development: Participation, Upgrading, and Connectivity</p> </div> </a> </li> </ul> </div> <div class="sectionTopNewbooksRight"> <div class="sectionTopNewbooksTitle"> <h2><img src="/library/rn23/common/images/sectionHeader_books.png" alt="New Books"></h2> <p> <a href="/English/Publish/NewBooks.html">More publications</a> </p> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410434"> <div class="sectionTopNewreport"> <div class="sectionTopNewreportLeft"> <div class="sectionTopNewreportTitle"> <h2><img src="/library/rn23/common/images/sectionHeader_report.png" alt="New Reports"></h2> </div> </div> <div class="sectionTopNewreportRight"> <ul> <li class="topEventsTypeSeminar"> <span class="reportDate">2024.11.28</span> <span class="reportTitle"> <a href="/English/ResearchColumns/Columns/2024/keijiro_otsuka.html">How Can We Choose the Right Topics in Empirical Studies in Development Economics?</a> </span> </li> <li class="topEventsTypeSeminar"> <span class="reportDate">2024.11.27</span> <span class="reportTitle"> <a href="/English/ResearchColumns/Columns/2024/paul_glewwe.html">Teaching Coaching Can Increase Teachers’ Pedagogical Skills and Student Learning in Remote Rural Schools </a> </span> </li> <li class="topEventsTypeSeminar"> <span class="reportDate">2024.11.20</span> <span class="reportTitle"> <a href="/English/Publish/Periodicals/De/062_4/deve12410.html">How Institutional Quality Causes Financial Development?</a> </span> </li> <li class="topEventsTypeSeminar"> <span class="reportDate">2024.11.20</span> <span class="reportTitle"> <a href="/English/Publish/Periodicals/De/062_4/deve12411.html">Global Value Chain Participation and Firm Exit During COVID-19: Evidence from Emerging Countries</a> </span> </li> </ul> <div class="sectionTopNewreportLinks"> <a href="/rss/japanese_download.xml">>>RSS</a> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410430"> <div class="sectionTopMovies"> <div class="sectionTopMoviesList"> <ul> <li> <a href="https://www.youtube.com/watch?v=Q5txwHF-Vik"> <img src="https://img.youtube.com/vi/Q5txwHF-Vik/default.jpg" alt=""> <div class="sectionTopMoviesTips"> <p>Interview Video of Dr. ROMANOVA Valentyna (Research Fellow, IDE-JETRO)</p> </div> </a> </li> <li> <a href="https://www.youtube.com/watch?v=zUFeo77RtXI"> <img src="https://img.youtube.com/vi/zUFeo77RtXI/default.jpg" alt=""> <div class="sectionTopMoviesTips"> <p>【アジレポ】若手研究者がウズベキスタンのいまをお見せします!🇺🇿(土居海斗研究員)</p> </div> </a> </li> <li> <a href="https://www.youtube.com/watch?v=xwGXq4xNFys"> <img src="https://img.youtube.com/vi/xwGXq4xNFys/default.jpg" alt=""> <div class="sectionTopMoviesTips"> <p>ラオスってどんな国?―ラオスの基礎情報―(山田紀彦研究員)</p> </div> </a> </li> </ul> </div> <div class="sectionTopMoviesRight"> <div class="sectionTopMoviesTitle"> <h2><img src="/library/rn23/common/images/sectionHeader_movie.png" alt="Movies"></h2> <p> <a href="https://www.youtube.com/channel/UCaCuR_toRmt4Ww35m-at0Ow" target="_blank">YouTube Channel</a> </p> </div> </div></div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4410428"> <div class="sectionTopBottomlinks"> <div class="sectionTopbottomlinksItem"> <a href="https://ir.ide.go.jp/" target="_blank"> <div class="bottomlinksItemImage"> <img src="/library/rn23/common_pc/images/iconArride.png" alt=""> </div> <div class="bottomlinksItemText"> <div class="bottomlinksItemTitle"> <p>ARRIDE</p> </div> <div class="bottomlinksItemDetail"> <p>Institutional repository</p> </div> </div> </a> </div> <div class="sectionTopbottomlinksItem"> <a href="/English/Ideas.html"> <div class="bottomlinksItemImage"> <img src="/library/rn23/common_pc/images/iconIDEAS.png" alt=""> </div> <div class="bottomlinksItemText"> <div class="bottomlinksItemTitle"> <p>IDEAS</p> </div> <div class="bottomlinksItemDetail"> <p>IDE Advanced School</p> </div> </div> </a> </div> <div class="sectionTopbottomlinksItem"> <a href="https://www.jetro.go.jp/" target="_blank"> <div class="bottomlinksItemImage"> <img src="/library/rn23/common_pc/images/iconJETRO.png" alt=""> </div> <div class="bottomlinksItemText"> <div class="bottomlinksItemTitle"> <p>JETRO</p> </div> <div class="bottomlinksItemDetail"> <p>Japan External Trade Organization</p> </div> </div> </a> </div> <div class="sectionTopbottomlinksItem"> <a href="https://d-arch.ide.go.jp/RIN/" target="_blank"> <div class="bottomlinksItemImage"> <img src="/library/rn23/common_pc/images/iconRIN.png" alt=""> </div> <div class="bottomlinksItemText"> <div class="bottomlinksItemTitle"> <p>RIN</p> </div> <div class="bottomlinksItemDetail"> <p>Research Institutes Network</p> </div> </div> </a> </div> </div> </div> </div> </div> </div> </div> </div></div></div><div id="footerArea" class="pbFooterArea"> <div id="area4" class="pbArea "> <div class="pbNested " > <div class=" pbNested pbNestedWrapper " id="pbBlock72329"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock4396450"> <footer id="footerEN"> <div class="footerInner"> <div class="footerLeftWrapper"> <div class="footerAbout"> <div class="footerLogo"> <a href="/English.html"><img title="IDE-JETRO ジェトロ・アジア経済研究所" alt="IDE-JETRO ジェトロ・アジア経済研究所" src="/library/common/images/logo-footer.png"></a> </div> <div class="footerAdress"> <p> Institute of Developing Economies<br> Japan External Trade Organization (JETRO)<br> JCN (Japan Corporate Number) 2010405003693<br> 3-2-2 Wakaba, Mihama-ku, Chiba-shi, Chiba, 261-8545, Japan </p> </div> <div class="footerCopyright"> <p> Copyright (C) JETRO. All rights reserved. </p> </div> </div> </div> <div class="footerRIghtWrapper"> <div class="footerSNS"> <ul> <li> <a href="https://twitter.com/ide_jetro_eng" target="_blank"> <img src="/library/rn23/common/images/footer-twitter.png" alt="Twtter"> </a> </li> <li> <a href="https://www.youtube.com/channel/UCaCuR_toRmt4Ww35m-at0Ow" target="_blank"> <img src="/library/rn23/common/images/footer-youtube.png" alt="YouTube"> </a> </li> <li> <a href="/rss/english.xml" target="_blank"> <img src="/library/rn23/common/images/footer-rss.png" alt="RSS"> </a> </li> </ul> </div> <div class="footerLinks"> <ul> <li> <a href="/English/Info/Direct.html">Access</a> </li> <li> <a href="/English/Recruit.html">Fellowships / Job Openings</a> </li> <li> <a href="https://www.jetro.go.jp/disclosure/" target="_blank" rel="noopener">Disclosure</a> </li> </ul> <ul> <li> <a href="/English/sitemap.html">Sitemap</a> </li> <li> <a href="/English/legal.html">Term of Use</a> </li> <li> <a href="/English/browser.html">System Requirements</a> </li> </ul> <ul> <li> <a href="/English/privacy.html">Privacy Policy</a> </li> <li> <a href="/English/Procure.html" target="_blank">Procurement</a> </li> <li> <a href="/English/Info/Inquiries.html">Inquiries</a> </li> </ul> </div> </div> </div> </footer> </div> <div class="pbNested pbNestedWrapper " id="pbBlock4396456"> <div class="use_cookie_footer" style="display: none;" > <p class="use_cookie_text"> The Institute of Developing Economies website uses cookies to provide social media features and to collect access logs on the site for the purpose of enhancing user experience. When you click “Accept” button, you are agreeing to let us collect your access logs using cookies. Selecting “Reject cookies” limits social media features within the site. Regarding the use of cookies, please refer to " Privacy Policy."<br> <a href="https://www.ide.go.jp/English/privacy.html" target="_blank">Privacy Policy</a><br> <span class="use_cookie_button"> <input type="button" class="agree" name="agree" value="Accept"> <input type="button" class="disagree" name="disagree" value="Reject cookies"> </span> </p> </div> </div> </div> </div> </div> </div> </div></div> </body> </html> <!-- cache datetime:2024/12/04 00:25:05, cache file name:English.html -->