CINXE.COM

BOPビジネス - EU - 海外ビジネス情報 - ジェトロ

<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <link rel="canonical" href="https://www.jetro.go.jp/themetop/bop/europe/eu/"> <link rel="stylesheet" type="text/css" href="/view_css.php?pageId=17742&amp;revision=0&amp;mode=0&amp;noTag=1&amp;blockId=0&amp;alias=themetop" /><link rel="stylesheet" type="text/css" href="/publis.css" /><meta name="keywords" content="" /> <meta name="description" content="" /> <title>BOPビジネス - EU - 海外ビジネス情報 - ジェトロ</title> <script > <!-- var pbGlobalAliasBase = '/'; //--> </script> <script src="/public.js"></script> <script > <!--12--> </script> <script > <!----> </script> <script > <!----> </script> <script > // default header start </script> <script src="/library/new/common/js/jquery-3.6.1.min.js"></script> <script src="/library/new/common/js/jquery-migrate-3.4.0.js"></script> <script > // default header end </script> <script>var isSP = false; 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'); }, }).done(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").length !== 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 == 'date_koukoku_date_result'){ if(a['pageItems'][roleName] != undefined){ if(a['pageItems'][roleName][roleName] != "" && a['pageItems'][roleName][roleName] != undefined){ value = "<a href=\"" + a['url'] + "#result\" class=\"withdot\">結果</a>" } 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\" class=\"withdot\">結果</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 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'); }, }).done(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').on('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> <style type=text/css> .jtrModalWindowCountry { padding-top: 3px!important; margin-left: -4px!important; } .jtrModalWindowCountry div.jtrModalTopCountry { background: url(/library/new/top/img/bg_modalWindow_top_cntry.png) no-repeat top left; height: 9px; } .jtrModalWindowCountry div.elem_text_list { background: url(/library/new/top/img/bg_modalWindow_cent_cntry.png) repeat-y top left; padding-top: 13px; padding-left: 20px; } .jtrModalWindowCountry div.jtrModalBtmCountry { background: url(/library/new/top/img/bg_modalWindow_btm_cntry.png) no-repeat bottom left; height: 9px; } </style> <script> jQuery(function($) { $(".xilsm_btn_area .xilsm_tab22304593").each(function() { var obj = $(this); $(".xilsm_tab22304593").parents("[id^=pbBlock]").each(function(i) { $(this).css("overflow","visible"); }); var afurl = "?f=" + $('#xilsm_formUrl22304593').val(); jQuery.ajax({ type: 'GET', url: '/view_interface.php' + afurl, dataType: 'html', data: { blockId: 25431883, className: 'XiLocalSlideMenu', shareid: $(this).data('shareid'), pageid: 17742, } }).done(function(ret){ obj.next().find('.xilsm_body22304593').html(ret); obj.next().on('click', function(e) { if ($(this).find("ul.worldArea > li > a + .worldArea_content").length > 0) { var wflg = true; $(this).find("ul.worldArea > li > a + .worldArea_content").each(function(i) { if ($.contains($(this)[0], e.target)) { wflg = false; } }); if (wflg) { $(this).find("ul.worldArea > li > a + .worldArea_content").stop(true, true).fadeOut('fast'); } } if ($(this).find("ul > li.balloon > a + .balloon_content").length > 0) { var bflg = true; $(this).find("ul > li.balloon > a + .balloon_content").each(function(i) { if ($.contains($(this)[0], e.target)) { bflg = false; } }); if (bflg) { $(this).find("ul > li.balloon > a + .balloon_content").stop(true, true).fadeOut('fast'); } } }); obj.next().find("ul.worldArea > li > a").on('click', function(event) { if($(this).next(".worldArea_content").length) { if (!$(this).next(".worldArea_content").is(':visible')) { obj.next().find("ul.worldArea > li > a + .worldArea_content").stop(true, true).fadeOut('fast'); $(this).next(".worldArea_content").stop(true, true).fadeIn('fast'); var first = firstLastFocus($(this).next(".worldArea_content"),'first'); if ($(first).length > 0) { $(first).on('focus'); } } else { $(this).next(".worldArea_content").stop(true, true).fadeOut('fast'); } } }); if (obj.next().find("ul.worldArea > li > a + .worldArea_content").length > 0) { obj.next().find("ul.worldArea > li > a + .worldArea_content").each(function(){ var last = firstLastFocus($(this),'last'); var pernt = $(this); if ($(last).length > 0) { $(last).on('keydown', function(event) { if (event.keyCode !== 9) { return; } if (event.target === last && !event.shiftKey) { pernt.stop(true, true).fadeOut('fast'); return ; } }); } }); } obj.next().find('.xilsm_clearbc form').on('submit', function() { $.ajax({ type: 'GET', url: '/view_interface.php?className=XiClearBreadcrumb&mode=clearbc' + "&ut=" + parseInt((new Date)/1000) }).done(function(data) { return true; }); }); obj.next().find("ul > li.balloon > a").on('click', function(event) { if($(this).next(".balloon_content").length) { if (!$(this).next(".balloon_content").is(':visible')) { obj.next().find("ul > li.balloon > a + .balloon_content").stop(true, true).fadeOut('fast'); $(this).next(".balloon_content").stop(true, true).fadeIn('fast'); var first = firstLastFocus($(this).next(".balloon_content"),'first'); if ($(first).length > 0) { $(first).on('focus'); } } else { $(this).next(".balloon_content").stop(true, true).fadeOut('fast'); } } }); if (obj.next().find("ul > li.balloon > a + .balloon_content").length > 0) { obj.next().find("ul > li.balloon > a + .balloon_content").each(function(){ var last = firstLastFocus($(this),'last'); var pernt = $(this); if ($(last).length > 0) { $(last).on('keydown', function(event) { if (event.keyCode !== 9) { return; } if (event.target === last && !event.shiftKey) { pernt.stop(true, true).fadeOut('fast'); return ; } }); } }); } obj.next().find("a.pbOpenNewWindow").each(function(i) { var a = jQuery(this); if (! a.data('_pbnw')) { a.data('_pbnw', true); a.click(function() { if (this.href) { open(this.href); return false; } }); } }); // obj.next().find("a").on('click', function() { // breadcrumbses; // }); // when click link, close worldArea_content area. { var a = obj.next().find("ul.worldArea > li > a"); a.on('click', function() { if($(this).not(".xilsm_active_link").length) { $(this).addClass("xi_exclusion_link"); return false; } }); } obj.next().find("ul > li.balloon > a").on('click', function(e) { if($(this).not(".xilsm_active_link").length) { $(this).addClass("xi_exclusion_link"); return false; } }); }); }); $(".xilsm_btn_area .xilsm_tab22304593").on('click', function() { if ($(this).next().is(':visible')) { lsm_close($(this)); } else { lsm_open($(this)); } }); $(".xilsm_btn_area .xilsm_tab22304593").next().find(".xilsm_closeBtn").on('click', function() { lsm_close($(this).parents('div.xilsm_slidemenu_body').prev()); $(".xilsm_btn_area .xilsm_tab22304593 a").on('focus'); }); if ($('#xilsm_fixedbox22304593').length >= 1) { var box = $("#xilsm_fixedbox22304593"); var boxTop = box.offset().top; var boxHeight = box.height(); var fixed_flg = false; $(window).on('scroll', function() { if ($(window).scrollTop() >= boxTop) { if (fixed_flg == false ) { box.addClass("xilsm_fixed"); box.find("#bg_category_title > .elem_pic_text_block .elem_paragraph").hide(); box.find("#bg_category_title > .elem_pic_text_block .box_pic").hide(); box.find(".xilsm_themeindustry_none").show(); $('.xilsm_fixedbox_area').css('height',boxHeight); fixed_flg = true; } } else { if (fixed_flg == true ) { if (box.find(".xilsm_themeindustry_none").length >= 1) { $(".xilsm_btn_area .xilsm_tab22304593").each(function() { lsm_close($(this)); }); } box.removeClass("xilsm_fixed"); box.find("#bg_category_title > .elem_pic_text_block .elem_paragraph").show(); box.find("#bg_category_title > .elem_pic_text_block .box_pic").show(); box.find(".xilsm_themeindustry_none").hide(); $('.xilsm_fixedbox_area').css('height',"auto"); fixed_flg = false; } } }); } var hashTagTargetOffset = $("#xilsm_fixedbox22304593").height(); $('#mainArea a[href*="#"]').each(function(){ if ($(this).closest('.xilsm_fixedbox_area').length > 0) { return; } $(this).on('click', function(e) { var url = parent != undefined ? parent.location.href : location.href; var a = $(this).attr('href'); var target = $(this).attr('target'); if (target !== undefined) { return; } var hrefurl = a.substring(0, a.indexOf("#")); if (hrefurl != '') { if (url.indexOf(hrefurl) == -1) { window.location.href = a; } } var from_id = $(this.hash), from_name = $('[name=' + this.hash.slice(1) + ']'); var target = from_id.length ? from_id : from_name.length ? from_name : false; if (target ) { var offset = target.offset().top - hashTagTargetOffset; if(offset > 0) { setTimeout(function() { window.scrollTo(0, offset); return false; }, 10); } } }); $(this).on('load', function(e) { var url = parent != undefined ? parent.location.href : location.href; if (url.indexOf("#") != -1) { var sharp = url.substring(url.indexOf("#")); var target = $(sharp); var offset = target.offset().top - hashTagTargetOffset; if (offset > 0) { window.scrollTo(0, offset); } } }); }); $(document).on('click', function(e) { $(".xilsm_btn_area .xilsm_tab22304593").each(function(i) { if (!$.contains($(this).next()[0], e.target) && !$.contains($(this)[0], e.target)) { if ($(this).next().is(':visible')) { lsm_close($(this)); } } }); }); function firstLastFocus(obj,option) { var chains = []; obj.find('a,input[type="text"]').each(function(){ chains.push(this); }); var first = ''; var last = ''; var max = 0; first = chains[0]; last = chains[chains.length-1]; for(el in chains){ if ($(chains[el]).attr('tabindex') != 0 || $(chains[el]).attr('tabindex') != -1) { var tabIndex = parseInt($(chains[el]).attr('tabindex')); if (tabIndex == 1) { first = chains[el]; } if (tabIndex > max) { max = $(chains[el]).attr('tabindex'); last = chains[el]; } } } if (option == 'first') { return first; } else if (option == 'last') { return last; } } function lsm_open(obj) { obj.find(".xilsm_close_ic").removeClass("xilsm_batsu"); obj.find(".xilsm_close_ic").attr("alt", "閉じる"); obj.addClass("xilsm_slidemenu_tab_active"); obj.next().stop(true, true).fadeIn('fast'); $('.xilsm_slidemenu_body').find('a,input[type="text"]').tabChain({onReadyFocus:true}); if ($(".xilsm_btn_area .xilsm_tab22304593").length > 1) { $(".xilsm_btn_area .xilsm_tab22304593").removeClass("xilsm_slidemenu_tab_notactive"); $(".xilsm_btn_area .xilsm_tab22304593").each(function(i) { if ($(this)[0] != obj[0]) { $(this).addClass("xilsm_slidemenu_tab_notactive"); } }); } } function lsm_close(obj) { obj.find(".xilsm_close_ic").addClass("xilsm_batsu"); obj.find(".xilsm_close_ic").attr("alt", "開く"); obj.removeClass("xilsm_slidemenu_tab_active"); obj.next().stop(true, true).fadeOut('fast'); if ($(".xilsm_btn_area .xilsm_tab22304593").length > 1) { var cnt = 0; $(".xilsm_btn_area .xilsm_tab22304593").each(function(i) { if ($(this).next().is(':visible')) { cnt++; } }); if (cnt == 1) { $(".xilsm_btn_area .xilsm_tab22304593").removeClass("xilsm_slidemenu_tab_notactive"); } } } }); $(function(){ $(window).on('resize', function(){ $("body").toggleClass("oversize", (document.body.clientWidth - window.innerWidth > 0)) }); $(window).trigger('resize'); }); </script> <script type='text/javascript' src='/scripts/jquery.easytabs.min.js'></script> <link href='/scripts/easytabs.css' rel="stylesheet" type="text/css" /> <style> .modal_content03:focus { outline:none; } .modal_content04:focus { outline:none; } .modal_content05:focus { outline:none; } .modal_content06:focus { outline:none; } .modal_content07:focus { outline:none; } .modal_content08:focus { outline:none; } .modal_content09:focus { outline:none; } .modal_content10:focus { outline:none; } </style> <script src="https://cdn-apac.onetrust.com/consent/729b1220-b19b-43de-997b-d79e25ce8ae4/OtAutoBlock.js" ></script> <script src="https://cdn-apac.onetrust.com/scripttemplates/otSDKStub.js" data-document-language="true" charset="UTF-8" data-domain-script="729b1220-b19b-43de-997b-d79e25ce8ae4" ></script> <script > function OptanonWrapper() { } </script> <script > window.dataLayer = window.dataLayer || []; (function(){ var url = '/view_interface.php?className=XiMyPageAutoLogin&t=' + (+new Date()); var path = location.pathname; $.ajax({ type: "POST", url : url, data: { 'url': path }, dataType : 'json', 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'); } }).done(function(res) { window.sessionStorage.setItem("autologin", true); if (res.member_login !== undefined ) { dataLayer.push({"member_login": res.member_login}); } if (res.member_login !== undefined ) { dataLayer.push({"mypage_login_id": res.mypage_login_id}); } if (res.reflesh !== undefined) { if (res.reflesh) { location.reload(); } } }).fail(function(XMLHttpRequest, textStatus, errorThrown) { }); })(); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-P8J5HF');</script> <!-- End Google Tag Manager --> <script> pdfIconFilter = function() { var url = parent != undefined ? parent.location.href : location.href; if (url.match(/\/(?:marketingtop|ipnewstop|ipinfotop|worldtop|themetop|industrytop|world\/marketing|world\/europe\/ip|world\/n_america\/us\/ip|world\/asia\/asean\/ip|world\/asia\/sg\/ip|world\/asia\/idn\/ip|world\/asia\/in\/ip|world\/asia\/in\/ip\/archive|world\/asia\/vn\/ip|world\/asia\/th\/ip|world\/asia\/ph\/ip|world\/asia\/my\/ip|world\/africa\/ip|world\/asia\/cn\/ip|world\/asia\/cn\/ip\/report|world\/asia\/kr\/ip|biz\/trendreports)(?:\/|\.html)/)) { $('a').each(function() { if ($(this).html().match(/<PDF>/)) { $(this).addClass("pdf-link-gtm"); } $(this).html($(this).html().replace('<PDF>', '&nbsp<img src="/library/icons/icon_pdf.gif" alt="PDF file" width="14" height="16">&nbsp;')); }); } } $(function() { $('a').on('click', breadcrumbses); }); var breadcrumbses = function(e) { var a = $(this).attr('href'); var tmpa = ""; var isJs = false; if (a === undefined) return; if(a.indexOf('javascript:void(0)') != -1 ) { if (parFormAction = $(this).parents('form').attr('action')) { tmpa = a; a = parFormAction; isJs = true; } } var at = $(this).attr('target'); if (window.sessionStorage.getItem("autologin") == null) { $.ajax({ type: "POST", url: '/view_interface.php?className=XiMyPageAutoLogin&t=' + (+new Date()), data: { 'url': a }, dataType: "json", timeout:10000, 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'); } }).done(function(res) { window.sessionStorage.setItem("autologin", true); }); } if (isJs) { a = tmpa; } if(a != undefined) { if(a.indexOf('javascript:void(0)') != -1 ) return; if(a.indexOf('#') != -1 ) return; if(a.indexOf('jetro_open_win') != -1 ) return; var url = parent != undefined ? parent.location.href : location.href; var className = $(this).parent().attr('class') != undefined ? $(this).parent().attr('class') : ''; var blankc = $(this).attr('class') != undefined ? $(this).attr('class') : ''; if (blankc.indexOf('xi_exclusion_link') != -1 ) return; if (!url.match(/\/$/i)) { url += '/'; } if(!a.match(/\/.*top\//i)) { if ($("[data-xitagmain]").data("xitagmain") != undefined) { url = '/' + $("[data-xitagmain]").data("xitagmain") + '/'; if ($(this).parents("[data-xitagsub]").data("xitagsub") != undefined) { url += $(this).parents("[data-xitagsub]").data("xitagsub") + "/"; } } } windows.location.href = a; } } </script><meta name="jetro-article_id" content="_17742" data-name="article_id" data-value="_17742"> <meta name="jetro-publicize_date" content="2024-11-01" data-name="publicize_date" data-value="2024-11-01"> <script> /* $(function() { var elemCategoryTitle = $('#elem_category_title'); var url = parent != undefined ? parent.location.href : location.href; if (!url.match(/index\.php/)) { if (!url.match(/\/en\//)) { if (elemCategoryTitle.hasClass('title_p')) { var p = elemCategoryTitle.parent('div'); if (p.attr('id') != 'bg_category_title') { elemCategoryTitle.after('<div id="bg_category_title"></div>'); elemCategoryTitle.remove(); $('#bg_category_title').append(elemCategoryTitle); } } if ($('#elem_local_navi').length == 0) { if ( $('div.xilsm_btn_area').length == 0 ) { $('#bg_category_title').after('<div id="elem_local_navi"></div>'); } } pdfIconFilter(); } } }); */ </script> <meta property = "og:title" content="BOPビジネス - EU - 海外ビジネス情報" /> <meta property = "og:type" content="Website" /> <meta property = "og:image" content="https://www.jetro.go.jp/library/images/sns/logo1200_630.png" /> <meta property = "og:site_name" content="ジェトロ" /> <meta property = "og:url" content="https://www.jetro.go.jp/themetop/bop/europe/eu/" /> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="https://www.jetro.go.jp/library/images/sns/logo230_230.jpg"> <script > // default header start </script> <link rel="stylesheet" type="text/css" href="/library/init/css/publis4-default.css" /> <link rel="apple-touch-icon" type="image/png" href="/library/icons/touch-icon-180x180.png" sizes="180x180"> <link rel="icon" type="image/png" href="/library/icons/touch-icon-192x192.png" sizes="192x192"> <link rel="stylesheet" type="text/css" href="/library/new/common/asset_css/240109/layout.css" /> <link rel="stylesheet" type="text/css" href="/library/new/common/asset_css/241003/style.css" /> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,600,700,300" /> <link rel="stylesheet" type="text/css" href="/library/new/common/asset_css/221127/print.css" /> <script > <!----> </script> <script > <!----> </script> <script > // default header end </script> <link rel="stylesheet" type="text/css" href="/library/new/local/171213/country_narrow.css" /> </head> <body class="layout-C layout-ja"> <div id="page" class="pbPage"> <div id="headerArea" class="pbHeaderArea"> <div id="area1" class="pbArea "> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock12403553"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-P8J5HF" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <noscript><p>このページではjavascriptを使用しています。</p></noscript> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17442266"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock1102"> <div class="pbNested " > <div class=" pbNested pbNestedWrapper " id="pbBlock23505383"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock23504554"> <div id="Header" class="jp_header"> <div class="area clearfix"> <div class="nav_box"> <div class="hdBox"> <div id="Headlink"> <ul> <li class="about"> <a href="/jetro/">ジェトロについて</a> </li> <li class="contact"> <a href="/contact/">お問合せ</a> </li> <li class="global"> <a href="/en/" lang="en">Global Site</a> </li> <li class="ide end"> <a href="http://www.ide.go.jp/" target="_blank" rel="noopener">アジア経済研究所<img style="margin-top: -2px;" src="/library/icons/icon_external_b.png" width="16" height="14" alt="外部サイトへ、新しいウィンドウで開きます" title=""></a> </li> </ul> </div> <div id="myPageArea"> <a href="/mypage/"> <p> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewbox="0 0 24 24" style="width: 20px;"> <path style="fill: #006EC8;" d="M17.8,6.3c0,3.2-2.6,5.8-5.8,5.8S6.3,9.4,6.3,6.3S8.8,0.5,12,0.5S17.8,3.1,17.8,6.3z M0.5,21.6 c0-3.8,7.7-5.9,11.5-5.9s11.5,2.1,11.5,5.9v1.9h-23V21.6z"></path></svg><span>マイページ</span> </p></a> </div> <div id="Search"> <form id="cse-search-box" action="/search_result.html" name="cse-search-box"> <label for="sitesearch">サイト内検索</label> <input type="text" title="" value="" name="q" id="sitesearch" style="width: 120px;"> <input type="image" alt="検索実行" src="/library/new/common/img/bt_search.gif" style="margin-left: -5px;"> <input type="hidden" name="cx" value="10478482079135973694:2x0uodychjs"> <input type="hidden" name="ie" value="UTF-8"> <input type="hidden" name="oe" value="UTF-8"> </form> </div> </div> </div> <div class="logo_box"> <p id="Logo"> <a href="/"><img title="" src="/library/new/common/img/bt_logo.jpg" alt="JETRO 日本貿易振興機構(ジェトロ)"></a> </p> <div class="jtrGrobalMenu"> <a id="keyboard_operation" href="javascript:void(0);">キーボードでメニューを操作する場合はこちらを実行してください。スムーズに閲覧できるようにマウスの動きを抑制します。</a> <ul> <li class="jtrGrobalMenuOpen"> <div class="gnav_btn"> <a href="#">海外ビジネス情報<img src="/library/icons/icon_dropmenu_open.png" alt="メニューを開く" title=""></a> </div> <div style="z-index: 10; position: absolute; margin-right: -480px;" class="gnav_content"> <div class="gnav_content01"> <div class="section_wrap2"> <div class="section"> <div class="in_section"> <div class="elem_heading_lv3 pt0"> <h3> 海外ビジネス情報 </h3> </div> <div class="elem_paragraph pt0"> <p class="text"> ジェトロの海外ネットワークを通じて収集した最新のビジネスニュース・レポートなどをお届けしています。 </p> </div> <p class="btnMore"> <a href="/biz/">新着情報を見る</a> </p> <div class="elem_paragraph pt30"> <p class="text"> 各国・地域の基礎情報や制度をご覧になりたい場合は「国・地域別情報」をご覧ください。 </p> </div> <div class="elem_text_list"> <ul> <li> <a href="/world/">国・地域別一覧</a> </li> </ul> </div> <div id="insertarea01" class="insertarea"></div> </div> </div> <div class="section"> <div class="in_section"> <div class="sec_column"> <dl class="border_btm"> <dt> ビジネスニュース・レポート </dt> <dd> <a href="/biznews/">ビジネス短信</a> </dd> <dd> <a href="/biz/areareports/">地域・分析レポート</a> </dd> <dd> <a href="/world/reports/">調査レポート</a> </dd> <dd> <a href="/tv/">国際ビジネス情報番組「世界は今」</a> </dd> <dd> <a href="/biz/seminar/">ウェビナー/WEBセミナー</a> </dd> <dd> <a href="/world/gtir/">世界貿易投資報告</a> </dd> <dd> <a href="/world/gtirs.html">主要国・地域の貿易投資年報</a> </dd> <dd> <a href="/biz/trendreports/">海外発トレンドレポート</a> </dd> <dd> <a href="/world/marketing/">マーケティング情報</a> </dd> <dd> <a href="/publications/">出版物</a> </dd> </dl> <dl> <dt> 各国の制度・手続き </dt> <dd> <a href="/world/trade.html">輸出入に関する基本的な制度</a> </dd> <dd> <a href="/world/invest.html">海外進出に関する基本的な制度</a> </dd> <dd> <a href="/world/qa/">貿易・投資相談Q&amp;A</a> </dd> <dd> <a href="/theme/export/tariff/">世界各国の関税率</a> </dd> <dd> <a href="/world/search/cost.html">投資コスト比較</a> </dd> </dl> </div> <div class="sec_column" style="width: 260px;"> <dl class="border_btm pb_5"> <dt> 各国の基本情報 </dt> <dd> <a href="/world/statistics.html">統計ナビ</a> </dd> </dl> <dl class="border_btm pb5"> <dt> イベント情報 </dt> <dd> <a href="/events/">イベント一覧</a> </dd> <dd> <a href="/events/tradefair.html">ジェトロが支援する展示会・商談会</a> </dd> </dl> <dl class="pb10"> <dt> 見本市・展示会情報 </dt> <dd> <a href="/j-messe/">世界の見本市・展示会情報(J-messe) <img title="" alt="" src="/library/new/common/img/j-messe.jpg"></a> </dd> </dl> <dl class="pb10"> <dt> 引き合い案件情報 </dt> <dd> <a href="https://e-venue.jetro.go.jp/bizportal/s/?language=jp">e-Venue<span class="font12">(国際ビジネスマッチングサイト) </span><img title="" alt="" src="/library/new/common/img/e-venue_jp.gif" width="280"></a> </dd> <dd> <a href="/gov_procurement/">政府公共調達データベース</a> </dd> </dl> </div> </div> <div id="insertarea02" class="insertarea"></div> </div> </div> </div> </div> </li> <li class="jtrGrobalMenuOpen"> <div class="gnav_btn border_rigth"> <a href="#">サービス<img src="/library/icons/icon_dropmenu_open.png" alt="メニューを開く" title=""></a> </div> <div class="gnav_content" style="position: absolute; margin-right: -480px;"> <div class="gnav_content02"> <div class="section_wrap2"> <div class="section"> <div class="in_section"> <div class="elem_heading_lv3 pt0"> <h3> ジェトロのサービス </h3> </div> <div class="elem_paragraph"> <p class="text"> 各種サービスメニューを取り揃えて日本企業の皆様の海外ビジネス展開を支援します。 </p> <p class="btnMore"> <a href="/services/">詳細を見る</a> </p> </div> <div id="insertarea03" class="insertarea"></div> </div> </div> <div class="section"> <div class="in_section" style="column-count: 2;"> <ul> <li> <a href="/services/list.html">支援サービス一覧</a> <ul> <li> <a href="/services/advice.html">貿易投資相談</a> </li> <li> <a href="/services/quick_info.html">海外ミニ調査サービス</a> </li> <li> <a href="/services/briefing.html">海外ブリーフィングサービス</a> </li> <li> <a href="/db_corner/">ビジネスデータベースコーナー(東京)</a> </li> </ul> </li> <li> <a href="/events/">イベント情報(セミナー・展示会)</a> <ul> <li> <a href="/events/inform/">お客様情報の登録・確認・変更のご案内</a> </li> </ul> </li> <li> <a href="/elearning/">貿易実務オンライン講座</a> </li> <li> <a href="/mail.html">メールマガジン</a> </li> <li> <a href="/members/">ジェトロ・メンバーズ</a> </li> <li> <a href="/publications/">出版物</a> </li> <li> <a href="/case_study/">ジェトロ活用事例</a> </li> <li> <a href="/jetro/topics/">ジェトロ・トピックス</a> </li> </ul> <div class="elem_separate"> <hr> </div> <ul> <li> <a href="/services/export_guide/">輸出支援</a> </li> <li> <a href="/services/fdi_guide/">海外進出支援</a> </li> <li> <a href="/invest.html">対日投資</a> </li> <li> <a href="/services/contact.html">お問い合わせ窓口一覧</a> </li> </ul> </div> </div> <div id="insertarea04" class="insertarea"></div> </div> </div> </div> </li> <li class="jtrGrobalMenuOpen"> <div class="gnav_btn"> <a href="#">国・地域別に見る<img src="/library/icons/icon_dropmenu_open.png" alt="メニューを開く" title=""></a> </div> <div class="gnav_content" style="position: absolute; margin-right: -480px;"> <div class="gnav_content03"> <div class="section_wrap2"> <div class="section"> <div class="in_section"> <div class="elem_heading_lv3 pt0"> <h3> <a href="/world/">国・地域別に見る</a> </h3> </div> <div class="elem_paragraph"> <ul id="gcselect"> <li class="current"> <a href="#gc_asia">アジア</a> </li> <li> <a href="#gc_oceania">オセアニア</a> </li> <li> <a href="#gc_n_america">北米</a> </li> <li> <a href="#gc_cs_america">中南米</a> </li> <li> <a href="#gc_europe">欧州</a> </li> <li> <a href="#gc_russia_cis">ロシア・中央アジア等</a> </li> <li> <a href="#gc_middle_east">中東</a> </li> <li> <a href="#gc_africa">アフリカ</a> </li> <li> <a href="/world/japan/">日本</a> </li> </ul> </div> <div class="insertarea" id="insertarea05"></div> </div> </div> <div class="section"> <div id="gc_asia" class="sectionbox" style="display: block;"> <div class="in_section"> <div class="sec_column"> <ul class="vcol2"> <li> <a href="/world/asia/">アジア全体</a> </li> <li> <a href="/world/asia/asean/">ASEAN</a> </li> <li> <a href="/world/asia/in/">インド</a> </li> <li> <a href="/world/asia/idn/">インドネシア</a> </li> <li> <a href="/world/asia/kr/">韓国</a> </li> <li> <a href="/world/asia/kh/">カンボジア</a> </li> <li> <a href="/world/asia/sg/">シンガポール</a> </li> <li> <a href="/world/asia/lk/">スリランカ</a> </li> <li> <a href="/world/asia/th/">タイ</a> </li> <li> <a href="/world/asia/tw/">台湾</a> </li> <li> <a href="/world/asia/cn/">中国</a> </li> <li> <a href="/world/asia/bd/">バングラデシュ</a> </li> <li> <a href="/world/asia/pk/">パキスタン</a> </li> <li> <a href="/world/asia/ph/">フィリピン</a> </li> <li> <a href="/world/asia/vn/">ベトナム</a> </li> <li> <a href="/world/asia/hk/">香港</a> </li> <li> <a href="/world/asia/my/">マレーシア</a> </li> <li> <a href="/world/asia/mm/">ミャンマー</a> </li> <li> <a href="/world/asia/mn/">モンゴル</a> </li> <li> <a href="/world/asia/la/">ラオス</a> </li> </ul> </div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_oceania" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/oceania/">オセアニア全体</a> </li> <li> <a href="/world/oceania/au/">オーストラリア</a> </li> <li> <a href="/world/oceania/nz/">ニュージーランド</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_n_america" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/n_america/">北米全体</a> </li> <li> <a href="/world/n_america/ca/">カナダ</a> </li> <li> <a href="/world/n_america/us/">米国</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_cs_america" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/cs_america/">中南米全体</a> </li> <li> <a href="/world/cs_america/ar/">アルゼンチン</a> </li> <li> <a href="/world/cs_america/uy/">ウルグアイ</a> </li> <li> <a href="/world/cs_america/cu/">キューバ</a> </li> <li> <a href="/world/cs_america/co/">コロンビア</a> </li> <li> <a href="/world/cs_america/cl/">チリ</a> </li> <li> <a href="/world/cs_america/py/">パラグアイ</a> </li> <li> <a href="/world/cs_america/br/">ブラジル</a> </li> <li> <a href="/world/cs_america/ve/">ベネズエラ</a> </li> <li> <a href="/world/cs_america/pe/">ペルー</a> </li> <li> <a href="/world/cs_america/mx/">メキシコ</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_europe" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul class="vcol2"> <li> <a href="/world/europe/">欧州全体</a> </li> <li> <a href="/world/europe/eu/">EU</a> </li> <li> <a href="/world/europe/ie/">アイルランド</a> </li> <li> <a href="/world/europe/it/">イタリア</a> </li> <li> <a href="/world/europe/ua/">ウクライナ</a> </li> <li> <a href="/world/europe/uk/">英国</a> </li> <li> <a href="/world/europe/nl/">オランダ</a> </li> <li> <a href="/world/europe/at/">オーストリア</a> </li> <li> <a href="/world/europe/ch/">スイス</a> </li> <li> <a href="/world/europe/se/">スウェーデン</a> </li> <li> <a href="/world/europe/es/">スペイン</a> </li> <li> <a href="/world/europe/sk/">スロバキア</a> </li> <li> <a href="/world/europe/cz/">チェコ</a> </li> <li> <a href="/world/europe/dk/">デンマーク</a> </li> <li> <a href="/world/europe/de/">ドイツ</a> </li> <li> <a href="/world/europe/hu/">ハンガリー</a> </li> <li> <a href="/world/europe/fi/">フィンランド</a> </li> <li> <a href="/world/europe/fr/">フランス</a> </li> <li> <a href="/world/europe/be/">ベルギー</a> </li> <li> <a href="/world/europe/pt/">ポルトガル</a> </li> <li> <a href="/world/europe/pl/">ポーランド</a> </li> <li> <a href="/world/europe/ro/">ルーマニア</a> </li> </ul> </div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_russia_cis" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/russia_cis/">ロシア・中央アジア・コーカサス全体</a> </li> <li> <a href="/world/russia_cis/uz/">ウズベキスタン</a> </li> <li> <a href="/world/russia_cis/ru/">ロシア</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_middle_east" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/middle_east/">中東全体</a> </li> <li> <a href="/world/middle_east/ae/">アラブ首長国連邦</a> </li> <li> <a href="/world/middle_east/il/">イスラエル</a> </li> <li> <a href="/world/middle_east/ir/">イラン</a> </li> <li> <a href="/world/middle_east/sa/">サウジアラビア</a> </li> <li> <a href="/world/middle_east/tr/">トルコ</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> <div id="gc_africa" class="sectionbox" style="display: none;"> <div class="in_section"> <div class="sec_column"> <ul> <li> <a href="/world/africa/">アフリカ全体</a> </li> <li> <a href="/world/africa/eg/">エジプト</a> </li> <li> <a href="/world/africa/et/">エチオピア</a> </li> <li> <a href="/world/africa/gh/">ガーナ</a> </li> <li> <a href="/world/africa/ke/">ケニア</a> </li> <li> <a href="/world/africa/ci/">コートジボワール</a> </li> <li> <a href="/world/africa/ng/">ナイジェリア</a> </li> <li> <a href="/world/africa/za/">南アフリカ共和国</a> </li> <li> <a href="/world/africa/mz/">モザンビーク</a> </li> <li> <a href="/world/africa/ma/">モロッコ</a> </li> </ul> </div> <div class="sec_column"></div> </div> <div class="section_toplink"> <div class="elem_paragraph"> <p class="text right font_bold"> <a class="linkicon font18" href="/world/">国・地域別に見る</a> </p> </div> </div> </div> </div> </div> </div> </div> </li> <li class="jtrGrobalMenuOpen"> <div class="gnav_btn"> <a href="#">目的別に見る<img src="/library/icons/icon_dropmenu_open.png" alt="メニューを開く" title=""></a> </div> <div style="position: absolute; margin-right: -480px;" class="gnav_content"> <div class="gnav_content04"> <div class="section_wrap2"> <div class="section" style="width: 200px;"> <div class="in_section"> <div class="elem_heading_lv3 pt0"> <h3> 目的別に見る </h3> </div> <div class="elem_paragraph"> <p class="text"> 海外ビジネスの目的にあわせてご利用いただける、ジェトロのビジネス情報とサービスをご案内します。 </p> </div> <p class="btnMore"> <a href="/theme/">詳細を見る</a> </p> </div> </div> <div class="section"> <div class="in_section"> <div class="sec_column" style="width: 170px;"> <dl class="xi-gnav-contents"> <dt class="xi-gnav-contents export font22"> <a href="/themetop/export/">輸出</a> </dt> <dd class="xi-gnav-contents"> <a href="/themetop/export/e-proc/">制度・手続きを知る</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/export/e-tariff/">関税・関税制度を調べる</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/export/e-ptr/">取引先を探す</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/export/e-trend/">市場を知りたい</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/export/e-basic/">初めて輸出に取り組みたい</a> </dd> </dl> </div> <div class="sec_column" style="width: 180px;"> <dl class="xi-gnav-contents"> <dt class="xi-gnav-contents fdi font22"> <a href="/themetop/fdi/">海外進出</a> </dt> <dd class="xi-gnav-contents"> <a href="/themetop/fdi/f-dest/">進出先を検討する</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/fdi/f-proc/">進出時の制度・手続きを知る</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/fdi/f-legal/">税制・法制を調べる</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/fdi/f-trend/">市場を知りたい</a> </dd> <dd class="xi-gnav-contents"> <a href="/themetop/fdi/f-basic/">初めて海外進出に取り組みたい</a> </dd> </dl> </div> <div class="sec_column" style="width: 180px;"> <p class="icon60 invest font22 font_bold"> <a href="/invest.html">対日投資</a> </p> <div class="elem_separate"> <hr> </div> <ul class="font16"> <li class="xi-gnav-contents"> <a href="/themetop/wto-fta/">EPA/FTA、WTO</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/ip/">知的財産保護</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/innovation/">イノベーション・スタートアップ</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/hr/">グローバル人材活用</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/crossborder_ec/">越境EC</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/standards/">基準・認証、<br> 規制、ルール</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/bop/">BOPビジネス</a> </li> <li class="xi-gnav-contents"> <a href="/themetop/import/">輸入</a> </li> </ul> </div> </div> </div> </div> </div> </div> </li> <li class="jtrGrobalMenuOpen"> <div class="gnav_btn"> <a href="#">産業別に見る<img src="/library/icons/icon_dropmenu_open.png" alt="メニューを開く" title=""></a> </div> <div style="position: absolute; margin-right: -480px;" class="gnav_content"> <div class="gnav_content05"> <div class="section_wrap"> <div class="sec_column"> <ul class="vcol2"> <li class="xi-gnav-contents"> <a href="/industrytop/foods/">農林水産物・食品</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/fashion/">ファッション・繊維</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/design/">デザイン(日用品)</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/contents/">コンテンツ</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/service/">サービス産業</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/life_science/">ライフサイエンス</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/machinery/">機械・機器</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/energy/">環境・エネルギー</a> </li> <li class="xi-gnav-contents"> <a href="/industrytop/infrastructure/">インフラ・プラント</a> </li> </ul> </div> </div> </div> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock842726"> <div id="elem_topic_path"> <div id="elem_topic_path_pad" class="pageelem_topic_path"> <ol> <li class="home"><a href="/"><img src="/library/new/common/content_images/icon/icon_home.gif" alt="サイトトップ" title=""></a></li> <li><a href="/theme/">目的別に見る</a></li> <li><a href="/themetop/bop/">BOPビジネス</a></li> <li><a href="/themetop/bop/europe/">欧州</a></li> <li>EU</li> </ol> </div> </div> <script> (function() { function enablePushState() { var nav = navigator, userAgent = nav.userAgent; var appVer = nav.appVersion.toLowerCase(); if (appVer.indexOf("msie 9.") != -1) { return false; } else if (typeof window.addEventListener == "undefined" && typeof document.getElementsByClassName == "undefined") { return false; } return true; } if (enablePushState() && !window.flagReplaceState && window.history && window.history.replaceState) { window.flagReplaceState = true; var url = '/themetop/bop/europe/eu/'; window.history.replaceState(url, url, url); } })(); </script> </div> </div> </div> </div> </div> </div><div id="areaWrapper1" class="pbAreaWrapper1"><div id="areaWrapper2" class="pbAreaWrapper2"><div id="mainArea" class="pbMainArea" role="main" > <div id="area0" class="pbArea "> <div class="pbNested " > <div class=" pbNested pbNestedWrapper " id="pbBlock1122605"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock22304593"> <div class="xilsm_fixedbox_area"> <div id="xilsm_fixedbox22304593"> <div id="bg_category_title"> <div id="elem_category_title" class="title_p"> <div class="title"> <p> <a href="/themetop/bop/" class="xilsm_title"> BOPビジネス </a> </p> </div> </div> </div> <div class="xilsm_btn_area "> <div class="xilsm_slidemenu_area"> <div class="xilsm_slidemenu_tab xilsm_slidemenu_tab_right xilsm_tab22304593" data-shareid="2287"> <p> <a href="javascript:void(0)">BOPビジネスのコンテンツ一覧 <img class="xilsm_close_ic xilsm_batsu" id="close_ic" src="/library/new/local/xilsm/image/ic_close.gif" alt="閉じる" title=""></a> </p> </div> <div class="xilsm_slidemenu_body"> <div class="xilsm_slidemenu_body2 pbNested ui-droppable xilsm_body22304593"></div> <div class="xilsm_closeBtn_area"> <div class="xilsm_closeBtn"> <a href="javascript:void(0)"><img class="xilsm_close_ic02" src="/library/new/local/xilsm/image/ic_close02.png" alt="" title="">閉じる</a> </div> </div> </div> </div> </div> </div> </div> <div class='elem_local_navi_margin'></div> <input id="xilsm_formUrl22304593" type="hidden" value="bop/europe/eu"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock22304594"> <div class="jtrWidth960"> <div id="elem_heading_lv1"> <h1>EU</h1> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock22304595"> <link rel="stylesheet" href="/library/new/local/xilsm/css/240718/jtrLocalSlideMenu.css"> <script > if (document.getElementById('elem_local_navi') != null) { var elements = document.getElementsByClassName('elem_local_navi_margin'); for(var i=0; i<elements.length;i++){ elements[i].parentNode.removeChild(elements[i]); } } </script> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock12691601"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock2289479"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock1122591"> <div class="pbBlock pbBlockBase"> <div> <div class="elem_heading_lv2"> <h2> ジェトロの支援サービス </h2> <ul class="button"> <li> <a class="anchor_top" href="#a_btn_02">海外ビジネス情報へ</a> </li> </ul> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock14094439"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock14094440"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock14094448"> <div class="elem_content_divide_block elem_matome_block"> <div class="content_divide_unit content_divide_unit_background elem_content_divide_block_pad"> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock14094446"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock14094445"> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock1122592"> <div class="pbBlock pbBlockBase"> <div> <div id="a_btn_02" class="elem_heading_lv2"> <h2> 海外ビジネス情報 </h2> <ul class="button"> <li> <a class="anchor_bottom" href="#a_btn_01">支援サービスへ</a> </li> </ul> </div> </div> </div> </div> <div class="jtrWidth960 pbNested pbNestedWrapper " id="pbBlock17711934"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock17711935"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock17711937"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711938"> <div class="elem_content_divide_block elem_matome_block"> <div class="content_divide_unit content_divide_unit_background elem_content_divide_block_pad"> <div class="elem_content_divide_box"> <div class="elem_heading_lv3"> <h3 class="font16"> ビジネス短信 </h3> </div> </div> <div class="elem_content_divide_box elem_list_news"> <ul> <li><a href="/biznews/2021/07/48802b3daef862e0.html">英政府、北アイルランド議定書の変更提案(EU、英国)(2021年7月26日)</a></li> <li><a href="/biznews/2012/06/4fd8451572038.html">資源効率化で日系企業に期待−欧州委のポトチュニック委員−(EU)(2012年6月14日)</a></li> <li><a href="/biznews/2011/10/4ea5150e4baf0.html">在欧日系ビジネス協議会がイノベーションシンポジウム(EU)(2011年10月25日)</a></li> </ul> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock28185608"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711936"> <div class="elem_content_divide_block elem_matome_block"> <div class="content_divide_unit content_divide_unit_background elem_content_divide_block_pad"> <div class="elem_content_divide_box"> <div class="elem_heading_lv3"> <h3 class="font16"> 調査レポート </h3> </div> </div> <div class="elem_content_divide_box elem_list_news"> <ul> <li><a href="/world/reports/2018/02/656c1cfdc85fb159.html">企業のサステナビリティ戦略に影響を与えるビジネス・ルール形成(2018年6月)</a></li> </ul> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711944"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711951"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711952"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711940"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711941"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711942"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711945"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock33174920"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711943"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711948"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711949"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711953"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711946"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock17711955"> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock19425142"> <div class="pbBlock pbBlockBase"> <div> <div class="elem_heading_lv2"> <h2> ジェトロについて </h2> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock19425143"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock19425144"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock19425145"> </div> </div> </div> <div class="pt30 pbNested pbNestedWrapper " id="pbBlock12817340"> <div class="pbNested " id="area_narrow"> <div class="pbNested pbNestedWrapper " id="pbBlock12817341"> </div> <div class="pbNested pbNestedWrapper " id="pbBlock12817343"> </div> </div> </div> <div class=" pbNested pbNestedWrapper " id="pbBlock34531457"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock34377510"> <div class="pbBlock pbBlockBase"> <div> <div id="area_conversion"> <div class="elem_heading_lv2 sp_elem_heading_lv2"> <h2> ご相談・お問い合わせ </h2> </div> <div class="elem_content_divide_block"> <div class="content_divide_col2 elem_content_divide_block_pad"> <div class="elem_content_divide_box elem_contact_conversion_block" style="width: 74%;"> <div class="elem_heading_lv3 var_border_bottom"> <h3> 国内 </h3> </div> <div class="elem_linkBox_list"> <ul class="col3 var_nodot"> <li> <div class="linkBox"> <a href="/services/advice/"><span class="font16">海外ビジネスのご相談</span></a> </div> </li> <li> <div class="linkBox"> <a href="/contact/contactlist.html"><span class="font16">お問い合わせ窓口一覧</span></a> </div> </li> <li> <div class="linkBox"> <a href="/jetro/japan/list.html"><span class="font16">国内事務所一覧</span></a> </div> </li> </ul> </div> </div> <div class="elem_content_divide_box elem_contact_conversion_block no_pad" style="width: 26%;"> <div class="elem_heading_lv3 var_border_bottom"> <h3> 現地日系企業の皆様 </h3> </div> <div class="elem_linkBox_list"> <ul> <li> <div class="linkBox"> <a href="/jetro/network.html"><span class="font16">海外事務所一覧</span></a> </div> </li> </ul> </div> <div class="elem_paragraph"> <p class="text"> 最寄りのジェトロ事務所にご連絡ください。 </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div></div></div><div id="footerArea" class="pbFooterArea Footer_wrap"> <div id="area4" class="pbArea "> <div class="pbNested " > <div class="fotter_menu pbNested pbNestedWrapper " id="pbBlock18347385"> <div class="pbNested " > <div class="pbNested pbNestedWrapper " id="pbBlock30948710"> <div class="jtrWidth960"> <div id="pbBlockToJtr30948710" > <div class="jbtn pb10 block_right"> <ul> <li class="pc_only"> <a class="jtrPrint" href="#"><img src="/library/icons/bt/pr.png" title="" alt="印刷する" width="25" height="25"></a> </li> <li> <a href="#" onclick="window.open('https://twitter.com/intent/tweet?text=BOP%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9+-+EU+-+%E6%B5%B7%E5%A4%96%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E6%83%85%E5%A0%B1+-+%E3%82%B8%E3%82%A7%E3%83%88%E3%83%AD&url=https://www.jetro.go.jp/themetop.html', 'snsTwWindow', 'width=500, height=500, menubar=no, toolbar=no, scrollbars=yes'); return false;"><img src="/library/icons/bt/x.png" title="" alt="Xにツイートする(新しいウィンドウで開きます)" width="25" height="25"></a> </li> <li> <a href="#" onclick="window.open('https://www.facebook.com/sharer.php?src=bm&t=BOP%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9+-+EU+-+%E6%B5%B7%E5%A4%96%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E6%83%85%E5%A0%B1+-+%E3%82%B8%E3%82%A7%E3%83%88%E3%83%AD&u=https%3A%2F%2Fwww.jetro.go.jp%2Fthemetop.html', 'snsFbWindow', 'width=500, height=500, menubar=no, toolbar=no, scrollbars=yes'); return false;"><img src="/library/icons/bt/fb.png" title="" alt="Facebookでシェアする(新しいウィンドウで開きます)" width="25" height="25"></a> </li> </ul> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock1333965"> <div class="pageelem_topic_path"> <ol> <li class="home"><a href="/"><img src="/library/new/common/content_images/icon/icon_home.gif" alt="サイトトップ" title=""></a></li> <li><a href="/theme/">目的別に見る</a></li> <li><a href="/themetop/bop/">BOPビジネス</a></li> <li><a href="/themetop/bop/europe/">欧州</a></li> <li>EU</li> </ol> </div> <script> (function() { function enablePushState() { var nav = navigator, userAgent = nav.userAgent; var appVer = nav.appVersion.toLowerCase(); if (appVer.indexOf("msie 9.") != -1) { return false; } else if (typeof window.addEventListener == "undefined" && typeof document.getElementsByClassName == "undefined") { return false; } return true; } if (enablePushState() && !window.flagReplaceState && window.history && window.history.replaceState) { window.flagReplaceState = true; var url = '/themetop/bop/europe/eu/'; window.history.replaceState(url, url, url); } })(); </script> </div> <div class="pbNested pbNestedWrapper " id="pbBlock1333970"> <div class="pbBlock pbBlockBase"> <div> <div class="new_footer" id="Footer"> <div class="ft_bottom" role="navigation" aria-label="フッターには4つのリストがあります。"> <div class="elem_content_divide_block"> <div class="content_divide_col4 elem_content_divide_block_pad"> <div class="elem_content_divide_box sp_only"> <ul class="ftLink"> <li> <a href="/en/">Global Site</a> </li> <li> <a href="/search_result.html">サイト内検索</a> </li> </ul> </div> <div class="elem_content_divide_box"> <ul class="ftLink"> <li> <a href="/recruit/">採用情報</a> </li> <li> <a href="/procurement/">調達情報</a> </li> <li> <a href="/disclosure/">情報公開</a> </li> </ul> </div> <div class="elem_content_divide_box pl0 pr30"> <ul class="ftLink"> <li> <a href="/contact/">お問い合わせ</a> </li> <li> <a href="/legal.html">利用規約・免責事項</a> </li> <li> <a href="/privacy.html">個人情報保護について</a> </li> <li> <a href="/accessibility.html">ウェブアクセシビリティについて</a> </li> <li> <a href="/sitemap.html">サイトマップ</a> </li> </ul> </div> <div class="elem_content_divide_box"> <ul class="ftLink"> <li class="button"> <div class="linkBox"> <a class="var_mini" href="http://www.ide.go.jp/Japanese" style="opacity: 1;" target="_blank" rel="noopener noreferrer"><span class="font12">ジェトロ・アジア経済研究所<img src="/library/icons/icon_blank_w.png" alt="外部サイトへ、新しいウィンドウで開きます" class="icon_external" height="12" width="17" title=""></span></a> </div> </li> <li> <a href="/jfoodo/">日本食品海外プロモーションセンター(JFOODO)</a> </li> <li> <a href="/links.html">各種自治体・機関等へのリンク集</a> </li> </ul> </div> <div class="elem_content_divide_box"> <ul class="ftLink"> <li class="button"> <div class="linkBox"> <a class="var_mini" href="https://twitter.com/jetro_info" style="opacity: 1;" target="_blank" rel="noopener noreferrer"><span class="font12"><img src="/library/icons/icon_ft_x_n.png" alt="" title="" width="20" height="20" class="pr5">X 公式アカウント<img src="/library/icons/icon_blank_w.png" alt="外部サイトへ、新しいウィンドウで開きます" class="icon_external" height="12" width="17" title=""></span></a> </div> </li> <li class="button"> <div class="linkBox"> <a class="var_mini" href="https://www.youtube.com/user/jetrochannel" style="opacity: 1;" target="_blank" rel="noopener noreferrer"><span class="font12"><img src="/library/icons/icon_ft_yt_n.png" alt="" title="" width="20" height="20" class="pr5">YouTube 公式アカウント<img src="/library/icons/icon_blank_w.png" alt="外部サイトへ、新しいウィンドウで開きます" class="icon_external" height="12" width="17" title=""></span></a> </div> </li> <li> <a href="/legal/social.html">ソーシャルメディア運用ポリシー</a> </li> </ul> </div> </div> </div> <div class="copyright"> <p lang="en"> Copyright (C) 1995-2024 Japan External Trade Organization(JETRO). All rights reserved. </p> <p> 独立行政法人日本貿易振興機構 (法人番号 2010405003693) </p> </div> </div> </div> <div class="ft_top" style="position: fixed; top: auto; bottom: -100px;"> <ul> <li> <a href="#page"><img title="" alt="ページの先頭に戻る" src="/library/new/common/img/btn_pagetop_new.gif"></a> </li> </ul> </div> </div> </div> </div> </div> </div> <div class="pbNested pbNestedWrapper " id="pbBlock30797208"> </div> </div> </div> </div></div> <script src="https://log.gs3.goo.ne.jp/js/jetro/gssa.js" ></script> <script> $(function() { var url = parent != undefined ? parent.location.href : location.href; $.ajax({ type: 'GET', url: '/view_interface.php?className=XiSearchBeacon&token', dataType: 'json' }).done(function(data) { var token = data.token; $.ajax({ type: 'POST', url: '/view_interface.php?className=XiSearchBeacon&beacon', dataType: 'json', data: { '_token_': token, 'url': url } }).done(function(data) { if (data.mode == 'click') { GSSA.set("action", data.action); GSSA.set("category", data.category); GSSA.set("item", data.item); GSSA.set("amount", data.amount); GSSA.send(); } else if (data.mode == 'search') { GSSA.set('action', data.action); GSSA.set('category', data.category); GSSA.set('keyword', data.keyword); GSSA.set('page', data.page); GSSA.set('hits', $('[name=totalHit]').val()); GSSA.send(); } else if (data.mode == 'other') { GSSA.set('action', data.action); GSSA.send(); } }); }); }); </script> <script > // default header start </script> <script src="/library/new/common/asset_js/221216/jquery.tile.js"></script> <script src="/library/new/common/js/jquery.cookie.js"></script> <script src="/library/new/common/asset_js/221216/jquery.common.js"></script> <script > $(function() { var url = '/view_interface.php?className=XiMyPageRecently&t=' + (+new Date()); var path = location.pathname; $.ajax({ type: "POST", url : url, data : { mode : "cac", path : path }, dataType : 'json', 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'); } }).done(function(res) { // }).fail(function(XMLHttpRequest, textStatus, errorThrown) { // }); }); </script> <script src="/library/new/common/asset_js/230314/common.js?ver=02"></script> <script > // default header end </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10