    <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":11155,"date":"2020-03-04T17:00:00","date_gmt":"2020-03-04T08:00:00","guid":{"rendered":"https:\/\/shrineheritager.com\/nakayama-shrine\/"},"modified":"2020-08-01T14:16:40","modified_gmt":"2020-08-01T05:16:40","slug":"nakayama-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/","title":{"rendered":"Nakayama Shrine (Tsuyama City)"},"content":{"rendered":"&#13;\n<p class=\"wp-block-paragraph\"><strong>Nakayama Shrine (Tsuyama City) has a tradition and tradition in &#8220;Mimasaka no Ichinomiya&#8221; When the ancient Yamato court divided &#8220;Kibiki&#8221; into a new &#8220;Mimasaka no kuni&#8221;, &#8220;Ichinomiya&#8221; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d<\/strong><\/p>&#13;\n&#13;\n&#13;\n<h2 class=\"wp-block-heading\">Introduction (Introduction)<\/h2>&#13;\n&#13;\n<h3><strong>\u3010\u795e\u793e\u540d\u3011(shrine name)\u3000<\/strong><\/h3>&#13;\n<p class=\"wp-block-paragraph\"><strong><span class=\"fz-28px\"><span style=\"font-size: 130%;\">\u4e2d\u5c71\u795e\u793e\uff08nakayama shrine\uff09<\/span> <br\/><\/span><\/strong><strong> \u306a\u304b\u3084\u307e\u3058\u3093\u3058\u3083 <\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u3010\u901a\u79f0\u540d\u3011(Common name)<\/strong><\/p>&#13;\n<p><strong>\u4e00\u5bae\u3055\u307e ichinomiya sama<br\/><\/strong><strong>\u4ef2\u5c71\u5927\u660e\u795e nakayama daimyojin<\/strong><\/p>&#13;\n&#13;\n<h3><strong>\u3010\u93ae\u5ea7\u5730\u3011(location)<\/strong><\/h3>&#13;\n<p class=\"wp-block-paragraph\"><strong>695 Ichinomiya, Tsuyama City, Okayama Prefecture<\/strong><\/p>&#13;\n&#13;\n<h3><strong>\u3010\u5730\u3000\u56f3\u3011(Google Map)<\/strong><\/h3>&#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\/place\/%E4%B8%AD%E5%B1%B1%E7%A5%9E%E7%A4%BE\/@35.1000902,133.9935755,17z\/data=!4m5!3m4!1s0x0\" data-lkc-id=\"33\" 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\">Google Maps<\/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%2Fplace%2F%25E4%25B8%25AD%25E5%25B1%25B1%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.1000902%2C133.9935755%2C17z%2Fdata%3D%214m5%213m4%211s0x0?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">Google Maps<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/place\/%E4%B8%AD%E5%B1%B1%E7%A5%9E%E7%A4%BE\/@35.1000902,133.9935755,17z\/data=!4m5!3m4!1s0x0\">https:\/\/www.google.com\/maps\/place\/\u4e2d\u5c71\u795e\u793e\/@35.1000902,133.9935755,17z\/data=!4m5!3m4!1s0x0<\/div><div class=\"lkc-excerpt\">Find local businesses, view maps and get driving directions in Google Maps.<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011<\/strong> <strong>\u3010engishiki jimmeicho\u3011<\/strong><\/h3>&#13;\n<p><strong>(927\u5e7412\u6708\u5b8c\u6210)\u3000The shrine record was completed in December 927 AD.<br\/><\/strong><strong>\u300c\u65e7\u56fd\u540d \u90e1\u30fb\u795e\u793e\u540d\u300d\u300cold region name\u30fbshrine name\u300d<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u7f8e\u4f5c\u570b \u82eb\u6771\u90e1 \u4e2d\u5c71\u795e\u793e \u540d\u795e\u5927<br\/><\/strong><strong>mimasaka no kuni tomahigashi gun <br\/><\/strong><strong> nakayama\uff08chiusan\uff09no kaminoyashiro myojintai<\/strong><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5fa1\u796d\u795e\u3011 (God&#8217;s name to pray)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In Shaden = &#8220;Nakayama Shrine Enyu&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u300a\u4e3b\u300b\u93e1\u4f5c\u547d\uff08kagamitsukuri no mikoto\uff09<\/strong> Mirror-making club&#8217;s ancestor god =\u77f3\u51dd\u59e5\u547d<br\/><strong>\u300a\u914d\u300b\u5929\u7ce0\u6238\u795e\uff08ameno nukado no kami\uff09<\/strong> \u77f3\u51dd\u59e5\u795e\u306e\u89aa\u795e<br\/><strong>\u300a\u914d\u300b\u77f3\u51dd\u59e5\u547d\uff08ishikoridome no mikoto\uff09 <\/strong>\u5929\u5b6b\u964d\u81e8\u306e\u4e94\u90e8\u795e \u516b\u54ab\u93e1\u306e\u9020\u795e<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br\/><\/strong>\u305d\u306e\u4ed6\u3067\u306f<br\/>\u300e\u5ef6\u559c\u5f0f\u982d\u6ce8\u300fcases, &#8220;Enki Shiki Note&#8221; \u300aLord\u300b \u5927\u5df1\u8cb4\u547d\uff08oonamuchi no mikoto\uff09<br\/>\u300e\u4f5c\u967d\u8a8c\u300f &#8221; Sakuyo &#8221; &lt;&lt; Lord &gt;&gt;\u5409\u5099\u6b66\u5f66\u547d\uff08kibi no takehiko\uff09<br\/>\u300e\u5927\u65e5\u672c\u53f2\u300f\uff06\u300e\u795e\u7947\u5fd7\u6599\u300f&#8221;History of Japan&#8221; &amp; &#8220;God gods&#8221; &lt;\u5409\u5099\u6d25\u5f66\u547d\uff08kibitsuhiko no mikoto\uff09<br\/>or \u91d1\u5c71\u5f66\u547d\uff08kanayamahiko no mikoto\uff09<br\/>\u300e\u4eca\u6614\u7269\u8a9e\u96c6\u300f\uff06\u300e\u5b87\u6cbb\u62fe\u907a\u7269\u8a9e\u300f\u300a\u4e3b\u300b\u733f\u795e\uff08saru gami\uff09<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5fa1\u795e\u683c\u3011(God&#8217;s Great Power)<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb\u56fd\u5bb6\u5b89\u6cf0 People thank God and live a safe and quality life in their<br\/>\u30fb\u725b\u99ac\u5b88\u8b77 Guardian deity of cow and horse<br\/>\u30fb\u935b\u91d1\u306e\u795e God of metal forging<br\/>\u30fb\u51b6\u5de5\u306e\u795e God of metal forging craftsman<br\/>etc etc<\/p>&#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\">\u30fb\u5ef6\u559c\u5f0f\u5185\u793e \u540d\u795e\u5927\u793e (engishikinaisha myojintaisha)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb\u7f8e\u4f5c\u570b \u4e00\u4e4b\u5bae \uff08mimasaka no kuni ichi no miya\uff09<\/p>&#13;\n<p>\u30fb\u65e7\u570b\u5e63\u4e2d\u793e<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u5275\u5efa\u3011 (Beginning of History)<\/strong><\/h3>&#13;\n&#13;\n<blockquote>&#13;\n<p class=\"wp-block-paragraph\">&#8220;Nakayama Shrine Enyu&#8221;\u300e\u4e2d\u5c71\u795e\u793e\u7e01\u7531\u300f\u6176\u96f2 Keiun 4\u5e74\uff08707\u5e74\uff09 Founded on April 3,<\/p>&#13;\n<\/blockquote>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In other<br\/>\u548c\u92856\u5e74\uff08713\u5e74\uff09cases, when the founding Mimasaka no kuni was separated from Bizen no Kuni on April 3, 713 in Wako, it is assumed that a solicitation was made from &#8220;Kibitsu Shrine&#8221; (Kibitsu Nakayama) of Izennomiya, Bizen.<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>\u3010\u7531\u7dd2\u3011 (history)<\/strong><\/h3>&#13;\n&#13;\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">&#13;\n<p>\u6587\u6b66\u5929\u7687 \u6176\u96f2\uff14\u5e74\uff08\uff17\uff10\uff17\uff09Emperor\u6587\u6b66\u5929\u7687 It is said that he built a shrine here in 707 (\u6176\u96f2 4th year) and devoted himself to the God of Kagami. It has been lined up by a government company every year in the Teijin era, and is the only Meishin Taisha Shrine in Mimasakani in the Enki ceremony, as well as a shrine in this country.<\/p>&#13;\n<p>There is a story of a monkey god in the \u300c\u4eca\u6614\u7269\u8a9e\u300d&#8221;Konjyo Monogatari&#8221;, and &#8220;Liang Dust Secret&#8221;, which is related to the resignation of Pope Goshirakawa, is on par with the Kibitsu Shrine in Aki&#8217;s Itsukushima company Bichu.<\/p>&#13;\n<p>In the event of a national emergency such as Genji in the Kamakura era, it was prayed to pray for national peace, especially in one of the seven nations of the nation, due to imperial command. There is.<\/p>&#13;\n<p>\u5f18\u5b89\u516b\u5e74\u306b\u4e00\u904d\u4e0a\u4eba In the 8th year of\u5f18\u5b89 Koan, Ichinen Shrine, a country of pilgrimage. I visited the company and performed a memorial Buddhist dance, but there is a picture of Sakushu Ichinomiya in \u300c\u4e00\u904d\u8056\u7d75\u300d (National Treasure Vol. There is.<\/p>&#13;\n<p>Jianmu Zhongxing Approximately 400 years after it was torn down to Tensho, it became a town of war in Mimasakani, and the rituals of the shrines and temples were almost dead. During the two years of Astronomy 2 (1533), there was a trouble of congratulations, and treasures, furniture, old memorials, old documents, etc. were burnt down together with 120 setsue companies in Yamashita and Yamashita.<\/p>&#13;\n<p>In 1559 of the Eiroku period (1559), Izumo castle lord Amako Haruhisa revived the shrine for the war report. It is a magnificent main shrine in the 5th century with a wife Irihi cypress skin that is called Nakayama Zou, and it is a national treasure building in the 19th year of Taisho, and is now an important cultural property designated by the country.<\/p>&#13;\n<p>\u6176\u9577\uff18\u5e74 Keicho 8 Years Tadashi Mori Mimasaka Mitsusaku Jeonju territory was finally closed, and the lord of successive nations was reverently respected. Was popular with the people of Asano, and Monzen-shi was prosperous from the Middle Ages to the early modern times.<\/p>&#13;\n<p>\u660e\u6cbb\u56db\u5e74 It was appointed as an honorary god, \u91d1\u5c71\u5f66\u547dKaneyama Hikomei, in the 1st year of the Meiji period.<\/p>&#13;\n<p>This allows the end of the war without being barrel also was Chokyo in the petition as to be changed to &#8220;mirror work God&#8221; for your Shrine name over again Meiji year,<br\/>chief god mirror work for your Shrine name per the 1946 religious corporation Nakayama Shrine founded report The gods and temples, Tenden Toshin, and Ishiganejin, were all named after the Meiji era, and the names of the gods are written in the traditions of the shrines and old writings.<\/p>&#13;\n<p>Even after becoming a religious corporation Nakayama Shrine, it has been equipped with disaster prevention facilities in the same shape as it used to be, including the buildings under the main shrine and the forest in the precincts.<\/p>&#13;\n<cite> Referenced from &#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Head Office] <\/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>\u30fb\u7dcf\u795e\u6bbf\uff08\u60e3\u795e\u6bbf\uff09\u300aLord\u300b \u5c71\u4e0a\u5c71\u4e0b120\u793eYamagami Yamashita 120 companies ( shrines of gods burned down by war wreck)<\/strong><br\/>\u300e\u4e2d\u5c71\u795e\u793e\u8cc7\u6599\u300f\u201cNakayama Shrine document\u201d \u201cTo enshrine the gods of large and small shrines in 12 counties of Mimasakani\u201d (742) The construction shrine is a building that conveys shrine architecture in the middle of the 18th century (designated as an important cultural property by Tsuyama in 2008) Taisho 3 Relocation from outside the Mitarai River to the current location<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u30fb\u56fd\u53f8\u793e\uff08kunishi sha\uff09 <\/strong>\u300a\u4e3b\u300b\u5927\u56fd\u4e3b\u547d<br\/>sovereignty As a land god, the main power is enshrined and there is \u201cHoko Tateishi \u201d next to the main shrine. In case of a national disaster, it was moved to the main shrine and prayed.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u30fb\u5fa1\u5148\u793e\uff08osaki sha\uff09 <\/strong>\u300a\u4e3b\u300b\u7a32\u8377\u795e<br\/>is generally worshiped as \u201c Inarigami \u201d to enshrine the god of Nakayama, the ancestor of the deity of the god of Nakayama<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u30fb\u733f\u795e\u793e\uff08saru no kaminoyashiro\uff09<\/strong>\u300a\u4e3b\u300b\u733f\u591a\u5f66\u795e<br\/>There is a custom in the back of the main hall to dedicate a stuffed small monkey, the description of \u300e\u4eca\u6614\u7269\u8a9e\u96c6\u300f &#8220;Konjaku Monogatari Collection&#8221;, is said to be derived from this monkey shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11161\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-2\u7dcf\u795e\u6bbf\uff08\u60e3\u795e\u6bbf\uff09-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-2\u7dcf\u795e\u6bbf\uff08\u60e3\u795e\u6bbf\uff09-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-2\u7dcf\u795e\u6bbf\uff08\u60e3\u795e\u6bbf\uff09-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-2\u7dcf\u795e\u6bbf\uff08\u60e3\u795e\u6bbf\uff09.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\"><strong>\u3010Preliminary knowledge of this shrine\u3011 (Preliminary Knowledge of This Shrine)<\/strong><\/h2>&#13;\n&#13;\n<h3><strong>\u300c\u4e2d\u5c71\u795e\u793e\uff08nakayama shrine\uff09\u300d\u306e\u8d77\u3053\u308a\u306b\u306f\u3000\u8af8\u8aac\u3042\u308a\u307e\u3059<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">According to the Shaden (707), there is a story of \u201csaru gami\u201d according to the 42nd generation of the Emperor \u6587\u6b66\u5929\u7687 (mommu tenno),<br\/>According to the\u300c\u4eca\u6614\u7269\u8a9e\u300d &#8220;Now and old times story,&#8221; there is a story of &#8220;saru gami.&#8221;\u300c\u733f\u795e\uff08saru gami\uff09\u300d<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">This area The Tsuyama Basin seems to have been a large lake that was once upstream of the Yoshii River in ancient times. It eventually becomes a plain with a wide fan.<br\/>The Yokogawa River flows from north to south toward this plain . in merges with the &#8220;Hanekawa of cormorant&#8221; will continue to flow is &#8220;Miyagawa&#8221;, &#8220;Nakayama of God&#8221; in this junction it has been enshrined<br\/>they farming flourished in the Yayoi of rice era There is also a Jomon ruins in the vicinity It is said that it may have happened that the agricultural deity was enshrined, and the fact that &#8220;Inari deity&#8221; is enshrined as the ancestor deity is also a basis for such a theory.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Ancient Tsuyama Basin Imagined image Akamaru is Nakayama Shrine<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11163\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-3\u6d25\u5c71\u76c6\u5730\u3000\u4e2d\u5c71\u795e\u793e-1012x600.jpg\" alt=\"\" width=\"974\" height=\"577\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-3\u6d25\u5c71\u76c6\u5730\u3000\u4e2d\u5c71\u795e\u793e-1012x600.jpg 1012w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-3\u6d25\u5c71\u76c6\u5730\u3000\u4e2d\u5c71\u795e\u793e-768x455.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-3\u6d25\u5c71\u76c6\u5730\u3000\u4e2d\u5c71\u795e\u793e.jpg 1024w\" sizes=\"(max-width: 974px) 100vw, 974px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u300c\u4e2d\u5c71\u795e\u793e\u7e01\u7531\u300dAccording to Nakayama Shrine Enyu<\/p>&#13;\n&#13;\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">&#13;\n<p>\u6176\u96f23\u5e74 In 706 (3rd year of Keiun), Nakayamagami went down to Narahara, Eita-gun, to protect Mimasakani. Next, I appeared at the Izuminomiya (currently Ichinomiya in Tsuyama City) at the back of Minase River, and then moved to Kiriyama in Tanabe.<\/p>&#13;\n<p>So when I floated a cormorant&#8217;s wings on the river at the foot, the wings stayed at the foot of Nagaratake.<\/p>&#13;\n<p>The indigenous god, &#8220;\u5927\u5df3\u8cb4\u547d(Onamuchi no Mikoto)&#8221;, has already been enshrined in the area, but it was inherited from its life, and the shrine was built at the present location of Keiun 5 (708) for a long time. I was supposed to sit in.<\/p>&#13;\n<p>&#8220;\u5927\u5df3\u8cb4\u547d(Onamuchi no Mikoto)&#8221;moved to the place of celebration and settled down, but later became Kuniji Shrine in search of Miyaji in the land several tens of meters south.<\/p>&#13;\n<cite> Text: From the cultural assets of Tsuyama City <\/cite><\/blockquote>&#13;\n&#13;\n<h3><strong>\u300c\u4e2d\u5c71\u795e\u793e\uff08nakayama shrine\uff09\u300d\u306e\u5fa1\u796d\u795e\u3068\u300c\u4e2d\u5c71\u9020\u308a\u306e\u793e\u6bbf\u30fb\u9ce5\u5c45\u300d<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The sacred god &#8220;\u300c\u93e1\u4f5c\u547d\uff08kagamitsukuri no mikoto\uff09\u300d&#8221; is a god who created<br\/>\u4e09\u7a2e\u306e\u795e\u5668 three types of sacred device &#8220;\u300c\u516b\u54ab\u93e1\uff08yata no kagami\uff09\u300dyata no kagami&#8221;, and is the god of the mirror work department &#8220;\u300c\u77f3\u51dd\u59e5\u547d\uff08ishikoridome no mikoto\uff09\u300dIshiko&#8221;, which also appears in the heavenly Iwato mythology. Another name for &#8220;ishikoridome no mikoto&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The \u201cshrine\u201d is<br\/>\u300c\u4e2d\u5c71\u9020\u308a\u300dcalled \u201cNakayama-zukuri\u201d and there is no example in other regions.<br\/>current main shrine was revived by Haruhisa Amako in 1559, and its structure was changed from the end of Muromachi to the Azuchi-Momoyama period. It has a unique structure and has a single-layered mother-in-law house. It has been designated as an important cultural property of the country in 1914 by the Japanese cypress bark, and it has become a model for the construction of a shrine in Mimasaka.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The torii is<br\/>\u300c\u4e2d\u5c71\u9ce5\u5c45\u300dcalled &#8220;Nakayama torii&#8221;. There is no other place in other regions.<br\/>It was built in 1791 (Kansei 3) (Hanaoka Iwano). There is no wooden nose on the square knuckle.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11165\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-4-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-4-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-4-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-4-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\"><strong>[Otaky Point] (Points Selected by Japan Otaku)<\/strong><\/h3>&#13;\n&#13;\n<h4><strong>\u300c\u5409\u5099\u56fd\uff08kibi no kuni\uff09\u300d\u306e\u5206\u5272\u306b\u3064\u3044\u3066<\/strong><\/h4>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Once &#8220;kibi no kuni&#8221; is an ancient area that covers the entire area of \u200b\u200bpresent-day Okayama prefecture, eastern part of Hiroshima prefecture and the to sho part of Kagawa prefecture, and western part of Hyogo prefecture (part of Sayo-gun and part of Ako City). It was one of the leading areas that supported the Yamato Court alongside Chikushi, Izumo, and Maeno.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Yamato Court this mighty &#8220;Kibi Mr. (kibi uji)&#8221;, &#8220;Kibi Province (kibi no kuni)&#8221; a weakening in the one enormous amount of time intended by the will continue to lose force<br\/>the seventh century in the second half of &#8220;Bizen Country (bizen no kuni), Bi-China (bitchu no kuni), Bi-go country (bingo no kuni)&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Furthermore, in the 8th century, &#8220;\u300c\u5099\u524d\u56fd\uff08bizen no kuni\uff09\u300d&#8221; will be separated into &#8220;\u300c\u7f8e\u4f5c\u56fd\uff08mimasaka no kuni\uff09\u300d&#8221;.<br\/>This is the final stage of the dismantling of the once powerful &#8220;\u300c\u5409\u5099\u56fd\uff08kibi no kuni\uff09\u300d&#8221;. Iron resources will be put under the jurisdiction of the Yamato Imperial Court directly from \u5409\u5099\u6c0f\uff08kibi uji\uff09.<\/p>&#13;\n&#13;\n<h4><strong>\u300c\u7f8e\u4f5c\u56fd\uff08mimasaka no kuni\uff09\u300d\u306e\u3000\u4e00\u4e4b\u5bae\uff08ichi no miya\uff09\u8a95\u751f\u306b\u3064\u3044\u3066<\/strong><\/h4>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">According to the history book \u300e\u7d9a\u65e5\u672c\u7d00\uff08shoku nihon gi\uff09\u300f<\/p>&#13;\n&#13;\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">&#13;\n<p>&#8220;Mimasaka no kuni&#8221; is separated from &#8220;Bizen country (bizen no kuni)&#8221; by separating six districts of Eita-gun, Katsuta-gun, Tomata-gun, Kume-gun, Mashima-gun and Oba-gun. mimasaka no kuni)&#8221; is established (April 3, Wako 6 years (713))<\/p>&#13;\n<cite> According to the history book \u300e\u7d9a\u65e5\u672c\u7d00\uff08shoku nihon gi\uff09\u300f <\/cite><\/blockquote>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"743\" class=\"wp-image-11167\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/5\u7d9a\u65e5\u672c\u7d00\u3000\u5dfb5-6.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/5\u7d9a\u65e5\u672c\u7d00\u3000\u5dfb5-6.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/5\u7d9a\u65e5\u672c\u7d00\u3000\u5dfb5-6-300x218.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/5\u7d9a\u65e5\u672c\u7d00\u3000\u5dfb5-6-768x557.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"743\" class=\"wp-image-11169\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/6\u7d9a\u65e5\u672c\u7d00.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/6\u7d9a\u65e5\u672c\u7d00.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/6\u7d9a\u65e5\u672c\u7d00-300x218.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/6\u7d9a\u65e5\u672c\u7d00-768x557.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>&#13;\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047602&amp;ID=M2014102020504690603&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=F1000000000000047602&amp;ID=M2014102020504690603&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/a><br\/>\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6 \u300c\u7d9a\u65e5\u672c\u7d00 \u5dfb5-6\u300dHistory book &#8220;Sequence of Japan (shoku nihon gi)&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">This is &#8220;\u300c\u5099\u524d\u5b88 \u767e\u6e08\u738b\u5357\u5178\uff08kudara no konikishi nanten\uff09\u300d&#8221; and &#8220;Bizen through Uekenokenmi (kamitsuke nu katami)&#8221; have been due to Sojo of the primary Mamoru Mimasaka was Sojo<br\/>the powers divided among separate &#8220;\u300c\u5099\u524d\u4ecb \u4e0a\u6bdb\u91ce\u5805\u8eab\uff08kamitsuke nu katami\uff09\u300d\u201d<br\/>at this time, and the mountain (Kibi Nakayama) in Sakai in Bizen and Bichu (Bizen Nakayama) was solicited from \u201cKibitsu Shrine\u201d of Bizen (our company), and \u201cNakayama shrine\u201d of Tsuyama city was changed to Ichinomiya. Be transmitted<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In the Kamakura era, it is said that it was an important shrine as Ichinomiya of seven countries nationwide that &#8220;pray for national peace&#8221; at the time of an emergency in the event of a national emergency.<br\/>During the Sengoku era, it was caught in a whirlpool of war and endangered. However,<br\/>\u300c\u7f8e\u4f5c\u56fd\u306e\u4e00\u4e4b\u5bae\u300d&#8221;Mimasakaguni no Ichinomiya&#8221; is a guardian deity of Ushiuma, a god of agriculture with a high personality, and widely gathers the faith of people to reach today.<\/p>&#13;\n&#13;\n<h4><strong>\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u306e\u6240\u8f09\u306b\u3064\u3044\u3066<\/strong><\/h4>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u540d\u795e\u5927\u793e(myojintaisha) which has no other shrine<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><span style=\"font-size: 120%; color: #0000ff;\"><strong>\u7f8e\u4f5c\u570b \u82eb\u6771\u90e1 \u4e2d\u5c71\u795e\u793e \u540d\u795e\u5927<br\/><\/strong><strong>mimasaka no kuni tomahigashi gun <br\/><\/strong><strong> nakayama\uff08chiusan\uff09no kaminoyashiro myojintai<\/strong><\/span><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u00a0<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1442211\/160\u753b\u50cf\u5229\u7528<br\/>\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 National Diet Library Digital Collection Enki Shiki: Revised Edition. \u4e0a\u5dfb(\u662d\u548c4\u81f37)Volume 1 (Showa 4-7)<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"762\" class=\"wp-image-11171\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-1024x762.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-scaled.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-300x223.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-768x571.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-1536x1142.jpg 1536w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/7-1-2048x1523.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>&#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\">By car<br\/>About 10km from the Tsuyama IC on the Chugoku Expressway About 20 minutes<br\/>north of Tsuyama Station About 6km on Prefectural Road 68 About 15 minutes<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Go northwest along the Miyagawa and there is a brewery called &#8220;Namba Shuzo&#8221;\u300c\u96e3\u6ce2\u9152\u9020\u300d<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11173\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-8-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-8-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-8-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-8-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-8.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u300c\u30b1\u30e4\u30ad\u306e\u6a39\u9f62\u306f800\u5e74\u300d\u306e\u5927\u6728\u304c\u9053\u306b\u8feb\u308a\u51fa\u3057 \u305d\u306e\u6839\u5143\u306b\u300c\u795d\u6728\u795e\u793e\u300d\u304c\u7940\u3089\u308c\u3066\u3044\u307e\u3059\u300c\u795d\u6728\u306e\u30b1\u30e4\u30ad\u30fb\u795d\u6728\u793e\u300d\u3067\u3059 \u76ee\u306e\u524d\u306b\u300c\u4e2d\u5c71\u9ce5\u5c45\u300d\u304c\u898b\u3048\u3066\u304d\u307e\u3059A large tree with a \u201czelkova tree age of 800\u201d approaches the road, and at the base of it is a \u201c\u300c\u795d\u6728\u306e\u30b1\u30e4\u30ad\u30fb\u795d\u6728\u793e\u300d\u201d. It is a \u201czelkova tree and a holiday tree shrine\u201d. \u201cNakayama Torii\u201d is visible in front of you.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a parking lot right next to the torii gate<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>Arrived at\u300c\u4e2d\u5c71\u795e\u793e\uff08nakayama shrine\uff09\u300d<\/strong><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11175\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-9-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-9-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-9-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-9.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">This torii gate at the front entrance is the &#8220;Nakayama Torii&#8221;, which is a unique structure (without a wooden nose) that I introduced earlier. After a bowing, you will pass through<br\/>and there will be a large tree with a sign saying &#8220;Nakyama Shrine Mukunoki&#8221;<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11177\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The approach stretches straight and is a<br\/>&#8220;cow statue&#8221; Tenmangu on the right side of the approach. It&#8217;s not the path that Doshinko goes to Dazaifu. I thought for a moment that it was the Tenma religion in this inland area, but it&#8217;s also widely used as a guardian deity of cows and horses. I remember having collected faith<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11179\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-11-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-11-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-11-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-11-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11181\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-12-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-12-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-12-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-12-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Beyond that, there is a &#8220;respectable Komainu&#8221;, and there is a &#8220;Temizuya&#8221; on the left hand side to cleanse.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11183\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-13-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-13-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-13-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-13-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11185\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-14-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-14-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-14-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-14-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Walking along the approach, Ishibashi crosses the Mitarai River, and in front of it there is another &#8220;Komainu ????&#8221;, but no matter how many times I look at it, I feel like a monkey, so the &#8220;Monkey God&#8221; also sits, so it looks like a &#8220;Koma monkey&#8221;. I will leave<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11187\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-15-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-15-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-15-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-15.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">When you cross the Ishibashi of the Mitarai River, you will see the main shrine, which is said to have moved the four-legged gate that was in the Ninomaru of Tsuyama Castle (1874).<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11189\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-16-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-16-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-16-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-16-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-16-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11191\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-17-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-17-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-17-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-17-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-17-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>Go to the hall of worship and make a prayer with a prayer.<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>In Shaden = &#8220;Nakayama Shrine Enyu&#8221;<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u300a\u4e3b\u300b\u93e1\u4f5c\u547d\uff08kagamitsukuri no mikoto\uff09 \u93e1\u4f5c\u90e8\u306e\u7956\u795e\uff1d\u77f3\u51dd\u59e5\u547d<br\/><\/strong><strong>\u300a\u914d\u300b\u5929\u7ce0\u6238\u795e\uff08ameno nukado no kami\uff09\u77f3\u51dd\u59e5\u795e\u306e\u7236\u795e<br\/><\/strong><strong>\u300a\u914d\u300b\u77f3\u51dd\u59e5\u547d\uff08ishikoridome no mikoto\uff09\u5929\u5b6b\u964d\u81e8\u306e\u4e94\u90e8\u795e \u516b\u54ab\u93e1\u306e\u9020\u795e<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>In other<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u300e\u5ef6\u559c\u5f0f\u982d\u6ce8\u300f \u300a\u4e3b\u300b\u5927\u5df1\u8cb4\u547d\uff08oonamuchi no mikoto\uff09<br\/><\/strong><strong>\u300e\u4f5c\u967d\u8a8c\u300f \u300a\u4e3b\u300b\u5409\u5099\u6b66\u5f66\u547d\uff08kibi no takehiko\uff09<br\/><\/strong><strong>\u300e\u5927\u65e5\u672c\u53f2\u300f\uff06\u300e\u795e\u7947\u5fd7\u6599\u300f\u300a\u4e3b\u300b\u5409\u5099\u6d25\u5f66\u547d\uff08kibitsuhiko no mikoto\uff09<br\/><\/strong><strong>or \u91d1\u5c71\u5f66\u547d\uff08kanayamahiko no mikoto\uff09<br\/><\/strong><strong>\u300e\u4eca\u6614\u7269\u8a9e\u96c6\u300f\uff06\u300e\u5b87\u6cbb\u62fe\u907a\u7269\u8a9e\u300f\u300a\u4e3b\u300b\u733f\u795e\uff08saru gami\uff09<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">With all my gratitude, I pray that I will reach out to the deity of the god who will be revered while praying to follow God&#8217;s power.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11193\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-18-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-18-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-18-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-18-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-18-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11195\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-19-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-19-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-19-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-19-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">On the right hand side of the front shrine is the &#8220;office office&#8221;, which has a corridor running from the worshipers&#8217; refuge to the front shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11197\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11199\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-2-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-2-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-2-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-2-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-20-2.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">If you turn to the left to worship the main shrine, you will find &#8220;Kagura shrine&#8221; and &#8220;Sojin shrine (S\u014d shrine)&#8221; &lt;<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11201\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-21-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-21-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-21-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-21-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11203\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-22-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-22-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-22-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-22-1.jpg 1001w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Going to the side of the hall and going to the back, there is a single-layered, mother-in-law house made structure called &#8220;Nakayama structure&#8221; made of Japanese cypress that worships the main shrine, which is larger than I imagined.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11205\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-23-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-23-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-23-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-23-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11207\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-24-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-24-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-24-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-24-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a road from here to the back of the precincts, leading to &#8220;\u733f\u795e\u793e\uff08saru no kaminoyashiro\uff09 &#8220;\u733f\u591a\u5f66\u795eSarutahikojin&#8221; and passing through the torii gate, and sitting on a rocky slope about 50m ahead, it is a custom to dedicate a stuffed little monkey for some reason. There are a lot of things hanging<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said that the descriptions such as \u300e\u4eca\u6614\u7269\u8a9e\u96c6\u300f&#8221;Konjaku Monogatarishu&#8221; originated from this &#8220;\u733f\u795e\u793e\uff08saru no kaminoyashiro\uff09&#8221;. This will be explained in detail later.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11209\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-25-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-25-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-25-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-25-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11211\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-26-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-26-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-26-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-26-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Passing through the side of the main shrine, returning to the approach, passing through Nakayama Torii and looking back<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11213\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-27-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-27-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-27-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-27-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-27.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11215\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-28-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-28-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-28-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-28-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-28-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/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>\u300e\u4eca\u6614\u7269\u8a9e\u96c6\u3000\u5dfb\u7b2c\u4e8c\u5341\u516d\u300f\u306b\u66f8\u304b\u308c\u3066\u3044\u308b\u300c\u733f\u795e\u793e\uff08saru no kaminoyashiro\uff09\u300d\u300c\u733f\u795e\uff08saru gami\uff09\u300d\u306e\u4f1d\u627f<\/strong><\/h3>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"850\" height=\"566\" class=\"wp-image-11217\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/29-2.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/29-2.jpg 850w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/29-2-300x200.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/29-2-768x511.jpg 768w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/figure>&#13;\n<p class=\"wp-block-paragraph\">Tradition of &#8220;saru no kaminoyashiro&#8221; and &#8220;saru gami&#8221; written in &#8220;Konjaku Monogatari Vol. 26&#8243;\u300e\u4eca\u6614\u7269\u8a9e\u96c6 \u5dfb\u7b2c\u4e8c\u5341\u516d\u300f<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u300c\u7f8e\u4f5c\u570b \u795e\u4f9d\u731f\u5e2b\u8b00\u6b62\u751f\u8d04\u8a9e \u7b2c\u4e03\u300d&#8221;Mimasakaguni Kamiyoshi Hunting Master&#8217;s Revenge Sacrifice No. 7&#8243;<\/strong><br\/><strong>\uff08\u307f\u307e\u3055\u304b\u306e\u304f\u306b\u306e \u304b\u307f\u308c\u3075\u3057\u306e \u306f\u304b\u308a\u3054\u3068\u306b\u3088\u308a\u3066 \u3044\u3051\u306b\u3048\u3092 \u3068\u3069\u3080\u308b\u3053\u3068 \u3060\u3044\u3057\u3061\uff09(Depending on the scale of the Mikamikanokuni Karebushi, it is a sacrifice)<\/strong><\/p>&#13;\n<p>\u00a0<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">References \u300c\u3010\u4eca\u6614\u7269\u8a9e\u96c6 \u51684\u5dfb\uff0d\u65e5\u672c\u53e4\u5178\u6587\u5b66\u5168\u96c6 21\uff5e24\u3011\u6821\u6ce8\u30fb\u8a33\uff1a\u99ac\u6df5\u548c\u592b\/\u56fd\u6771\u6587\u9ebf\/\u4eca\u91ce\u9054 \u767a\u884c\u6240 \u5c0f\u5b66\u9928\u300d<\/p>&#13;\n&#13;\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">&#13;\n<p>Now long ago<\/p>&#13;\n<p>Two gods (Takayama) and (Takano) were sitting in Mimasaka (Okayama Prefecture). The incarnations of the two shrines are &#8220;Monkey&#8221; (Takayama) and &#8220;Snake&#8221; (Takano).<\/p>&#13;\n<p>It was a tradition to offer sacrifices \u751f\u8d04\uff08ike nie\uff09to the festival once a year, but it was supposed to set up an unmarried virgin of the country.<br\/>This was continued from old times to recent times without neglect.<\/p>&#13;\n<p>By the way, in that country, there was a beautiful girl whose age and age were about 16-17 years old, although her family name and status were not high. My parents loved this daughter and thought they were more important than me. This daughter was assigned to the sacrifice (ike nie)<\/p>&#13;\n<p>By the way, this sacrifice is appointed on the festival day of the year. From that day on, the nominated daughter will be well-fed over the next year and dedicated to the festival next year.<br\/>And the parents of the nominated daughter were sad and sad, but could not escape, so their lives diminished over time.<\/p>&#13;\n<p>In this way, as the time of face-to-face meeting gradually diminished, I broke my fingers, counted the day, and was just sad and crying.<\/p>&#13;\n<p>Around that time, there was a person who came from the eastern direction. This person has a profession called Inuyama, where he keeps a lot of dogs, enters the mountains, and makes them eat and kill wild boars and deer. It was a man who made a living to kill and hunt.<\/p>&#13;\n<p>He was a brave, clear and ferocious person, and while he was staying in this country for a while, he heard this sacrifice (ike nie) story, as if it were natural.<\/p>&#13;\n<p>One day, I had an errand and went to this sacrifice house. When I waited for the guidance, I sat down at the end and looked into the back of the house through the gap below, and saw a woman lying alone. It was white and very cute. She had long hair, and she was so sophisticated she couldn&#8217;t imagine being a country girl.<\/p>&#13;\n<p>The girl looks pensive. Seeing the girl&#8217;s hair swaying and weeping, the man in this eastern country felt very pitiful.<\/p>&#13;\n<p>Eventually, when he met with the female parents and talked in various ways, her parents said, &#8220;We are the only daughters. We are assigned to such a sacrifice (ike nie). It was done. Lamenting, living, thinking, and just time goes by. Our parting is approaching and sad.<\/p>&#13;\n<p>A country like this, a very pathetic country, is here. What is the sin of our past life? And why should we see the pitiful eyes born in such a country? &#8220;The parents lamented.<\/p>&#13;\n<p>When the eastern man heard it, he said, &#8220;For the people of this world, there is nothing better than life and no human treasure better than children.<br\/>But yet, in front of you, the only daughter is dedicated, cooked and eaten. Parents are lazy parents who appear to be waving. If so, you are dead, as well.<br\/>But there are enemies trying to eat their daughter. There is nowhere in the world where there are those who die in vain before their enemies.<br\/>You feel that the Buddha and God are horrifying because they lack life&#8217;s life. But, for the sake of my child, I spare myself.<br\/>And, in your opinion, the daughter is like a person who doesn&#8217;t have a life now. So give me that daughter. Instead let me die. Then, if you give me a daughter, you have no objection. &#8221; Said the man.<\/p>&#13;\n<p>The parents hear this and ask, &#8220;What are you going to do?&#8221;<\/p>&#13;\n<p>Touhou people said, &#8220;I have a plan. I don&#8217;t tell anyone that I am there. Just put &#8220;shimenawa&#8221; to work hard at the barrier.&#8221; I said.<\/p>&#13;\n<p>The parents secretly entrusted the daughter to an eastern man, saying, &#8220;I don&#8217;t care what happens if my daughter doesn&#8217;t die.&#8221;<\/p>&#13;\n<p>A eastern man spent this daughter as his wife. Gradually, it began to become difficult to separate. He chose two hunting dogs that he had been accustomed to for many years, and said, &#8220;You guys, take my place.&#8221; And he tamed the dog carefully.<\/p>&#13;\n<p>I secretly caught monkeys from the mountains, avoided the eyes, and practiced repeatedly biting and killing monkeys by dogs. Originally, dogs and monkeys had a very bad relationship with each other, so I was absorbed in being taught such things. Eventually, Inu jumped over and over, killing and eating the monkey.<\/p>&#13;\n<p>Thus, the man trained his dog well, sharpened his sword, and waited.<\/p>&#13;\n<p>In this way, the eastern man told his wife. &#8220;I will die on your behalf. It&#8217;s unavoidable to die from the time I was born, but I&#8217;m sad to say goodbye.&#8221;<br\/>But the woman didn&#8217;t understand why. However, the sad feeling was very big.<\/p>&#13;\n<p>A lot of people, including the priest on the day of arrival, brought in a new \u9577\u6ac3\uff08naga hitsu\uff09and said, &#8220;Enter in this&#8221; and put it in the bedroom.<\/p>&#13;\n<p>The man wore only a \u72e9\u8863\uff08kari ginu\uff09 and a\u88b4\uff08hakama\uff09 and wore a sword and entered the \u9577\u6ac3\uff08naga hitsu\uff09 with two dogs on both sides of the man.<\/p>&#13;\n<p>The parents put out \u6ac3\uff08hitsu\uff09 and made it look like their daughter was inside. People with spears, Sakaki, bells, and mirrors gathered like clouds, lined up with each other, and yelled out.<\/p>&#13;\n<p>The wife was afraid of what would happen, and felt sorry for the man for herself. My parents thought, &#8220;No matter how I die in the future, I have no regrets. We now have only this choice.&#8221;<\/p>&#13;\n<p>The sacrifice (ike nie) was carried by the shrine and chanted congratulations, then opened the door of the Tamagaki, cut the string connecting Nagaguri, and inserted it in the front. Then, the priest closed the door to Tamagaki. They were sitting side by side outside.<\/p>&#13;\n<p>A man opens his naga hitsu a little bit and peeks outside, and a big monkey (oo zaru) .who is only seven or eight shaku (about 1.8 m) sits on the upper seat Teeth are white and face and hips Is red ,<br\/>followed by hundreds of monkeys sitting side by side, red face, hanging eyebrows, yelling loudly.<\/p>&#13;\n<p>There is a \u4fce\uff08mana ita\uff09 in front and a big sword is placed. All the seasonings such as vinegar salt and sake salt are lined up, as if people were trying to cook and eat deer meat etc.<\/p>&#13;\n<p>After a while, the great monkey (oo zaru) standing up stood up, and all the other monkeys who worked on \u9577\u6ac3 (naga hitsu) also stood up and tried to open together.<\/p>&#13;\n<p>At that moment, a man suddenly jumped up and ordered, &#8220;I bite the monkey,&#8221; and released a dog. Two dogs started running, biting a big monkey and blocking their movements.<\/p>&#13;\n<p>A man pulls out an icy sword and captures the great monkey (oo zaru), lays it down on a mana ita, puts sword on monkey neck and says, &#8220;When you kill a person and eat meat. I suppose this is the case, and I&#8217;ll cut off your neck and feed the dogs.&#8221;<\/p>&#13;\n<p>The great monkey (oo zaru) turned its face red, fluttered its eyes, whitened its teeth, rubbed his hands with tears, but he without even listening,<br\/>&#8220;You have eaten many children for many years. Instead, I will kill you right now, but if you are a god, kill this eagle.&#8221; he pressed the sword around monkey neck, and the two dogs also eat and kill many other monkeys.<\/p>&#13;\n<p>The surviving monkey finally climbed up the tree and hid in the mountain, gathered a lot of monkeys and screamed as the mountain echoed, but nothing could be done.<\/p>&#13;\n<p>In the meantime, one of the priests that God transferred to, said, &#8220;I do not seek sacrifice (ike nie) from today onward.<br\/>And this guy is doing this to me right now. But for that reason, he should not be harmed.<br\/>Also, do not blame the daughter&#8217;s parents, relatives, and relatives for sins. It should not harm men, including the victimized women (ike nie). &#8220;<\/p>&#13;\n<p>The priests all went into the shrine and told the man, &#8220;Oh, God is like this, please forgive me, forgive me, I am afraid.&#8221;<br\/>But the man doesn&#8217;t listen. &#8220;I don&#8217;t need life. No, I kill this monkey for many people, and I will die with him.&#8221;<\/p>&#13;\n<p>The priest swore to God, saying, &#8220;Norito,&#8221; and God made a firm oath. The man forgave him by saying, &#8220;Don&#8217;t do this anymore.&#8221; The great monkey fled into the mountains.<\/p>&#13;\n<p>The man came home and lived with the woman for a long time as a couple. My parents also thanked my son-in-law for all the words. After that, their house had no problems. It would be a gift from the previous life.<\/p>&#13;\n<p>After that, the nation was kept calm without making a sacrifice (ike nie).<\/p>&#13;\n<p>Tonamu Katari Tsutae Tarutoya<\/p>&#13;\n<cite> \u300e\u4eca\u6614\u7269\u8a9e\u96c6 \u5dfb\u7b2c\u4e8c\u5341\u516d\u300f&#8221;Konjaku Monogatari Vol. 26&#8243; <\/cite><\/blockquote>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"682\" class=\"wp-image-11219\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/30-1024x682.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/30.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/30-300x200.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/30-768x512.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>&#13;\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"682\" class=\"wp-image-11221\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/31-1024x682.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/31.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/31-300x200.jpg 300w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/31-768x512.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>&#13;\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000042818&amp;ID=M2018061515413247961&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=F1000000000000042818&amp;ID=M2018061515413247961&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/a><br\/>\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6 \u300c\u4eca\u6614\u7269\u8a9e\u96c6 26\u5dfb\u300dNational Archives Digital Archives &#8220;Vol. 26 now and now&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">A small shrine called &#8220;\u733f\u795e\u793e\uff08saru no kaminoyashiro\uff09&#8221; is enshrined at the position behind the main shrine of &#8220;\u4e2d\u5c71\u795e\u793e\uff08nakayama shrine\uff09&#8221;.<\/p>&#13;\n&#13;\n<div class=\"wp-block-image\">&#13;\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"236\" height=\"354\" class=\"wp-image-11223\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/32.jpg\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/32.jpg 236w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/32-200x300.jpg 200w\" sizes=\"(max-width: 236px) 100vw, 236px\" \/><\/figure><\/div>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Although the Shoshi on the steep slopes of the foothills of the mountains will receive the impression that our inner shrine &#8220;monkey god \u733f\u795e\uff08saru gami\uff09&#8221; is still sitting on the mountain<br\/>, &#8220;Past and Present story collection&#8221; of &#8220;monkey god \u733f\u795e\uff08saru gami\uff09 Was &#8220;the God of this land before the separation of Mimasakani, the god of Jomon?&#8221; Is the &#8220;man from the East&#8221; who defeated and integrated this god the messenger of the Yamato Imperial Court??<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11225\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-33-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-33-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-33-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-33-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-33.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>\u4e2d\u5c71\u795e\u793e\uff08\u6d25\u5c71\u5e02\uff09Nakayama Shrine (Tsuyama City) The division of &#8220;kibi no kuni&#8221; by the ancient Yamato court left many mysteries in the creation of &#8220;mimasaka no kuni&#8221; and left the main hall of &#8220;ichi no miya&#8221; A &#8220;saru gami&#8221; sits quietly in the back<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8220;Hai&#8221; at &#8220;nakayama shrine&#8221;, which has many traditions of founding (90 degree bow)<\/strong><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-11227\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-34-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-34-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-34-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-34.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-11229\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-35-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-35-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-35-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-35.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n","protected":false},"excerpt":{"rendered":"<p>Nakayama Shrine (Tsuyama City) has a tradition and tradition in &#8220;Mimasaka no Ichinomiya&#8221; When the ancient Yamato court divided &#8220;Kibiki&#8221; into a new &#8220;Mimasaka no kuni&#8221;, &#8220;Ichinomiya&#8221; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d<\/p>\n","protected":false},"author":1,"featured_media":11157,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[316],"tags":[308],"class_list":["post-11155","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ichinomiya-all-over-japan","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Nakayama Shrine (Tsuyama City) has a tradition and tradition in &quot;Mimasaka no Ichinomiya&quot; When the ancient Yamato court divided &quot;Kibiki&quot; into a new &quot;Mimasaka no kuni&quot;, &quot;Ichinomiya&quot; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d\" \/>\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\/nakayama-shrine\/\" \/>\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=\"Nakayama Shrine (Tsuyama City) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Nakayama Shrine (Tsuyama City) has a tradition and tradition in &quot;Mimasaka no Ichinomiya&quot; When the ancient Yamato court divided &quot;Kibiki&quot; into a new &quot;Mimasaka no kuni&quot;, &quot;Ichinomiya&quot; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-03-04T08:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-08-01T05:16:40+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Nakayama Shrine (Tsuyama City) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Nakayama Shrine (Tsuyama City) has a tradition and tradition in &quot;Mimasaka no Ichinomiya&quot; When the ancient Yamato court divided &quot;Kibiki&quot; into a new &quot;Mimasaka no kuni&quot;, &quot;Ichinomiya&quot; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d\" \/>\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\\\/nakayama-shrine\\\/#blogposting\",\"name\":\"Nakayama Shrine (Tsuyama City) - Shrine-heritager\",\"headline\":\"Nakayama Shrine (Tsuyama City)\",\"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\\\/03\\\/s-1.jpg\",\"width\":1024,\"height\":768},\"datePublished\":\"2020-03-04T17:00:00+09:00\",\"dateModified\":\"2020-08-01T14:16:40+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#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\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#listItem\",\"name\":\"Nakayama Shrine (Tsuyama City)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#listItem\",\"position\":3,\"name\":\"Nakayama Shrine (Tsuyama City)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}}]},{\"@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\\\/nakayama-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#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\\\/nakayama-shrine\\\/#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\\\/nakayama-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/\",\"name\":\"Nakayama Shrine (Tsuyama City) - Shrine-heritager\",\"description\":\"Nakayama Shrine (Tsuyama City) has a tradition and tradition in \\\"Mimasaka no Ichinomiya\\\" When the ancient Yamato court divided \\\"Kibiki\\\" into a new \\\"Mimasaka no kuni\\\", \\\"Ichinomiya\\\" (Ichi no miya)\\u201d Many other mysterious and ancient shrines still quietly sit \\u201csaru gami\\u201d\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/s-1.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#mainImage\",\"width\":1024,\"height\":768},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/nakayama-shrine\\\/#mainImage\"},\"datePublished\":\"2020-03-04T17:00:00+09:00\",\"dateModified\":\"2020-08-01T14:16:40+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":"Nakayama Shrine (Tsuyama City) - Shrine-heritager","description":"Nakayama Shrine (Tsuyama City) has a tradition and tradition in \"Mimasaka no Ichinomiya\" When the ancient Yamato court divided \"Kibiki\" into a new \"Mimasaka no kuni\", \"Ichinomiya\" (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d","canonical_url":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/","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\/nakayama-shrine\/#blogposting","name":"Nakayama Shrine (Tsuyama City) - Shrine-heritager","headline":"Nakayama Shrine (Tsuyama City)","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\/03\/s-1.jpg","width":1024,"height":768},"datePublished":"2020-03-04T17:00:00+09:00","dateModified":"2020-08-01T14:16:40+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#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\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#listItem","name":"Nakayama Shrine (Tsuyama City)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#listItem","position":3,"name":"Nakayama Shrine (Tsuyama City)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}}]},{"@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\/nakayama-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#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\/nakayama-shrine\/#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\/nakayama-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/","name":"Nakayama Shrine (Tsuyama City) - Shrine-heritager","description":"Nakayama Shrine (Tsuyama City) has a tradition and tradition in \"Mimasaka no Ichinomiya\" When the ancient Yamato court divided \"Kibiki\" into a new \"Mimasaka no kuni\", \"Ichinomiya\" (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/03\/s-1.jpg","@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#mainImage","width":1024,"height":768},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/#mainImage"},"datePublished":"2020-03-04T17:00:00+09:00","dateModified":"2020-08-01T14:16:40+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":"Nakayama Shrine (Tsuyama City) - Shrine-heritager","og:description":"Nakayama Shrine (Tsuyama City) has a tradition and tradition in &quot;Mimasaka no Ichinomiya&quot; When the ancient Yamato court divided &quot;Kibiki&quot; into a new &quot;Mimasaka no kuni&quot;, &quot;Ichinomiya&quot; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d","og:url":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/","article:published_time":"2020-03-04T08:00:00+00:00","article:modified_time":"2020-08-01T05:16:40+00:00","twitter:card":"summary_large_image","twitter:title":"Nakayama Shrine (Tsuyama City) - Shrine-heritager","twitter:description":"Nakayama Shrine (Tsuyama City) has a tradition and tradition in &quot;Mimasaka no Ichinomiya&quot; When the ancient Yamato court divided &quot;Kibiki&quot; into a new &quot;Mimasaka no kuni&quot;, &quot;Ichinomiya&quot; (Ichi no miya)\u201d Many other mysterious and ancient shrines still quietly sit \u201csaru gami\u201d"},"aioseo_meta_data":{"post_id":"11155","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 05:02:16","updated":"2025-07-01 07:16:02","seo_analyzer_scan_date":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\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tNakayama Shrine (Tsuyama City)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/"},{"label":"Nakayama Shrine (Tsuyama City)","link":"https:\/\/shrineheritager.com\/en\/nakayama-shrine\/"}],"views":1308,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11155","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=11155"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11155\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/11157"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=11155"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=11155"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=11155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}