    <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":10740,"date":"2020-06-24T12:00:30","date_gmt":"2020-06-24T03:00:30","guid":{"rendered":"https:\/\/shrineheritager.com\/tosa-shrine\/"},"modified":"2020-06-24T21:45:00","modified_gmt":"2020-06-24T12:45:00","slug":"tosa-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/","title":{"rendered":"Tosa Shrine (Ichinomiya, Kochi)"},"content":{"rendered":"<p><strong>Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &#8220;iwakura&#8221;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.<\/strong><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10744\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-19-424x600.jpg\" alt=\"\" width=\"424\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-19-424x600.jpg 424w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-19.jpg 724w\" sizes=\"(max-width: 424px) 100vw, 424px\" \/><\/p>\n<h2><b>1.Introduction (Introduction)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>[Shrine name]<\/b><\/h3>\n<p> Tosa <span style=\"font-size: 130%;\"><b>Shrine (Tosa<br \/>\n<\/b> <b> <\/b> Shrine)<\/span><b>\uff08\u3068\u3055\u3058\u3093\u3058\u3083\uff09<\/b> <b><span style=\"font-size: 130%;\"> <\/span><\/b><\/p>\n<h3><b>[Common name]<\/b><\/h3>\n<p> <b> <\/b><span style=\"font-weight: 400;\">Shinane sama<\/span><\/p>\n<h3><b>[Location]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">2-16-1 Ichinomiya Gane, Kochi, Kochi Prefecture<\/span><\/p>\n<h3><b>[Google Map]<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E5%9C%9F%E4%BD%90%E4%B8%80%E5%AE%AE\/%E3%80%92781-8131+%E9%AB%98%E7%9F%A5%E7%9C%8C%E9%AB%98%E7%9F%A5%E5%B8%82%E4%B8%80%E5%AE%AE%E3%81%97%E3%81%AA%E3%81%AD%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%96%E2%88%92%EF%BC%91+%E5%9C%9F%E4%BD%90%E7%A5%9E%E7%A4%BE\/@33.5848267,133.5716867,15.68z\/data=!4m14!4m13!1m5!1m1!1s0x354e1c39d9d15a93\" data-lkc-id=\"127\" 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\">\u571f\u4f50\u4e00\u5bae\u99c5 to \u571f\u4f50\u795e\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E5%259C%259F%25E4%25BD%2590%25E4%25B8%2580%25E5%25AE%25AE%2F%25E3%2580%2592781-8131%2B%25E9%25AB%2598%25E7%259F%25A5%25E7%259C%258C%25E9%25AB%2598%25E7%259F%25A5%25E5%25B8%2582%25E4%25B8%2580%25E5%25AE%25AE%25E3%2581%2597%25E3%2581%25AA%25E3%2581%25AD%25EF%25BC%2592%25E4%25B8%2581%25E7%259B%25AE%25EF%25BC%2591%25EF%25BC%2596%25E2%2588%2592%25EF%25BC%2591%2B%25E5%259C%259F%25E4%25BD%2590%25E7%25A5%259E%25E7%25A4%25BE%2F%4033.5848267%2C133.5716867%2C15.68z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x354e1c39d9d15a93?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u571f\u4f50\u4e00\u5bae\u99c5 to \u571f\u4f50\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E5%9C%9F%E4%BD%90%E4%B8%80%E5%AE%AE\/%E3%80%92781-8131+%E9%AB%98%E7%9F%A5%E7%9C%8C%E9%AB%98%E7%9F%A5%E5%B8%82%E4%B8%80%E5%AE%AE%E3%81%97%E3%81%AA%E3%81%AD%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%96%E2%88%92%EF%BC%91+%E5%9C%9F%E4%BD%90%E7%A5%9E%E7%A4%BE\/@33.5848267,133.5716867,15.68z\/data=!4m14!4m13!1m5!1m1!1s0x354e1c39d9d15a93\">https:\/\/www.google.com\/maps\/dir\/\u571f\u4f50\u4e00\u5bae\/\u3012781-8131+\u9ad8\u77e5\u770c\u9ad8\u77e5\u5e02\u4e00\u5bae\u3057\u306a\u306d\uff12\u4e01\u76ee\uff11\uff16\u2212\uff11+\u571f\u4f50\u795e\u793e\/@33.5848267,133.5716867,15.68z\/data=!4m14!4m13!1m5!1m1!1s0x354e1c39d9d15a93<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>[God&#8217;s name to pray]<\/b><\/h3>\n<p><b>&#8220;Lord&#8221; Ajisuki Takahikone-jin (ajisuki takahikone no kami)<br \/>\n<\/b> <b>&#8220;Lord&#8221; One Word Lord (Hitokotonushi no Kami)<\/b><\/p>\n<h3><b>[God&#8217;s Great power]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Victory prayer Victory prayer Victory prayer<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Setsubun Festival Setsubun Festival<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Shichigosan 7 year old 5 year old 3 year old celebration<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">New Year&#8217;s visit Baby prays at shrine for the first time<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Home safety Safe and stable home life<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Business prosperity Wishing business prosperity<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Traffic safety Prayer for Traffic safety <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Academic achievement Want to acquire knowledge and skills<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Prayer at an age contained a<br \/>\n lesson in life<\/span> <span style=\"font-weight: 400;\">Avoid bad directions<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Personal safety Body and life safety<br \/>\n<\/span> <span style=\"font-weight: 400;\">Disease healing God ceach the disease<br \/>\n<\/span> <span style=\"font-weight: 400;\">Ansan Healthy childirth<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">It is said that Ajizo Takahikone is the son of the Great Power Lord God, and it is said that he is a god of prosperity in all industries such as the development of the country, agriculture, industry, and commerce, and one word lord god is a god with a special faith that things are solved in one word as a god of unity cooperation.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As a result, our company has long been revered as a general guardian of the Nankai, as a god of home safety, agricultural prosperity, construction, politics, etc., and it is honored as a god of navigation safety, traffic safety, and healing of disease by his achievements.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<h3><b>[Rules of dignity]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">&#8220;Engishiki Jimmeicho&#8221;<br \/>\n<\/span> <span style=\"font-weight: 400;\">Tosa Kuni<br \/>\n Ichinomiya<\/span> <b>\u30fb <\/b> <span style=\"font-weight: 400;\">Betsute Shrine<\/span><\/p>\n<h3><b>[Beginning of history]<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10746\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-23-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-23-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-23-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-23.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">It is not clear about the restoration of Tosa Shrine, but it is thought that the natural stone called the gravel stone in the northeast part of the precincts was enshrined as a enshrined shrine, and it is said to date back to ancient times.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">During the Heian period, when the system of Enki was declared, Emperor Daigo&#8217;s reign was lined up by Shikiuchi Taisha shrine and called Tosaza Shrine, and there were often visits of the imperial family&#8217;s reverence envoy, and in 940, the Shinto floor was advanced to the throne.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At the beginning of the Kamakura period, it entered the Shinto-Buddhist custom era and was designated as tosa kunisangyou ichinomiya. The Ichinomiya Shrine was formed at our company, Jinguji Temple, and Zenrakuji Temple, and was called Tosa Takagamo Daimeijin.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the Muromachi period, in 1570, The Emperor Masachika&#8217;s former head of turtles (1570), the former parents of Nagasogabe revived the main shrine, the mint hall, and the worship hall, and the Emperor Godai Keichoroku (1 In 1601), he enjoyed Yamauchi Ichitoyo-soi and licensed the former company territory, and in the second generation Tadayoshi, he added torii, a tower gate, and a drum tower, and made it the best prayer center in Tosa.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the first year of the Meiji era, the year-ended Shinto-Buddhist custom era, which lasted for many years, was renamed Tosa Shrine in 1868, and the name was lined up in the National Mint Nakasha.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">After the war, the government mint system was abolished in 1946, and it is now considered to be the annex shrine of the shrine&#8217;s main office.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<h3><b>[History]<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">Tosa Shrine Visits<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The festival is celebrated with the god of Tosa, Tosa Takakamo Taisha, Takakamo Daimyojin, etc.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to the Japanese secretary, the founding age is said to be far away and the upper ancient era.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In particular, there are often visits of the imperial family, and in the Heian period, emperor Suzaku&#8217;s reign, Tenkei 3rd year (century 940), the shinto floor was advanced to the first place,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As a shrine of Tosa&#8217;s national general guard, at that time, the reverence of Takemon was thick.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">During the Muromachi period, in the first year of the year of the Emperor Masachika-cho and Gengame (Century 1570), former parents of Nagasogabe revived the main shrine, the mint hall, and the worship hall.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">During the Azuchi-Momoyama period, in the 6th year of The Emperor Go-Yosei(Century 1601), he enjoyed the seal and licensed the former company territory, and he built a torii, sakuramon, and drum cherry blossoms to the country of Tosa.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">During the Heian period, when the system of enki was declared, emperor Go-Daigo&#8217;s reign (901-923 centuries) was lined up at Taisha Shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1871, the shrine was called Tosa Shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">After the war, in 1946, the long-lasting shrine system came to an end and became a religious corporation.<\/span><\/p>\n<p><strong>From &#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Main Office]<\/strong><\/p><\/blockquote>\n<h3><b>[Other decisions within the preciss]<\/b><\/h3>\n<p>From the <span style=\"font-weight: 400;\">left towards<\/span> <b>the Sansha-den<\/b><\/p>\n<p><strong>On the left side, the shrine &#8220;Lord&#8221;<br \/>\nChuo Nishigozensha &#8220;Lord&#8221; Festival God Unknown<br \/>\nOn the right side of the Great Power Shrine &#8220;Lord&#8221; Great Power Lord God<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10748\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>Gravel stone (tubute ishi)<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The stone which threw it when the seat of the old god is decided is here, and it is enshrined thickly.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10750\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><strong>Shinmei-gu &#8220;Lord&#8221; Ise Ryogu<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10752\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-18-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-18-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-18-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-18.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><strong>Itsukushima Shrine &#8220;Lord&#8221; Ichikijima Himemei<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10754\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-21-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-21-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-21-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-21.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><strong>Takinomiya Shrine &#8220;Lord&#8221; Festival God unknown<br \/>\nToten Shrine &#8220;Lord&#8221; Festival God unknown<br \/>\nNishiten Shrine &#8220;Lord&#8221; Festival God unknown<br \/>\nHarumiya Shrine &#8220;Lord&#8221; Festival God unknown<\/strong><\/p>\n<h2><b>Preliminary knowledge of this shrine (Preliminary Knowledge of This Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Engishiki<\/span> <span style=\"font-weight: 400;\">Jimmeicho&#8221;<\/span><span style=\"font-weight: 400;\">(compiled in December 1927) 2 volumes that are important among all 50 volumes of rule-of-law scrolls created by the Imperial Court in the middle of the Heian period The contents are listed in the list of government companies (Shikinaisha) nationwide about 1100 years ago, and the name of &#8220;2861 companies&#8221; and the number of gods who sit there Tenjin ji-gion -&gt; &#8220;3132 seats&#8221; are listed.<\/span><\/p>\n<h3><b>[Enki-shiki Shinmeisho] (engishiki jimmeicho) The shrine record was completed in December 927 AD.<\/b><\/h3>\n<p><b>[Old Administrative Division] (Old administrator district)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">(God&#8217;s seating number)<\/span> <span style=\"font-size: 130%;\"><b>Nankai-do 163 seats&#8230; Large 29<\/b> <b><br \/>\n<\/b><\/span> <b><span style=\"font-size: 130%;\"> (including 10 of which are deposited monthly Shinjo, and 4 of which are deposited), small 134<\/span><br \/>\n<\/b><b>[old country name] (old country name)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">Tosa<\/span> <span style=\"font-size: 130%;\"><b>Kuni 21 (large 1 seat, small 20 seats)<br \/>\n<\/b><\/span><b>[old county name] (old region name)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">(Number of seats of God)<\/span> <span style=\"font-size: 130%;\"><b>Tosa-gun 5 seats (large 1 seat, small 4 seats)<\/b><\/span><\/p>\n<p><b>[Meishin University Small] <span style=\"font-size: 130%;\">Shikiuchi Taisha<\/span><\/b><\/p>\n<p><b>[Old shrine name] <span style=\"font-size: 130%;\">Tosaza Shrine (Large)<\/span><\/b><\/p>\n<p><b>[Furi-1] <span style=\"font-size: 120%;\">(Tosi-no-Kami no Yashiro)<\/span><\/b><b><br \/>\n<\/b><b>[How to read]<span style=\"font-size: 130%;\">(tosani imasu kamino yashiro)<\/span><\/b><\/p>\n<p><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000004146&amp;ID=M2014101719562090086&amp;TYPE=&amp;NO=<\/span> <span style=\"font-weight: 400;\">Image Use<br \/>\n<\/span> <span style=\"font-weight: 400;\">National Diet Library Digital Collection Enki-shiki Publication (Published) [Former Kuraya] Autumn Leaves Mountain Library<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10756\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-4-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-4-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-4-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-4.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>[Otaky Point] (Points Selected by Japan Otaku)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">I will introduce the preliminary knowledge that you will be interested in this shrine from a otaku&#8217;s point of view.<\/span><\/p>\n<h4><b>&#8220;Ajisuki takahikone no kami&#8221; of the festival god and<\/b> <b><br \/>\n<\/b> <b>About &#8220;hitokoto nushi no kami&#8221;<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">On August 13, 686, 686, there is a strong reverence from the Imperial Court, such as praying for the healing of Emperor Tenmu&#8217;s illness.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Tosa Kuni Fudoki&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;The name of god is not &#8220;one word lord&#8217;s son&#8221;, and the father is not understood well, but in a certain legend, it is said that it is &#8220;Ajislow Takahikon son&#8221; the son of the great power lord.&#8217;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The god of the festival is &#8220;a word of master&#8217;s son&#8221; and &#8220;Ajislow Takahikon-son&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">These two pillars of the deity are gods who have been enshrined as the clan gods of Yamato Katsuragi by Mr. Kamo since ancient years.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that it was enshrined here because mr. Kamo of Yamato or his family was entrusted to the national construction of Tosa.<\/span><\/p>\n<h4><b>tsubute ishi<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">Ogami, who arrived at &#8220;Kamonochi&#8221; in Tosa, stayed in the land of present-day Tosa Shrine and was enshrined as a &#8220;gravel isi&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10758\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10760\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<blockquote><p><b>The Sore of the Gravel Stone<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When he moved to Tosa of Tosa Ogami in the old story, he sent the ship to Takaoka-gun Ura ahead, built a salary shrine, and worshiped it as the great god of Kamo.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At one time, the god body manifestation is made to grant to the shinto thought, and it is made to throw it by taking the stone, and it throws it, and the shrine is stopped in the place where the stone of the salary is stopped, and, i.e., the stone is decided, and it is called an ancient person with an important stone which decided this site so-called by the stone.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is the reason why the line of the god happiness in the past was done like such a leap clerk between Uranouchi and this shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This ground becomes the formation of the serpentinite, and this crushed stone is a silica stone, and the nature is completely different, and this stone is called the rolling stone in the academia, and it is considered a special material academically.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">August 1974 Miyaji<\/span><\/p>\n<p><strong>From the precincts guide board<\/strong><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">It is written here, and it is a koto of the present &#8220;Naruno Shrine (Uranonai Naruno, Susaki City, Kochi Prefecture)&#8221; that is said to be &#8220;to build a shrine in Takaoka-gunura and worship it as a god of Kamo&#8221;<\/span><\/p>\n<p><span class=\"hutoaka\" style=\"color: #0000ff;\"><b>Please see the article of Narunashi Shrine which is said to be the motomiya (former jinzachi) of Tosa Shrine.<\/b><\/span><\/p>\n<p><strong><span style=\"color: #0000ff;\">\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/naruno-shrine-uranouchi-suzaki-city\/\" class=\"st-cardlink\">\n\t\t\t<div class=\"kanren st-cardbox\" >\n\t\t\t\t\t\t\t\t\t<div class=\"st-cardbox-label\"><span style=\"background:#cca300;\" class=\"st-cardbox-label-text\">Motomiya<\/span><\/div>\n\t\t\t\t\t\t\t\t<dl class=\"clearfix\">\n\t\t\t\t\t<dt class=\"st-card-img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/shrineheritager.com\/wp-content\/themes\/affinger5\/images\/no-img.png\" alt=\"no image\" title=\"no image\" width=\"100\" height=\"100\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/dt>\n\t\t\t\t\t<dd>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<h5 class=\"st-cardbox-t\">\u9cf4\u7121\u795e\u793e\uff08otonashi shrine\uff09 (Uranouchi, Suzaki City)<\/h5>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"st-card-excerpt smanone\">\n\t\t\t\t\t\t\t\t<p>Naruno Shrine is said to be the original shrine of Tosa Shrine (Tosa Kuni Ichinomiya) According to legend, it is the beginning of The Naruno Shrine that dedicated the &#8220;one word main life&#8221; that was washed away by Tosa and drifted to Uranouchi Bay.<\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"cardbox-more\">\u7d9a\u304d\u3092\u898b\u308b<\/p>\n\t\t\t\t\t\t\t\t\t\t\t<\/dd>\n\t\t\t\t<\/dl>\n\t\t\t<\/div>\n\t\t\t<\/a>\n\t\t\t<\/span><\/strong><\/p>\n<h4><b>Shinko Matsuri (Mikoshi Togo) August 25 Th Thye Thonging Festival (August 24th and 25th)<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">Kamiyuki Matsuri (Mikoshi Togo) August 25th is a festival of the deceased between Tosa Shrine and Narunashi Shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">On the afternoon of the 25th, a boat with a big fishing flag floated in Urano shrine and a brave Kamiyuki (boating) will be held at Naruno Shrine.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">God happiness begins at 3 p.m.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In ancient times, it was called the boating of god, and it was stopped because of the sea accident though it went to Naruno Shrine (Uranouchi east part of Suzaki city) of Uranouchi Bay in Suzaki City,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the Edo period, a travel station called Koichinomiya was established on the north shore of Godaiyama, Kochi City, and Funato was held.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In addition, since the fact that the travel center was built in our southern ipponmatsu in 1868, God&#8217;s day has been carried out on foot.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<h2><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the state when I visited this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From Tosa Ichinomiya Station, take Prefectural Road No. 251 north, about 1.5km by car for about 8 minutes.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At the entrance of the approach, there is a gate (Shinkomon Gate) built.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that the construction of Tadayoshi Yamauchi, the second lord of the second feudal lord (national important cultural property) in 1631.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10762\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From The Shinkomon gate to the precincts in the direction of just north, a straight approach extends about 300m.<\/span><\/p>\n<p><b>Arrived at Tosa Shrine (Tosa Shrine)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10764\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-15-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-15-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-15-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-15-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-15.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a temizusha on the left side in front of the entrance of the precincts, and the water mouth is cleansed from the dragon god.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10766\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-3-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-3-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-3-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-3-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10768\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-17-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-17-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-17-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-17.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A wooden torii gate is built at the entrance of the shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is &#8220;Tosa Ichinomiya&#8221; on the forehead, and the company&#8217;s name mark &#8220;Tosa Ichinomiya Tosa Shrine&#8221; is built side by side.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10770\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-2-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-2-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-2-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-2-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The lords of generations are revered against Tosa Shrine, and the present shrine building has a guide board with the re-construction operation by former Lord Nagasogabe.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10772\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">To the right of the precincts is the drum tower, and ema-den is on the left.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10774\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-16-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-16-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-16-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-16.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The drum tower is said to have been built in 1649 by Tadayoshi Yamauchi, the second lord of the domain(1649).<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10776\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine in front of the shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10778\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-17-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-17-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-17-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-17.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10780\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-13-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-13-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-13-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-13.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The shrine hall is set up a left and right wing worship hall, and the coming of worship is approaching in front of it.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10782\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-1-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-1-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-1-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-1-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10784\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It is a shrine hall of<br \/>\n a rare architectural style called iri-no-dragonfly.<\/span> <span style=\"font-weight: 400;\">It is just &#8220;dragonfly shape (like a cross)&#8221; is a rare building shrine (national important cultural property)<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10786\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-13-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-13-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-13-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-13-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-13.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><b>I&#8217;m going<br \/>\n to go to the shrine.<\/b> <b>I&#8217;m sing a<br \/>\n lot of money. I wish you all the best.<\/b> <b>I pray with my hands together, hitting a high hand that can&#8217;t reach the god of worship who bows and settles while wishing to be in accordance with your divine power.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10788\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10790\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Right-wing worship hall towards<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10792\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-15-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-15-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-15-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-15-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-15.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Left-wing worship hall towards<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10794\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Main Hall (Kunishigebun)<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10796\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10798\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-11-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-11-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-11-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-11.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a guide board of &#8220;Shinae no Mori Tour&#8221; and worships as it is.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10800\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-12-464x600.jpg\" alt=\"\" width=\"464\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-12-464x600.jpg 464w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-12.jpg 619w\" sizes=\"(max-width: 464px) 100vw, 464px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the left towards<\/span> <b>the Three Shrines<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10802\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left side, the shrine &#8220;Lord&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10804\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-10-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-10-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-10-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-10-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-10.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Chuo Nishigozensha &#8220;Lord&#8221; Festival God Unknown<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10806\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right side of the Great Power Shrine &#8220;Lord&#8221; Great Power Lord God<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10808\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-9-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-9-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-9-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-9-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-9.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The spring water flowing into the forest of Shinaei becomes a stream, crossing a small shinbashi bridge over here.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10810\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-7-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-7-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-7-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-7.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a large cedar of the sacred tree, and a stone shrine sits behind it.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10812\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We&#8217;re going to get to the tsubte is enshrined as a stone \u7c6c god.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10814\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s a narrow approach to the stone from the tip of the stone.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Shinmei-gu &#8220;Lord&#8221; I visit Ise Ryogu Shrine<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10816\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a ring-pulling exorcism, and it passes through the stump of the large tree of the cedar which was a sacred tree before in the manner of the circle of the great exorcism.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10818\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10820\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">float in a pond<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Itsukushima Shrine &#8220;Lord&#8221; I visit Ichikijima Himemei<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10822\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-4-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-4-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-4.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">You will receive a charm and a seal at the awarding office on the west side of the entrance of the precincts.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;ll leave the precincts.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10824\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-4-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-4-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-4.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the torii gate, look back, bow<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10826\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-4-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-4-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-4.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h2><b>Old tales held down to shrinks<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3>On the <b>Tradition written in Nihon Shoki<\/b> <b><br \/>\n<\/b> <b>Emperor Tenmu Article 4 (675) March 2<\/b> <b><br \/>\n<\/b> <b>Article 13 of August 13, 686<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">It is described with the title of &#8220;Ohokami&#8221; as &#8220;Tosa no ohkomi&#8221; as the legend of the ancients, and it is a local god, but a deep reverence from the imperial court can be seen, such as praying for the healing of the emperor&#8217;s illness.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Nordhaven<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Emperor<\/span> <b> Tenmu article 4 (675) March 2<\/b><\/p>\n<p><span style=\"font-weight: 400;\">March 2: Tosa no ohkami presented a bite of god sword to the Emperor.&#8221;<\/span><\/p>\n<p><b>Article 13 of August 13, 686<\/b><\/p>\n<p><span style=\"font-weight: 400;\">August 9 I prayed to the gods for the emperor&#8217;s indigres.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">August 13: We sent hata no imiki iwakatsu to dedicate the mint (mint miura) to Tosa Ogami.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">On this day, the Crown Prince added 400 seals to Prince Kusabe, Prince Otsu, and Prince Takaichi, respectively.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">We added 100 houses each to Prince Kawashima and Prince Ninkabe.&#8221;<\/span><\/p><\/blockquote>\n<p><b>[Reference]<\/b><span style=\"font-weight: 400;\">&#8220;Nihon Shoki&#8221; Publication Book Fumimasa 13-year winner, Prince Shamoto [former<br \/>\n brewer] Ministry of the Interior National Archives Digital Archive<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&gt; amp;BID=F10000000000047528&amp;ID=M2017042515415226619&amp;TYPE=&amp;NO=Image Utilization<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10828\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-1-837x600.jpg\" alt=\"\" width=\"837\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-1-837x600.jpg 837w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-1-768x551.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-1.jpg 1024w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10830\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-2-837x600.jpg\" alt=\"\" width=\"837\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-2-837x600.jpg 837w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-2-768x551.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-G-2.jpg 1024w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/p>\n<h3><b>&#8220;Tsuku Nihongi&#8221; (764)<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">Translation<br \/>\n<\/span> <span style=\"font-weight: 400;\">&#8220;Oten&#8221; who met Emperor Daihakuse &#8220;21st Emperor Yuyaku tenno&#8221; at Yamato Katsuragiyama competed for hunting with the Emperor.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The Emperor got angry and was swept away by Tosa for that.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">However, because he was an ancestral god of Mr. Kamo, it was enshrined in the 8th year of the Tenpei Hoji character, returning to the shrine of the main shrine in Katsukami-gun, Yamato Province.&#8221;<\/span><\/p><\/blockquote>\n<p><b>[Reference]<\/b> <span style=\"font-weight: 400;\">National Archives Digital Archive &#8220;Continued Nihonki&#8221; Enryaku 16 (797) Winner: Masamichi Sugano, Keicho<br \/>\n 19 [Former Kuraya] Koyoyama Bunko<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto ?LANG=default&amp;BID=F1000000000045548&amp;ID=M2014100619504988793&amp;TYPE=&amp;NO=Image Utilization<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10832\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-1-828x600.jpg\" alt=\"\" width=\"828\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-1-828x600.jpg 828w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-1-768x557.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-1.jpg 1024w\" sizes=\"(max-width: 828px) 100vw, 828px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10834\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-2-828x600.jpg\" alt=\"\" width=\"828\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-2-828x600.jpg 828w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-2-768x557.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-R-2.jpg 1024w\" sizes=\"(max-width: 828px) 100vw, 828px\" \/><\/p>\n<h3><b>The Legend of &#8220;The God of The Festival&#8221; written in &#8220;Shaku Nihongi&#8221; Vol. 15 &#8220;Tosa Kuni Fudoki&#8221;<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">Translation<br \/>\n<\/span> <span style=\"font-weight: 400;\">&#8220;Tosa no ohkomi presented a bite of god sword to the Emperor<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Shinmei-gu Book: Tosa Kunitosa-gun Tosata Shrine (Large)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Tosa Kuni Fudoki<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is in the four villages to leave the west of the county family in the county of the county of the other side of the earth left.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The name of the god is &#8220;hitokotonushi no mikoto&#8221; of the taisha (Ohoyashiro) of The Left.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">I don&#8217;t know much about mioya.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to aru tsutahe, the child of Ohoanamuchi no mikoto \u924f Takahikone son (ajisuki takahikone no mikoto) Narito ifu&#8221;<\/span><\/p><\/blockquote>\n<p><b>[Reference]<\/b> <span style=\"font-weight: 400;\">National Archives Digital Archives &#8220;Shaku Nihonki&#8221; Bunei Gennen (1264) &#8211; Masayasu 3rd year (1301) Manuscript (copy book) Meiji Author: Bokbe Kaiken<br \/>\n<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F100000000045548 &amp;ID=M2014100619504988793&amp;TYPE=&amp;NO=Image Use<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10836\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-1-844x600.jpg\" alt=\"\" width=\"844\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-1-844x600.jpg 844w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-1-768x546.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-1.jpg 1024w\" sizes=\"(max-width: 844px) 100vw, 844px\" \/><\/p>\n<h3><b>&#8220;Shaku Nihonki&#8221; Vol. 12 On the Tradition of the One Word Lord God Article<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">It is written about &#8220;one word main god&#8221; in &#8220;shakunki&#8221; which was established at the end of the Kamakura period.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Summary<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;One<\/span> <b> thing, the Lord God<\/b><\/p>\n<p><span style=\"font-weight: 400;\">God&#8217;s Name Book<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Yamato Kunikatsujo-gun Katsuragiza One-place Main Shrine Meishin University Tsukiji Shinjo<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Kojiki says&#8230;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Tosa Kuni Fudoki<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is in the four villages to leave the west of the county family in the county of the county of the other side of the earth left.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The name of the god is &#8220;hitokotonushi no mikoto&#8221; of the taisha (Ohoyashiro) of The Left.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">I don&#8217;t know much about mioya.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to the aru tatsuhe, the child of Ohoanamuchi no mikoto,\u924f Ajisuki takahikona son (ajisuki takahikona no mikoto) Narito fu<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Emperor Yuroku (21st) February 4<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When the Emperor was hunting at Yamato Katsuragiyama, the Emperor met a word lord god, and the word and behavior flowed a word master god to Tosa.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The washed-out word god is enshrined in &#8220;Kamonochi&#8221; at first in Tosa, and is later transferred to &#8220;Tosa Takagamo Taisha&#8221; (present-day Tosa Shrine).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Then, in the 8th year of Tenpei Hoji (764), a word master god was transferred to &#8220;KatsuragiYama Higashi Shimomiyaokakami&#8221; in Yamato Province by Mr. Kamo&#8217;s words.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">However, the Japanese soul is still enshrined in Tosa province.&#8221;<\/span><\/p><\/blockquote>\n<p><b>[Reference]<\/b> <span style=\"font-weight: 400;\">National Archives Digital Archives &#8220;Shaku Nihonki&#8221; Bunei Gennen (1264) &#8211; Masayasu 3rd year (1301) Manuscript (copy book) Meiji Author: Bokbe Kaiken<br \/>\n<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F100000000045548 &amp;ID=M2014100619504988793&amp;TYPE=&amp;NO=Image Use<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10838\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-2-844x600.jpg\" alt=\"\" width=\"844\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-2-844x600.jpg 844w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-2-768x546.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-2.jpg 1024w\" sizes=\"(max-width: 844px) 100vw, 844px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10840\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-3-844x600.jpg\" alt=\"\" width=\"844\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-3-844x600.jpg 844w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-3-768x546.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-3.jpg 1024w\" sizes=\"(max-width: 844px) 100vw, 844px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10842\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-4-844x600.jpg\" alt=\"\" width=\"844\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-4-844x600.jpg 844w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-4-768x546.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-4.jpg 1024w\" sizes=\"(max-width: 844px) 100vw, 844px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-10844\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-5-844x600.jpg\" alt=\"\" width=\"844\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-5-844x600.jpg 844w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-5-768x546.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-Q-5.jpg 1024w\" sizes=\"(max-width: 844px) 100vw, 844px\" \/><\/p>\n<p><span style=\"color: #0000ff;\"><b>*Please see the story of &#8220;KatsuragiYama Higashi Shimomiya Okakami&#8221; in Yamato Province (present-day Katsuragi Ichigo-ushi Shrine).<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<p><b>Since ancient times, it has been dedicated to the natural stone &#8220;Iwakura&#8221; where God dwells, and it is said that the restoration of the restoration of the restoration to ancient times because this stone called &#8220;gravel isshi&#8221; fell to this place and stopped.<\/b><\/p>\n<p><b>&#8220;hai&#8221; (90-degree bow) at Tosa Shrine (Tosa shrine)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10846\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-4-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-4-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-4.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the hi-designated area of &#8220;Kamonochi&#8221; where the god of Tosa Shrine was first enshrined<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Kamo Shrine in the west (Irino and Shikinaisha, Kuroshio-cho, Hata-gun)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Kamo Shrine (Tanosato, Suzaki City)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There are various theories such as Naruno Shrine (Uranouchi, Suzaki City, Shikinaisha)<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &#8220;iwakura&#8221;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.<\/p>\n","protected":false},"author":1,"featured_media":10741,"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-10740","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=\"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &quot;iwakura&quot;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.\" \/>\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\/tosa-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=\"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &quot;iwakura&quot;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/tosa-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-06-24T03:00:30+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-06-24T12:45:00+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &quot;iwakura&quot;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.\" \/>\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\\\/tosa-shrine\\\/#blogposting\",\"name\":\"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager\",\"headline\":\"Tosa Shrine (Ichinomiya, Kochi)\",\"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\\\/06\\\/s-1-22.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-06-24T12:00:30+09:00\",\"dateModified\":\"2020-06-24T21:45:00+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-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\\\/tosa-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\\\/tosa-shrine\\\/#listItem\",\"name\":\"Tosa Shrine (Ichinomiya, Kochi)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-shrine\\\/#listItem\",\"position\":3,\"name\":\"Tosa Shrine (Ichinomiya, Kochi)\",\"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\\\/tosa-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-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\\\/tosa-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\\\/tosa-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-shrine\\\/\",\"name\":\"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager\",\"description\":\"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called \\\"iwakura\\\", a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-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\\\/06\\\/s-1-22.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-shrine\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tosa-shrine\\\/#mainImage\"},\"datePublished\":\"2020-06-24T12:00:30+09:00\",\"dateModified\":\"2020-06-24T21:45:00+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":"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager","description":"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called \"iwakura\", a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.","canonical_url":"https:\/\/shrineheritager.com\/en\/tosa-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\/tosa-shrine\/#blogposting","name":"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager","headline":"Tosa Shrine (Ichinomiya, Kochi)","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\/06\/s-1-22.jpg","width":1024,"height":682},"datePublished":"2020-06-24T12:00:30+09:00","dateModified":"2020-06-24T21:45:00+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/tosa-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\/tosa-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\/tosa-shrine\/#listItem","name":"Tosa Shrine (Ichinomiya, Kochi)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/#listItem","position":3,"name":"Tosa Shrine (Ichinomiya, Kochi)","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\/tosa-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/tosa-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\/tosa-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\/tosa-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/","name":"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager","description":"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called \"iwakura\", a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/tosa-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\/06\/s-1-22.jpg","@id":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/#mainImage"},"datePublished":"2020-06-24T12:00:30+09:00","dateModified":"2020-06-24T21:45:00+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":"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager","og:description":"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &quot;iwakura&quot;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times.","og:url":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/","article:published_time":"2020-06-24T03:00:30+00:00","article:modified_time":"2020-06-24T12:45:00+00:00","twitter:card":"summary_large_image","twitter:title":"Tosa Shrine (Ichinomiya, Kochi) - Shrine-heritager","twitter:description":"Tosa Shrine (Shinane-sama) has a high formality as a shrine in Tosa Province Since ancient times, it is said that this stone called &quot;iwakura&quot;, a natural stone where God dwells, was built and enshrined in a place where it fell here and stopped, and the creation dates back to ancient times."},"aioseo_meta_data":{"post_id":"10740","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 10:19:55","updated":"2025-07-01 07:47:14","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%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\tTosa Shrine (Ichinomiya, Kochi)\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":"Tosa Shrine (Ichinomiya, Kochi)","link":"https:\/\/shrineheritager.com\/en\/tosa-shrine\/"}],"views":1153,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/10740","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=10740"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/10740\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/10741"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=10740"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=10740"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=10740"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}