    <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":15877,"date":"2020-08-22T22:23:29","date_gmt":"2020-08-22T13:23:29","guid":{"rendered":"https:\/\/shrineheritager.com\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/"},"modified":"2020-08-23T13:17:29","modified_gmt":"2020-08-23T04:17:29","slug":"%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/","title":{"rendered":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09"},"content":{"rendered":"<p><b>Tamanoya shrine (Hofu City) is listed as &#8220;Tamaso Shrine Niza&#8221; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company&#8217;s story, the Tsunesei Naganary chicken collected and played at the time of &#8220;Iwato Kakure of the Heavens of Ameteru Ogami&#8221; famous for &#8220;Japanese mythology&#8221; is the god of the festival . It is said that &#8220;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&#8221; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13856\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-33-421x600.jpg\" alt=\"\" width=\"421\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-33-421x600.jpg 421w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-33.jpg 719w\" sizes=\"(max-width: 421px) 100vw, 421px\" \/><\/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> <\/b><b><span style=\"font-size: 120%;\">\u7389\u7956\u795e\u793e\uff08tamanoya shrine\uff09<\/span> (Hofu City)<br \/>\n<\/b><b> \uff08<\/b><b>\u305f\u307e\u306e\u304a\u3084\u3058\u3093\u3058\u3083<\/b><b>\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<p> <b> <\/b><span style=\"font-weight: 400;\">\u4e00\u30ce\u5bae\uff08ichinomiya\uff09 \u305f\u307e\u3063\u3055\u307e<\/span><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">1690 Osaki, Hofu, Yamaguchi 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\/%E9%98%B2%E5%BA%9C\/%E3%80%92747-0065+%E5%B1%B1%E5%8F%A3%E7%9C%8C%E9%98%B2%E5%BA%9C%E5%B8%82%E5%A4%A7%E5%AD%97%E5%A4%A7%E5%B4%8E%EF%BC%91%EF%BC%96%EF%BC%99%EF%BC%90+%E5%91%A8%E9%98%B2%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E7%8E%89%E7%A5%96%E7%A5%9E%E7%A4%BE\/@34.0595659,131.5324092,15z\/data=!4m14!4m13!1m5!1m1!1s0x3544928dcc38b1b1\" data-lkc-id=\"189\" 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\">\u9632\u5e9c\u5e02 to \u5468\u9632\u570b\u4e00\u4e4b\u5bae \u7389\u7956\u795e\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E9%2598%25B2%25E5%25BA%259C%2F%25E3%2580%2592747-0065%2B%25E5%25B1%25B1%25E5%258F%25A3%25E7%259C%258C%25E9%2598%25B2%25E5%25BA%259C%25E5%25B8%2582%25E5%25A4%25A7%25E5%25AD%2597%25E5%25A4%25A7%25E5%25B4%258E%25EF%25BC%2591%25EF%25BC%2596%25EF%25BC%2599%25EF%25BC%2590%2B%25E5%2591%25A8%25E9%2598%25B2%25E5%259C%258B%25E4%25B8%2580%25E4%25B9%258B%25E5%25AE%25AE%2B%25E7%258E%2589%25E7%25A5%2596%25E7%25A5%259E%25E7%25A4%25BE%2F%4034.0595659%2C131.5324092%2C15z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x3544928dcc38b1b1?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u9632\u5e9c\u5e02 to \u5468\u9632\u570b\u4e00\u4e4b\u5bae \u7389\u7956\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E9%98%B2%E5%BA%9C\/%E3%80%92747-0065+%E5%B1%B1%E5%8F%A3%E7%9C%8C%E9%98%B2%E5%BA%9C%E5%B8%82%E5%A4%A7%E5%AD%97%E5%A4%A7%E5%B4%8E%EF%BC%91%EF%BC%96%EF%BC%99%EF%BC%90+%E5%91%A8%E9%98%B2%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E7%8E%89%E7%A5%96%E7%A5%9E%E7%A4%BE\/@34.0595659,131.5324092,15z\/data=!4m14!4m13!1m5!1m1!1s0x3544928dcc38b1b1\">https:\/\/www.google.com\/maps\/dir\/\u9632\u5e9c\/\u3012747-0065+\u5c71\u53e3\u770c\u9632\u5e9c\u5e02\u5927\u5b57\u5927\u5d0e\uff11\uff16\uff19\uff10+\u5468\u9632\u570b\u4e00\u4e4b\u5bae+\u7389\u7956\u795e\u793e\/@34.0595659,131.5324092,15z\/data=!4m14!4m13!1m5!1m1!1s0x3544928dcc38b1b1<\/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><span style=\"font-size: 120%;\"><b>\u300a\u4e3b\u300b\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09<\/b> <b><br \/>\n<\/b> <b> \u5916\u4e00\u5ea7\u796d\u795e\u4e0d\u8a73<\/b><\/span><span style=\"font-weight: 400;\"> [\u5b9a\u8aac\u306f\u306a\u304f \u77f3\u51dd\u59e5\u547d\u3068\u3059\u308b\u8aac\u3082\u3042\u308a] <\/span> <\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u5b9d\u77f3\u30fb\u773c\u93e1\u5b88\u8b77 The god of protection of jewelry and glasses<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u8c4a\u6f01\u6d77\u4e0a\u5b89\u5168 Large fish catch and maritime safety<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u9676\u82b8\u696d\u5b88\u8b77 God protecting the pottery industry<\/span><\/p>\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 \u5468\u9632\u56fd\u4e00\u4e4b\u5bae\uff08suonokuni ichinomiya\uff09<br \/>\n<\/b><b>\u30fb \u5225\u8868\u795e\u793e<\/b><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13858\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-33-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-33-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-33-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-33.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">The Old Kuni Mint<\/span> <b>Tamanoya shrine<\/b><\/p>\n<p><span style=\"font-weight: 400;\">As Suokoku Ichinomiya, it has a long history, and the God of the Festival is \u7389\u7956\u547d\uff08tamanoya no mikoto\uff09, which was built with \u516b\u5742\u74ca\u66f2\u7389\uff08yasakanino magatama\uff09, one of the three kinds of divine instruments.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said \u7389\u7956\u547d\uff08tamanoya no mikoto\uff09 was governed by the Chugoku region as one of the five gods, and died here in Osaki.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The construction of the shrine is too old. It is not certain, but in the 12th year of Emperor Kageyuki, the sword of the treasure was devoted to praying for victory in the west conquest, and it is still passed down as a sacred treasure.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Emperor Chuai&#8221; and &#8220;Empress Jingu&#8221; also visited this shrine at the time of the Western conquest. At that time, I had three sets of earthenware made by &#8220;Sawada no Oasa,&#8221; the founder of the current &#8220;Sano ware.&#8221; Rice was cooked in the earthenware and dedicated to God. In addition, in the legend, &#8220;\u5360\u624b\u795e\u4e8bUraten Shinji&#8221;, which is said to be caused by the fortune-telling of the army&#8217;s fortune, has also been passed down as it was in the past. Even now, it is strictly enforced.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The &#8220;tama&#8221; is a beautiful and precious symbol of peace regardless of the east or west of the western world. Jewels, eyeglasses, watches, and camera companies from all over the country are worshiping at the &#8220;Tama Festival&#8221; on April 10. It is revered as the ancestor of the ball and the god of peace.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Regular festival Sunday near September 25th<br \/>\n<\/span><span style=\"font-weight: 400;\">Ball Festival April 10<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Special Shinto &#8220;Ura-te no Shinji&#8221; (Yamaguchi Prefecture Intangible Cultural Property)<br \/>\n<\/span><span style=\"font-weight: 400;\"> \u91e3\u5782\u795e\u4e8btsuritare no shinji<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u4e3b\u306a\u5b9d\u7269 \u91cd\u8981\u6587\u5316\u8ca1 \u4fca\u4e57\u574a\u91cd\u6e90\u9020\u66ff\u76ee\u9332<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5927\u5185\u5f18\u5e78\u91cd\u5efa\u76ee\u9332<br \/>\n<\/span><span style=\"font-weight: 400;\">\u6bdb\u5229\u8f1d\u5143\u5b97\u5e83\u518d\u5efa\u76ee\u9332<br \/>\n<\/span><span style=\"font-weight: 400;\">\u91cd\u8981\u7f8e\u8853\u54c1 \u9285\u88fd\u5df4\u6587\u53cc\u96c0\u93e1<br \/>\n<\/span><span style=\"font-weight: 400;\"> \u9632\u5e9c\u5e02\u6587\u5316\u8ca1 \u6e90\u7fa9\u7d4c\u5949\u7d0d\u5409\u5305\u306e\u592a\u5200<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Natural monument Japanese chicken KuroKashiwa<br \/>\n<\/span><span style=\"font-weight: 400;\">In the vicinity are the Tamaiwao Cave, Miyagi Forest, Hamamiya Mioya Shrine, and Wakamiya Shrine <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Hofu City Tourism Association Precinct<\/span> Guide <span style=\"font-weight: 400;\">Board<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">\u5f0f\u5185\u793e\u3001\u5468\u9632\u56fd\u4e00\u5bae\u3001\u65e7\u56fd\u5e63\u4e2d\u793e<\/span><\/p>\n<p><b>Tamanoya shrine<\/b> <span style=\"font-weight: 400;\"> <\/span><\/p>\n<p><b>Shrine name<\/b><span style=\"font-weight: 400;\"> In the old books, &#8220;\u7389\u7956&#8221; is referred to as &#8220;Tamaoyano&#8221; or &#8220;Tamanooyano&#8221;, but since ancient times it was Ichinomiya, the country of Suo, so the name &#8220;Ichinomiya&#8221; was used in the Middle Ages. In the Edo period, the name &#8220;Ichinomiya Tamazosha&#8221; (Ichinomiya Tamanoyasha) was common. It has been unified to the name of Tama no Shrine (Tama no Oya Jinja) since 1871, when it was classified as a national shrine.<\/span><\/p>\n<p><b>\u5fa1\u796d\u795e (God&#8217;s name to pray)<\/b><span style=\"font-weight: 400;\"> The name of the god is not specified in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f , which is the two-seat Gyokuso Shrine, but the main deity is \u7389\u7956\u547d\uff08tamanoya no mikoto\uff09 and the other one is unknown.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Tamaso life is one of three kinds of divine instruments in the father god of Tamazoren (Tamari no Muraji), also known as &#8220;Sakarutama-no-Miko&#8221;, &#8220;Hakatama-no-Miko&#8221;, &#8220;Toyama-no-Miko&#8221;, Tamaya-no-Mi (Tamano-no-Mi) and Tamaya-no-Mi (Tamano-no-Miwa).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the god lord Tsuchiya family document and the long-lasting climate inundity plan, the unknown party is Amanogami-son (Ame-kagami-only) and Tennen-kami-son (Amanokami-only), and the mirror is looked up to as the Sun God as the Spirit&#8217;s generation. It is said that it is a great god, but there is also a time when Hamamiya Goso Shrine (Hamamiya Ojija) was placed as the god of Heaven, and there is an old custom that always visits Hamamiya Goso Shrine in the first shrine of the girl in the Ojiko, There is no established theory yet, such as the one that the god of the festival is a goddess, and the theory that it is the mother god of Tamaso life.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">However, it is always an offer of the offering of two seats at the festival.<\/span><\/p>\n<p><b>\u7531\u7dd2\u30fb\u6cbf\u9769<\/b> The history and history Oftensho Ogami&#8217;s Teniwa To hide the Shinto event, Tamaso Life was made Yasaka Kokudama, and it is a record that Tensun Nigi-san (Nigi-no-koto) was assisted in the founding of the national land rule as a pillar of the God of The Five Companions (tokinokami) which was served at the time of his coming to the <span style=\"font-weight: 400;\">sun.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the company&#8217;s message, we later sat in the land of Ozamae (Osaki, Osaki) to establish the Chinese region, and after finally avoiding God in this place, we buried it in the land of Miso and Era (Tamanoiwaya) and enshrined the spirit of our company. Since then, it is thought that Mr. Tamazo Ren Tamaso was responsible for the ritual, and the name of the 500-backed Tamazobe is also in the Suokuni Tax Book of Tenpei 10 years (738) in the historical document. In addition, the name of Miyaji Tamaso Soko can be seen in the story volume 17 of the old days in the fourth year of Nagatoku (998).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the company record, it is said that it is Miyagi forest in the north of Tamaso Shrine that the place of service was set up in the \u780c of Emperor Kageyuki (82) Chikushi Yuki, and the shrine was set up in The Saba, and the set sword was dedicated, but it is dedicated as a treasure sword deep into the Imperial Hall now.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, emperor Nakasa and Empress Shingong&#8217;s West March also arrived at the beach called Yorie (west-south of the shrine), and with the soil of Takada, Sawada-cho (the founder of Sano Pottery) made a three-footed earthenware (nabe) and HIRAKA (hachi), and the good luck of the army was made with a divine offering. This is the origin of the astrodes Shinto, which is still transmitted today.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">If you trace the history with reliable historical materials,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">For three years from 8 (736) to 10 years, 39 stones and 2 tsubo 8 tsubo of Tamaso Shrine territory were dedicated as a god tax with \u9834 rice 3834 bundles from the positive tax of Suokoku the following year. Depending on the divine life, 200 bundles are paid to the 500-back of the strange tama-ykube.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the year of Daido (806), five houses were given in addition to the conventional ten sealed doors.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u8c9e\u89b3\uff19\u5e74\uff08\uff18\uff16\uff17\uff09\uff13\u6708\uff11\uff10\u65e5\u3001\u795e\u968e\u5f93\u56db\u4f4d\u4e0b\u3088\u308a\u5f93\u4e09\u4f4d\u306b\u6607\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5ef6\u9577\uff15\u5e74\uff08\uff19\uff12\uff17\uff09\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u306b\u7389\u7956\u795e\u793e\uff12\u5ea7\u3068\u8f09\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5eb7\u4fdd\u5143\u5e74\uff08\uff19\uff16\uff14\uff09\uff14\u6708\uff12\u65e5\u3001\u795e\u968e\u6b63\u4e8c\u4f4d\u304b\u3089\u5f93\u4e00\u4f4d\u3092\u6388\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5e73\u5b89\u6642\u4ee3\u306b\u306f\u7530\u5cf6\u5e84\u3001\u5c0f\u4fe3\u5e84\u3001\u9ad8\u5893\u5e84\u306e\uff13\u8358\u5712\u304c\u5bc4\u9032\u3055\u308c\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u9577\u5fb3\uff14\u5e74\uff08\uff19\uff19\uff18\uff09\u4eca\u6614\u7269\u8a9e\u4e2d\u306b\u5468\u9632\u56fd\u4e00\u5bae\u7389\u7956\u5927\u795e\u3068\u5168\u56fd\u4e00\u30ce\u5bae\u306e\u521d\u898b\u3068\u306a\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u6cbb\uff12\u5e74\uff08\uff11\uff11\uff12\uff15\uff09\u5b89\u82b8\u6b0a\u4ecb\u85e4\u539f\u5be6\u660e\u306b\u3088\u3063\u3066\u8358\u5712\u4e26\u3073\u306b\u795e\u793e\u6577\u5730\u3068\u3082\u3069\u3082\u9ce5\u7fbd\u5929\u7687\u4e2d\u5bae\u306e\u5f85\u8ce2\u9580\u9662\u306b\u5bc4\u9032\u3055\u308c\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u4fdd\u5ef6\uff13\u5e74\uff08\uff11\uff11\uff13\uff17\uff09\u5be6\u660e\u306e\u5bc4\u9032\u72b6\u53ca\u3073\u516c\u9a13\u306b\u57fa\u3065\u3044\u3066\u4eac\u90fd\u82b1\u5712\u306e\u6cd5\u91d1\u525b\u9662\u306b\u5bc4\u9032\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6c38\u842c\u5143\u5e74\uff08\uff11\uff11\uff16\uff15\uff09\u795e\u7947\u5b98\u304b\u3089\u540d\u795e\u8af8\u793e\u306b\u9032\u7269\u304c\u4e0b\u3055\u308c\u305f\u969b\u3001\u5927\u6991\uff08\u6750\u6728\uff09\uff13\uff10\uff10\u5bf8\u304c\u7d66\u3055\u308c\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5efa\u4e45\uff16\u5e74\uff08\uff11\uff11\uff19\uff15\uff09\uff18\u6708\uff15\u65e5\u3001\u4fca\u4e57\u574a\u91cd\u6e90\u5468\u9632\u306b\u4e0b\u5411\u3001\u6771\u5927\u5bfa\u518d\u8208\u306e\u529f\u3092\u504f\u306b\u7389\u7956\u5927\u660e\u795e\u306e\u52a0\u8b77\u306b\u3088\u308b\u3068\u3053\u308d\u3068\u3057\u3001\u5f53\u793e\u9020\u66ff\u306e\u5de5\u3092\u8d77\u3057\u3001\u795e\u5b9d\u3092\u8abf\u9032\u3057\u3001\uff19\u6708\uff12\uff18\u65e5\u9077\u5bae\u306e\u5100\u3092\u7d42\u3048\u308b\u3002\u65e5\u5225\u4f9b\u6599\u306e\u6599\u7530\u3068\u3057\u3066\uff11\uff10\u753a\u6b69\u306e\u7530\u5730\u3092\u5949\u514d\u3059\u308b\u3002\u540c\u65e5\u3001\u9020\u66ff\u76ee\u9332\u3092\u4f5c\u6210\u3057\u6539\u7bc9\u306e\u8da3\u65e8\u3092\u8ff0\u3079\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5efa\u6b66\uff12\u5e74\uff08\uff11\uff13\uff13\uff15\uff09\uff19\u6708\u3001\u5927\u5185\u5f18\u5e78\u304c\u793e\u6bbf\u30fb\u795e\u5b9d\u3092\u9020\u55b6\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u5e73\uff11\uff11\u5e74\uff08\uff11\uff13\uff15\uff16\uff09\u50e7\u547d\u4fca\u3001\u4e5d\u66dc\u5df4\u6587\u53cc\u96c0\u93e1\u3092\u5949\u7d0d\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u9577\u7984\u5143\u5e74\uff08\uff11\uff14\uff15\uff17\uff09\uff18\u6708\u3001\u7530\u5cf6\uff08\u9632\u5e9c\u5e02\u4e2d\u95a2\uff09\u306e\u6c0f\u5b50\u5206\u96e2\u3057\u5ca1\u5e84\uff08\u4e2d\u95a2\u5357\u5c71\u624b\uff09\u306b\u7389\u7956\u795e\u793e\u3092\u7940\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6587\u660e11\u5e74(\uff11\uff14\uff17\uff19)\uff11\uff12\u6708\uff18\u65e5\uff64\u5927\u5185\u653f\u5f18\u306b\u5dee\u51fa\u3057\u305f\u4e00\u5bae\u7389\u7956\u793e\u5fa1\u795e\u7528\u7c73\u5728\u6240\u6ce8\u6587\u306f\u5927\u524d(\u5d0e)\u6751\uff64\u5b87\u91ce\u4ee4\uff64\u6e6f\u7530\u4fdd\uff64\u9ed2\u6cb3\u4fdd\uff64\u5343\u4ee3\u4e38\uff64\u4e0b\u677e\u51fa\u4f5c\uff64\u5bcc\u6d77\u4fdd\uff64\u897f\u4ec1\u4e95\u4ee4\uff64\u4f50\u6ce2\u4ee4\u5e73\u4e95\u306e\uff11\uff10\u500b\u6240\u306b\u53ca\u3076\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u660e\u5fdc\uff16\u5e74(\uff11\uff14\uff19\uff17)\uff14\u6708\uff11\uff16\u65e5\uff64\u5927\u5185\u7fa9\u8208\u53c2\u8a63\u3057\u795e\u99ac\u3092\u5bc4\u9032\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u6b63\uff11\uff17\u5e74(\uff11\uff15\uff18\uff19)\uff11\uff11\u6708\uff12\u65e5\uff64\u6bdb\u5229\u8f1d\u5143\uff64\u793e\u9818\uff12\uff10\uff10\u77f3\u3092\u5bc4\u9032\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u3053\u306e\u5e74\u3088\u308a\u6587\u7984\uff15\u5e74(\uff11\uff15\uff19\uff16\u6176\u9577\u5143\u5e74)\uff14\u6708\uff12\uff13\u65e5\u307e\u3067\u306e\u6253\u6e21\u576a\u4ed8\u306b\u6cd5\u91d1\u525b\u9662\uff64\u5f97\u697d\u574a\uff64\u83ca\u697d\u574a\uff64\u6b63\u6e80\u574a\u5584\u5f97\u574a\uff64\u6b63\u6cd5\u9662\uff64\u5b9d\u6301\u9662\uff64\u85cf\u6e80\u574a\uff64\u884c\u6cc9\u574a\u306e\u540d\u304c\u898b\u3048\u308b\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6176\u9577\uff13\u5e74(\uff11\uff15\uff19\uff18)\uff19\u6708\uff64\u793e\u6bbf\uff64\u793e\u574a\uff64\u793e\u4eba\u306e\u5c4b\u6577\u7b49\u3082\u6089\u304f\u713c\u4ea1\u3059\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6176\u9577\uff11\uff14\u5e74(\uff11\uff16\uff10\uff19\uff09\uff19\u6708\uff64\u6bdb\u5229\u79c0\u5c31\u793e\u6bbf\u518d\u8208\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5bdb\u6c3821\u5e74(1644\u6b63\u4fdd\u5143\u5e74)8\u6708\uff64\u9ce5\u5c45\u5efa\u7acb\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u660e\u66a63\u5e74(1657)8\u6708\uff64\u6bdb\u5229\u5c31\u4fe1(\u53f3\u7530\u6bdb\u5229)\u99ac\u5834\u306b\u5927\u9ce5\u5c45\u5efa\u7acb\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5bdb\u4fdd\u5143\u5e74(1741)9\u670819\u65e5\uff64\u5f80\u6614\u4f9b\u50e712\u53e3\u3042\u308a\u3057\u304c\uff6411\uff79\u5bfa\u306f\u3053\u3068\u3054\u3068\u304f\u65ad\u7d76\u5bfa\u5c4b\u6577\u3082\u4e0d\u660e\u3068\u306a\u308a\uff64\u5225\u5f53\u5f97\u697d\u574a\u306e\u307f\u304c\u6b8b\u5b58\u3059\uff61<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In July 1750, the shrine was re-built by Sohiro Merri. At the same time, Taki naga ANI pays for Tamaso Jinki and three other volumes. In the sentence, he said, &#8220;At the time of the memorial service of the Minamoto Yoshikeihei family, I pray for a victory by dedicing Yoshihiro&#8217;s sword to your company. When it is advanced from Mr. Son Shogun Chikushi, I pray for the fulfillment of the great success by fengbei&#8217;s sword. The sword of the second wave is said to be a shinto vessel to tell now,&#8221; and the sword of two swings is described in the Ichinomiya treasure keeping diary on March 23, 1759.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1854, he repaired the shrine building in 1854.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1871, he was listed at the National Mint Kosha by a general government notice.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Sano Wakamiyasha was listed at Tamaso Shrine Setsha in 1868.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the 10th year of Meiji, Hamamiya Meso Shrine was also listed in Tamaso Shrine Setsha.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Great repair at the expense of the government in 1868.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5927\u6b63\uff14\u5e74\u56fd\u5e63\u4e2d\u793e\u306b\u6607\u683c\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">After the war, the company&#8217;s case system was abolished, and the former National Mint was distinguished from ordinary shrines as shrines on a separate table, and it became a bespost shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Newly built Gojinko (Treasure Hall) in 1975.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">September 1977 Roofs of Temples, Shrines, Shrines, etc.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On April 8, 1982, with the construction of the Sanyo Expressway, Hamamiya Goso Shrine was moved to the site of about 150 mettles to the north of the former company site. The approach to the head office will also be shortened this year.<\/span><\/p>\n<p><b>Festival Calendar<\/b> January 1 New Year&#8217;s Day Festival February 11 National Foundation Memorial Festival February 17 Prayer Year Festival March <span style=\"font-weight: 400;\">10<\/span> Wakamiya Shrine Festival<span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In March, 33-year-old women 37, 42, 61, and 70-year-old men and women in the Osaki-Sano area discuss and execute the good days. The School of Education<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On April 10th, we look up to the divine virtues of the Gods of the Gods of the Festival, who made the Yasaka Uchikidama, and worship them as the main shrines of Tamasa Goso Daijin, who work in glasses, clock cameras, jewelry, etc., and pray for the development of the work and the safety of the family. The spectaocular yakigami Shinto and the astro-take Shinto service are also executed.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">April 29 Tenka Matsuri May Kamigo no Hitama no Iwaya Matsuri It is held at Tamanoiwaya, which is said to be the tomb of Tamaso life. June 30 The Ogo Ceremony in July (Tamichi Goyuki)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On Sunday near September 25th, the day before the Tsutsure-no-Shinji\u994c is held on the eve of the festival, and in the early morning of the day before the festival, three feet of earthenware cook white rice and black rice are cooked and offered to HIRAKA. After sunset, we went to Hamamiya Goso Shrine. Both are special Shinto shinto services from ancient time. Before the solar calendar, August 14th and 15th were major festivals.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">November 15 Shichi-Gossele November 23 Shinjo Matsuri December 31<\/span><\/p>\n<p><b>Special Shinto<\/b> <span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Saitake Matsuri (Ohatake)<\/b> This is a Shinto shrine that creates a new pouring rope before the festival and decorates it with a<span style=\"font-weight: 400;\"> bereaved bamboo. In the third year of the Horyo calendar (1753), the record of the Shinto priest Tsuchiya family was &#8220;Yatsushima Hisai Take Matsuri, Omatsuri Ori, Otorii-kiri \u991d Aisai, Sosha-no-Kinno-ren, Uchitorii Junren Festival. 18 houses called Miyatsuki (Miyatsuki) of the ancient Osaki Iaye make a note rope, decorate the torii with abhorrent bamboo, put a plan under one torii gate when it is finished, offer a shinto sake and a salt water bowl, and the Shinto ritual reads a large article, and the shinto shrine reads a large phrase, and it is osamued by taking a salt water bowl. After that, the Shinto shrine sake of Miyazuke was put on, and this Shinto shrine was finished, but now it is worked on the making of the pouring rope and the abomination bamboo decoration in the self-governing association unit of Osaki and Sano district. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u91e3\u5782\u795e\u4e8b\uff08\u3064\u308a\u305f\u308c\u306e\u3057\u3093\u3058\uff09<\/b> On the day before the Festival, Shinto priests will visit Tajimaura\u994c (Nakaura, Hofu City), place a god \u7c6c on the seaside, offer fishing gear in addition to gods, and other people from the Nakaura Fisheries Association will attend to perform the festival to pray for the reasons of Shinto rituals and the safety of the rich fishing sea.<span style=\"font-weight: 400;\"> The fish which the union member fished out later and caught is brought to the head office on the day of the great festival, and it \u994c god&#8217;s hand. In our old record, &#8220;August festival, old days started Mairaku at The Imperial Shrine (Hamamiya Meso Shrine) on the 15th of August. Right Hi-Fishing Boat Abortion There is a weather that comes from Tajima at the time of the festival ritual from Tajima instead of the ship, and you can know the state of the Shinto ritual of the old days. The present Fishing Gods were re-established in commemoration of the 2600th anniversary of the Showa 15th anniversary, and they continued to be executed without abortion during the post-war period of confusion. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>It is an intangible folk cultural property designated<\/b> by Yamaguchi <span style=\"font-weight: 400;\">Prefecture. On the eve of the festival, a series of ropes are placed in front of the shrine gate, and \u71ce in the garden. \u780c of the san korean march of Empress Shingong in the company&#8217;s message, it is made to pray for the victory of the war to our company, this Shinto ceremony is executed, the good fortune of the deed is divinely occupied by the hand, and it extends to today as a special Shinto event of our company \u8332 coming. In the Suoji magazine&#8217;s draft proposal, &#8220;Emperor Nakasa Emperor Shingong is also well-paid, and because of the good luck of the army in front of the gods at this time, the remaining tote small sumo wrestling (Ralunokozumo) and the Ifu ceremony, etc.,&#8221; and also in the long-lasting climate advance plan of Tenpo 13 (1842), it has been added as &#8220;Toden Matsuri-no-etsuya&#8221; as a tote small sumo. This ancient ceremony is called night sumo because it was performed at the time of the rose (1:00 a.m. to 3:00 a.m.). According to the company&#8217;s record of the third year of the Horya calendar (1753), it is said that kagura was performed at Night&#8217;s Noki (11 p.m. to 1:00 a.m.) and went out of Tamagaki to play sumo with a hand, and its shape resembles that of sumo, so it is also called fortune-telling sumo. Shinto shrines begin after the priests and priests sit in front of the shrine gate. \u88c3 who wore a helmet worked as a judicial officer, two officers of the event place called military officers put a white helmet on the naked body, divided into east and west, seated, sumo \u8e72\u8e1e Put both hands on the top of the waist in a similar posture, right left and right, left and right left and both legs go out while bending into the shape of a click, show each person&#8217;s palm when they come and go, and hit their hips. It repeats three times, and one event ends, and this is done three times for convenience. At the last stage, the soldiers join hands, and the east and the west cross and hit the ground. In normal years, the number is 12 and the leap year is beaten 13 times, and when it is finished, both hands are raised in front of \u9b28, and the Shinto service ends when the voice of the god is raised. \u9b28 is a completely silent pious Shinto, except for the voice of a man. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>In<\/b> the early morning of the day of the special festival, two pieces of white rice (white rice) and black rice (brown rice) are cooked, and this is served to god \u994c in half to <span style=\"font-weight: 400;\">HIRAKA. It is said that this starts from the time of the prayer of Empress Shingong, and the descendants of Mr. Sawada (the founder of Sano pottery potter, who leaves the place name of Sawada in Oji Sano, Hofu City) are from generation to generation. There is an old example that this festival instrument is advanced every year, and alit it continued until about 1955, it was cooked with an oldware because it had an abortion, but in September 1957, the annual advance came to be carried out at the request of the Sano Ware Preservation Society. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At the time of the marching of Emperor Jingo and Empress Chikushi in the old days, The ship was sent to our place, and it ordered the head of Sawada (called Sawa Tanakaki Tsuchida and Imaha Uchida and The Family at that time, Yasaburo family at that time) to make a three-foot earthen pot with the soil of Takada (Takada is the foot of Mt. Hime) and cook the offering, and it was served to dai HIRAKA. It is said that the pot is prepared from the Nobushi Sawada family muscle of the Ichinomiya Festival in August every year without the year 1641 Noma \u95d5 of this Tenho 12 years old in the example of the Tohi festival festival of the good luck of the army to prepare for the my god of Tamaya. This earthen pot is made of freshly baked, and it can be indected that it was a daily product of the Old Kodeki region. These fragments are excavated from the \u74ee region with pieces such as Yayoi-style earthenware, soil, and debris. That is, it was not a special festival instrument of Tamaso Shrine, and Empress Shingong was ordered to make a new tone for prayer.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to the company&#8217;s message, Wakamiya Shrine, which sits in Sano Wakamiya, is said to have prayed that the descendants of Sawada&#8217;s head worshiped the spirit of Tamaso&#8217;s life, worshiped him as a god, and prayed for the protection of the ware industry.<\/span><\/p>\n<p><b>A place associated with Tamaso Shrine<\/b> <span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Miyagimori<\/b> <span style=\"font-weight: 400;\">It is also called Miyakinomori. It is located in Tanaka in the 300-me-tor to the north of the shrine. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the 12th year of Emperor Kagegye, Kyushu&#8217;s bear-attacking tribe revolted. On the way to the West March, a woman who called herself &#8220;Kami natsu-an&#8221; was \u914b in Saba. At the time of the Emperor&#8217;s death, Kami Natsushima picked a kenki (shaved) from Tsuyama (Tsuyama) and placed 8 swords, 8\u54ab mirrors, and 8 shakers (balls) on each branch under the top and bottom\u8233. It is said that the emperor is prayed for victory to Tamaso Shrine, and the trace of the place of service at that time is Miyagi forest. Tamaso Shrine Annex.<\/span><\/p>\n<p><b>Mt. Hachigo<\/b> is located in our company&#8217;s north and <span style=\"font-weight: 400;\">west about 600 mettles. It&#8217;s commonly known as Sasayama. \u7cd8 Mountain (Symyama). When the shrine was set up in the forest of Emperor Kageyuki Miyagi,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On this mountain, Yagami (the rein deity from the god of god, the spirit god of the high-prince, the heavens and the earth, and the human race were all brought up by the power of these two gods.) The god of production is a god full of fulfilledness. The requiem of the soul is the god who calms down the soul in the body.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Omiya God of Sale is a god who is going to make peace. God of the Imperial Capital is the god who presides over food.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that this name is from the place where it was festivaled, and the festival instrument at that time was buried.<\/span><\/p>\n<p><b>\u7389\u306e\u5ca9\u5c4b\uff08\u305f\u307e\u306e\u3044\u308f\u3084\uff09<\/b>Tamanoiwaya &#8220;Tamaya-no-Iwaya&#8221; &#8220;Tamaya-no-Iwaya and Ifu \u95ad the Tamanoiwaya to put the Mahi Gojin-an that was hidden in Osaki&#8217;s (village village).<span style=\"font-weight: 400;\"> It is known until the time of Ariyuki Tengen in Era which separates three towns \u9918 after our company, and it remains a little in the shape now, and it is a test of the small shrine of the near-age stone, and it seems to be a climate pouring plan.,&#8221; but the present Tamano Iwaya was built in 1868, and the festival is held on May 1st. It is located in the shrine about 500 mettle to the north of the shrine. Tamaso Shrine Annex. <\/span><\/p>\n<p><b>Main<\/b> Treasures Important Cultural Properties The catalogue of the Treasures of the Suokuni Ichinomiya Temple, etc. In March, 1195, a heavy source that took ten years to rebuild the Todaiji Daibutsu-den was added to the protection of The Great Myojin. To thank you, it is an inventory of the buildings below the shrine and treasures such as the Obookdai, mikoshi, and Gotsuka belt, which went down to Suokoku on August 5 of the same year and re-built the Tamaso Shrine between The 7th of the same month and September <span style=\"font-weight: 400;\">28. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The purpose is stated at the end, and the rice field of 10 town walks is consemised as a charge field of the monthly offering fee by the end. In the catalogue of the rebuilding that took place in the 140th year since the rebuilding of the Shigemoto, the volume of the suokuni Ichinomiya Tamaso Shrine, the number of shrines, Shinto priests, and monks is described, including the size of the shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is from September 1335, the second year of the construction of Hiroyuki Ouchi. It is a valuable document that describes the location and area of the shrine territory of the god rice of Tamaso Shrine which was put out to Masahiro Ouchi in December of civilization 11 years of civilization 11 years (1479), and it is a valuable material to tell how Tamaso Shrine retained its scale as one of the shrines of the Todaiji territory after the heavy source with the above inventory.<\/span><\/p>\n<p><b>\u91cd\u8981\u7f8e\u8853\u54c1<\/b> Important works of art Copper Kuyo-mon Sojaku Mirror One side Shohei <span style=\"font-weight: 400;\">11 (1356) Monk Life Shun was dedicated, and when the shrine hall was on fire in 1598, it was on fire, and the skin of the mirror surface was damaged, but the pattern is well in its original form. <\/span><\/p>\n<p><b>It<\/b> is the work of Yoshinagan, which is said to be one of the last swordsworkers in Kobi-in, one of the city-designated cultural properties, and is <span style=\"font-weight: 400;\">80. It is 5 cm, 2 cm warped, and it is a sly building, a sly building, and a straight sword. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that Minamoto Yoshiyoshi prayed for victory and dedicated it when the Hei family was chased in the company news.<\/span><\/p>\n<p><b>It is said to<\/b> be the work of a famous sword worker Nobukuni of the north and south morning period, and the length <span style=\"font-weight: 400;\">73. 4 cm, warped 2. The stem (the basket) is a sliding stem with 2 cm, a shaving, a building, and a straight sword. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is accompanied by Anami origami with the words &#8220;Shinkoku Masamasa Sa 2 shaku 4 minutes 1 minute and a half in nameless front and back Ariyuki Tonko 10 sheets of Enho 7 years not May 3 Hona (flower press)&#8221;. It is the dedication of Kiyoishi Kondo. Many other old mirrors, documents, etc.<\/span><\/p>\n<p><b>Natural Monuments<\/b><b><br \/>\n<\/b><b>Japanese chicken Kurosewa A<\/b> precious Japanese chicken that is slightly bred in the area of <span style=\"font-weight: 400;\">Yamaguchi and Shimane prefectures. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On June 9, 1951, it was designated as a natural monument by the Committee for the Protection of Cultural Properties.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The feathers are green-purple black with metallic luster. Nagao chicken of the small country lineage, Naganaki chicken.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the company&#8217;s story, it is said that it was this ebony that collected the Tsunesei Naganaryu chicken and made it sound at the time of Iwato hide of the heavens of Aesu Daijin, and Tamaso life took this chicken after that, and it stayed here in the land of Osaki.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is bred in the shrine precincts as the birthplace of ebony.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\uff08\u6ce8\u4e00\uff09\u4e00\u306e\u5bae \u56fd\u4e2d\u7b2c\u4e00\u306e\u795e\u793e\u3092\u3044\u3044\u3001\u539f\u5247\u3068\u3057\u3066\u4e00\u56fd\u306b\u4e00\u793e\u3042\u308b\u3002\u6050\u3089\u304f\u6700\u521d\u304b\u3089\u5168\u56fd\u7684\u306b\u5b9a\u307e\u3063\u305f\u3082\u306e\u3067\u306f\u306a\u304f\u3001\u795e\u4f4d\u30fb\u4fe1\u4ef0\u30fb\u52e2\u529b\u7b49\u306e\u6700\u3082\u8457\u3057\u3044\u795e\u793e\u3092\u305d\u306e\u56fd\u306e\u4e00\u5bae\u3068\u3057\u3066\u5c0a\u5d07\u3057\u305f\u306e\u304c\u8d77\u308a\u3067\u3001\u305d\u308c\u304c\u6f38\u6b21\u5168\u56fd\u7684\u306b\u666e\u53ca\u3059\u308b\u3068\u5171\u306b\u3001\u6e96\u516c\u7684\u306a\u6a29\u5a01\u30fb\u793e\u683c\u3092\u3082\u3064\u306b\u81f3\u3063\u305f\u3068\u8003\u3048\u3089\u308c\u308b\u3002\u5e73\u5b89\u4e2d\u671f\u306b\u73fe\u308f\u308c\u3001\u938c\u5009\u6642\u4ee3\u306b\u306f\u5168\u56fd\u7684\u306b\u306a\u3063\u3066\u3044\u305f\u3002\u4eca\u6614\u7269\u8a9e\u306e\u4e2d\u306b\u5468\u9632\u4e00\u30ce\u5bae\u7389\u7956\u5927\u660e\u795e\u3068\u66f8\u304b\u308c\u3066\u3044\u308b\u306e\u304c\u5168\u56fd\u4e00\u5bae\u306e\u6700\u521d\u306e\u8a18\u9332\u3067\u3042\u308b\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08\u6ce8\u4e8c\uff09\u56fd\u5e63\u793e \u660e\u6cbb\uff14\u5e74\u592a\u653f\u5b98\u5e03\u544a\u306b\u3088\u308b\u793e\u683c\u306e\u4e00\u3064\u3002\u3053\u306e\u5e03\u544a\u3067\u56fd\u5bb6\u81ea\u3089\u304c\u7d4c\u55b6\u3059\u308b\u795e\u793e\u3092\u5b98\u793e\u3001\u305d\u308c\u4ee5\u5916\u306e\u795e\u793e\u3092\u8af8\u793e\u3068\u79f0\u3059\u308b\u3053\u3068\u306b\u5b9a\u3081\u3089\u308c\u305f\u3002\u5b98\u793e\u306b\u306f\u5b98\u5e63\u5927\u793e\u30fb\u5b98\u5e63\u4e2d\u793e\u30fb\u5b98\u5e63\u5c0f\u793e\u30fb\u56fd\u5e63\u5927\u793e\u30fb\u56fd\u5e63\u4e2d\u793e\u30fb\u56fd\u5e63\u5c0f\u793e\u306e\uff16\u3064\u3001\u8af8\u793e\u306b\u306f\u5e9c\u793e\u30fb\u85e9\u793e\u30fb\u770c\u793e\u30fb\u90f7\u793e\u30fb\u6751\u793e\u306e\uff16\u3064\u304c\u8a2d\u3051\u3089\u308c\u305f\u3002\u660e\u6cbb\uff16\u5e74\u306b\u5b98\u793e\u306e\u3046\u3061\u306b\u65b0\u305f\u306b\u5225\u683c\u5b98\u5e63\u793e\u304c\u52a0\u3048\u3089\u308c\u305f\u3002\u5225\u683c\u5b98\u5e63\u793e\u306f\u6b74\u53f2\u4e0a\u306e\u529f\u81e3\u3067\u795e\u306b\u796d\u3089\u308c\u305f\u795e\u793e\u3067\u3001\u5b98\u5e63\u793e\u306b\u306f\u4f8b\u796d\u306b\u969b\u3057\u3066\u7687\u5ba4\u304b\u3089\u3001\u56fd\u5e63\u793e\u306b\u306f\u540c\u3058\u304f\u56fd\u5eab\u304b\u3089\u5e63\u5e1b\u6599\u304c\u4f9b\u9032\u3055\u308c\u305f\u3002\u3053\u306e\u793e\u683c\u5236\u5ea6\u306f\u6226\u5f8c\u5ec3\u6b62\u3055\u308c\u3001\u65e7\u5b98\u793e\u306f\u73fe\u5728\u5225\u8868\u795e\u793e\u3068\u3057\u3066\u4e00\u822c\u306e\u795e\u793e\u3068\u533a\u5225\u3055\u3066\u3044\u308c\u308b<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08\u6ce8\u4e09\uff09\u5f0f\u5185\u793e \u918d\u9190\u5929\u7687\u306e\u8a54\u547d\u306b\u3088\u3063\u3066\u5ef6\u559c\uff17\u5e74\uff08\uff19\uff10\uff17\uff09\u7de8\u7e82\u306b\u7740\u624b\u3057\u3001\uff12\uff10\u5e74\u3092\u8981\u3057\u3066\u5ef6\u9577\uff15\u5e74\uff08\uff19\uff12\uff17\uff09\u306b\u5b8c\u6210\u3057\u305f\u5ef6\u559c\u5f0f\uff08\u4e94\u5341\u5dfb\uff09\u306e\u7b2c\u4e5d\u30fb\u5341\u5dfb\u3014\u795e\u540d\u5e33\u3015\u306b\u305d\u306e\u540d\u3092\u767b\u8f09\u3055\u308c\u305f\u795e\u793e\u3092\u5f0f\u5185\u793e\u3068\u3044\u3046\u3002\u7389\u7956\u795e\u793e\u4e8c\u5ea7\u3068\u8f09\u308b\u3002\u5f53\u6642\u306e\u5236\u3067\u3001\u6bce\u5e74\uff12\u6708\u7948\u5e74\u796d\u306b\u3042\u305f\u308a\u3001\u795e\u7947\u5b98\u6216\u306f\u56fd\u53f8\u3088\u308a\u5949\u5e63\u306b\u9810\u308b\u3082\u306e\u3092\u5b98\u820e\u3068\u3044\u3044\u3001\u4ed6\u306e\u4e00\u822c\u795e\u793e\u3068\u5225\u306e\u5f85\u9047\u3092\u5f97\u305f\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08\u6ce8\uff09\u6587\u4e2d\u306e\uff28\uff29\uff32\uff21\uff2b\uff21\u306f\u300c\u76bf\u300d\u504f\u306b\u592e\u3067\u3059\u3002\uff39\uff2f\uff32\uff29\u306f\u53e4\u6587\u66f8\u306e\u300c\u3088\u308a\u300d\u3001\uff2b\uff2f\uff34\uff2f\u306f\u300c\u3053\u3068\u300d\u3067\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300c\u5168\u56fd\u795e\u793e\u796d\u7940\u796d\u793c\u7dcf\u5408\u8abf\u67fb(\u5e73\u62107\u5e74)\u300d[\u795e\u793e\u672c\u5e81]<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b> <\/b><span style=\"font-weight: 400;\">\u30fb\u6ff1\u5bae\u5fa1\u7956\u795e\u793e\u300a\u4e3b\u300b\u5929\u93e1\u5c0a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u82e5\u5bae\u793e\u300a\u4e3b\u300b\u7389\u7956\u547d<\/span><\/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;\">The 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; font-size: 120%;\"><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<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"color: #0000ff; font-size: 120%;\">\u5c71\u967d\u9053 140\u5ea7\u2026\u592716\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u56174\uff09\u30fb\u5c0f124<\/span><br \/>\n<\/b><b>[\u65e7 \u56fd \u540d ]\uff08old county name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"color: #0000ff; font-size: 120%;\">\u5468\u9632\u56fd 10\u5ea7\uff08\u4e26\u5c0f\uff09<\/span><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"color: #0000ff; font-size: 120%;\">\u4f50\u6ce2\u90e1 6\u5ea7\uff08\u4e26\u5c0f\uff09<\/span><br \/>\n<\/b><b>[\u540d\u795e\u5927 \u5927 \u5c0f]<span style=\"color: #0000ff; font-size: 120%;\"> \u5f0f\u5185\u5c0f\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"color: #0000ff; font-size: 130%;\">\u7389\u7956\u795e\u793e \u4e8c\u5ea7<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"color: #0000ff;\">\uff08\u305f\u307e\u306e\u3092\u3084\u306e \u304b\u307f\u306e\u3084\u3057\u308d \u306b\u3056\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"color: #0000ff; font-size: 120%;\">\uff08tama no woya no kamino yashiro niza\uff09 <\/span><\/b><\/p>\n<p><span style=\"font-weight: 400; font-size: 80%;\">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;\"><span style=\"font-size: 80%;\">\u753b\u50cf\u5229\u7528<\/span><br \/>\n<\/span><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 \u5ef6\u559c\u5f0f \u520a\u672c\uff08\u8dcb\u520a\uff09[\u65e7\u8535\u8005]\u7d05\u8449\u5c71\u6587\u5eab<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13860\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-21-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-21-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-21-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-21.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>[Otaky Point] (Points Selected by Japan Otaku)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">I will introduce the preliminary knowledge that you will be interested in this shrine from a otaku&#8217;s point of view.<\/span><\/p>\n<p><span style=\"color: #0000ff; font-size: 120%;\"><b>Tamanoya shrine (Hofu City) is the headquarters of Tamaso Shrine.<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff; font-size: 120%;\">Tamaso Shrine in Yao City, Osaka Prefecture is said to have been admirated for spirits from Tamaso Shrine in Suokoku in <b><br \/>\n 710 (3rd<\/b> year of Japanese copper)   Please see the article of Tamaso Shrine (Yao <b>City).<\/b><\/span><\/p>\n\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>About 5 minutes by car from Hofu Nishi <span style=\"font-weight: 400;\"><br \/>\n I.C.<\/span> on the Sanyo Expressway   from Hofu Station via Prefectural Road <span style=\"font-weight: 400;\">54 about 4.6km<\/span> by car 10 minutes<\/p>\n<p><b>Arrived at Tamanoya shrine (Hofu City)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;One Torii&#8221; is built on the approach to Tamanoya shrine, and there is a second parking lot just to the right.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13862\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-35-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-35-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-35-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-35.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">At the head of the company, there is a stone lantern torii gate on the right side of the shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-13864\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-33.jpg\" alt=\"\" width=\"1024\" height=\"575\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-33.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-33-768x431.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Bow, go through the torii and go to the precincts.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13866\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-34-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-34-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-34-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-34.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Shiba Inu&#8221; written as &#8220;Cultural 9th Year (1812)&#8221; is set up<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13868\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-31-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-31-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-31-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-31-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-31.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13870\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-32-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-32-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-32-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-32.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A stone monument is engraved with &#8220;Natural Monument: The Birthplace of Japanese Chicken Kuroshima&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13872\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-33-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-33-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-33-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-33.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a Shinto gate, and Shiba Inu is set up again.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13874\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-31-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-31-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-31-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-31-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-31.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I bow and go through the Shinto gate.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The god crest is dyed on the shinto screen, and if you look closely, it is kameko&#8217;s god crest in the crest of the magatama.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13876\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-30-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-30-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-30-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-30.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p>There is a chicken coop where the stone monument &#8220;Kurosa&#8221; is bred a while <span style=\"font-weight: 400;\">ago<br \/>\n <\/span> It is said that it was called a long cry in the chicken which came with The Advent of Tendun after <span style=\"font-weight: 400;\">all<br \/>\n <\/span> The cry of the ebony seems to reach <span style=\"font-weight: 400;\">10<\/span> seconds in the long one of 7 to 8 seconds.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13878\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-28-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-28-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-28-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-28.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13880\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-28.jpg\" alt=\"\" width=\"974\" height=\"547\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-28.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-28-768x431.jpg 768w\" sizes=\"(max-width: 974px) 100vw, 974px\" \/><\/p>\n<p><b>It is said that &#8220;Tamanoya Ichinomiya&#8221; is put on the flat forehead in the worship hall.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13882\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-26-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-26-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-26-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-26.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>Give me a prayer.<br \/>\n<\/b><b>When you reach the god of worship, where you worship God&#8217;s power, pray with your hands together.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13884\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-23-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-23-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-23-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-23.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Turn to the back and look up at the main shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13886\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-24-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-24-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-24-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-24.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13888\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;m going back to the approach.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13890\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-18-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-18-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-18-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-18.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;ll go through the Shinto gate, I&#8217;ll go through the torii gate, I&#8217;ll look back and bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13892\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-17-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-17-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-17-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-17.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine card awarding place in the precincts, but in the case of absence, there was a paper that says at the shrine hall next to one torii, so I was awarded a return to the first torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13894\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-17-450x600.jpg\" alt=\"\" width=\"450\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-17-450x600.jpg 450w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-17.jpg 768w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/><\/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<h3><b>\u300e\u53e4\u4e8b\u8a18\uff08kojiki\uff09\u300fA tradition written in ame no Iwatoya<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The famous &#8220;Japanese mythology&#8221;. Amaterasu Omikami ordered &#8220;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&#8221; to make a jade decoration when hidden in Iwato. It says, &#8220;A lot of &#8220;\u516b\u5742\u74ca\u66f2\u7389\uff08yasakanino magatama\uff09&#8221;&#8221;, and go through them in a long time. &#8221; &#8220;The long-lasting songbird of Tokiyo&#8221; will also appear.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Nordhaven<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Amaterasu Omikami was afraid to see it. He opened the door of the ameno Ishiya and put it inside. Then, &#8220;Takamagahara&#8221; became completely dark. &#8220;Ashihara Nakatsukuni&#8221; has also become completely dark. The night went on all the way.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There, the roaring voices of many gods, in May, were full, like the frying flies, and all the annoyances all occurred.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u3053\u306e\u3088\u3046\u306a\u72b6\u6cc1\u3092\u53d7\u3051\u3001\u300c\u5929\u306e\u5e73\u548c\u306e\u5ddd\u300d\u306b\u81ea\u7136\u306b\u96c6\u307e\u3063\u305f\u300c800\u4e07\u306e\u795e\u3005\u300d\u304c\u3001\u300c\u305f\u304b\u307f\u3064\u3080\u3059\u3072\u306e\u795e\u300d\u306e\u5b50\u3067\u3042\u308b\u300c\u60f3\u3044\u304b\u306d\u306e\u795e\u300d\u306b\u89e3\u6c7a\u7b56\u3092\u8003\u3048\u3055\u305b\u305f\u3002 \u305d\u3046\u3060\u3063\u305f\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>First of all, collect the long-lasting songbirds of Tokiyo and let them sing.<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Take the hard stones above the river of &#8220;Ameno Yasugawara&#8221; <\/span><span style=\"font-weight: 400;\"> and take the iron of Heaven&#8217;s gold mine to find the blacksmith <\/span><span style=\"font-weight: 400;\">&#8220;Amatsu Mara&#8221;. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Ask &#8220;Ishikori Dome no Mikoto&#8221;\u4f0a\u65af\u8a31\u7406\u5ea6\u58f2\u547d<\/span><span style=\"font-weight: 400;\">to make a mirror.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>God has been commanded to &#8220;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09.&#8221; Then, I made many &#8220;\u516b\u5742\u74ca\u66f2\u7389\uff08yasakanino magatama\uff09&#8221; and pierced them for a long time.<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">\u5929\u5150\u5c4b\u547d\uff08ameno koyaneno mikoto\uff09<\/span><span style=\"font-weight: 400;\">God called &#8220;Futo Tamano Mikoto,&#8221; and completely removed the shoulder bones of the stag of &#8220;\u5929\u9999\u5c71\uff08amenokaguyama\uff09,&#8221; and then took the &#8220;Kaniwa cherry tree&#8221; of &#8220;\u5929\u9999\u5c71\uff08amenokaguyama\uff09,&#8221; I grilled the deer bones and made them fortune.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">We have dug up the thick Sakaki of &#8220;\u5929\u9999\u5c71\uff08amenokaguyama\uff09&#8221;, and put a lot of &#8220;\u516b\u5742\u74ca\u66f2\u7389\uff08yasakanino magatama\uff09&#8221; on the branch above it, and put a ball ornament that passed through a long string. The middle branch was covered with a &#8220;\u516b\u54ab\u93e1\uff08yatanokagami),&#8221; and the lower branch was covered with a &#8220;white cloth&#8221; and a &#8220;blue cloth.&#8221; These various items were given to God by &#8220;Futama no Mikoto&#8221;. <\/span><span style=\"font-weight: 400;\">\u5929\u5150\u5c4b\u547d\uff08ameno koyane no mikoto\uff09<\/span><span style=\"font-weight: 400;\">However, He gave God a precious congratulatory speech.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u624b\u529b\u7537\u795e\uff08ameno tajikarawo no mikoto\uff09<\/span><span style=\"font-weight: 400;\">Hiding behind the door<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u5b87\u53d7\u58f2\u547d\uff08ameno uzume no mikoto\uff09<\/span><span style=\"font-weight: 400;\">She put&#8221;\u5929\u9999\u5c71\uff08amenokaguyama\uff09&#8221; vines of Hikage on the side of the sash, put the hair of the Makoto vines on it, and bundled the bamboo leaves of &#8220;\u5929\u9999\u5c71\uff08amenokaguyama\uff09&#8221; into the sample and held it in her hand. And he laid the tub in front of the door of &#8220;\u5929\u77f3\u5c4b\uff08ameno iwatoya\uff09&#8221;. It stomped on it, and it became as if God had transferred. She exposed her breasts and hung a string on her genitals. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Then, many gods laughed so loudly that &#8220;Takamagahara&#8221; sounded.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Therefore <\/span><span style=\"font-weight: 400;\">\u5929\u7167\u5927\u5fa1\u795e\uff08amaterasuomikami\uff09<\/span><span style=\"font-weight: 400;\">God seemed strange and opened the door of &#8220;\u5929\u77f3\u5c4b\uff08ameno iwatoya\uff09&#8221; narrowly. Looking through from the inside of the door, I said, &#8220;I am here. I think &#8220;Amahara&#8221; is naturally dark, and &#8220;Ashihara Nakatsukuni&#8221; is all dark. Why is &#8220;\u5929\u5b87\u53d7\u58f2\u547d\uff08ameno uzume no mikoto\uff09&#8221; so enjoyable? &#8220;Are all the eight million gods laughing?&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">So, &#8220;\u5929\u5b87\u53d7\u58f2\u547d\uff08ameno uzume no mikoto\uff09&#8221; said to him, &#8220;Because there is a precious god here than you, I am joyful, laughing, and having fun.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">While saying this <\/span><span style=\"font-weight: 400;\">\u5929\u5150\u5c4b\u547d\uff08ameno koyane no mikoto\uff09<\/span><span style=\"font-weight: 400;\"> When he showed <\/span><span style=\"font-weight: 400;\">\u5929\u7167\u5927\u5fa1\u795e\uff08amaterasuomikami\uff09<\/span><span style=\"font-weight: 400;\">\u5929\u7167\u5927\u5fa1\u795e <\/span><span style=\"font-weight: 400;\">\uff08amaterasuomikami\uff09<\/span><span style=\"font-weight: 400;\">When I look into the mirror, I find it strange, and I gradually come out of the door and look into my reflection in the mirror. At that time, the &#8220;\u624b\u529b\u7537\u795e\uff08tajikarawo no kami\uff09&#8221; who stood beside him picked up his hand and pulled it out. Immediately after that, &#8220;\u5e03\u5200\u7389\u547d\uff08futotama no mikoto\uff09&#8221; ran a pouring rope.<\/span><span style=\"font-weight: 400;\">\u5929\u7167\u5927\u5fa1\u795e<\/span><span style=\"font-weight: 400;\">\u306e\u3046\u3057\u308d\u306b\u5f15\u304d\u6e21\u3057\u3066\u7533\u3057\u4e0a\u3052\u305f\u3053\u3068\u306b\u306f\u300c\u3053\u308c\u304b\u3089\u5185\u3078\u304a\u3082\u3069\u308a\u306b\u306a\u308b\u3053\u3068\u306f\u51fa\u6765\u307e\u305b\u3093\u300d\u3068\u7533\u3057\u4e0a\u3052\u305f<\/span><\/p>\n<p><span style=\"font-weight: 400;\">thus<\/span><span style=\"font-weight: 400;\">\u5929\u7167\u5927\u5fa1\u795e\uff08amaterasuomikami\uff09<\/span><span style=\"font-weight: 400;\">When we came out, both &#8220;Takamagahara&#8221; and &#8220;Ashihara Nakatsukuni&#8221; were shining in the natural light.&#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; font-size: 80%;\">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-13896\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-1-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13898\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-2-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-2-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-2-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-2-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13900\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-3-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-3-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-3-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-3-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13902\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-4-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-4-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-4-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-D-4.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<h3><b>\u300e\u65e5\u672c\u66f8\u7d00\uff08nihon shoki\uff09\u300f\u7b2c\u4e5d\u6bb5\u4e00\u66f8 \u5929\u5b6b\u964d\u81e8 \u306b\u8a18\u3055\u308c\u308b\u4f1d\u627f<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The situation regarding &#8220;\u5929\u5b6b\u964d\u81e8\uff08tensonkorin\uff09&#8221; is described along with &#8220;God Imperial Relic&#8221;.<br \/>\n<\/span><span style=\"font-weight: 400;\">The deity of the shrine is written as &#8220;\u7389\u5c4b\u547d\uff08tamanoya no mikoto\uff09&#8221; as one of the five pillars of the god who was followed by &#8220;Tenson&#8221;.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Nordhaven<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;The two pillar gods go up to heaven and report. &#8220;Ashihara China (ashihara no nakatsuku) have all settled already.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At this time, &#8220;\u5929\u7167\u5927\u795e\uff08amaterasu omikami\uff09i&#8221; becomes &#8220;\u52c5\uff08choku\uff09&#8221;,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;If that&#8217;s the case, let&#8217;s get my child down to the ground right away,&#8221; he said.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Exactly, when I was trying to lower my child into the human world from heaven, &#8220;the grandson&#8221; was born.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">His grandson&#8217;s name is called &#8220;\u5929\u6d25\u5f66\u5f66\u706b\u74ca\u74ca\u6775\u5c0a\uff08amatsu hiko hikoho ninigi no mikoto\uff09.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Therefore, &#8220;\u5929\u5fcd\u7a57\u8033\u5c0a\uff08ameno oshihomimi no mikoto\uff09&#8221; told Okami.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Drop this emperor&#8217;s grandson from heaven into the human world, instead of me.&#8221;<\/span><span style=\"font-weight: 400;\">Therefore, &#8220;\u5929\u7167\u5927\u795e\uff08amaterasu omikami\uff09&#8221; instructed &#8220;\u74ca\u74da\u6775\u5c0a\uff08ninigi no mikoto\uff09&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u516b\u5742\u74ca\u66f2\u7389\uff08yasakani no magatama\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u516b\u54ab\u93e1\uff08yata no kagami\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u8349\u8599\u5263\uff08kusanagi no tsurugi\uff09 &#8220;\u4e09\u7a2e\u306e\u795e\u5668three sacred treasures&#8221; was given.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Also, &#8221; \u5929\u5150\u5c4b\u547d\uff08ameno koyane no mikoto\uff09&#8221;, the ancestor of Mr. Nakatomi<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;\u592a\u7389\u547d\uff08futotama no mikoto\uff09,&#8221; the ancestor of\u5fcc\u90e8\uff08imbe\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;\u5929\u923f\u5973\u547d\uff08ameno uzume no mikoto\uff09,&#8221; the ancestor of\u733f\u5973\uff08sarume\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;\u77f3\u51dd\u59e5\u547d\uff08ishikoridome no mikoto\uff09,&#8221; the ancestor of\u93e1\u4f5c\uff08kagamitsukuri\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>&#8220;\u7389\u5c4b\u547d\uff08tamanoya no mikoto\uff09,&#8221; the ancestor of\u7389\u4f5c\uff08tamatsukuri\uff09<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In all, they arranged the five gods to follow the emperor&#8217;s grandson.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">And the &#8220;shinchoku&#8221; to the grandson is<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u201cThe country of Mizuho in Chiihoaki of Ashihara is the country where our descendants should be king. You, the grandson, go and reign. Please go. As long as the amatsu hitsugi thrives, they will not be in poverty forever with heaven and earth.&#8221; &#8220;<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">\u3010\u539f\u6587\u53c2\u7167\u3011\u300e\u65e5\u672c\u66f8\u7d00\u300f \u520a\u672c \u6587\u653f13\u5e74\u9078\u8005 \u820e\u4eba\u89aa\u738b[\u65e7\u8535\u8005]\u5185\u52d9\u7701 \u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6<br \/>\n<\/span><span style=\"font-weight: 400; font-size: 80%;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047528&amp;ID=M2017042515415226619&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13904\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-1-837x600.jpg\" alt=\"\" width=\"837\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-1-837x600.jpg 837w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-1-768x551.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-1.jpg 1024w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-13906\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-2-837x600.jpg\" alt=\"\" width=\"837\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-2-837x600.jpg 837w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-2-768x551.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-2.jpg 1024w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/p>\n<h3><b>\u300e\u65e5\u672c\u66f8\u7d00\uff08nihon shoki\uff09\u300f\u666f\u884c\u5929\u7687 \u5927\u8db3\u5f66\u5fcd\u4ee3\u5225\u5929\u7687 Tradition written in<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">To subdue the rebels<\/span><span style=\"font-weight: 400;\">The family headed by &#8220;Kamunatsuso hime&#8221; in this area dedicated the vessel of God. And the clan has reconciled to the Emperor.<\/span><span style=\"font-weight: 400;\">At this time, it is said that the Emperor prayed for victory at the &#8220;\u7389\u7956\u795e\u793e\uff08Tamanoya shrine\uff09&#8221;.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Nordhaven<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Autumn July, 12y. The &#8220;kumaso&#8221; attacked the Emperor. They did not make a tribute. On August 15, the Emperor headed to &#8220;tsukushi&#8221;.<br \/>\n<\/span><span style=\"font-weight: 400;\">September 5th. We arrived at saba of Suwa no kuni (currently Sawa, Yamaguchi Prefecture).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At that time, the emperor was told by the group (mahetsu no kimitachi) while looking out to the south.<br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;There is a lot of smoke in the south. There must be bandits.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Staying there, first, &#8220;\u6b66\u8af8\u6728\uff08takemoronoki\uff09&#8221;, the ancestor of oo no omi, &#8220;\u83df\u540d\u624b\uff08unate\uff09&#8221;, the ancestor of &#8220;kunisaki no omi&#8221;, monobe I sent &#8220;\u590f\u82b1\uff08natsu hana\uff09&#8221;, the ancestor of you (mononobe no kimi), to the place to find out what it was like.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There is a woman there, who is called &#8220;\u795e\u590f\u78ef\u5a9b\uff08kamunatsuso hime\uff09.&#8221;<br \/>\n<\/span><span style=\"font-weight: 400;\">Her minions are numerous and the heads of one country.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When they heard that the emperor&#8217;s messenger had come, they pulled out (sakaki) from &#8220;shitsuno yama&#8221;, put &#8220;\u516b\u63e1\u5263\uff08yatsukano tsurugi\uff09&#8221; on the upper branch, and put it on Nakaeda. He put on a \u201c\u516b\u54ab\u93e1\uff08yatano kagami\uff09\u201d, put a \u201c\u516b\u5c3a\u74ca\uff08yasakani\uff09\u201d on the lower branch, set a white flag on the bow of the boat, came out, and said,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Please, don&#8217;t send soldiers to us. I and my fellows do not disobey the Emperor.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">I will surrender immediately.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">However, there are other bad bandits.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">One of them is called &#8220;hanatari&#8221;. They use the name of the Lord without permission, and gather in noisy areas in the mountains and valleys, and are stationed on the river above the &#8220;\u83df\u72f9\uff08usa\uff09&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The next person is the ear lobe\u8033\u5782\uff08mimitari\uff09. It robs warehouses of reserves, devours them, and often takes people away. This will be stationed on the river &#8220;\u5fa1\u6728\uff08mike\uff09&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The third person is called &#8220;asahagi&#8221;. We are secretly gathering bad guys and are on the river in &#8220;Takaha&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">4\u4eba\u76ee\u306f\u300c\u571f\u6298\u308a\u304a\u308a\u300d\u3068\u547c\u3070\u308c\u3066\u3044\u307e\u3059\u3002 \u30df\u30c9\u30ea\u30ce\u306e\u5ddd\u306b\u96a0\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u5c71\u3084\u5ddd\u306e\u967a\u3057\u3044\u5834\u6240\u306b\u3044\u308b\u4eba\u3005\u3092\u76d7\u307f\u3001\u8105\u3057\u3001\u643e\u53d6\u3057\u307e\u3059\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">These four people all live in a \u201crugged place\u201d. Each has a companion. It is the head of each region.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Everyone says, &#8220;I do not obey the imperial order.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It would be nice to be dealt with promptly. Don&#8217;t miss them. &#8220;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Then, &#8220;\u6b66\u8af8\u6728\uff08takemoronoki\uff09&#8221; and others first invited &#8220;\u9ebb\u525d\uff08asahagi\uff09&#8221;. And I gave them various rare things such as &#8220;red jacket&#8221; and &#8220;hakama&#8221;. And three people who did not obey the Emperor also attracted.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When each came along with the bad guys, they captured and killed all. &#8220;<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">\u3010\u539f\u6587\u53c2\u7167\u3011\u300e\u65e5\u672c\u66f8\u7d00\u300f \u520a\u672c \u6587\u653f13\u5e74\u9078\u8005 \u820e\u4eba\u89aa\u738b[\u65e7\u8535\u8005]\u5185\u52d9\u7701 \u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6<br \/>\n<\/span><span style=\"font-weight: 400; font-size: 80%;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047528&amp;ID=M2017042515415226619&amp;TYPE=&amp;NO=\u753b\u50cf\u5229\u7528<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13908\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-3-837x600.jpg\" alt=\"\" width=\"837\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-3-837x600.jpg 837w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-3-768x551.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-G-3.jpg 1024w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/p>\n<p><b>According to the company&#8217;s legend, it is called the &#8220;\u5e38\u4e16\u9577\u9cf4\u9d8f&#8221; that was collected and sounded at the time of &#8220;Amaterasu Okami&#8217;s Heaven Iwatogakushi,&#8221; which is famous for &#8220;Japanese mythology.&#8221; It is said to be the birthplace of Kuro-Kashiwa. Kurohashiwa is designated as a natural monument and is raised in the precincts.<\/b><\/p>\n<p><b>\u7389\u7956\u795e\u793e\uff08tamanoya shrine\uff09\uff08\u9632\u5e9c\u5e02\uff09\u306b\u300c\u62dd (hai)\u300d(Hang your head down to 90 degrees.)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-13910\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-040-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-040-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-040-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-040-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-040.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tamanoya shrine (Hofu City) is listed as &#8220;Tamaso Shrine Niza&#8221; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company&#8217;s story, the Tsunesei Naganary chicken collected and played at the time of &#8220;Iwato Kakure of the Heavens of Ameteru Ogami&#8221; famous for &#8220;Japanese mythology&#8221; is the god of the festival . It is said that &#8220;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&#8221; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.<\/p>\n","protected":false},"author":1,"featured_media":13854,"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-15877","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=\"Tamanoya shrine (Hofu City) is listed as &quot;Tamaso Shrine Niza&quot; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company&#039;s story, the Tsunesei Naganary chicken collected and played at the time of &quot;Iwato Kakure of the Heavens of Ameteru Ogami&quot; famous for &quot;Japanese mythology&quot; is the god of the festival . It is said that &quot;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&quot; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.\" \/>\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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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=\"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Tamanoya shrine (Hofu City) is listed as &quot;Tamaso Shrine Niza&quot; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company&#039;s story, the Tsunesei Naganary chicken collected and played at the time of &quot;Iwato Kakure of the Heavens of Ameteru Ogami&quot; famous for &quot;Japanese mythology&quot; is the god of the festival . It is said that &quot;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&quot; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-08-22T13:23:29+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-08-23T04:17:29+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Tamanoya shrine (Hofu City) is listed as &quot;Tamaso Shrine Niza&quot; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company&#039;s story, the Tsunesei Naganary chicken collected and played at the time of &quot;Iwato Kakure of the Heavens of Ameteru Ogami&quot; famous for &quot;Japanese mythology&quot; is the god of the festival . It is said that &quot;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&quot; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.\" \/>\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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#blogposting\",\"name\":\"Tamanoya shrine\\uff08\\u7389\\u7956\\u795e\\u793e\\uff09 - Shrine-heritager\",\"headline\":\"Tamanoya shrine\\uff08\\u7389\\u7956\\u795e\\u793e\\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-32.jpg\",\"width\":1024,\"height\":767},\"datePublished\":\"2020-08-22T22:23:29+09:00\",\"dateModified\":\"2020-08-23T13:17:29+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#listItem\",\"name\":\"Tamanoya shrine\\uff08\\u7389\\u7956\\u795e\\u793e\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#listItem\",\"position\":3,\"name\":\"Tamanoya shrine\\uff08\\u7389\\u7956\\u795e\\u793e\\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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/\",\"name\":\"Tamanoya shrine\\uff08\\u7389\\u7956\\u795e\\u793e\\uff09 - Shrine-heritager\",\"description\":\"Tamanoya shrine (Hofu City) is listed as \\\"Tamaso Shrine Niza\\\" in \\u300e\\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33\\uff08engishiki jimmeicho\\uff09\\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company's story, the Tsunesei Naganary chicken collected and played at the time of \\\"Iwato Kakure of the Heavens of Ameteru Ogami\\\" famous for \\\"Japanese mythology\\\" is the god of the festival . It is said that \\\"\\u7389\\u7956\\u547d\\uff08tamanoya no mikoto\\uff09\\\" was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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-32.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#mainImage\",\"width\":1024,\"height\":767},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\\\/#mainImage\"},\"datePublished\":\"2020-08-22T22:23:29+09:00\",\"dateModified\":\"2020-08-23T13:17:29+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":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager","description":"Tamanoya shrine (Hofu City) is listed as \"Tamaso Shrine Niza\" in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company's story, the Tsunesei Naganary chicken collected and played at the time of \"Iwato Kakure of the Heavens of Ameteru Ogami\" famous for \"Japanese mythology\" is the god of the festival . It is said that \"\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09\" was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#blogposting","name":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager","headline":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\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-32.jpg","width":1024,"height":767},"datePublished":"2020-08-22T22:23:29+09:00","dateModified":"2020-08-23T13:17:29+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#listItem","name":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#listItem","position":3,"name":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/","name":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager","description":"Tamanoya shrine (Hofu City) is listed as \"Tamaso Shrine Niza\" in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company's story, the Tsunesei Naganary chicken collected and played at the time of \"Iwato Kakure of the Heavens of Ameteru Ogami\" famous for \"Japanese mythology\" is the god of the festival . It is said that \"\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09\" was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-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-32.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#mainImage","width":1024,"height":767},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/#mainImage"},"datePublished":"2020-08-22T22:23:29+09:00","dateModified":"2020-08-23T13:17:29+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":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager","og:description":"Tamanoya shrine (Hofu City) is listed as &quot;Tamaso Shrine Niza&quot; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company's story, the Tsunesei Naganary chicken collected and played at the time of &quot;Iwato Kakure of the Heavens of Ameteru Ogami&quot; famous for &quot;Japanese mythology&quot; is the god of the festival . It is said that &quot;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&quot; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts.","og:url":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/","article:published_time":"2020-08-22T13:23:29+00:00","article:modified_time":"2020-08-23T04:17:29+00:00","twitter:card":"summary_large_image","twitter:title":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09 - Shrine-heritager","twitter:description":"Tamanoya shrine (Hofu City) is listed as &quot;Tamaso Shrine Niza&quot; in \u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f God Name Book. ) as the god of the festival, but the god of the other one is unknown, and in the company's story, the Tsunesei Naganary chicken collected and played at the time of &quot;Iwato Kakure of the Heavens of Ameteru Ogami&quot; famous for &quot;Japanese mythology&quot; is the god of the festival . It is said that &quot;\u7389\u7956\u547d\uff08tamanoya no mikoto\uff09&quot; was taken to this place and stayed in this place, and it is designated as a natural monument, and it is bred in the precincts."},"aioseo_meta_data":{"post_id":"15877","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 08:48:34","updated":"2025-07-01 08:00:47","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTamanoya shrine\uff08\u7389\u7956\u795e\u793e\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":"Tamanoya shrine\uff08\u7389\u7956\u795e\u793e\uff09","link":"https:\/\/shrineheritager.com\/en\/%e7%8e%89%e7%a5%96%e7%a5%9e%e7%a4%be%ef%bc%88tamanoya-shrine%ef%bc%89\/"}],"views":2059,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/15877","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=15877"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/15877\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/13854"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=15877"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=15877"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=15877"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}