    <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":13606,"date":"2020-07-25T21:22:57","date_gmt":"2020-07-25T12:22:57","guid":{"rendered":"https:\/\/shrineheritager.com\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/"},"modified":"2020-07-25T21:22:57","modified_gmt":"2020-07-25T12:22:57","slug":"%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/","title":{"rendered":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09"},"content":{"rendered":"<p><b>According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11787\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-5-428x600.jpg\" alt=\"\" width=\"428\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-5-428x600.jpg 428w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-5.jpg 730w\" sizes=\"(max-width: 428px) 100vw, 428px\" \/><\/p>\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/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>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><\/h3>\n<p> <b><span style=\"font-size: 130%;\">\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09<br \/>\n<\/span><\/b><b> \uff08\u3042\u308f\u304c\u3058\u3093\u3058\u3083\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<h3><b> <\/b><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">2152 Awaga, Santo-cho, Asago City, Hyogo Prefecture<\/span><\/p>\n<h3><b>[\u5730 \u56f3 (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\/35.3033211,134.91112\/%E3%80%92669-5125+%E5%85%B5%E5%BA%AB%E7%9C%8C%E6%9C%9D%E6%9D%A5%E5%B8%82%E5%B1%B1%E6%9D%B1%E7%94%BA%E7%B2%9F%E9%B9%BF%EF%BC%92%EF%BC%91%EF%BC%95%EF%BC%92+%E4%BD%86%E9%A6%AC%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E7%B2%9F%E9%B9%BF%E7%A5%9E%E7%A4%BE\/@35.3017011,134.9065835,17.24z\/data=!4m9!4m8!1m0!1m5!1m1!1s0x35555622d1c02e2b\" data-lkc-id=\"150\" 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\">\u5c71\u6771\u753a\u4e00\u54c1 to \u4f46\u99ac\u570b\u4e00\u4e4b\u5bae \u7c9f\u9e7f\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%2F35.3033211%2C134.91112%2F%25E3%2580%2592669-5125%2B%25E5%2585%25B5%25E5%25BA%25AB%25E7%259C%258C%25E6%259C%259D%25E6%259D%25A5%25E5%25B8%2582%25E5%25B1%25B1%25E6%259D%25B1%25E7%2594%25BA%25E7%25B2%259F%25E9%25B9%25BF%25EF%25BC%2592%25EF%25BC%2591%25EF%25BC%2595%25EF%25BC%2592%2B%25E4%25BD%2586%25E9%25A6%25AC%25E5%259C%258B%25E4%25B8%2580%25E4%25B9%258B%25E5%25AE%25AE%2B%25E7%25B2%259F%25E9%25B9%25BF%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.3017011%2C134.9065835%2C17.24z%2Fdata%3D%214m9%214m8%211m0%211m5%211m1%211s0x35555622d1c02e2b?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u5c71\u6771\u753a\u4e00\u54c1 to \u4f46\u99ac\u570b\u4e00\u4e4b\u5bae \u7c9f\u9e7f\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/35.3033211,134.91112\/%E3%80%92669-5125+%E5%85%B5%E5%BA%AB%E7%9C%8C%E6%9C%9D%E6%9D%A5%E5%B8%82%E5%B1%B1%E6%9D%B1%E7%94%BA%E7%B2%9F%E9%B9%BF%EF%BC%92%EF%BC%91%EF%BC%95%EF%BC%92+%E4%BD%86%E9%A6%AC%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E7%B2%9F%E9%B9%BF%E7%A5%9E%E7%A4%BE\/@35.3017011,134.9065835,17.24z\/data=!4m9!4m8!1m0!1m5!1m1!1s0x35555622d1c02e2b\">https:\/\/www.google.com\/maps\/dir\/35.3033211,134.91112\/\u3012669-5125+\u5175\u5eab\u770c\u671d\u6765\u5e02\u5c71\u6771\u753a\u7c9f\u9e7f\uff12\uff11\uff15\uff12+\u4f46\u99ac\u570b\u4e00\u4e4b\u5bae+\u7c9f\u9e7f\u795e\u793e\/@35.3017011,134.9065835,17.24z\/data=!4m9!4m8!1m0!1m5!1m1!1s0x35555622d1c02e2b<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>\u3010\u5fa1\u796d\u795e (God&#8217;s name to pray)\u3011<\/b><\/h3>\n<p><b><span style=\"font-size: 120%;\">\u300a\u4e3b\u300b\u5929\u7f8e\u4f50\u5229\u547d\uff08ameno misari no mikoto\uff09<\/span> <span style=\"font-weight: 400;\">\u5927\u56fd\u4e3b\u547d\u306e\u5fa1\u5b50<br \/>\n<\/span><\/b><b><span style=\"font-size: 120%;\">\u300a\u4e3b\u300b\u65e5\u5b50\u5750\u738b\uff08hikoimasu no mikoto\uff09<\/span> <span style=\"font-weight: 400;\">\u958b\u5316\u5929\u7687\u306e\u7b2c\u4e09\u7687\u5b50<br \/>\n<\/span><\/b><b><span style=\"font-size: 120%;\">\u300a\u4e3b\u300b\u65e5\u5b50\u7a42\u7a42\u624b\u898b\u5c0a\uff08hiko hohotemi no mikoto\uff09<\/span> <span style=\"font-weight: 400;\">\u53e4\u4e8b\u8a18\u306b\u50b3\u3078\u308b\u5c71\u72ed\u77e5\u6606\u53e4<\/span><\/b><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<p><b>\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u6240\u8f09\u793e<br \/>\n<\/b><b>\u30fb \u4f46\u99ac\u56fd\u4e00\u4e4b\u5bae<\/b><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">In the first year of Wado (708), a manuscript of The Great Myojin of Awaga, which detailed the gods of the festival and successive priests, remains (in the Imperial Household Agency)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Our company is called the god of national land development as tajima country&#8217;s oldest company. It was a large shrine where the reverence of the inhabitants gathered not only in japan but also in several countries in the vicinity, and it was lined up in Meishin Taisha in the system of Shintoku high and Enki.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At the time of the 10th Emperor Sujin of the Emperor Sujin, the third prince, Prince Higo zao, was appointed as one of the four-way shoguns to the key Tamba dojin of the Sanin and Hokuriku roads, and he marched the Tamba yen and shook the imperial power in great way, responding to the emperor&#8217;s will.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At the foot of Mt. Ashiga, Awaga-go is the site of the end of the king&#8217;s \u85a8, and the double-\u6e5f moat behind the Ashiga Shrine and the enfun behind the existing main shrine are historic sites of the King&#8217;s Buried Place. Former prefectural company.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the Hyogo Shrine Agency website<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">From the shrine distribution history<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11789\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-4-826x600.jpg\" alt=\"\" width=\"826\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-4-826x600.jpg 826w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-4-768x558.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-4.jpg 1024w\" sizes=\"(max-width: 826px) 100vw, 826px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11791\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-4-826x600.jpg\" alt=\"\" width=\"826\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-4-826x600.jpg 826w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-4-768x558.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-4.jpg 1024w\" sizes=\"(max-width: 826px) 100vw, 826px\" \/><\/p>\n<h3><b> <\/b><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b> <\/b><b>\u30fb<\/b> <b>Myoga Shrine<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u8349\u91ce\u59eb\u547d\uff08kayanohime no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11793\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-1-1-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-1-1-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-1-1.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11795\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u5e8a\u6d66\uff08tokora\uff09\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5927\u5df1\u8cb4\u795e\uff08onamuchi no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11797\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-1-1-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-1-1-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-1-1.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11799\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u733f\u7530\u5f66\uff08sarutahiko\uff09\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u733f\u7530\u5f66\u795e\uff08sarutahiko no kami\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11801\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u7a32\u8377\uff08inari\uff09\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u4fdd\u98df\u795e\uff08ukemochi no kami\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11803\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u53b3\u5cf6\uff08itsukushima\uff09\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5e02\u6775\u5cf6\u59eb\u547d\uff08ichikihime no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11805\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u5929\u6e80\uff08temman\uff09\u5bae<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u7ba1\u539f\u9053\u771e\u516c\uff08sugawara no michizane ko\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11807\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(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;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\">\u300fThe two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide. <\/span><\/p>\n<h3><span style=\"color: #0000ff;\"><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\uff08engishiki jimmeicho\uff09The shrine record was completed in December 927 AD.<\/b><\/span><\/h3>\n<p><b>[\u65e7 \u884c\u653f\u533a\u5206]\uff08Old administrative district\uff09<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><span style=\"font-size: 120%; color: #0000ff;\"><b>\u5c71\u9670\u9053 560\u5ea7\u2026\u592737\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u56171\uff09\u30fb\u5c0f523<\/b><\/span><b><br \/>\n<\/b><b>[\u65e7 \u56fd \u540d ]\uff08old county name\uff09<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><span style=\"font-size: 120%; color: #0000ff;\"><b>\u4f46\u99ac\u56fd 131\u5ea7\uff08\u592718\u5ea7\u30fb\u5c0f113\u5ea7\uff09<\/b><\/span><b><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><span style=\"font-size: 120%; color: #0000ff;\"><b>\u671d\u6765\u90e1 9\u5ea7\uff08\u59271\u5ea7\u30fb\u5c0f8\u5ea7\uff09<br \/>\n<\/b><\/span><b>[\u540d\u795e\u5927 \u5927 \u5c0f] <span style=\"color: #0000ff; font-size: 120%;\">\u5f0f\u5185 \u540d\u795e\u5927\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"font-size: 120%; color: #0000ff;\">\u7c9f\u9e7f\u795e\u793e\uff08\u540d\u795e\u5927\uff09<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"color: #0000ff;\">\uff08\u3042\u306f\u304b\u306e \u304b\u307f\u306e\u3084\u3057\u308d \u307f\u3087\u3046\u3058\u3093\u3060\u3044\uff09<\/span><\/b><b><br \/>\n<\/b><b>[How to read]<span style=\"font-size: 120%; color: #0000ff;\">\uff08ahaka no kamino yashiro myojindai \uff09<\/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 (Baba) [Former Kurashi] Autumn Leaves Yama Bunko<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11809\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-\u4f46\u99ac-\u56fd_LI-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-\u4f46\u99ac-\u56fd_LI-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-\u4f46\u99ac-\u56fd_LI-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-\u4f46\u99ac-\u56fd_LI.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">\u3042\u306a\u305f\u304c \u3053\u306e\u795e\u793e\u306b\u8208\u5473\u304c\u6e67\u304f\u3088\u3046\u306a\u4e88\u5099\u77e5\u8b58\u3092\u30aa\u30bf\u30af\u8996\u70b9\u3067\u3054\u7d39\u4ecb\u3057\u307e\u3059<\/span><\/h3>\n<h4><b>On &#8220;Hikomasu no mikoto&#8221; of the god of the festival<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">It is considered to be the third prince of the 9th Emperor Kaikai.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In &#8220;Kojiki&#8221;, it is referred to as &#8220;Hikoza-o&#8221; in &#8220;Nikko Zao-oh&#8221; and &#8220;Nihon Shoki&#8221; as &#8220;Hikoza-o&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Kojiki, it is a prince between Emperor Kaikai and Maruniomi (same as The \u73e5&#8217;s Vassal) and the younger sister of the founder, The \u73e5, the younger sister of the son of Qiyi No mikoto.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the company biography, the circle (rear hill) behind the main shrine of Awaga Shrine is a historic site (Goryo) of the Himo Zao buried place.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11811\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h4><b>Kojiki( Kojiki) Nakamaki In the article of Emperor Sojin, it is written as the dispatch of the shogun.<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">&#8220;Hiko Zao&#8221; is the half-brother of the 10th &#8220;Emperor Sujin&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Nihon Shoki, Emperor Sujin sent the son of &#8220;Hikoza-o&#8221; to Tamba as one of the four-way shoguns.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In Kojiki, Emperor Sujin ordered Nisso zao to exterminate the land spider of The Land of Tamba.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Translation<br \/>\n <\/span> <span style=\"font-weight: 400;\">&#8220;The king of the house of the house was sent to the country of Tamba, and the Kuga Otono Mikasa (kugamimi no mikasa) was killed.&#8221;<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">\u3010\u539f\u6587\u53c2\u7167\u3011\u300e\u53e4\u4e8b\u8a18\u300f\u520a\u672c \u660e\u6cbb03\u5e74\u9078\u8005:\u592a\u5b89\u4e07\u4fb6\uff0f\u6821\u8a02\u8005:\u9577\u702c\u771f\u5e78 \u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047416&amp;ID=&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11813\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1\u3000\u65e5\u5b50\u5750\u738b_LI-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1\u3000\u65e5\u5b50\u5750\u738b_LI-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1\u3000\u65e5\u5b50\u5750\u738b_LI-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1\u3000\u65e5\u5b50\u5750\u738b_LI.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<h4><b>On the Children and Descendants of The Son of The Sunoko Zao in The Middle Volume of Kojiki<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">The descendants of Nisoko Zao are written as well as the descendants of the Emperor, and are written as the founders of the various clans as the royal family.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Kojiki, it is written as<br \/>\n a descendant clan.<\/span> <span style=\"font-weight: 400;\">Isenoshina Late Part, Ise-no-Sanazo, Hiy\u014dda-kun, Toma-maga-kun, Sa-kun, Kusakabe-ren, Katsunonobetsu, Kin-Awakai Mosquito Nobetsu, Waka \u72f9 Noebetsu, Mikawa Nohobetsu, Kintankai Noanna, Nagahataberen, Yoshiarashi Late You, Harima Amune- and others<\/span><\/p>\n<p><span style=\"font-weight: 400;\">After that, it becomes strongly intertwined with successive emperors in the middle volume of &#8220;Kojiki&#8221;<\/span><\/p>\n<p><b>According to Kojiki, there are four queens of The Princess Of Himo.<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u30fb\u5c71\u4ee3\u306e\u834f\u540d\u6d25\u6bd4\u58f2\uff08enatsu hime\uff09\u5225\u540d\u3092\u82c5\u5e61\u6238\u8fa8\uff08karihatatobe\uff09<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u6c99\u672c\u4e4b\u5927\u95c7\u898b\u6238\u58f2\uff08saho no okuramitome\uff09<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u606f\u9577\u6c34\u4f9d\u6bd4\u58f2\uff08okinaga mizuyorihime\uff09<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u8881\u7941\u90fd\u6bd4\u58f2\uff08woketsu hime\uff09<\/span><\/p>\n<h4><b>According to Kojiki, there are a total of 15 children of The Son of The Zao, 12 princes and three princesses.<\/b> <b><\/p>\n<p><\/b> <b>In the article of the 11th &#8220;Emperor Taruhito&#8221;, the descendants of Nisoko Zao appear in the article of &#8220;Kojiki&#8221; Naka volume<\/b><\/h4>\n<p><b>Empress of &#8220;Emperor Taruhito&#8221; Samoto Bisomei (sahohime no mikoto)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">The Empress who was born between<\/span> <span style=\"font-weight: 400;\">Nisoko Zao and<\/span> <b>Sahonno Dai Nokurami tosho (saho no okumuramitome)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Sahon<\/span> <b>Biko-oh (sahohiko no miko)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">Prince born between<\/span> <span style=\"font-weight: 400;\">Nisoko Zao and<\/span> <b>Sahonno Dai Nokuramitosho<\/b><\/p>\n<p><span style=\"font-weight: 400;\">In the rebellion against &#8220;Emperor Taruhito&#8221;, it is avenged with Sahohime no mikoto.<\/span><b><\/b><\/p>\n<p><b>Danba Hikota UtaSueU-o (taniwa no hikotatasumi no koshi no miko) daughter brother Hiuri (ehime), brother Hiuri (otohime)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Sahohime no mikoto is in his place at the time of his brother&#8217;s rebellion, &#8220;Danba Hihiko Tatasue Sumi Usifao (taniwa no hikatasumi no ushi no miko) I invite the Emperor to<\/span> <b>\u606f\u9577\u6c34\u4f9d\u6bd4\u58f2\uff08okinaga mizuyorihime\uff09<\/b> <span style=\"font-weight: 400;\">\u3068\u306e\u9593\u306b\u751f\u307e\u308c\u305f\u5b50\u3067\u3059<\/span> make my daughter Empress.<\/p>\n<p><span style=\"font-weight: 400;\">Therefore, my grandson will<br \/>\n be the queen of Emperor Taruhito.<\/span> <span style=\"font-weight: 400;\">Grandson: Hibasu Hiei (Hiba Vinegar Ehime) After Emperor Taruhito&#8217;s Empress, Emperor Kageyuki&#8217;s mother<br \/>\n <\/span> <span style=\"font-weight: 400;\">Grandson: Mr. Tozano (Makino Ehime) Emperor<br \/>\n Taruhito<\/span> <span style=\"font-weight: 400;\">Grandson: Emperor Taruhito, his younger brother Hisuri Life<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Among<\/span> the five children with <b>okinaga mizuyorihime,<\/b> <span style=\"font-weight: 400;\">there is king kamimune (kamone no miko), and this daughter becomes the queen of the elder brother Daiusui (osu no mikoto) of Yamato takene<\/span><\/p>\n<p><b>The brothers<\/b> of <b>Akebono<\/b> and \u83ac who accompanied the visit to Izumo of &#8220;The <b>Prince who does not say&#8221;<\/b><\/p>\n<p>It is the child of The <span style=\"font-weight: 400;\">Omata no miko who was born between<\/span> Nisoko <span style=\"font-weight: 400;\">Zao and<\/span> <b>Yamashiro&#8217;s Enazu hime.<\/b><\/p>\n<p>Born with <b>wontsu hime,<\/b> <span style=\"font-weight: 400;\">Yamashiro-no-Otsuki Masakao (yamashiro no otsukumawaka no miko) is the great-grandfather of Empress Jingong.<\/span><\/p>\n<h4><b>On the Ancestors of Empress Jingong<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">Prince Sunoko is the paternal ancestor of Empress Jingong.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">[Mother of Empress Jingong]<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Tennichi-Tato-Tako-Ma-Ro-Suku-Tara-Mahi-Mud-Tako-Mana-Machi-Ki-Tako-Ma-Hito-Taka-A-Katsuragi-Hit-and-Go<\/span><\/p>\n<p><span style=\"font-weight: 400;\">[Father of Empress Jingong]<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Emperor Kaika &#8211;<\/span> <b>Hiko Zao<\/b> <span style=\"font-weight: 400;\">&#8211; Yamashirono Daitsuki Shinwakao &#8211; Buddha Yonerai king &#8211; Schonaga-juku<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the story of Awaga shrine (awaga shrine), it is said that Empress Jingong had a triumph later on because there was a divine aid during the Silla expedition (363).<\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>Another mausoleum of hikomasu no mikoto is the Hiko Zamei Tomb (hikoimasu no mikoto no kaka) at Ibano nishi Shrine (Iwata Nishi, Gifu City, Gifu Prefecture).<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>See also the article of Ibanonishi Shrine<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\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;\">Get off at Shandong IC on the Kita-Kinki Toyooka Expressway 750m by car for about 2 minutes.<br \/>\n <\/span> <span style=\"font-weight: 400;\">There is an open land at the foot of Mt. Ashiga, and it is Awaga.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-11815\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-4.jpg\" alt=\"\" width=\"1024\" height=\"576\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-4.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-4-768x432.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p><strong><span style=\"font-size: 120%;\">The &#8220;tomb&#8221; that looks like a small island in the basin is the forest of the guardian of<br \/>\n Ashiga Shrine.<\/span><\/p>\n<p><\/strong> <span style=\"font-weight: 400;\"> <strong> <span style=\"font-size: 120%;\">\u3000\u5fa1\u796d\u795e\u306e\u65e5\u5b50\u5750\u738b\uff08hikoimasu no mikoto\uff09\u3000\u958b\u5316\u5929\u7687\u306e\u7b2c\u4e09\u7687\u5b50\u306e\u53e4\u58b3\u3068\u4f1d\u308f\u308a\u307e\u3059\u3000<\/span><\/p>\n<p>  <\/strong><\/p>\n<p><\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11817\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">If you cross the bridge like the God bridge that hangs over the Ashaka River, a torii gate will be built on the north side of the guard&#8217;s forest, and it will be a parking lot.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11819\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Arrived at Awaga Shrine<\/b><\/p>\n<p><span style=\"font-weight: 400;\">There is a white &#8220;torii&#8221; on the north side, a company<br \/>\n name mark, and a flat forehead called &#8220;Ashiga Shrine&#8221;.<\/span> <span style=\"font-weight: 400;\">In front of the torii base stone, &#8220;a pair of sakaki is inserted into a conical embankment and enshrined.&#8221;<br \/>\n <\/span> <span style=\"font-weight: 400;\">It&#8217;s a very sacred heart. I&#8217;m going to bow through the torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11821\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The precincts are clean and clean, and on the right hand side of the approach, there is a fence and it is an inner precinct.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11823\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A pair of sakaki is inserted into a conical embankment and enshrined in front of the &#8220;chokushi mon&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The trust of the imperial court is thick, and the record remains that there were four imperial servants in the great difficulty of the country, but the year of its foundation is unknown, and the main shrine was burned down by fire, but this gate seems to have escaped.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11825\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11827\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The left hand of the approach is the office of the company, and the seal etc. are worshiped at the god tag awarding office.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11829\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right hand side of the approach, &#8220;The statue of the god of the color \u501a the wooden work&#8221; stands one-to-two bodies.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">A pair of sakaki is inserted into a conical embankment and enshrined here.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11831\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11833\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When I go through the Gate and look back, there is a very splendid &#8220;wooden colored Komainu statue&#8221; sitting on a pair just behind the god.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11835\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11837\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11839\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11841\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Right to the right is a bamboo bottle with water dripping and sakaki, which is also a beautiful temizusha.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11843\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11845\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left is<br \/>\n a shrine in the precincts.<\/span> <b>Temman Palace<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Michizane Kanhara (sugawara no michizane ko)<\/b><b><br \/>\n<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11847\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a ring in the center of the precincts, and a shrine building stands on the other side.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11849\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine in the<br \/>\n precincts on the right side of the shrine.<\/span> <b>Sarutahiko Shrine<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Saruta Hikogami (sarutahiko no kami)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11851\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A solemn shrine is built.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11853\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Komainu&#8217;s position is the opposite of usual,<br \/>\n and the left side is holding a child.<\/span> In <span style=\"font-weight: 400;\">front of Komainu, a pair of sakaki is inserted into a conical embankment and enshrined.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11855\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>I&#8217;m going  to go to the shrine.<br \/>\n<\/b><b>I&#8217;m sing a  lot of money.I wish you all the best..<br \/>\n<\/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-11857\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">look up at the main shrine from the left hand.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The circle in the back of the main shrine is said to be the tomb of the god of the festival &#8220;Thagozao&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11859\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine in the precincts on the left side of the main shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Tokoura Shrine<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Daiki God (onamuchi no mikoto)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11861\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine in the precincts on the left side of the shrine.<\/span><\/p>\n<p><b>Itsukushima Shrine<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Ichikijima Himemei (ichikihime no mikoto)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11863\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We went through the torii gate in the back hill, climbed a steep mountain path, and visited the shrine.<\/span><\/p>\n<p><b>Inari Shrine<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; ukemochi no kami<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11865\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11867\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I visit the precincts next to the torii gate of Inari Shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u30fb<\/b> <b>Myoga Shrine<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Kusano Himemei (kayanohime no mikoto)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is said that the sacred crest of Awaga Shrine &#8220;Hug Mago&#8221; comes from this myoka shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11869\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Is there a lot of<br \/>\n rain that the precincts are mossy?<\/span> <span style=\"font-weight: 400;\">It was heavy rain when I visited before.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11871\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11873\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you return to the approach from the front of the shrine, there is Tenmangu Shrine over the ring, and there is a company office beyond the earthen wall.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11875\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I passed through Sui Jinmon Gate and looked back and bowed.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11877\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11879\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">After the priest and the discourse at the office, return the approach, look back through the torii gate, and bow<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11881\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In each book, the shinto floor was raised between 845 and 874.<\/span><\/p>\n<h3><b>Tradition written in &#8220;Tsuku Nihon Koku Kokuki&#8221;<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">&#8220;Tsuku Nihon Koku Koku&#8221; deals with the 18 years of the 54th Emperor Ninmei (833-850)<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Translation<\/span> <span style=\"font-weight: 400;\"><\/p>\n<p><\/span> <span style=\"font-weight: 400;\">&#8220;Jowa 12 (845) July 16 Tamba Province &#8220;Izumojin&#8221; Tajima Country &#8220;Izushijin&#8221;, &#8220;Yobujin&#8221;<\/span><b>&#8220;Ashigajin&#8221;<\/b> <span style=\"font-weight: 400;\"> Minokuni &#8220;Inabajin&#8221; and the 5th place down from the no-order&#8221;<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;Continued Nihongoki&#8221; (869) Sadakan 11 years completion Winner: Fujiwara Ryobo \/ School revision: Tateno Spring Festival Publication book Hiromasa 2007 [former brewer] Ministry of Home affairs<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047680&amp;ID=&amp;TYPE=&amp;NO=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11883\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\u300f-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\u300f-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\u300f-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\u300f.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/><\/p>\n<h3><b>Tradition written in &#8220;Nihon sandai jitsoku&#8221;<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The Sixth<br \/>\n Of the Six Kingdoms History, compiled in the Heian Period (established in 1991)<\/span> <span style=\"font-weight: 400;\">Cheonan 2nd year (858) August &#8211; 3rd year of Ninwa (887) 30 years<\/span><\/p>\n<blockquote><p><b>Translation<br \/>\n <\/b> <span style=\"font-weight: 400;\">&#8220;10 years (868) December 27 Tajima Country &#8220;Izushi-jin&#8221;, &#8220;Yobu-jin&#8221;<\/span><b>&#8220;Ashika-jin&#8221;<\/b> and &#8220;From <span style=\"font-weight: 400;\">the top of the fifth place to the fifth place&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Sadakan 16 years (874) March 14 Tajima country &#8220;Izushi god&#8221;, &#8220;Yobujin&#8221;<\/span><b>&#8220;Ashika-jin&#8221;<\/b> <span style=\"font-weight: 400;\">and positive 5th place from the bottom of the<\/span> right fifth place&#8221;<\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;The Third Generation of Japan&#8221; (901) The first year of Enki was established by Tokihei Fujiwara \/ School Revision:<br \/>\n Matsushita Mibayashi Published Book (Published by Hirofumi) 20 books [Former Kuraya] Autumn Leaves Yama Bunko<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047721&amp;ID=M2014093020345388640&amp;TYPE=&amp;NO<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11885\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11887\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<p><b>It is said that it is the origin of the name of the deer, and it is said that the deer appeared from Mt. Ashiga and taught farming to people as the origin of the name of the deer according to the company biography of more than 2000 years, and it is the best old shrine in Tajima country where it is said that the deer is enshrined.<\/b><\/p>\n<p><b>&#8220;hai&#8221; (90-degree bow) at Awaga Shrine<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11889\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.<\/p>\n","protected":false},"author":1,"featured_media":11785,"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-13606","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=\"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.\" \/>\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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/\" \/>\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=\"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-07-25T12:22:57+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-07-25T12:22:57+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.\" \/>\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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#blogposting\",\"name\":\"\\u7c9f\\u9e7f\\u795e\\u793e\\uff08awaga shrine\\uff09 - Shrine-heritager\",\"headline\":\"\\u7c9f\\u9e7f\\u795e\\u793e\\uff08awaga shrine\\uff09\",\"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\\\/07\\\/s-1-3.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-07-25T21:22:57+09:00\",\"dateModified\":\"2020-07-25T21:22:57+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#listItem\",\"name\":\"\\u7c9f\\u9e7f\\u795e\\u793e\\uff08awaga shrine\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#listItem\",\"position\":3,\"name\":\"\\u7c9f\\u9e7f\\u795e\\u793e\\uff08awaga shrine\\uff09\",\"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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#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\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/\",\"name\":\"\\u7c9f\\u9e7f\\u795e\\u793e\\uff08awaga shrine\\uff09 - Shrine-heritager\",\"description\":\"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#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\\\/07\\\/s-1-3.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\\\/#mainImage\"},\"datePublished\":\"2020-07-25T21:22:57+09:00\",\"dateModified\":\"2020-07-25T21:22:57+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":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager","description":"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/","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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#blogposting","name":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager","headline":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09","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\/07\/s-1-3.jpg","width":1024,"height":682},"datePublished":"2020-07-25T21:22:57+09:00","dateModified":"2020-07-25T21:22:57+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#listItem","name":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#listItem","position":3,"name":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09","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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#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\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/","name":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager","description":"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#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\/07\/s-1-3.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/#mainImage"},"datePublished":"2020-07-25T21:22:57+09:00","dateModified":"2020-07-25T21:22:57+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":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager","og:description":"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people.","og:url":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/","article:published_time":"2020-07-25T12:22:57+00:00","article:modified_time":"2020-07-25T12:22:57+00:00","twitter:card":"summary_large_image","twitter:title":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09 - Shrine-heritager","twitter:description":"According to the company biography, ashiga Shrine is said to be the origin of the name of The Deer, which is said to have been the best ancient shrine in Tajima Province, which is said to have been enshrined as the most ancient shrine in Tajima Province, where deer emerged from Mt. Ashiga and taught farming to people."},"aioseo_meta_data":{"post_id":"13606","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-05 01:29:15","updated":"2025-07-01 07:52:14","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09\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":"\u7c9f\u9e7f\u795e\u793e\uff08awaga shrine\uff09","link":"https:\/\/shrineheritager.com\/en\/%e7%b2%9f%e9%b9%bf%e7%a5%9e%e7%a4%be%ef%bc%88awaga-shrine%ef%bc%89\/"}],"views":1517,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13606","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=13606"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13606\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/11785"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=13606"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=13606"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=13606"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}