    <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":22658,"date":"2020-11-28T22:40:04","date_gmt":"2020-11-28T13:40:04","guid":{"rendered":"https:\/\/shrineheritager.com\/iiishi-shrine-takuwa\/"},"modified":"2020-11-28T22:40:04","modified_gmt":"2020-11-28T13:40:04","slug":"iiishi-shrine-takuwa","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/","title":{"rendered":"Iiishi Shrine (Takuwa)"},"content":{"rendered":"<p><b>It is Iiishi Shrine (Takuwa). &#8220;Ibiuzushio no mikoto&#8221; has the rock solid as the god when it descends from the heavenly world. The &#8220;iwa kura&#8221; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &#8220;iwa kura&#8221;.<\/b><\/p>\n\n<p><span style=\"font-weight: 400;\">From here, I will explain the name of the listed shrine in chronological order.<\/span><\/p>\n<p>First of all, &#8220;Izumo Kaoru Fudoki&#8221; was completed on February <span style=\"font-weight: 400;\">30, 733, about<br \/>\n 1300<\/span> years ago. Next, the Enki-style God Name Book, which was completed about <span style=\"font-weight: 400;\"><br \/>\n 1100<\/span> years ago and in the middle of the Heian period (extended 5 years and 927 years), is the last of the &#8220;Izumo-an Fudoki&#8221; and &#8220;Enki-style God Name Book&#8221; (present-day <span style=\"font-weight: 400;\">shrine).<\/span><\/p>\n<h2><b>\u3010\u7d041300\u5e74\u524d\u3011About 1300 years ago<\/b><\/h2>\n<p><span class=\"hutoaka\"><b>\u3010\u51fa\u96f2\u570b\u98a8\u571f\u8a18\uff08izumo no kuni fudoki\uff09\u6240\u8f09\u793e\uff08Place of publication\uff09\u3011<br \/>\n<\/b><\/span><span class=\"hutoaka\"><b>The shrine record was completed in February 733 AD.<\/b><\/span><\/p>\n<h5><span style=\"font-weight: 400;\">\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09<\/span><\/h5>\n<p><b>\u3010\u570b\u3011 \u51fa\u96f2\u570b\uff08izumo no kuni\uff09<br \/>\n<\/b><b>\u3010\u90e1\u3011 \u98ef\u77f3\u90e1\uff08iishi no kori\uff09 \u6761<br \/>\n<\/b><b> \u795e\u7947\u5b98\u793e\uff08jingikan no yashiro \uff09<\/b><\/p>\n<p><b>\u3010\u793e\u540d\u3011 <span style=\"font-size: 120%;\">\u98ef\u77f3\u793e<\/span><\/b><\/p>\n<p><b>\u3010\u8aad\u307f\u3011\uff08\u3044\u3044\u3057 \u306e\uff09\u3084\u3057\u308d<br \/>\n<\/b><b>\u3010How to read\u3011\uff08iishi no\uff09 yashiro<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u300e\u51fa\u96f2\u56fd\u98a8\u571f\u8a18\u300f\u5199\u672c<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22659\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-A-1-%E9%A3%AF%E7%9F%B3%E9%83%A1%E3%81%AE%E7%A5%9E%E7%A4%BE_LI-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\"><\/p>\n<h5><span style=\"font-weight: 400;\">\u5883\u5185\u793e \u8a17\u548c\u795e\u793e\uff08takuwa jinja\uff09<\/span><\/h5>\n<p><b>\u3010\u570b\u3011 \u51fa\u96f2\u570b\uff08izumo no kuni\uff09<br \/>\n<\/b><b>\u3010\u90e1\u3011 \u98ef\u77f3\u90e1\uff08iishi no kori\uff09 \u6761<br \/>\n<\/b><b> \u4e0d\u5728\u795e\u7947\u5b98\u793e\uff08fuzai jingikan no yashiro\uff09<\/b><\/p>\n<p><b>\u3010\u793e\u540d\u3011<span style=\"font-size: 120%;\">\u8a17\u548c\u793e <\/span><\/b><\/p>\n<p><b>\u3010\u8aad\u307f\u3011\uff08\u305f\u304f\u308f \u306e\uff09\u3084\u3057\u308d<br \/>\n<\/b><b>\u3010How to read\u3011\uff08takuwa no\uff09 yashiro<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u300e\u51fa\u96f2\u56fd\u98a8\u571f\u8a18\u300f\u5199\u672c<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22661\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-A-2-1-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-A-2-1-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-A-2-1-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-A-2-1.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h2><b>\u3010\u7d041100\u5e74\u524d\u3011About 1100 years ago<\/b><\/h2>\n<p><span class=\"hutoaka\"><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u6240\u8f09\u793e\uff08Place of publication\uff09\u3011<br \/>\n<\/b><\/span><span class=\"hutoaka\"><b>The shrine record was completed in December 927 AD<\/b><\/span><\/p>\n<p><b>\u3010\u570b\u3011 \u51fa\u96f2\u570b\uff08izumo no kuni\uff09<br \/>\n<\/b><b>\u3010\u90e1\u3011 \u98ef\u77f3\u90e1\uff08iishi no kori\uff09<\/b><\/p>\n<p><b>\u3010\u793e\u540d\u3011 <span style=\"font-size: 120%;\">\u98ef\u77f3\u795e\u793e<\/span><\/b><\/p>\n<p><b>\u3010\u8aad\u307f\u3011\uff08\u3044\u3044\u3057\u306e\u304b\u307f\u306e\u3084\u3057\u308d\uff09<br \/>\n<\/b><b>\u3010How to read\u3011\uff08iishi no kamino yashiro\uff09<\/b><\/p>\n<p><span style=\"font-weight: 400;\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1442211\/160\u753b\u50cf\u5229\u7528\u3000<\/span><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 \u5ef6\u559c\u5f0f : \u6821\u8a02. \u4e0a\u5dfb(\u662d\u548c4\u81f37)<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22663\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-B-1-%E9%A3%AF%E7%9F%B3-806x600.jpg\" alt=\"\" width=\"806\" height=\"600\"><\/p>\n<h2><b>\u3010\u73fe\u5728\u3011At the moment<\/b><\/h2>\n<p><span class=\"hutoaka\"><b>\u3010\u8ad6\u793e\u3011Current specific shrine<\/b><\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d\u3011(shrine name)<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b> \u98ef\u77f3\u795e\u793e<\/b><\/span><b><span style=\"font-size: 120%;\">\uff08iishi shrine\uff09<\/span><br \/>\n<\/b><b> \uff08\u3044\u3044\u3057\u3058\u3093\u3058\u3083\uff09<\/b><\/p>\n<p><b>\u3010\u901a\u79f0\u540d\u3011(Common name)<\/b><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730\u3011(location)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">1060-2 Takowa, Mitsutoya-cho, Yunnan City, Shimane Prefecture<\/span><\/p>\n<h3><b>\u3010\u5730 \u56f3\u3011(Google Map)<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E6%9C%A8%E6%AC%A1\/%E3%80%92690-2512+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E9%9B%B2%E5%8D%97%E5%B8%82%E4%B8%89%E5%88%80%E5%B1%8B%E7%94%BA%E5%A4%9A%E4%B9%85%E5%92%8C%EF%BC%91%EF%BC%90%EF%BC%96%EF%BC%90%E2%88%92%EF%BC%92+%E9%A3%AF%E7%9F%B3%E7%A5%9E%E7%A4%BE\/@35.2726034,132.8810558,13.96z\/data=!4m14!4m13!1m5!1m1!1s0x35573f2abbe99f53\" data-lkc-id=\"39\" 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\">\u6728\u6b21\u753a\u6728\u6b21 to \u98ef\u77f3\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%25E6%259C%25A8%25E6%25AC%25A1%2F%25E3%2580%2592690-2512%2B%25E5%25B3%25B6%25E6%25A0%25B9%25E7%259C%258C%25E9%259B%25B2%25E5%258D%2597%25E5%25B8%2582%25E4%25B8%2589%25E5%2588%2580%25E5%25B1%258B%25E7%2594%25BA%25E5%25A4%259A%25E4%25B9%2585%25E5%2592%258C%25EF%25BC%2591%25EF%25BC%2590%25EF%25BC%2596%25EF%25BC%2590%25E2%2588%2592%25EF%25BC%2592%2B%25E9%25A3%25AF%25E7%259F%25B3%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.2726034%2C132.8810558%2C13.96z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x35573f2abbe99f53?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u6728\u6b21\u753a\u6728\u6b21 to \u98ef\u77f3\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E6%9C%A8%E6%AC%A1\/%E3%80%92690-2512+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E9%9B%B2%E5%8D%97%E5%B8%82%E4%B8%89%E5%88%80%E5%B1%8B%E7%94%BA%E5%A4%9A%E4%B9%85%E5%92%8C%EF%BC%91%EF%BC%90%EF%BC%96%EF%BC%90%E2%88%92%EF%BC%92+%E9%A3%AF%E7%9F%B3%E7%A5%9E%E7%A4%BE\/@35.2726034,132.8810558,13.96z\/data=!4m14!4m13!1m5!1m1!1s0x35573f2abbe99f53\">https:\/\/www.google.com\/maps\/dir\/\u6728\u6b21\/\u3012690-2512+\u5cf6\u6839\u770c\u96f2\u5357\u5e02\u4e09\u5200\u5c4b\u753a\u591a\u4e45\u548c\uff11\uff10\uff16\uff10\u2212\uff12+\u98ef\u77f3\u795e\u793e\/@35.2726034,132.8810558,13.96z\/data=!4m14!4m13!1m5!1m1!1s0x35573f2abbe99f53<\/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>\n<h3><b>\u3010\u5fa1\u796d\u795e\u3011(God\u2019s name to pray)<\/b><\/h3>\n<p><span style=\"font-size: 130%;\"><b>\u300a\u4e3b\u300b\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\uff08iishitsube no mikoto\uff09<\/b><\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c\u3011(God\u2019s great power)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u4e94\u7a40\u8c4a\u7a63 Pray for good harvest<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5bb6\u5185\u5b89\u5168 Safe and comfortable home life<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5bb6\u904b\u9577\u4e45 Continued family happiness<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5384\u9664\u3051 Prayer at an age considered a milestone in life<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u7e01\u7d50\u3073 Deepen connections and intimacy with people<\/span><\/p>\n<h3><b>\u3010\u683c\u5f0f\u3011(Rules of dignity)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u300e\u51fa\u96f2\u570b\u98a8\u571f\u8a18\uff08izumo no kuni fudoki\uff09\u300f\u6240\u8f09\u793e<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho \uff09\u300f\u6240\u8f09\u793e<\/span><\/p>\n<h3><b>\u3010\u5275\u5efa\u3011(Beginning of history)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u795e\u4ee3 Age of God<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u547d\u306e\u5929\u964d\u3089\u308c\u305f\u76e4\u77f3\u3092\u5fa1\u795e\u4f53\u3068\u3057\u3001\u4e8c\u91cd\u306e\u7389\u9020\u308a\u3067\u56f2\u307f\u672c\u6bbf\u306b\u304b\u3048\u3066\u3044\u308b\u3002<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u901a\u6bbf\u3001\u62dd\u6bbf\u3092\u914d\u3057 \u76f4\u63a5\u795e\u4f53\u3092\u62dd\u3080\u3053\u3068\u304c\u3067\u304d\u3001\u78d0\u5883\u3001\u78d0\u5ea7\u3068\u3044\u3046\u53e4\u4ee3\u306e\u8056\u5730\u5f62\u614b\u3092\u4f1d\u3048\u3066\u3044\u308b\u3002<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u307e\u305f\u3053\u306e\u5730\u3092\u547d\u306e\u964d\u81e8\u306e\u8056\u5730\u3068\u3057\u3066\u6ce8\u9023\u7e04\u3092\u7528\u3044\u305a\u3001\u5883\u5185\u306b\u306f\u6442\u793e\u3001\u672b\u793e\u306f\u52ff\u8ad6\u3001\u968f\u795e\u9580\u3001\u706f\u7bed\u3001\u72db\u72ac\u306f\u306a\u304f\u30fb\u30fb\u30fb\u30fb\u30fb<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Shimane Prefectural Shrine Office website<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u7531\u7dd2\u3011(history)<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22665\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-2-12-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-2-12-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-2-12-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-2-12-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-2-12.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u51fa\u96f2\u56fd\u98a8\u571f\u8a18\u306b\u98ef\u77f3\u793e\u3001\u5ef6\u559c\u5f0f\u306b\u98ef\u77f3\u795e\u793e\u3068\u307f\u3048\u308b\u5f0f\u5185\u793e\u3067\u3001<br \/>\n<\/span><span style=\"font-weight: 400;\">\u51fa\u96f2\u56fd\u98a8\u571f\u8a18\u306b\u98ef\u77f3\u90e1\u306e\u6761\u306b\u300c\u98ef\u77f3\u3068\u53f7\u304f\u308b\u6240\u4ee5\u306f\u3001\u98ef\u77f3\u90f7\u306e\u4e2d\u306b\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\u5750\u305b\u308a\u3002\u6545\u98ef\u77f3\u3068\u4e91\u3075\u3002\u300d\u307e\u305f\u300c\u90e1\u5bb6\u306e\u6b63\u6771\uff11\uff12\u91cc\u306a\u308a\u3002\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\u5929\u964d\u308a\u5750\u3057\u3057\u51e6\u306a\u308a\u3002\u6545\u4f0a\u6bd8\u5fd7\u3068\u4e91\u3075\u3002\u300d\uff08\u795e\u4e80\uff13\u5e74\u306b\u5b57\u3092\u98ef\u77f3\u3068\u6539\u3080\uff09\u3068\u3042\u308a\u3001<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\u306e\u5929\u964d\u308a\u307e\u3057\u305f\u3068\u4f1d\u3048\u308b\u78d0\u77f3\u304c\u5fa1\u795e\u4f53\u3068\u306a\u3063\u3066\u3044\u308b\u306e\u3067\u3001\u672c\u6bbf\u306f\u306a\u304f\u3001\u5e63\u6bbf\u3001\u901a\u6bbf\u3001\u62dd\u6bbf\u3092\u914d\u3057\u3066\u3044\u308b\u3002<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5373\u3061\u78d0\u5883\u3001\u78d0\u5ea7\u3068\u3044\u3046\u81ea\u7136\u4fe1\u4ef0\u306e\u5f62\u614b\u3092\u305d\u306e\u307e\u307e\u306e\u59ff\u3067\u73fe\u5728\u306b\u4f1d\u3048\u3066\u3044\u308b\u3002\u53c8\u3001\u3053\u306e\u5730\u3092\u547d\u306e\u964d\u81e8\u306e\u8056\u5730\u3068\u3057\u3066\u3001\u53e4\u6765\u6ce8\u9023\u7e04\u3092\u7528\u3044\u306a\u3044\u306e\u3082\u7279\u6b8a\u306e\u7fd2\u6163\u3067\u3042\u308b\u3002<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u660e\u6cbb\uff14\uff14\u5e74\uff18\u6708\u306e\u9077\u5bae\u5de5\u4e8b\u306e\u969b\u3001\u5fa1\u970a\u4ee3\u306e\u672c\u6bbf\u78d0\u77f3\u306e\u304b\u305f\u308f\u3089\u5883\u5185\u306e\u5b57\u8feb\u304b\u3089\u3001\u53e4\u58b3\u6642\u4ee3\u306e\u796d\u7940\u7528\u907a\u54c1\u3068\u307f\u3089\u308c\u308b\u9ad8\u574f\u3001\u58f7\u306a\u3069\u306e\u9808\u6075\u5668\u985e\u304c\u51fa\u571f\u3057\u305f\u3002<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u5fa1\u796d\u795e \u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\u306f \u5929\u7167\u5927\u795e\u306e\u7b2c\u4e8c\u306e\u5fa1\u5b50\u5929\u7a42\u65e5\u547d\u306e\u5fa1\u5b50\u3067\u3001\u5929\u5937\u9ce5\u547d\u3001\u6b66\u5937\u9ce5\u547d\u3068\u3082\u4e91\u3044\u3001\u56fd\u8b72\u308a\u306b\u969b\u3057\u3066 \u4e09\u7a42\u4e4b\u5d0e\u306b\u4e8b\u4ee3\u4e3b\u795e\u3092\u5c0b\u306d \u56fd\u571f\u5949\u9084\u306e\u5927\u696d\u3092\u6210\u5c31\u3055\u308c\u305f\u795e\u3067\u3042\u308b\u3068\u3055\u308c\u3066\u3044\u308b\u3002<br \/>\n<\/span><span style=\"font-weight: 400;\">\u305d\u306e\u6642\u306b\u4f7f\u7528\u3055\u308c\u305f\u8239\u3092 \u718a\u91ce\u8af8\u624b\u8239\u3068\u3044\u3046\u3002<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\u306f\u3001\u51fa\u96f2\u56fd\u9020\u5bb6\u306e\u7956\u795e\u306b\u3042\u305f\u308b\u305f\u3081\u3001\u53e4\u6765 \u6b63\u9077\u5ea7\u796d\u306b\u306f\u51fa\u96f2\u56fd\u9020\u5fa1\u53c2\u5411\u306e\u3046\u3048\u3001\u5949\u5e63\u3092\u5949\u3089\u308c\u308b\u7fd2\u308f\u3057\u3067\u3042\u3063\u305f\u304c\u3001\u8fd1\u5e74\uff08\u662d\u548c\uff14\uff12\u5e74\u4ee5\u964d\uff09\u306b\u81f3\u308a\u3001\u4f8b\u796d\u306b\u3082 \u56fd\u9020\u5fa1\u53c2\u5411\u304c\u6163\u7fd2\u3068\u306a\u3063\u3066\u3044\u308b\u3002<\/span><\/p>\n<p><b>\u300c\u5168\u56fd\u795e\u793e\u796d\u7940\u796d\u793c\u7dcf\u5408\u8abf\u67fb(\u5e73\u62107\u5e74)\u300d[\u795e\u793e\u672c\u5e81]\u304b\u3089\u53c2\u7167<\/b><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e\u3011(Other deities within the precincts)<\/b><\/h3>\n<p><b>\u30fb\u8a17\u548c\u795e\u793e\uff08takuwa jinja\uff09\u300a\u4e3b\u300b\u5409\u5099\u6d25\u5f66\u547d\uff08kibitsu hiko no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22667\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-3-10-450x600.jpg\" alt=\"\" width=\"450\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-3-10-450x600.jpg 450w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-3-10.jpg 768w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/><\/p>\n<blockquote><p><b>\u5883\u5185\u793e \u8a17\u548c\u795e\u793e \uff08\u51fa\u96f2\u98a8\u571f\u8a18\u6240\u8f09\u793e\uff09<\/b><\/p>\n<p><b>\u796d \u795e \u5409\u5099\u6d25\u5f66\u547d<\/b><b><br \/>\n<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u53e4\u6765\u3001\u4e2d\u91ce\u3001\u516d\u91cd\u3001\u795e\u4ee3\u3001\u6df1\u91ce\u3001\u4e0a\u5c71\u3001\u66fd\u6728\u3001\u5ddd\u624b\u3001\u4e03\u30f6\u6751\u306e\u7dcf\u6c0f\u795e\u3067\u3042\u3063\u305f\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u660e\u6cbb\u56db\u5341\u56db\u5e74\u65e7\u793e\u5730\u3088\u308a\u3001\u3053\u306e\u5730\u306b\u9077\u3057\u3001\u516b\u5e61\u5bae\u3082\u5408\u7940\u3055\u308c\u305f\u3002\u65e7\u793e\u5730\u306e\u4ed8\u8fd1\u3088\u308a \u897f\u65e5\u672c\u6700\u53e4\u306e\u7e04\u6587\u571f\u5668\u304c\u767a\u898b\u3055\u308c\u305f\u306e\u306f\u5468\u77e5\u306e\u901a\u308a\u3067\u3042\u308b\u3002<\/span><\/p>\n<p><b>From the information board<\/b><\/p><\/blockquote>\n<h3><b>\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<\/b><\/h3>\n<h4><b>About &#8220;\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09&#8221; &#8220;\u78d0\u5ea7\uff08iwa kura\uff09&#8221;<\/b><\/h4>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22669\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-4-9-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-4-9-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-4-9-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-4-9.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Iishi shrine (iishi shrine) is in the form of an old shrine of Izumo as well as Mankusen shrine (mankusen shrine), there is no main hall, and Iwa kura surrounded by tamagaki behind the worship hall is enshrined.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At iishi shrine, there are no &#8220;norenawa&#8221;, &#8220;lanterns&#8221;, &#8220;dog dogs&#8221;, etc. usually found in the shrine.<\/span><\/p>\n<p>This is a special custom that the form of natural faith called Iwa kura is conveyed to the present as it is, and this place is not used as a sacred place for the advent of life <span style=\"font-weight: 400;\"><br \/>\n  It<\/span> conveys the ancient ritual form of Iwa kura quite <span style=\"font-weight: 400;\">faithfully to the present.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">And surprisingly, this &#8220;stone&#8221; seems to be getting bigger.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">According to Kunio Yanagita, author of &#8220;The Legend of Japan&#8221;, the following story is written.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-22671\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-5%E3%80%8E%E6%97%A5%E6%9C%AC%E3%81%AE%E4%BC%9D%E8%AA%AC%E3%80%8F%E8%91%97%E8%80%85%E6%9F%B3%E7%94%B0%E5%9B%BD%E7%94%B7-2.jpg\" alt=\"\" width=\"353\" height=\"499\"><\/p>\n<blockquote><p><b>\u300c <\/b><span style=\"font-weight: 400;\">In the village of Nakano in Aki, the large rock in the rice field, which is two heights high, was called Izumoishi. It is said that while this was still a pebble, a person came from Izumo Province and it became bigger here (Geihan Tsukasa, Takasaka Village, Toyota District, Hiroshima City).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Izumo Province, there was a big stone behind Iishi Shrine. After all, it has been getting bigger since long ago.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is said that the shape of the stone seems to have rice, or it is because it is a stone that has fallen from heaven while still inside the rice bowl. (Hereafter Izumo Kokushiki internal company thought. Iishi-mura, Iishi-gun, Shimane Prefecture)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The reason why you can see that the stone has grown is that every time you remake the Aragaki around it, you have to add the previous dimensions to it.<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u300d<\/span><\/p>\n<p><strong>\u300e\u65e5\u672c\u306e\u4f1d\u8aac\u300f&#8221;Legend of Japan&#8221;<\/strong><\/p><\/blockquote>\n<h2><b>\u3010\u795e\u793e\u306b\u304a\u8a63\u308a\u3011(Pray at the shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">About 8km from Kisuki Station via R314 Prefectural Road 176 About 15 minutes by car<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Drive along Mitoya-cho, Unnan City and take Prefectural Road 176 (Kakeai Daito Line) to the side road to reach the approach to Sugigiri along the clear stream.<br \/>\n<\/span><span style=\"font-weight: 400;\">It sits on the right bank of the Iiishi River (also known as the takuwa river).<\/span><\/p>\n<p><b>Arrived at\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22673\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-6-12-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-6-12-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-6-12-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-6-12.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The Iiishi River (also known as the takuwa river) runs from north to south, and the precincts continue to the east of the river.<br \/>\n<\/span><span style=\"font-weight: 400;\">There is a guide board on the left and you can read it<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22675\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-7-12-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-7-12-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-7-12-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-7-12.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Give a bow and go through the torii<br \/>\n<\/span><span style=\"font-weight: 400;\">The shrine is facing west<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22677\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-8-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-8-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-8-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-8-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The front is<\/span><b>\u5883\u5185\u793e \u8a17\u548c\u795e\u793e\u300a\u4e3b\u300b\u5409\u5099\u6d25\u5f66\u547d\uff08kibitsu hiko no mikoto\uff09\u306e\u672c\u6bbf<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The back is<\/span><b>\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09\u300a\u4e3b\u300b\u4f0a\u6bd8\u5fd7\u90fd\u5e63\u547d\uff08iishitsube no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22679\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-9-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-9-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-9-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-9-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Proceed to each shrine<\/span><\/p>\n<p><b>Give me a prayer.<br \/>\n<\/b><b>When you reach the god of worship, where you worship God&#8217;s power, pray with your hands together.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22681\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-10-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-10-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-10-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-10-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is no main shrine at Iishi shrine. Behind the worship hall, the god is the &#8220;stone&#8221; that is said to have descended from the heavenly world.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22683\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-11-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-11-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-11-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-11-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the side of Aragaki, you can feel the &#8220;stone&#8221; around 4 meters.<br \/>\n<\/span><span style=\"font-weight: 400;\">I hang my head deeply and pray<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22685\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-12-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-12-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-12-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-12-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22687\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-13-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-13-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-13-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-13-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Return to the precincts, go through the torii gate, look back and give a bow<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22689\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-14-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-14-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-14-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-14-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h2><b>\u3010\u795e\u793e\u306e\u4f1d\u627f\u3011(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Each document is handed down as follows<\/span><\/p>\n<h3><b>\u300e\u51fa\u96f2\u570b\u98a8\u571f\u8a18\uff08izumo no kuni fudoki\uff09\u300fAbout the tradition written in Iishi-gun, Iishi-go<\/b><\/h3>\n<p><b>It is a tradition about the origin of Iishi no sato.<\/b><\/p>\n<blockquote><p><b>\u610f\u8a33<br \/>\n<\/b><b>\u300e \u98ef\u77f3\u90f7\uff08iishi no sato\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\"> \u90e1\u5bb6\u306e\u6b63\u677117\u91cc\u306e\u6240\u306b\u3042\u308a\u307e\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u4f0a\u6bd8\u5fd7\u90fd\u5f0a\u547d\uff08iishitsube no mikoto\uff09\u304c \u5929\u304b\u3089\u304a\u964d\u308a\u306b\u306a\u3063\u305f\u3068\u3053\u308d\u3067\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u3060\u304b\u3089 \u4f0a\u9f3b\u5fd7\uff08iishi\uff09\u3068\u3044\u3044\u307e\u3059 \u795e\u4e803\u5e74\u306b\u5b57\u3092\u98ef\u77f3\uff08iishi\uff09\u3068\u6539\u3081\u307e\u3057\u305f \u300f<\/span><\/p><\/blockquote>\n<p><b>\u300e\u539f\u6587\u300f\u53c2\u7167 <\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u300e\u51fa\u96f2\u570b\u98a8\u571f\u8a18\u300f <\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000003351&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22691\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-C-1-%E5%87%BA%E9%9B%B2%E5%9B%BD%E9%A2%A8%E5%9C%9F%E8%A8%98-3-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\"><\/p>\n<h3><b>\u300e\u96f2\u967d\u5fd7\uff08unyo shi\uff09\u300f\u98ef\u77f3\u90e1 \u591a\u4e45\u548c\uff08takuwa\uff09 \u306b\u3042\u308b\u4f1d\u627f<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u300e\u96f2\u967d\u5fd7\uff08unyo shi\uff09\u300f\u3067\u306f<br \/>\n<\/span><span style=\"font-weight: 400;\">\u300c\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09\u300d\u304c\u300c\u98ef\u77f3\u793e\uff08iishi no\uff09 yashiro\u300d<br \/>\n<\/span><span style=\"font-weight: 400;\"> \u300c\u8a17\u548c\u795e\u793e\uff08takuwa jinja\uff09\u300d\u304c\u300c\u8a17\u548c\u793e\uff08takuwa no\uff09 yashiro\u300d<\/span><span style=\"font-weight: 400;\">\u3068\u3057\u3066\u8a18\u3055\u308c\u3066\u3044\u307e\u3059<\/span><\/p>\n<blockquote><p><b>\u610f\u8a33<br \/>\n<\/b><b>\u300e \u591a\u4e45\u548c\uff08takuwa\uff09 \u98ef\u77f3\u793e\uff08iishi no\uff09 yashiro<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u5f80\u6614 \u4e00\u9695\u77f3\u304c\u3042\u308a \u9ad8\u30553\u5c3a4\u5bf8\u3092\u3082\u3063\u3066 \u5468\u56f2\u306e\u69d8\u5b50\u306f\u98ef\u5f62\u3092\u76db\u3063\u305f\u3088\u3046\u306a\u306e\u3067\u300c\u98ef\u77f3\u300d\u3068\u4e91\u3046\u3068\u53e4\u8a18\u306b\u4f1d\u308f\u308a\u307e\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u4f0a\u6bd8\u5fd7\u90fd\u5f0a\u547d\uff08iishitsube no mikoto\uff09\u304c \u5929\u3088\u308a\u3053\u306e\u77f3\u3068\u964d\u3063\u3066\u93ae\u5ea7\u3057\u307e\u3057\u305f \u5f80\u5e74 \u77f3\u306e\u508d\u3089\u306b\u793e\u3042\u308a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u98a8\u571f\u8a18 \u5ef6\u559c\u5f0f\u306b\u8a18\u8f09\u3055\u308c\u3066\u3044\u3066 \u4e71\u4e16\u3092\u7d4c\u3066\u4ee5\u6765 \u8870\u9000\u3057\u5ec3\u793e\u3057 \u796d\u308a\u3082\u7d76\u3063\u3066\u3044\u307e\u3057\u305f\u304c \u3053\u306e\u77f3\u306f\u78ba\u56fa\u3068\u3057\u3066\u52d5\u3058\u306a\u304f \u4eca\u306b\u81f3\u3063\u3066\u3082\u5b58\u5728\u3057\u3066\u3044\u308b<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u91cc\u4eba\u306f \u3053\u3068\u3054\u3068\u304f\u795e\u3092\u656c\u3044 \u77f3\u306e\u7531\u7e01\u304c\u3042\u308b\u3053\u3068\u3092\u3082\u3063\u3066\u793e\u3092\u518d\u5efa\u3057\u307e\u3057\u305f<br \/>\n<\/span><span style=\"font-weight: 400;\">\u6bce\u5e749\u670815\u65e5 7\u5ea7\u306e\u795e\u4e8b \u6e6f\u7acb\u3066 \u7345\u5b50\u821e \u5fa1\u5e78 \u6d41\u93d1\u99ac\u304c\u3042\u308a \u7531\u6765\u7e01\u8d77\u306f\u8a73\u7d30\u3067\u3059<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb<\/span><\/p>\n<p><b>\u8a17\u548c\u793e\uff08takuwa no\uff09 yashiro<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u98a8\u571f\u8a18\u306b\u6240\u8f09\u3055\u308c \u5409\u5099\u6d25\u660e\u795e\u3092\u7940\u308b<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u53e4\u8001\u306e\u4f1d\u3048\u3067\u306f \u591a\u4e45\u548c\u57ce\u4e3b \u79cb\u4e0a\u4f0a\u7e54\u4e4b\u52a9 \u5efa\u7acb\u306e\u793e\u306a\u308a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u6b6313\u5e74\uff081585\uff09\u6bdb\u5229 \u5927\u8535\u518d\u5efa\u306e\u68df\u672d\u3042\u308a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u6176\u95772\u5e74\uff081597\uff09\u62dd\u6bbf \u6b4c\u4ed9\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb<\/span><b> \u300f<\/b><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\"><b>\u300e\u539f\u6587\u300f\u53c2\u7167<\/b>\u300e\u96f2\u967d\u5fd7\uff08unyo shi\uff09\u300f[\u9ed2\u6ca2\u9577\u5c1a\u8457]\u5929\u4fdd6 [1835]<\/span><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6<\/span><span style=\"font-weight: 400;\">\u300e\u96f2\u967d\u5fd7\u300f<\/span><span style=\"font-weight: 400;\">\u5199\u672c<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000002424&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><br \/>\n<img decoding=\"async\" class=\"alignnone size-large wp-image-22693\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-E-1%E3%80%80%E9%A3%AF%E7%9F%B3%E7%A5%9E%E7%A4%BE%E8%A8%97%E5%92%8C%E7%A4%BE_LI-868x600.jpg\" alt=\"\" width=\"868\" height=\"600\"><\/p>\n<h3><b>\u300e\u51fa\u96f2\u56fd\u5f0f\u793e\u8003\uff08izumo no kuni shiki no yashiro ko\uff09\u300f\u98ef\u77f3\u90e1 \u306b\u3042\u308b\u4f1d\u627f<\/b><\/h3>\n<blockquote><p><b>\u610f\u8a33<br \/>\n<\/b><b>\u300e \u98ef\u77f3\u795e\u793e\uff08iishi no kamino yashiro\uff09<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u98a8\u571f\u8a18\u306b\u540c\u3058 \u591a\u4e45\u548c\u6751\u306a\u308b \u98ef\u77f3\u6a29\u73fe\u793e\u306a\u308a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u795e\u6bbf\u306e\u5927\u304d\u30551\u95934\u65b9 \u62dd\u6bbf \u9ce5\u5c45\u3042\u308a<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u795e\u6bbf\u306e\u5f8c\u308d\u306b\u5927\u77f3\u3042\u308a \u5f62\u306f\u98ef\u306e\u5a01\u6301\u3063\u3066\u3044\u308b \u3053\u306e\u77f3\u3092\u796d\u308b<br \/>\n<\/span><span style=\"font-weight: 400;\">\u7136\u308b\u306b \u3053\u306e\u77f3 \u6614\u3088\u308a\u6f38\u3057\u3066 \u5927\u304d\u304f\u306a\u308b\u6545\u3068\u4e91\u3044\u4f1d\u3048\u3089\u308c\u3066\u3044\u307e\u3059<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5468\u308a\u306e\u8352\u57a3\u3092\u6539\u3081\u3066\u9020\u308b\u305f\u3073\u306b \u4ee5\u524d\u306e\u5c3a\u3088\u308a\u5bf8\u6cd5\u3092\u5ef6\u3079\u3055\u308c\u3066 \u77f3\u304c\u7d0d\u3081\u3089\u308c\u3066\u3044\u307e\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u3053\u306e\u793e\u306f \u4f0a\u6bd8\u5fd7\u90fd\u5f0a\u547d\uff08iishitsube no mikoto\uff09\u3092\u796d\u308b\u306a\u308b\u3079\u3057<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u98a8\u571f\u8a18\u306b \u98ef\u77f3\u90f7\uff08iishi no sato\uff09\u3068\u3044\u3046\u306e\u306f<br \/>\n<\/span><b>\u300e<\/b><span style=\"font-weight: 400;\">\u4f0a\u6bd8\u5fd7\u90fd\u5f0a\u547d\uff08iishitsube no mikoto\uff09\u304c \u5929\u304b\u3089\u304a\u964d\u308a\u306b\u306a\u3063\u305f\u3068\u3053\u308d\u3067\u3059 \u3060\u304b\u3089 \u4f0a\u9f3b\u5fd7\uff08iishi\uff09\u3068\u3044\u3044\u307e\u3059 \u795e\u4e803\u5e74\u306b\u5b57\u3092\u98ef\u77f3\uff08iishi\uff09\u3068\u6539\u3081\u305f \u300f\u3068\u3042\u308a\u307e\u3059<br \/>\n<\/span><span style=\"font-weight: 400;\">\u3053\u3046\u3057\u305f\u3053\u3068\u304b\u3089 \u91cc\u306e\u5730\u540d\u3068\u306a\u3063\u3066\u3044\u307e\u3059\u30fb\u30fb\u30fb\u30fb\u796d\u65e59\u670815\u65e5<\/span><b> \u300f<\/b><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">\u203b\u300e\u51fa\u96f2\u56fd\u5f0f\u793e\u8003\uff08\uff08izumo no kuni shiki no yashiro ko\uff09\uff09\u300f[\u9078\u8005:\u5343\u5bb6\u6885\u820e\uff0f\u6821\u8a02\u8005:\u5ca9\u653f\u4fe1\u6bd4\u53e4]\u5199\u672c ,\u660e\u6cbb02\u5e74\uff081906\uff09<br \/>\n<\/span><b>\u300e\u539f\u6587\u300f\u53c2\u7167 <\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6<\/span><span style=\"font-weight: 400;\">\u300e\u51fa\u96f2\u56fd\u5f0f\u793e\u8003\u300f<\/span><span style=\"font-weight: 400;\">\u5199\u672c <\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000040615&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><b><img decoding=\"async\" class=\"alignnone size-large wp-image-22695\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-F-1-%E5%BC%8F%E5%86%85%E7%A4%BE%E8%80%83-4-856x600.jpg\" alt=\"\" width=\"856\" height=\"600\"> <img decoding=\"async\" class=\"alignnone size-large wp-image-22697\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-F-2-1-856x600.jpg\" alt=\"\" width=\"856\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-F-2-1-856x600.jpg 856w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-F-2-1-768x539.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-F-2-1.jpg 1024w\" sizes=\"(max-width: 856px) 100vw, 856px\" \/><br \/>\n<\/b><b>\u4f0a\u6bd8\u5fd7\u90fd\u5f0a\u547d\uff08iishitsube no mikoto\uff09\u306e\u5929\u964d\u3089\u308c\u305f\u76e4\u77f3\u3092\u5fa1\u795e\u4f53\u3068\u3057\u3066\u300c\u78d0\u5ea7\uff08iwa kura\uff09\u300d\u304c\u8352\u57a3\u3067\u56f2\u307e\u308c\u3066\u5750\u307e\u3059<br \/>\n<\/b><b>\u98ef\u77f3\u795e\u793e\uff08iishi shrine\uff09\u306b\u300c\u62dd (hai)\u300d(90\u5ea6\u306e\u304a\u8f9e\u5100)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22699\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-15-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-15-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-15-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/05\/s-15-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>It is Iiishi Shrine (Takuwa). &#8220;Ibiuzushio no mikoto&#8221; has the rock solid as the god when it descends from the heavenly world. The &#8220;iwa kura&#8221; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &#8220;iwa kura&#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":[308,309,328],"class_list":["post-22658","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"It is Iiishi Shrine (Takuwa). &quot;Ibiuzushio no mikoto&quot; has the rock solid as the god when it descends from the heavenly world. The &quot;iwa kura&quot; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &quot;iwa kura&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\/iiishi-shrine-takuwa\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\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=\"Iiishi Shrine (Takuwa) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"It is Iiishi Shrine (Takuwa). &quot;Ibiuzushio no mikoto&quot; has the rock solid as the god when it descends from the heavenly world. The &quot;iwa kura&quot; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &quot;iwa kura&quot;.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-11-28T13:40:04+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-11-28T13:40:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Iiishi Shrine (Takuwa) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"It is Iiishi Shrine (Takuwa). &quot;Ibiuzushio no mikoto&quot; has the rock solid as the god when it descends from the heavenly world. The &quot;iwa kura&quot; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &quot;iwa kura&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\\\/iiishi-shrine-takuwa\\\/#blogposting\",\"name\":\"Iiishi Shrine (Takuwa) - Shrine-heritager\",\"headline\":\"Iiishi Shrine (Takuwa)\",\"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\\\/05\\\/s-A-1-%E9%A3%AF%E7%9F%B3%E9%83%A1%E3%81%AE%E7%A5%9E%E7%A4%BE_LI.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#articleImage\"},\"datePublished\":\"2020-11-28T22:40:04+09:00\",\"dateModified\":\"2020-11-28T22:40:04+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#webpage\"},\"articleSection\":\"Uncategorized, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, \\u51fa\\u96f2\\u570b\\u98a8\\u571f\\u8a18\\u795e\\u540d\\u5e33, \\u4e2d\\u56fd\\u5730\\u65b9, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#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\\\/iiishi-shrine-takuwa\\\/#listItem\",\"name\":\"Iiishi Shrine (Takuwa)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#listItem\",\"position\":3,\"name\":\"Iiishi Shrine (Takuwa)\",\"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\\\/iiishi-shrine-takuwa\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#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\\\/iiishi-shrine-takuwa\\\/#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\\\/iiishi-shrine-takuwa\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/\",\"name\":\"Iiishi Shrine (Takuwa) - Shrine-heritager\",\"description\":\"It is Iiishi Shrine (Takuwa). \\\"Ibiuzushio no mikoto\\\" has the rock solid as the god when it descends from the heavenly world. The \\\"iwa kura\\\" is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called \\\"iwa kura\\\".\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/iiishi-shrine-takuwa\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"datePublished\":\"2020-11-28T22:40:04+09:00\",\"dateModified\":\"2020-11-28T22:40:04+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":"Iiishi Shrine (Takuwa) - Shrine-heritager","description":"It is Iiishi Shrine (Takuwa). \"Ibiuzushio no mikoto\" has the rock solid as the god when it descends from the heavenly world. The \"iwa kura\" is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called \"iwa kura\".","canonical_url":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/","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\/iiishi-shrine-takuwa\/#blogposting","name":"Iiishi Shrine (Takuwa) - Shrine-heritager","headline":"Iiishi Shrine (Takuwa)","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\/05\/s-A-1-%E9%A3%AF%E7%9F%B3%E9%83%A1%E3%81%AE%E7%A5%9E%E7%A4%BE_LI.jpg","@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#articleImage"},"datePublished":"2020-11-28T22:40:04+09:00","dateModified":"2020-11-28T22:40:04+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#webpage"},"articleSection":"Uncategorized, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, \u51fa\u96f2\u570b\u98a8\u571f\u8a18\u795e\u540d\u5e33, \u4e2d\u56fd\u5730\u65b9, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#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\/iiishi-shrine-takuwa\/#listItem","name":"Iiishi Shrine (Takuwa)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#listItem","position":3,"name":"Iiishi Shrine (Takuwa)","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\/iiishi-shrine-takuwa\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#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\/iiishi-shrine-takuwa\/#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\/iiishi-shrine-takuwa\/#webpage","url":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/","name":"Iiishi Shrine (Takuwa) - Shrine-heritager","description":"It is Iiishi Shrine (Takuwa). \"Ibiuzushio no mikoto\" has the rock solid as the god when it descends from the heavenly world. The \"iwa kura\" is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called \"iwa kura\".","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"datePublished":"2020-11-28T22:40:04+09:00","dateModified":"2020-11-28T22:40:04+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":"Iiishi Shrine (Takuwa) - Shrine-heritager","og:description":"It is Iiishi Shrine (Takuwa). &quot;Ibiuzushio no mikoto&quot; has the rock solid as the god when it descends from the heavenly world. The &quot;iwa kura&quot; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &quot;iwa kura&quot;.","og:url":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/","article:published_time":"2020-11-28T13:40:04+00:00","article:modified_time":"2020-11-28T13:40:04+00:00","twitter:card":"summary_large_image","twitter:title":"Iiishi Shrine (Takuwa) - Shrine-heritager","twitter:description":"It is Iiishi Shrine (Takuwa). &quot;Ibiuzushio no mikoto&quot; has the rock solid as the god when it descends from the heavenly world. The &quot;iwa kura&quot; is surrounded by Aragaki and sits in the back of the worship hall. You can worship the Shintai directly. It conveys the ancient form of the sacred place called &quot;iwa kura&quot;."},"aioseo_meta_data":{"post_id":"22658","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":"","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 10:19:56","updated":"2025-07-01 08:27:11","seo_analyzer_scan_date":null,"focus_keyword":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\tIiishi Shrine (Takuwa)\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":"Iiishi Shrine (Takuwa)","link":"https:\/\/shrineheritager.com\/en\/iiishi-shrine-takuwa\/"}],"views":419,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/22658","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=22658"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/22658\/revisions"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=22658"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=22658"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=22658"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}