    <style>
        .pro-wccp:before {
            content: "\f160";
            top: 3px;
        }
        .pro-wccp:before{
            color:#02CA03 !important
        }
        .pro-wccp {
            transform: rotate(45deg);
        }
    </style>
    <script id="wccp_pro_disable_selection">

var image_save_msg = 'You are not allowed to save images!';

var no_menu_msg = 'Context menu disabled!';

var smessage = "<b>Alert: </b>Content selection is disabled!!";


"use strict";
/* This because search property "includes" does not supported by IE*/
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
  if (typeof start !== 'number') {
	start = 0;
  }

  if (start + search.length > this.length) {
	return false;
  } else {
	return this.indexOf(search, start) !== -1;
  }
};
}
/*////////////////////////////////////*/
let canCall = true;

function call_disable_copy_WithDelay(e) {
  if (canCall) {
    canCall = false;
    disable_copy(e);
    setTimeout(() => {
      canCall = true;
    }, 1000);
  }
}

function disable_copy(e)
{
	window.wccp_pro_iscontenteditable_flag = false;
	
	wccp_pro_log_to_console_if_allowed("disable_copy");
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	if (apply_class_exclusion(e) == "Yes") return true;

	if(wccp_pro_iscontenteditable(e) == true) {return true;}
	
	if(is_content_editable_element(current_clicked_element) == true)
	{
		return true;
	}
	else
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			//wccp_pro_clear_any_selection();
			
			return false;
		}
	}
	
	/*disable context menu when shift + right click is pressed*/
	var shiftPressed = 0;
	
	var evt = e?e:window.event;
	
	if (parseInt(navigator.appVersion)>3) {
		
		if (document.layers && navigator.appName=="Netscape")
			
			shiftPressed = (e.modifiers-0>3);
			
		else
			
			shiftPressed = e.shiftKey;
			
		if (shiftPressed) {
			
			if (smessage !== "") show_wccp_pro_message(smessage);
			
			var isFirefox = typeof InstallTrigger !== 'undefined';   /* Firefox 1.0+ */
			
			if (isFirefox) {
			evt.cancelBubble = true;
			if (evt.stopPropagation) evt.stopPropagation();
			if (evt.preventDefault()) evt.preventDefault();
			show_wccp_pro_message (smessage);
			wccp_pro_clear_any_selection();
			return false;
			}
			
			wccp_pro_clear_any_selection();
			return false;
		}
	}
	
	if(e.which === 2 ){
	var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
	   show_wccp_pro_message(smessage);
       wccp_pro_clear_any_selection(); return false;
    }
	var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
	var checker_IMG = 'checked';
	if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}

    //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			wccp_pro_clear_any_selection(); return false;
		}
	}
	else
	{
		return true;
	}
}
////////////////////////////
function disable_copy_ie()
{
	wccp_pro_log_to_console_if_allowed("disable_copy_ie_function_started");
	
	var e = e || window.event;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
  	var target = e.target || e.srcElement;
	
	var elemtype = window.event.srcElement.nodeName;
	
	elemtype = elemtype.toUpperCase();

	if(wccp_pro_iscontenteditable(e) == true) return true;
	
	if (apply_class_exclusion(e) == "Yes") return true;
	
	if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}
	
	//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		return false;
	}
}
function disable_drag_text(e)
{
	wccp_pro_log_to_console_if_allowed("disable_drag_text");
	
	/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
	/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/
  	
	var target = e.target || e.srcElement;
	
	/*For contenteditable tags*/
	
	if (apply_class_exclusion(e) == "Yes") return true;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	var disable_drag_text_drop = 'checked';
	
	if (disable_drag_text_drop != "checked")  return true;
	
	if (window.location.href.indexOf("/user/") > -1) {
      return true; /*To allow users to drag & drop images when editing thier profiles*/
    }
	
	return false;
}

/*/////////////////special for safari Start////////////////*/
var onlongtouch;

var timer;

var touchduration = 1000; /*length of time we want the user to touch before we do something*/

var elemtype = "";

function touchstart(e)
{
	wccp_pro_log_to_console_if_allowed("touchstart");
	
	e = e || window.event;// also there is no e.target property in IE. instead IE uses window.event.srcElement
	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	//if (elemtype == "A") return;

	if (apply_class_exclusion(elemtype) == 'Yes') return;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
	
	if(!wccp_pro_is_passive()) e.preventDefault();
	if (!timer) {
		timer = setTimeout(onlongtouch, touchduration);
	}
}

function touchend()
{
	wccp_pro_log_to_console_if_allowed("touchend");
	
    /*stops short touches from firing the event*/
    if (timer) {
        clearTimeout(timer);
        timer = null;
    }
	onlongtouch();
}

onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
{
	wccp_pro_log_to_console_if_allowed("onlongtouch");
	
	if (is_content_editable_element(elemtype) == false)
	{
		if (window.getSelection) {
			if (window.getSelection().empty) { /*Chrome*/
			window.getSelection().empty();
			} else if (window.getSelection().removeAllRanges) {  /*Firefox*/
			window.getSelection().removeAllRanges();
			}
		} else if (document.selection) {  /*IE?*/
			var textRange = document.body.createTextRange();
			textRange.moveToElementText(element);
			textRange.select();

			document.selection.empty();
		}
		return false;
	}
};

document.addEventListener("DOMContentLoaded", function(event)
	{ 
		window.addEventListener("touchstart", touchstart, false);
		window.addEventListener("touchend", touchend, false);
	});


function wccp_pro_is_passive()
{
	wccp_pro_log_to_console_if_allowed("wccp_pro_is_passive");
	
	var cold = false,
	hike = function() {};

	try {
	var aid = Object.defineProperty({}, 'passive', {
	get() {cold = true}
	});
	window.addEventListener('test', hike, aid);
	window.removeEventListener('test', hike, aid);
	} catch (e) {}

	return cold;
}
/*/////////////////////////////////////////////////////////////////*/
function reEnable()
{
	return true;
}

if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
{
	document.ondragstart = disable_drag_text;
	document.onselectstart = call_disable_copy_WithDelay;
	document.onselectionchange = call_disable_copy_WithDelay;
	//document.onmousedown = disable_copy;
	//document.addEventListener('click', disable_copy, false);
	//document.addEventListener('click', set_current_clicked_element, false);
	document.addEventListener('mousedown', set_current_clicked_element, false);
	//document.onclick = reEnable;
}else
{
	document.onselectstart = disable_copy_ie;
}

var current_clicked_element = "";

var current_clicked_object = null;

function set_current_clicked_element(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	current_clicked_element = elemtype;
	
	wccp_pro_log_to_console_if_allowed("current_clicked_element = " + current_clicked_element, arguments.callee.name);
}
</script>
	<script id="wccp_pro_css_disable_selection">
	function wccp_pro_msieversion() 
		{
			var ua = window.navigator.userAgent;
			var msie = ua.indexOf("MSIE");
			var msie2 = ua.indexOf("Edge");
			var msie3 = ua.indexOf("Trident");

		if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
		{
			return "IE";
		}
		else  // If another browser, return 0
		{
			return "otherbrowser";
		}
	}
    
	var e = document.getElementsByTagName('H1')[0];
	if(e && wccp_pro_msieversion() == "IE")
	{
		e.setAttribute('unselectable',"on");
	}
	</script>
<script id="wccp_pro_disable_hot_keys">
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;

function wccp_pro_iscontenteditable(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;
	
	var iscontenteditable = "false";
		
	if(typeof target.getAttribute!="undefined" )
	{
		iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
		
		if(typeof target.hasAttribute!="undefined")
		{
			if(target.hasAttribute("contenteditable"))
				iscontenteditable = true;
		}
	}
	
	wccp_pro_log_to_console_if_allowed("iscontenteditable:" + iscontenteditable);
	
	var iscontenteditable2 = false;
	
	if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean

	if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
	
	if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
	{
		if(typeof target.style!="undefined" ) target.style.cursor = "text";
		
		wccp_pro_iscontenteditable_flag = true;
		
		wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
	if(window.wccp_pro_iscontenteditable_flag == true) return;
	
	wccp_pro_log_to_console_if_allowed("wccp_pro_clear_any_selection");
	
	var myName = wccp_pro_clear_any_selection.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));

	wccp_pro_log_to_console_if_allowed("called_by: " + myName);
	
	if (window.getSelection)
	{
		if (window.getSelection().empty)
		{  // Chrome
			window.getSelection().empty();
		} else if (window.getSelection().removeAllRanges) 
		{  // Firefox
			window.getSelection().removeAllRanges();
		}
	} else if (document.selection)
	{  // IE?
		document.selection.empty();
	}
	
	//show_wccp_pro_message("You are not allowed to make this operation");
}


/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
	if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK_WCCP")
	{
		wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_content_editable_element: false >>" + element_name);
	
	return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
	if (is_content_editable_element == true)
	{
		wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);
	
	return false;
}
*/
/*Hot keys function  */
function disable_hot_keys(e)
{
	wccp_pro_log_to_console_if_allowed("disable_hot_keys");
	
	e = e || window.event;
	
	//console.log(e);
	
	if (!e) return;
	
	var key;

		if(window.event)
			  key = window.event.keyCode;     /*IE*/
		else if (e.hasOwnProperty("which")) key = e.which;     /*firefox (97)*/

	wccp_pro_log_to_console_if_allowed("Data:", key);
	
			
		if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			
			return false;
		}
		
	var elemtype = e.target.tagName;
	
	elemtype = elemtype.toUpperCase();
	
	var sel = getSelectionTextAndContainerElement();
	
	if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */

	/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
	if (is_content_editable_element(elemtype) == true)
	{
		elemtype = 'TEXT';
	}
	
	if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
	
		if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
		{
			copyTextToClipboard("");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}	
	if (e.ctrlKey || e.metaKey)
	{
		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
		{
			 show_wccp_pro_message('<b>Alert:</b> You are not allowed to copy content or view source');
			 return false;
		}
		if (elemtype!= 'TEXT')
		{
						
			if (key == 65)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 67)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 88)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 86)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}		}
				
		if (key == 85)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 80)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 44)
		{
			copyTextToClipboard("no");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
		
					if (key == 73)//F12 chrome developer key disable
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}
				
				
		if (key == 83)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}    }
return true;
}


window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function() {
	  jQuery(document).bind("keyup keydown", disable_hot_keys);
	});
});

</script>
	<script id="wccp_pro_disable_Right_Click">

	function wccp_pro_nocontext(e)
	{
		wccp_pro_log_to_console_if_allowed("wccp_pro_nocontext function");
		
		const caller = wccp_pro_nocontext.caller;
		
		if (caller) wccp_pro_log_to_console_if_allowed("Caller function is: " + caller.name);
		
		e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		if (apply_class_exclusion(e) == 'Yes') return true;
		
		var exception_tags = 'NOTAG,';
		
		var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
		
		wccp_pro_log_to_console_if_allowed("clickedTag: " + clickedTag);
		
		var target = e.target || e.srcElement;
		
		var parent_tag = ""; var parent_of_parent_tag = "";
		
		if(target.parentElement != null)
		{
			parent_tag = target.parentElement.tagName;
			
			if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
		}
		
		var checker = 'checked';
		if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
			if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
			return false;
		}else {exception_tags = exception_tags + 'IMG,';}
		
		checker = '';
		if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
			if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
			return false;
		}else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}
		
		checker = 'checked';
		if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
			if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
			return false;
		}else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}

		checker = 'checked';
		if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" ||  clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
			if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
			return false;
		}else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}
		
		checker = 'checked';
		if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
			if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
			return false;
		}else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}
		
		checker = 'checked';
		if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
			if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
			return false;
		}else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}
		
		checker = 'checked';
		if (clickedTag == "TEXTAREA" && checker == 'checked') {
			if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
			return false;
		}else {exception_tags = exception_tags + 'TEXTAREA,';}
		
		checker = 'checked';
		if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
			if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
			return false;
		}
		else
		{
			if (exception_tags.indexOf(clickedTag)!=-1)
			{
				return true;
			}
			else
			return false;
		}
	}
	
	function disable_drag_images(e)
	{return;
		wccp_pro_log_to_console_if_allowed("disable_drag_images");
		
		var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		var target = e.target || e.srcElement;
		
		//For contenteditable tags
		if (apply_class_exclusion(e) == "Yes") return true;

		var elemtype = e.target.nodeName;
		
		if (elemtype != "IMG") {return;}
		
		elemtype = elemtype.toUpperCase();
		
		var disable_drag_drop_images = 'checked';
		
		if (disable_drag_drop_images != "checked")  return true;
		
		if (window.location.href.indexOf("/user/") > -1) {
		  return true; //To allow users to drag & drop images when editing thier profiles
		}
		
		show_wccp_pro_message(alertMsg_IMG);
		
		return false;
	}
	
	var alertMsg_IMG = "Alert: Protected image";
	var alertMsg_A = "Alert: This link is protected";
	var alertMsg_PB = "Alert: Right click on text is disabled";
	var alertMsg_INPUT = "Alert: Right click is disabled";
	var alertMsg_H = "Alert: Right click on headlines is disabled";
	var alertMsg_TEXTAREA = "Alert: Right click is disabled";
	var alertMsg_EmptySpaces = "Alert: Right click on empty spaces is disabled";
	var alertMsg_VIDEO = "Alert: Right click on videos is disabled";
	//document.oncontextmenu=null;
	window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function(){
		jQuery(document).on('contextmenu', wccp_pro_nocontext);
	});
	});
	window.addEventListener('load', function (){
	if (typeof jQuery === 'undefined')
	{
		alert("no jquery");
		document.oncontextmenu = wccp_pro_nocontext;
		document.addEventListener("contextmenu",wccp_pro_nocontext);
		window.addEventListener("contextmenu",wccp_pro_nocontext);
	}
	});
</script>
	
	<script id="wccp_pro_disable_drag_images">
	document.ondragstart = disable_drag_images;
		window.addEventListener('load', function (){
			if(window.Zepto || !window.jQuery) jQuery =  $;
			jQuery(document).ready(function(){
				jQuery('img').each(function() {
					jQuery(this).attr('draggable', false);
				});
			});
		});
	</script>
	<style id="wccp_pro_style1">
		img{
			-moz-user-select: none;
			-webkit-user-select: none;
			-ms-user-select: none;
			-khtml-user-select: none;
			user-select: none;
			-webkit-user-drag: none;
		}
	</style>
<style>/* Start your code after this line */
 
/* End your code before this line */</style><script id="wccp_pro_class_exclusion">
function copyToClipboard(elem) {
	  // create hidden text element, if it doesn't already exist
    var targetId = "_wccp_pro_hiddenCopyText_";
    {
        // must use a temporary form element for the selection and copy
        target = document.getElementById(targetId);
        if (!target) {
            var target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    // select the content
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);
    
    // copy the selection
    var succeed;
    try {
    	  succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }

    // restore original focus
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }
    
    
	// clear temporary content
	target.textContent = "";
	document.getElementsByTagName('span')[0].innerHTML = " ";
    return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(data = "")
{//return;
	var myName = "";
	
	if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));
	
	}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
  var textArea = document.createElement("textarea");
  textArea.value = text;
  document.body.appendChild(textArea);
  textArea.focus();
  textArea.select();

  try {
    var successful = document.execCommand("copy");
    var msg = successful ? "successful" : "unsuccessful";
    wccp_pro_log_to_console_if_allowed("Fallback: Copying text command was " + msg);
  } catch (err) {
    console.error("Fallback: Oops, unable to copy", err);
  }

  document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
  if (!navigator.clipboard) {
    fallbackCopyTextToClipboard(text);
    return;
  }
  navigator.clipboard.writeText(text).then(
    function() {
      console.log("Async: Copying to clipboard was successful!");
    },
    function(err) {
      console.error("Async: Could not copy text: ", err);
    }
  );
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
    var text = "", containerElement = null;
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var node = sel.getRangeAt(0).commonAncestorContainer;
            containerElement = node.nodeType == 1 ? node : node.parentNode;
			if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
            text = sel.toString();
        }
    } else if (typeof document.selection != "undefined" && document.selection.type != "Control")
	{
        var textRange = document.selection.createRange();
        containerElement = textRange.parentElement();
        text = textRange.text;
    }
    
	return {
        text: text,
        containerElement: containerElement
    };
}

function getSelectionParentElement() {
    var parentEl = null, sel;
	
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            parentEl = sel.getRangeAt(0).commonAncestorContainer;
			//sel.getRangeAt(0).startContainer.parentNode;
            if (parentEl.nodeType != 1) {
                parentEl = parentEl.parentNode;
            }
        }
    } else if ( (sel = document.selection) && sel.type != "Control") {
        parentEl = sel.createRange().parentElement();
    }
	
	let arr = new Array();
	
	arr["nodeName"] = "cant_find_parent_element";
	
	if(parentEl != null)
		return parentEl;
	else
		return arr;
}
/*****************************************/
function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
</script>

<script id="apply_class_exclusion">
function apply_class_exclusion(e)
{
	wccp_pro_log_to_console_if_allowed(e);
	
	var my_return = 'No';
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement || e || 'nothing';
	
	var excluded_classes = '' + '';
	
	var class_to_exclude = "";
	
	if(target.parentElement != null)
	{
		class_to_exclude = target.className + ' ' + target.parentElement.className || '';
	}else{
		class_to_exclude = target.className;
	}
	
	var class_to_exclude_array = Array();
	
	//console.log(class_to_exclude);
	
	if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
	
	//console.log (class_to_exclude_array);
	
	class_to_exclude_array.forEach(function(item)
	{
		if(item != '' && excluded_classes.indexOf(item)>=0)
		{
			//target.style.cursor = "text";
			
			//console.log ('Yes');
			
			my_return = 'Yes';
		}
	});

	try {
		class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
		}
	catch(err) 
		{
		class_to_exclude = '';
		}
	
	if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
	{
		//target.style.cursor = "text";
		my_return = 'Yes';
	}

	return my_return;
}
</script>
<style id="wccp_pro_style2" data-asas-style="">

	
	*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
	  -webkit-user-select: auto !important;
	  cursor: text !important;
	  user-select: text !important;
	  pointer-events: auto !important;
	}
	
	/*
	*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
	*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
	input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
	*/
	a{ cursor: pointer ; pointer-events: auto !important;}

	</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style>	<script id="wccp_pro_alert_message">
	window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign
	
	window.addEventListener('load', function (){
		// Create the first div element with the "oncontextmenu" attribute
		const wccp_pro_mask = document.createElement('div');
		wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
		wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

		// Create the second div element with the "msgmsg-box-wpcp hideme" classes
		const wpcp_error_message = document.createElement('div');
		wpcp_error_message.setAttribute('id', 'wpcp-error-message');
		wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

		// Add a span element with the "error: " text inside the second div
		const error_span = document.createElement('span');
		error_span.innerText = 'error: ';
		wpcp_error_message.appendChild(error_span);

		// Add the error message text inside the second div
		const error_text = document.createTextNode('<b>Alert: </b>Content selection is disabled!!');
		wpcp_error_message.appendChild(error_text);

		// Add the div elements to the document body
		document.body.appendChild(wccp_pro_mask);
		document.body.appendChild(wpcp_error_message);
	});

	var timeout_result;
	function show_wccp_pro_message(smessage="", style="")
	{
		wccp_pro_log_to_console_if_allowed(smessage);
				
		timeout = 3000;
		
		if(style == "") style = "warning-wpcp";
		
		if (smessage !== "" && timeout!=0)
		{
			var smessage_text = smessage;
			jquery_fadeTo();
			document.getElementById("wpcp-error-message").innerHTML = smessage_text;
			document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
		else
		{
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
	}
	function hide_message()
	{
		jquery_fadeOut();
		document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
	}
	function jquery_fadeTo()
	{
		try {
			jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
		}
		catch(err) {
			//alert(err.message);
			}
	}
	function jquery_fadeOut()
	{
		try {
			jQuery("#wccp_pro_mask").fadeOut( "slow" );
		}
		catch(err) {}
	}
	</script>
	<style>
	#wccp_pro_mask
	{
		position: absolute;
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		background-color: #000;
		pointer-events: none;
		display: none;
		z-index: 10000;
		animation: 0.5s ease 0s normal none 1 running ngdialog-fadein;
		background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	}
	#wpcp-error-message {
    direction: ltr;
    text-align: center;
    pointer-events: none;
    z-index: 99999999;
	}
	.hideme {
		opacity: 0;
		visibility: hidden;
		transition: opacity 900ms ease-out, visibility 0s linear 900ms;
	}
	.showme {
		opacity: 1;
		visibility: visible;
		transition: none; /* instant when showing */
	}
	.msgmsg-box-wpcp {
		border-radius: 10px;
		color: #555555;
		font-family: Tahoma;
		font-size: 10ピクセル;
		margin: 10px !important;
		padding: 10px 36px !important;
		position: fixed;
		width: 255px;
		top: 50%;
		left: 50%;
		margin-top: -10px !important;
		margin-left: -130px !important;
	}
	.msgmsg-box-wpcp b {
		font-weight:bold;
	}
		.warning-wpcp {
		background:#ffecec url('https://shrineheritager.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
		border:1px solid #f2bfbf;
		-webkit-box-shadow: 0px 0px 34px 2px #f2bfbf;
		-moz-box-shadow: 0px 0px 34px 2px #f2bfbf;
		box-shadow: 0px 0px 34px 2px #f2bfbf;
	}
	.success-wpcp {
		background: #fafafa url('https://shrineheritager.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
		border: 1px solid #00b38f;
		box-shadow: 0px 0px 34px 2px #adc;
	}
    </style>
{"id":17034,"date":"2020-09-21T03:24:51","date_gmt":"2020-09-20T18:24:51","guid":{"rendered":"https:\/\/shrineheritager.com\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/"},"modified":"2020-09-21T03:25:10","modified_gmt":"2020-09-20T18:25:10","slug":"%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/","title":{"rendered":"\u871b\u876b Shrine (Ejima, Yatsuka Town)"},"content":{"rendered":"&#13;\n<p class=\"wp-block-paragraph\">\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &#8220;\u871b\u876b&#8221; in &#8220;Kizuki no Misaki&#8221; was located on the island &#8220;\u871b\u876b island &#8221; (tako shima)&#8221; which was caught and carried by &#8220;Tenbane(wide and large feathers)&#8221; in &#8220;Izumo-no-Misaki&#8221;.<\/p>&#13;\n&#13;\n&#13;\n<p class=\"wp-block-paragraph\">From here, I will explain the name of the listed shrine in chronological order.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">&#8220;Izumo Kuni Fudoki&#8221; was completed on February 30, 1300 years ago and 5 years ago (733).<br\/>Next, the Enki-shiki Shinmei book was completed about 1100 years ago in the middle of the Heian period (extended 5 years and 927 years).<br\/>Finally, it is the ronsha (present shrine) of &#8220;Izumo Kuni Fudoki&#8221; and &#8220;Enki-shiki Shinmeisho&#8221;<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>[About 1,300 years ago] About 1300 Years ago<\/strong><\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><span class=\"bold-green\" style=\"color: #0000ff;\"><strong>[Izumo Kuni Fudoki (izumo no kuni fudoki) Place of publication]<\/strong><br\/><strong>The shrine record was completed in February 733 AD.<\/strong><\/span><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">A copy of the &#8220;IzumoKuni Fudoki&#8221; digital archive of the National Archives of Japan<br\/><a href=\"https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=%E7%94%BB%E5%83%8F%E5%88%A9%E7%94%A8\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/a><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17036\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-A-\u5cf6\u6839\u90e1\u306e\u795e\u793e_LI-3-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-A-\u5cf6\u6839\u90e1\u306e\u795e\u793e_LI-3-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-A-\u5cf6\u6839\u90e1\u306e\u795e\u793e_LI-3-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-A-\u5cf6\u6839\u90e1\u306e\u795e\u793e_LI-3.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>&#13;\n&#13;\n<h5>\u672c\u6bbf<\/h5>&#13;\n<p class=\"wp-block-paragraph\">Izumo No Kuni (Izumo <strong>no Kuni) <br\/> [County]<\/strong>Shimane-gun (shimane<strong>no <br\/> kori)<\/strong> Article Absent Shinto shrine <strong>(fusai jingikan no yashiro)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Company name] \u871b\u876b.<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Reading] (Takono) Yashiro <br\/><\/strong> <strong>[How to read] (tako no) yashiro<\/strong><\/p>&#13;\n&#13;\n<h5><strong>\uff08\u5883\u5185\u793e\u3000\u82e5\u5bae\u795e\u793e\uff09<\/strong><\/h5>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Izumo No Kuni (Izumo <strong>no Kuni) <br\/> [County]<\/strong>Shimane-gun (shimane<strong>no <br\/> kori)<\/strong> Article Absent Shinto shrine <strong>(fusai jingikan no yashiro)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Company name] \u871b\u876b company<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Reading] (The <br\/><\/strong> same as Tako&#8217;s) Yashiro <strong>[How to read] (onajiki<\/strong> tako no) yashiro<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>[About 1100 years ago] About 1100 Years ago<\/strong><\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><span class=\"bold-green\" style=\"color: #0000ff;\"> <strong>[Engisiki jimmeicho<\/strong>(Place of Publication)] The shline record was completed in December <br\/><strong>927 AD. <br\/><\/strong> \n  \n  \n  \n<\/span> This is not applicable because it is a non-governmental company.<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>\u3010Current\u3011 At the Moment<\/strong><\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><span style=\"color: #0000ff;\"><strong><span class=\"bold-green\">[Ronsha] Current specific shrine<\/span><\/strong><\/span><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Shrine name] (shrine name) \u871b\u876b Shrine<\/strong> <strong>\u3000<\/strong> a bug-hen-hen-hen-hen-hen-hen-hen-hen-hen-hen-hen-hen-hen-hen<br\/><strong>(tako <br\/> shrine)<\/strong><strong>[How to read] (How to read) (Takojija)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Common name] (Common name) Tenno san<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>[Zhenzachi] (location)<\/strong> Ejima 184, Yatsuka-cho, Matsue City, Shimane Prefecture<br\/><strong>\u3010\u5730 \u56f3\u3011(Google Map)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E7%B1%B3%E5%AD%90%E7%A9%BA%E6%B8%AF%E9%A7%90%E8%BB%8A%E5%A0%B4(%E7%A9%BA%E6%B8%AF%E5%89%8D%E9%A7%90%E8%BB%8A%E5%A0%B4)\/%E3%80%92690-1401+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E6%9D%BE%E6%B1%9F%E5%B8%82%E5%85%AB%E6%9D%9F%E7%94%BA%E6%B1%9F%E5%B3%B6%EF%BC%91%EF%BC%98%EF%BC%94+%E8%9C%9B%E8%9D%AB%E7%A5%9E%E7%A4%BE\/@35.5217162,133.1971987,14.32z\/data=!4m14!4m13!1m5!1m1!1s0x355655f878b6bd8f\" data-lkc-id=\"112\" target=\"_blank\" rel=\"external noopener\"><div class=\"lkc-card\"><div class=\"lkc-info\"><div class=\"lkc-favicon\"><img decoding=\"async\" src=\"https:\/\/www.google.com\/s2\/favicons?domain=www.google.com\" alt=\"\" width=\"16\" height=\"16\" \/><\/div><div class=\"lkc-domain\">\u7c73\u5b50\u7a7a\u6e2f\u99d0\u8eca\u5834\uff08\u7a7a\u6e2f\u524d\u99d0\u8eca\u5834\uff09 to \u871b\u876b\u795e\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E7%25B1%25B3%25E5%25AD%2590%25E7%25A9%25BA%25E6%25B8%25AF%25E9%25A7%2590%25E8%25BB%258A%25E5%25A0%25B4%28%25E7%25A9%25BA%25E6%25B8%25AF%25E5%2589%258D%25E9%25A7%2590%25E8%25BB%258A%25E5%25A0%25B4%29%2F%25E3%2580%2592690-1401%2B%25E5%25B3%25B6%25E6%25A0%25B9%25E7%259C%258C%25E6%259D%25BE%25E6%25B1%259F%25E5%25B8%2582%25E5%2585%25AB%25E6%259D%259F%25E7%2594%25BA%25E6%25B1%259F%25E5%25B3%25B6%25EF%25BC%2591%25EF%25BC%2598%25EF%25BC%2594%2B%25E8%259C%259B%25E8%259D%25AB%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.5217162%2C133.1971987%2C14.32z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x355655f878b6bd8f?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u7c73\u5b50\u7a7a\u6e2f\u99d0\u8eca\u5834\uff08\u7a7a\u6e2f\u524d\u99d0\u8eca\u5834\uff09 to \u871b\u876b\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E7%B1%B3%E5%AD%90%E7%A9%BA%E6%B8%AF%E9%A7%90%E8%BB%8A%E5%A0%B4(%E7%A9%BA%E6%B8%AF%E5%89%8D%E9%A7%90%E8%BB%8A%E5%A0%B4)\/%E3%80%92690-1401+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E6%9D%BE%E6%B1%9F%E5%B8%82%E5%85%AB%E6%9D%9F%E7%94%BA%E6%B1%9F%E5%B3%B6%EF%BC%91%EF%BC%98%EF%BC%94+%E8%9C%9B%E8%9D%AB%E7%A5%9E%E7%A4%BE\/@35.5217162,133.1971987,14.32z\/data=!4m14!4m13!1m5!1m1!1s0x355655f878b6bd8f\">https:\/\/www.google.com\/maps\/dir\/\u7c73\u5b50\u7a7a\u6e2f\u99d0\u8eca\u5834(\u7a7a\u6e2f\u524d\u99d0\u8eca\u5834)\/\u3012690-1401+\u5cf6\u6839\u770c\u677e\u6c5f\u5e02\u516b\u675f\u753a\u6c5f\u5cf6\uff11\uff18\uff14+\u871b\u876b\u795e\u793e\/@35.5217162,133.1971987,14.32z\/data=!4m14!4m13!1m5!1m1!1s0x355655f878b6bd8f<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div><\/p>&#13;\n<h3><strong>\u3010\u5fa1\u796d\u795e\u3011(God\u2019s name to pray)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8220;Lord&#8221; \u76de (susanowo no ikoto) <br\/><\/strong> <strong>Princess Tagorihime (tagorihime no ikoto) <br\/><\/strong> <strong>Kukunochi no Kami <br\/><\/strong> <strong>\u6e4d (tagitsuhime no ikoto) <br\/><\/strong> <strong>Great Power Lord God (Okununushi no Kami) <br\/><\/strong> <strong>Himeichi Ichishima (ichikishimahime no ikoto) <br\/><\/strong> <strong>Kotoshiro Lord God (kotoshironushi no <br\/> kami)<\/strong> <strong>Princess Inada (inadahime no ikoto)<\/strong><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>[Gody] (God&#8217;s Great Power)<\/strong><\/h3>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u683c\u5f0f\u3011 (Rules of dignity)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Izumo Fudoki (Izumo no kuni fudoki)<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5275\u5efa\u3011 (Beginning of History)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The age of its founding is unknown.<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u7531\u7dd2\u3011 (history)<\/strong><\/h3>&#13;\n&#13;\n<figure class=\"aligncenter size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17038\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-2-20-337x600.jpg\" alt=\"\" width=\"337\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-2-20-337x600.jpg 337w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-2-20.jpg 575w\" sizes=\"(max-width: 337px) 100vw, 337px\" \/><\/p>&#13;\n&#13;\n<blockquote class=\"wp-block-quote\">&#13;\n<p class=\"wp-block-paragraph\">In Fudoki Izumo, it is written that there is a shrine in the eastern side.<\/p>&#13;\n<cite>\u5cf6\u6839\u770c\u795e\u793e\u5e81HP\u3088\u308a<\/cite><\/blockquote>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5883\u5185\u793e\u3011(Other Deities within the preciscants)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>Wakamiyasha &#8230;the same \u871b\u876b (onajiki tako no) yashiro <br\/><\/strong> <strong>Izumo Fudoki (Izumo no kuni fudoki)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Tema Milk Shrine<br\/>Legma Milk Shrine<br\/>Inarisha<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>[Otaky Point] (Points Selected by Japan Otaku)<\/strong><\/h3>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17040\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-3-22-766x600.jpg\" alt=\"\" width=\"766\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-3-22-766x600.jpg 766w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-3-22-768x602.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-3-22.jpg 1024w\" sizes=\"(max-width: 766px) 100vw, 766px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>The &#8220;two islands floating in the Nakaumi&#8221; in the aerial photograph is a &#8220;volcano&#8221; of 190,000 years ago.<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>The big island is &#8220;Daikonjima&#8221; \u871b\u876b <br\/> (tako shima) &#8220;Izumokuni Fudoki&#8221;<\/strong> <strong>A small island is &#8220;Ejima&#8221; \u8708\u86a3 (mukade shima), &#8220;Izumokuni Fudoki&#8221;<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Daikonjima and Ejima are said to be &#8220;small volcanoes formed about 190,000 years before the Mid-Pleas pleasion.&#8221;<br\/>The lava (black stone) that remained on the island is called &#8220;island stone&#8221; and seems to have been used as a stone wall and building material, and the approach of this shrine and the water bowl are made of &#8220;island stone&#8221;.<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>\u3010Visit to the shrine\u3011 (Pray at the shrinee)<\/strong><\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">From Yonago Airport via Prefectural Route 47 towards Ejima and Daikonjima 7km car 12 minutes<br\/>It is on the way while looking at the beautiful Nakaumi.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-full wp-image-17042\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-4-22.jpg\" alt=\"\" width=\"1024\" height=\"576\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-4-22.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-4-22-768x432.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Because the place is difficult to understand, it is said that it enters &#8220;the north alley of Ejima Peony Garden&#8221;.<br\/><strong>\u871b\u876b at Tako Shrine<\/strong><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17044\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-5-19-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-5-19-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-5-19-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-5-19.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">To the right of the white torii gate, a lantern made of lava &#8220;island stone&#8221; is a highlight.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17046\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-6-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-6-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-6-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-6-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">After a bow, I walked through the Torii gate and sat down with a new Shiba Inu.<br\/>Go straight on the straight approach where the &#8220;stone of the island&#8221; is laid.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17048\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-7-20-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-7-20-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-7-20-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-7-20.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It&#8217;s as if we&#8217;re isolating the outside world.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17050\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-8-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-8-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-8-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-8-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">You can see the shrine shining in the sun.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17052\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-9-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-9-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-9-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-9-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>The sun enters between the clouds, and it drifts calm.<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>I&#8217;m singing to the shrine. <br\/><\/strong> <strong>I wish you a <br\/> change.<\/strong> I pray that I will meet your hands and pray for the high-quality hand to reach the god of the festival which is calmed while wishing to be accompanied by the <strong>god of God.<\/strong><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17054\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-10-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-10-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-10-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-10-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I look up to the main shrine from the right hand side.<br\/>On the right hand side of the main shrine, I visit the precincts shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17056\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-11-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-11-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-11-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-11-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I look up at the main shrine from the left hand.<br\/>The left hand side of the main shrine precincts shrine<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17058\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-12-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-12-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-12-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-12-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I think that the precinct shrine which sits in the left and right object is a Tema milk shrine and a Legma milk shrine.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Just a little back on the approach to the shrine.<br\/>Because the fox sits here, it is &#8220;Inarisha&#8221; shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17060\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-13\u5883\u5185\u7a32\u8377\u793e-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-13\u5883\u5185\u7a32\u8377\u793e-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-13\u5883\u5185\u7a32\u8377\u793e-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-13\u5883\u5185\u7a32\u8377\u793e.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Next to it is<strong>\u871b\u876b shrine with<\/strong> a board that reads &#8220;The Shrine of The People.&#8221;<br\/>Maybe this is Wakamiyasha.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17062\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-14-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-14-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-14-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-14-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-17064\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-15-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-15-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-15-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-15-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-17066\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-16-14-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-16-14-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-16-14.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I&#8217;m going back to the shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17068\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-17-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-17-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-17-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-17-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I turned around through the torii gate and bowed.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17070\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-18-12-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-18-12-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-18-12-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-18-12.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-17073\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-19-11-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-19-11-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-19-11-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-19-11.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>\u3010Tradition of shrines\u3011 (Old tales held down to shrinks)<\/strong><\/h2>&#13;\n&#13;\n<h3><strong>\u4e2d\u6d77\u306b\u6d6e\u304b\u30762\u3064\u306e\u5cf6\u306e\u540d\u524d\u306e\u7531\u6765\u306f<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>The big island is &#8220;Daikonjima&#8221; \u871b\u876b <br\/> (tako shima) &#8220;Izumokuni Fudoki&#8221;<\/strong> <strong>A small island is &#8220;Ejima&#8221; \u8708\u86a3 (mukade shima), &#8220;Izumokuni Fudoki&#8221;<\/strong><\/p>&#13;\n<p>&#8220;Daikonjima&#8221; is said to have changed from tako to Taine (taku) and daikon (taiko) in Izumokuni Fudoki, which is said to have been named &#8220;Takojima&#8221; because the large eagle that captured the tako of Misaki of Tsubaki flew to this island.<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\">\u8708\u86a3 is said to have resembled a mukade in shape.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Image :Bunsei 4th year Izumokuni Ten County drawings (Shimane Prefectural Library Collection)<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17075\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-20-11-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-20-11-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-20-11-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-20-11.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>&#13;\n&#13;\n<h3><strong>\u51fa\u96f2\u570b\u98a8\u571f\u8a18\uff08izumo no kuni fudoki\uff09\u610f\u5b87\u90e1\u3000\u6761\u3000\u306b\u8a18\u3055\u308c\u308b\u300c\u56fd\u5f15\u304d\u795e\u8a71\u300d\u4f1d\u627f\u306b\u3064\u3044\u3066<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The<strong>\u871b\u876b<\/strong>where &#8220;Tako shrine&#8221; \u8708\u86a3 enshrined in &#8220;mukade shima&#8221; is written.<br\/>It is thought that the shrine originally located on \u871b\u876b Island was relocated with residents who were <strong>\u871b\u876b<\/strong> ordered to move to \u8708\u86a3 Island (Ejima) with the establishment of Maki (a government-run ranch in ancient times).<\/p>&#13;\n<blockquote>&#13;\n<p><strong>a <br\/> translation of one&#8217;s intention<\/strong> <strong>&#8220;\u871b\u876b<\/strong><strong> <br\/><\/strong>Shima around 18 ri 100 steps Height is Sanjo (circumference 9800m height 9m)\u3000<\/p>&#13;\n<p><\/p><\/blockquote>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\">According to the old man&#8217;s message, &#8220;Oko&#8221; was placed in &#8220;kizuki no <strong>misaki&#8221;<\/strong>\u871b\u876b Izumo-gun.<br\/> Then, &#8220;Tenbane&#8221; caught the \u871b\u876b (tako) and stopped on this island. <strong>\u871b\u876b<\/strong><\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\">So<strong>\u871b\u876b<\/strong>is called &#8220;Tako shima&#8221;, and now people \u6832 call it &#8220;kou shima.&#8221;<br\/>\u84bf \u85ba \u838e This island is fertile. There are two pine trees on the west bank of the island.<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\">(This island is a maki (an ancient government-run ranch)) This island is about three ri (1600m) away from the land.<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\"><strong>\u8708\u86a3 Island (mukade shima) <br\/><\/strong> The circumference is one hundred and three hundred and three steps, and the height is two lengths (circumference 2900m height less than 6m)<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\">According to the old man&#8217;s message, <strong>&#8220;\u871b\u876b&#8221;<\/strong> in <strong>&#8220;\u871b\u876b<\/strong>\u8708\u86a3 Shima&#8221; ate \u8708\u86a3 and stopped on this island, so it is called &#8220;mukade shima&#8221;.<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\">There&#8217;s a shrine to the east of this island. Everything else is a private house.<br\/>The land is fertile and the plants are flourishing on this island, especially the kuwa and asa.<br\/>This is the &#8220;island village&#8221; that is 2 ri 100 steps (about 1247m) away from Tsu (port).<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\"><\/p>&#13;\n<p class=\"wp-block-paragraph\">Only bedrock continues from this island to &#8220;Yomi no shima&#8221; (present-day Yugahama is an island at that time) in the interview district of Hakutokoku (Tottori Prefecture) About 60 steps (100 meters) in length.<br\/>I&#8217;ll go back and forth on a horse. When the tide is high, it&#8217;s only two shaku five dimensions (70 cm) <strong>deep.<\/strong><\/p>&#13;\n<p><\/p>\r\n\r\n&#13;\n<p class=\"wp-block-paragraph\"><strong>See &#8220;Original Text&#8221; Digital<\/strong> Archive of the National Archives of Japan &#8220;Izumo Kaoru Fudoki&#8221;<br\/><a href=\"https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=%E7%94%BB%E5%83%8F%E5%88%A9%E7%94%A8\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/a><\/p>&#13;\n<p><strong><\/strong><\/p>\r\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-17077\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-C-\u51fa\u96f2\u56fd\u98a8\u571f\u8a18-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-C-\u51fa\u96f2\u56fd\u98a8\u571f\u8a18-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-C-\u51fa\u96f2\u56fd\u98a8\u571f\u8a18-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-C-\u51fa\u96f2\u56fd\u98a8\u571f\u8a18.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It has a shrine and legend in the island &#8220;\u871b\u876b shima&#8221; where <strong>&#8220;\u871b\u876b&#8221; <br\/><\/strong> in &#8220;kizuki no misaki&#8221; was caught and carried by &#8220;Tenbane&#8221;. <strong>\u871b\u876b &#8220;rai&#8221; (90-degree<\/strong> bow) at Tako shrine (tako shrine)<\/p>&#13;\n<p><\/p>\r\n&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" class=\"alignnone size-large wp-image-17079\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-21-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-21-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-21-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-21-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/figure>&#13;\n<p class=\"wp-block-paragraph\">\u00a0<\/p>&#13;\n","protected":false},"excerpt":{"rendered":"<p>\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &#8220;\u871b\u876b&#8221; in &#8220;Kizuki no Misaki&#8221; was located on the island &#8220;\u871b\u876b island &#8221; (tako shima)&#8221; which was caught and carried by &#8220;Tenbane(wide and large feathers)&#8221; in &#8220;Izumo-no-Misaki&#8221;.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[306],"tags":[309,328],"class_list":["post-17034","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &quot;\u871b\u876b&quot; in &quot;Kizuki no Misaki&quot; was located on the island &quot;\u871b\u876b island &quot; (tako shima)&quot; which was caught and carried by &quot;Tenbane(wide and large feathers)&quot; in &quot;Izumo-no-Misaki&quot;.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"shrine-heritager\"\/>\n\t<meta name=\"google-site-verification\" content=\"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &quot;\u871b\u876b&quot; in &quot;Kizuki no Misaki&quot; was located on the island &quot;\u871b\u876b island &quot; (tako shima)&quot; which was caught and carried by &quot;Tenbane(wide and large feathers)&quot; in &quot;Izumo-no-Misaki&quot;.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-09-20T18:24:51+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-09-20T18:25:10+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &quot;\u871b\u876b&quot; in &quot;Kizuki no Misaki&quot; was located on the island &quot;\u871b\u876b island &quot; (tako shima)&quot; which was caught and carried by &quot;Tenbane(wide and large feathers)&quot; in &quot;Izumo-no-Misaki&quot;.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#blogposting\",\"name\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager\",\"headline\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka Town)\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/s-A-\\u5cf6\\u6839\\u90e1\\u306e\\u795e\\u793e_LI-3.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#articleImage\",\"width\":1024,\"height\":713},\"datePublished\":\"2020-09-21T03:24:51+09:00\",\"dateModified\":\"2020-09-21T03:25:10+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#webpage\"},\"articleSection\":\"Uncategorized, \\u51fa\\u96f2\\u570b\\u98a8\\u571f\\u8a18\\u795e\\u540d\\u5e33, \\u4e2d\\u56fd\\u5730\\u65b9, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/uncategorized\\\/#listItem\",\"position\":2,\"name\":\"Uncategorized\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/uncategorized\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#listItem\",\"name\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka Town)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#listItem\",\"position\":3,\"name\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka Town)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/uncategorized\\\/#listItem\",\"name\":\"Uncategorized\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\",\"name\":\"Shrine-heritager Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage \\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/s-\\u30bf\\u30a4\\u30c8\\u30eb\\u306a\\u3057.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/\",\"name\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager\",\"description\":\"\\u871b\\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that \\\"\\u871b\\u876b\\\" in \\\"Kizuki no Misaki\\\" was located on the island \\\"\\u871b\\u876b island \\\" (tako shima)\\\" which was caught and carried by \\\"Tenbane(wide and large feathers)\\\" in \\\"Izumo-no-Misaki\\\".\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"datePublished\":\"2020-09-21T03:24:51+09:00\",\"dateModified\":\"2020-09-21T03:25:10+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"name\":\"Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager","description":"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that \"\u871b\u876b\" in \"Kizuki no Misaki\" was located on the island \"\u871b\u876b island \" (tako shima)\" which was caught and carried by \"Tenbane(wide and large feathers)\" in \"Izumo-no-Misaki\".","canonical_url":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#blogposting","name":"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager","headline":"\u871b\u876b Shrine (Ejima, Yatsuka Town)","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/04\/s-A-\u5cf6\u6839\u90e1\u306e\u795e\u793e_LI-3.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#articleImage","width":1024,"height":713},"datePublished":"2020-09-21T03:24:51+09:00","dateModified":"2020-09-21T03:25:10+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#webpage"},"articleSection":"Uncategorized, \u51fa\u96f2\u570b\u98a8\u571f\u8a18\u795e\u540d\u5e33, \u4e2d\u56fd\u5730\u65b9, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/#listItem","name":"Uncategorized"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/#listItem","position":2,"name":"Uncategorized","item":"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#listItem","name":"\u871b\u876b Shrine (Ejima, Yatsuka Town)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#listItem","position":3,"name":"\u871b\u876b Shrine (Ejima, Yatsuka Town)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/#listItem","name":"Uncategorized"}}]},{"@type":"Organization","@id":"https:\/\/shrineheritager.com\/en\/#organization","name":"Shrine-heritager Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","url":"https:\/\/shrineheritager.com\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2024\/06\/s-\u30bf\u30a4\u30c8\u30eb\u306a\u3057.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/","name":"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager","description":"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that \"\u871b\u876b\" in \"Kizuki no Misaki\" was located on the island \"\u871b\u876b island \" (tako shima)\" which was caught and carried by \"Tenbane(wide and large feathers)\" in \"Izumo-no-Misaki\".","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"datePublished":"2020-09-21T03:24:51+09:00","dateModified":"2020-09-21T03:25:10+09:00"},{"@type":"WebSite","@id":"https:\/\/shrineheritager.com\/en\/#website","url":"https:\/\/shrineheritager.com\/en\/","name":"Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","inLanguage":"en-US","publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","og:type":"article","og:title":"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager","og:description":"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &quot;\u871b\u876b&quot; in &quot;Kizuki no Misaki&quot; was located on the island &quot;\u871b\u876b island &quot; (tako shima)&quot; which was caught and carried by &quot;Tenbane(wide and large feathers)&quot; in &quot;Izumo-no-Misaki&quot;.","og:url":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/","article:published_time":"2020-09-20T18:24:51+00:00","article:modified_time":"2020-09-20T18:25:10+00:00","twitter:card":"summary_large_image","twitter:title":"\u871b\u876b Shrine (Ejima, Yatsuka Town) - Shrine-heritager","twitter:description":"\u871b\u876b Shrine (Ejima, Yatsuka-cho) has a tradition that &quot;\u871b\u876b&quot; in &quot;Kizuki no Misaki&quot; was located on the island &quot;\u871b\u876b island &quot; (tako shima)&quot; which was caught and carried by &quot;Tenbane(wide and large feathers)&quot; in &quot;Izumo-no-Misaki&quot;."},"aioseo_meta_data":{"post_id":"17034","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 15:15:15","updated":"2025-07-01 08:08:48","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/\" title=\"Uncategorized\">Uncategorized<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u871b\u876b Shrine (Ejima, Yatsuka Town)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"Uncategorized","link":"https:\/\/shrineheritager.com\/en\/category\/uncategorized\/"},{"label":"\u871b\u876b Shrine (Ejima, Yatsuka Town)","link":"https:\/\/shrineheritager.com\/en\/%e8%9c%9b%e8%9d%ab-shrine-ejima-yatsuka-town\/"}],"views":1173,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/17034","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/comments?post=17034"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/17034\/revisions"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=17034"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=17034"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=17034"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}