    <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":11143,"date":"2020-06-25T12:00:49","date_gmt":"2020-06-25T03:00:49","guid":{"rendered":"https:\/\/shrineheritager.com\/takase-shrine\/"},"modified":"2020-06-25T23:53:39","modified_gmt":"2020-06-25T14:53:39","slug":"takase-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/takase-shrine\/","title":{"rendered":"Takase Shrine (Takase, Nanto City)"},"content":{"rendered":"<p><b>Takase Shrine is prestigious as Ichinomiya in&#8221;\u8d8a\u4e2d\u56fd&#8221; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period(Around the 10th century BC to the middle of the 3rd century AD) when the Agricultural culture grew.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11052\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-1-1-379x600.jpg\" alt=\"\" width=\"379\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-1-1-379x600.jpg 379w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-1-1.jpg 647w\" sizes=\"(max-width: 379px) 100vw, 379px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11054\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-2-1-398x600.jpg\" alt=\"\" width=\"398\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-2-1-398x600.jpg 398w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-2-2-1.jpg 680w\" sizes=\"(max-width: 398px) 100vw, 398px\" \/><\/p>\n<h2><b>1.Introduction (Introduction)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>[Shrine name]<\/b><\/h3>\n<p><span style=\"font-size: 130%;\"><b> <\/b><b>\u9ad8\u702c\u795e\u793e\uff08takase shrine\uff09<br \/>\n<\/b><b> <\/b><\/span><b>\uff08Takase Shrine\uff09<\/b><\/p>\n<h3><b>[Common name]<\/b><\/h3>\n<h3><b>[Location]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">291 Takase, Nanto City, Toyama Prefecture<\/span><\/p>\n<h3><b>[Google Map]<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E7%A0%BA%E6%B3%A2\/%E3%80%92932-0252+%E5%AF%8C%E5%B1%B1%E7%9C%8C%E5%8D%97%E7%A0%BA%E5%B8%82%E9%AB%98%E7%80%AC%EF%BC%92%EF%BC%99%EF%BC%91+%E9%AB%98%E7%80%AC%E7%A5%9E%E7%A4%BE%EF%BC%88%E8%B6%8A%E4%B8%AD%E4%B8%80%E5%AE%AE%EF%BC%89\/@36.6112168,136.9311511,13.17z\/data=!4m14!4m13!1m5!1m1!1s0x5ff78763abbbd8d5\" data-lkc-id=\"125\" 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\">\u783a\u6ce2\u5e02 to \u9ad8\u702c\u795e\u793e\uff08\u8d8a\u4e2d\u4e00\u5bae\uff09<\/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%25E7%25A0%25BA%25E6%25B3%25A2%2F%25E3%2580%2592932-0252%2B%25E5%25AF%258C%25E5%25B1%25B1%25E7%259C%258C%25E5%258D%2597%25E7%25A0%25BA%25E5%25B8%2582%25E9%25AB%2598%25E7%2580%25AC%25EF%25BC%2592%25EF%25BC%2599%25EF%25BC%2591%2B%25E9%25AB%2598%25E7%2580%25AC%25E7%25A5%259E%25E7%25A4%25BE%25EF%25BC%2588%25E8%25B6%258A%25E4%25B8%25AD%25E4%25B8%2580%25E5%25AE%25AE%25EF%25BC%2589%2F%4036.6112168%2C136.9311511%2C13.17z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x5ff78763abbbd8d5?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u783a\u6ce2\u5e02 to \u9ad8\u702c\u795e\u793e\uff08\u8d8a\u4e2d\u4e00\u5bae\uff09<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E7%A0%BA%E6%B3%A2\/%E3%80%92932-0252+%E5%AF%8C%E5%B1%B1%E7%9C%8C%E5%8D%97%E7%A0%BA%E5%B8%82%E9%AB%98%E7%80%AC%EF%BC%92%EF%BC%99%EF%BC%91+%E9%AB%98%E7%80%AC%E7%A5%9E%E7%A4%BE%EF%BC%88%E8%B6%8A%E4%B8%AD%E4%B8%80%E5%AE%AE%EF%BC%89\/@36.6112168,136.9311511,13.17z\/data=!4m14!4m13!1m5!1m1!1s0x5ff78763abbbd8d5\">https:\/\/www.google.com\/maps\/dir\/\u783a\u6ce2\/\u3012932-0252+\u5bcc\u5c71\u770c\u5357\u783a\u5e02\u9ad8\u702c\uff12\uff19\uff11+\u9ad8\u702c\u795e\u793e\uff08\u8d8a\u4e2d\u4e00\u5bae\uff09\/@36.6112168,136.9311511,13.17z\/data=!4m14!4m13!1m5!1m1!1s0x5ff78763abbbd8d5<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>[God&#8217;s name to pray]<\/b><\/h3>\n<p><b>\u300a\u4e3b\u300b\u5927\u5df1\u8cb4\u547d\uff08\u5927\u56fd\u4e3b\u547d\uff09\uff08okuninushi no mikoto\uff09<br \/>\n<\/b><b><\/b><b>\u300a\u914d\u300b\u5929\u6d3b\u7389\u547d\uff08ameno ikutama no mikoto\uff09<br \/>\n<\/b><b>\u4e94\u5341\u731b\u547d\uff08itakeru no mikoto\uff09<br \/>\n<\/b><b>\u8d8a\u4e2d\u5f0f\u5185\u793e \u4e09\u5341\u56db\u5ea7<br \/>\n<\/b><b> \u792a\u6ce2\u90e1\u5185\u6c0f\u795e<\/b><\/p>\n<p><b>\u76f8\u6bbf \u795e\u660e\u5bae\u300a\u4e3b\u300b\u5929\u7167\u7687\u5927\u795e<br \/>\n<\/b><b>\u76f8\u6bbf \u98a8\u5bae \u300a\u4e3b\u300b\u7d1a\u9577\u6238\u8fba\u547d<br \/>\n<\/b><b>\u76f8\u6bbf \u5929\u6e80\u5bae\u300a\u4e3b\u300b\u5927\u5bb0\u5e9c\u5929\u6e80\u5927\u795e\uff08\u83c5\u539f\u9053\u771f\u516c\uff09<\/b><\/p>\n<h3><b>[God&#8217;s Great power]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\uff08\u5927\u5df1\u8cb4\u547d\uff09\uff5e\u798f\u306e\u795e\u30fb\u7e01\u7d50\u3073\u306e\u795e\u30fb\u56fd\u571f\u958b\u62d3\u30fb\u8fb2\u8015\u306e\u795e\u30fb\u533b\u85ac\u533b\u7642\u306e\u795e<br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08\u5929\u6d3b\u7389\u547d\uff09\uff5e\u7121\u75c5\u606f\u707d\u30fb\u5ef6\u547d\u9577\u5bff\u306e\u795e<br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08\u4e94\u5341\u731b\u547d\uff09\uff5e\u8fb2\u6797\u6b96\u7523\u30fb\u4ea4\u901a\u5b89\u5168\u30fb\u5384\u9664\u30fb\u75c5\u6c17\u5e73\u7652\u306e\u795e<\/span><\/p>\n<h3><b>[Rules of dignity]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u6240\u8f09\u793e<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb \u8d8a\u4e2d\u56fd\u4e00\u4e4b\u5bae<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb \u5225\u8868\u795e\u793e<\/span><\/p>\n<h3><b>[Beginning of history]<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11056\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-24-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-24-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-24-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-24.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Gochinza is said to be in the distant past of Gods, and also in the 11th year of Emperor Kageyuki.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is also said that the shrine god dedicates to the guardian deity in this area when the land of the northern land is cultivated, and after it has become a country, it is also used to calm down its own soul and return to Izumo. , Has been worshiped as Etchu Ichinomiya.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Not only the people of \u8d8a\u4e2d\u56fd, but also the reverence of the Imperial Court,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">he was sent a royal envoy to the Emperor of the Tenmu Emperor,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5149\u4ec1\u5929\u7687\u306e\u5b9d\u4e8011\u5e74\u306b\u5f93\u4e94\u4f4d\u3001<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">3rd place in the 1st year of the Emperor Bunde&#8217;s confrontation, and the same year Allows scepters for prayers and celebrations.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the first year of \u8c9e\u89b3, he was in the third place, and then progressively progressed.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In addition, since it was addressed to many shrines and gardens and to the royal territory, it is possible to remember the grandeur of the past by the place names remaining in the vicinity, such as Mikoya Tate, Kamakuraya Tate, Omiya Jida, and Mikobatake.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">During the Warring States period, the shrine was devastated and it was in a state that it could not be seen, but it was promoted to the prestige of the Maeda feudal lord and was gradually promoted, and it was promoted to a prefectural shrine in 1868 and a Kokusei shrine in 1912. ..<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In 1912, an ambassador of the Regent&#8217;s Palace visited the temple, and in 1926, His Majesties the Emperor consecrated the &#8220;God&#8217;s Path,&#8221; in 1945, in 1945, in 1945, and in 1945. At the end of the war, there was a royal envoy.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<h3><b>[History]<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">The deity of the deity of the shrine, the deity of the deity of the shrine, is enshrined in the main deity of Oguni priest (Takashi Omi), and enshrines the enemies of life and fierce life.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is a company that enshrines the gods of the Ujiko and the gods of the 33rd stage company in the Enki ceremony in \u8d8a\u4e2d\u56fd. It is a god of great power, marriage, land reclamation, and farming.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5929\u6d3b\u7389\u547d is a god of natural life, disease-free life, and longevity.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u4e94\u5341\u731b\u547d , the god of industry.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Goshaden The shrine of this shrine, where the staggered gable and the gable gable are harmoniously erected in the giant tree forest, is scheduled to be erected for several years from 1965, construction work has begun,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">and foundation work has ended August 1945 At the end of the war, GHQ (Far East Army Command) commanded the construction to be stopped by state funds, the appearance of the ancient times disappeared, and the number of people worshiping was almost zero. People donated a large amount of money and a hundred-year-old name tree, and they were supported by the passion for building the shrine. In 1922, the main shrine (Ryuzo) and in the following year (Showa 23), the worship hall (Irumabaya construction) In 1987, the Karafufu no worship hall was completed, and we came to see the complete completion of your shrine, which recalls the history of Zhenza 2000.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Ujiko Sokeisha Ujiko is currently over 100 units in Takase, Inami-cho, but people from 11 ancient villages in ancient times had the custom of taking a break from work during the annual festival in spring and autumn.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Today, worshipers from Hokkaido, Koshinetsu, and northern Kanto are worshiped, not to mention the whole prefecture, due to the excitement of the gods.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Treasure Hall and Otorii Completed in November 1984 by the donation of Takeshi Iwakawa, who lives in Isaba City, and in 60, the Torii Nishida, who lives in Oyabe City, donated the Otorii on the approach to His Majesty the Emperor 60 It was constructed over a two-year period as an annual celebration commemoration project.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The treasure hall stores the sacred treasures that have been passed down to our shrine since ancient times<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, Otorii houses the great honors that were copied in the great honor ceremony on June 30, and is purifying the sins of the people who pass under the great torii.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is a building that was relocated from the Jingu (Geku) under the control of Ise Jingu in 1965.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The water basin in the Tesuisha is a sacred place for washing, made of natural stones transported from the upper stream of the Tadami River in Niigata Prefecture. The letter &#8220;Water God&#8221; is engraved on the back of the natural stone.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">K\u014dreiden Adjacent to the shrine is the G\u014dreiden, which is a shrine where a total of 6400 pillars of spirits were enshrined in 1948, including those who were embarked from the Minami district and became the spirits of the defense of the country on the battlefield. .<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The main shrine is the former main shrine of this shrine, which was built in 7 years (about 159 years ago) in the Tenpo era, and has done the best of Inami sculpture, and has been designated as a cultural property.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Saikan This is the newest building of this shrine completed in August 1991.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Saikan is a building where the priests who serve the festival attend the temple before they serve the festival to cleanse the mind and body. This building was built with the support of Mr. Tosaku Nishida, President of Goldwin, who lives in Oyabe City and the company.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The shrine office and precincts were built in commemoration of the year 1965 and the year 2000, and it is a modern office building (660 square meters) of Japanese and Western eclectic structure. In recent years, the interiors of conference rooms have been refurbished, and they are being used for weddings and other occasions.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the precincts, a hundred-year-old giant cedar forest talks about past history, and the voices of wild birds echo in the forest throughout the four seasons to delight worshipers.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The young trees of the precincts of the precincts were planted by worshipers from all over the country.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The history of Gozinza The date of Gozinza is unknown, but it is said to be the era of Emperor \u666f\u884c\u5929\u7687.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the era of Emperor \u5929\u6b66\u5929\u7687, a royal envoy was sent to the shrine, and then Emperor \u5149\u4ec1\u5929\u7687 was in fifth place in the 11th year, and in the first year of Emperor \u6e05\u548c\u5929\u7687, he was ranked third in the first year and then in the fourth year of the court. It seems that it has become a royal territory with many manor houses.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">You can recall the historical names of the shrine&#8217;s place name, Tsukasa Omiya, Mikoba, and Kakugakuin.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Entering the Sengoku period, the prosperity of ancient times went to Izuko, the head of the company was devastated,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">and the humanity was disturbed. In the Edo period, Divine power was revitalized by the honorable protection of the lord of Kaga<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">and became a prefectural shrine in 1868<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">and became a shrine in the Taisho 12 (Taisho 12).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then , at the end of the war in 1945, there was a visit from the Imperial Envoy to pray for the happiness of the people.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Many worshipers now worship at festivals and Shinto rituals that change through the seasons, beginning with Hatsumode.<\/span><\/p>\n<p><b>&#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Head Office]<\/b><\/p><\/blockquote>\n<h3><b>[Other decisions within the preciss]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u9ad8\u702c\u7a32\u8377\u793e\u300a\u4e3b\u300b\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u5927\u795e<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u529f\u970a\u6bbf \u300a\u4e3b\u300b\u8b77\u56fd\u306e\u82f1\u970a\u30fb\u958b\u62d3\u529f\u52b4\u8005<\/span><\/p>\n<h2><b>Preliminary knowledge of this shrine (Preliminary Knowledge of This Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\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><b>[Enki-shiki Shinmeisho] (engishiki jimmeicho) The shrine record was completed in December 927 AD.<\/b><\/h3>\n<p><b>[Old Administrative Division] (Old administrator district)<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"font-size: 130%;\">\u5317\u9678\u9053 352\u5ea7\u2026\u592714\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u56171\uff09\u30fb\u5c0f338<\/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=\"font-size: 130%;\">\u8d8a\u4e2d\u56fd 34\u5ea7\uff08\u59271\u5ea7\u30fb\u5c0f33\u5ea7\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><span style=\"font-size: 130%;\"><b>\u783a\u6ce2\u90e1 7\u5ea7\uff08\u4e26\u5c0f\uff09<\/b><\/span><\/p>\n<p><b>[\u540d\u795e\u5927 \u5927 \u5c0f] <span style=\"font-size: 130%;\">\u5f0f\u5185 \u5c0f\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"font-size: 130%;\">\u9ad8\u702c\u795e\u793e<\/span><\/b><\/p>\n<p><b>[\u3075 \u308a \u304c \u306a ] <span style=\"font-size: 120%;\">\uff08\u305f\u304b\u305b\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 130%;\">\uff08takase no kamino yashiro\uff09 <\/span><\/b> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000004146&amp;ID=M2014101719562090086&amp;TYPE=&amp;NO=<\/span><span style=\"font-weight: 400;\">\u753b\u50cf\u5229\u7528<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-11058\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-\u8d8a\u4e2d-\u56fd_LI-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-\u8d8a\u4e2d-\u56fd_LI-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-\u8d8a\u4e2d-\u56fd_LI-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-\u8d8a\u4e2d-\u56fd_LI.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>[Otaky Point] (Points Selected by Japan Otaku)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">I will introduce the preliminary knowledge that you will be interested in this shrine from a otaku&#8217;s point of view.<\/span><\/p>\n<h4><b>\u5fa1\u796d\u795e \u5929\u6d3b\u7389\u547d\uff08ameno ikutama no mikoto\uff09\u306b\u3064\u3044\u3066<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">\u3042\u307e\u308a\u805e\u304d\u306a\u308c\u306a\u3044\u795e\u306e\u540d\u524d\u3067\u3059\u304c<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5225\u79f0\u306f\u300c\u6d3b\u9b42\u547d\u30fb\u6d3b\u7389\u547d\u30fb\u4f0a\u4e45\u9b42\u547d\u30fb\u751f\u7523\u65e5\u795e\u30fb\u751f\u970a\u795e\u30fb\u5929\u795e\u7389\u547d\u300d\u3068\u3042\u308a\u307e\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u65e5\u672c\u66f8\u7d00\uff08nihon shoki\uff09\u300f is said to be\u300c\u751f\u970a\u795e\uff08ikutama no kami\uff09\u300d<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The father god is said to be the &#8220;high soul life&#8221; or &#8220;soul life&#8221; of the three gods of creation,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">and is important as a &#8220;production day god\u751f\u7523\u65e5\u795e (iku musuhi no kami)&#8221; in the &#8220;8 shrine \u516b\u795e\u6bbf(temple that enshrines the 8 gods of the emperor guardian)&#8221;. It is worshiped as\u300c\u3080\u3059\u3072\u306e\u795e\u300d &#8220;Musuhi no God&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In\u300e\u5148\u4ee3\u65e7\u4e8b\u672c\u7d00\u300f &#8220;Previous Honki Honki&#8221;, it is said to be one pillar of the 32 gods who accompany \u9952\u901f\u65e5\u547dRahabichi Also,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">in the family tree related to Kamo and Katsuragi Kokuzo, he is positioned as the grandfather of \u8cc0\u8302\u5efa\u89d2\u8eab\u547d\uff08\u9676\u6d25\u8033\u547d\uff09.<\/span><\/p>\n<p><span class=\"hutoaka\" style=\"color: #0000ff;\"><b>\u516b\u795e\u6bbf See also the article about Hachijin<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h2><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the state when I visited this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Approximately 8.4km from Tonami Station via R156 About 15 minutes<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">I will sit in the countryside of Inami<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11060\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-20-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-20-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-20-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-20.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Nino Torii is built in front and the parking lot is on the left<\/span><\/p>\n<p><b>Arrived at \u9ad8\u702c\u795e\u793e\uff08takase shrine\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11062\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-20-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-20-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-20-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-20.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a historical note in front of Nino Torii and you can read it.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11064\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-19-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-19-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-19-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-19.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11066\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-22-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-22-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-22-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-22.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left is a large stone lantern. On the right is the company name &#8220;Takase Shrine&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11068\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-20-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-20-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-20-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-20.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11070\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-20-450x600.jpg\" alt=\"\" width=\"450\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-20-450x600.jpg 450w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-20.jpg 768w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">take a bowand go through the torii<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11072\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-20-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-20-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-20-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-20.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you go down the approach that is spacious and covered with gravel, the awarding office is on your left. The &#8220;Temizuya&#8221; is on your right. There is a treasure hall behind it<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11074\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-16-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-16-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-16-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-16-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-16.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The hand basin of the mizumizuya is a natural stone that is quite fine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11076\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-16-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-16-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-16-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-16.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">For explanation of official HP<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">It was relocated from the Geku in 1965 under the control of the Ise Shrine. The water bowl inside is a &#8220;Senshin&#8221; sakage ground made of natural stones transported from the upper reaches of the Tadami River in Niigata Prefecture. The character &#8220;Water God&#8221; is engraved on the back of the stone.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the official website<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11078\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-18-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-18-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-18-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-18.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the stand sign<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">his underwater tree became a nationally designated historic site. It is a pillar of a valuable building excavated from the Takase ruins (the site of a government office about 1,200 years ago). It is the root part of a large chestnut material divided into quarters. Since it will collapse when dried, it is stored in water.<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">It is a little difficult to see, but the pillars of the building excavated from the ruins are preserved in the water<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11080\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-16-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-16-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-16-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-16.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The area around the Takase site in the south of our company calls the name &#8220;Omiyaji&#8221; and<br \/>\n is thought to be an old shrine site that also appears<\/span> <span style=\"font-weight: 400;\">in<br \/>\n<\/span> the legend of our company&#8217;s creation.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11082\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-18-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-18-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-18-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-18-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-18.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">If you proceed along the spacious approach, you will find &#8220;Sanno Torii&#8221; and &#8220;Red Bridge Parapet Shinbashi.&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11084\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-17-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-17-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-17-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-17.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the &#8220;Three torii gates&#8221; and cross the &#8220;Vermilion Parapet God Bridge&#8221; to see the front shrine in front.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11086\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-14-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-14-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-14-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-14.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The worship hall is decorated with beautiful ropes and sculptures. In the Inami district,<\/span><span style=\"font-weight: 400;\">The worship hall is decorated with beautiful ropes and sculptures. In the Inami district, wooden sculptures such as the balustrade and lion head are popular, and it is said that this is due to the tradition of the craftsmanship here.<br \/>\n<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11088\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-18-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-18-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-18-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-18-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-18.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><b>I&#8217;m going<br \/>\n to go to the shrine.<\/b> <b>I&#8217;m sing a<br \/>\n lot of money. I wish you all the best.<\/b> <b>I pray with my hands together, hitting a high hand that can&#8217;t reach the god of worship who bows and settles while wishing to be in accordance with your divine power.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11090\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-14-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-14-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-14-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-14-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-14.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right side of the worship hall&#8217;s offering box is &#8220;Nadeusagi&#8221; with explanations of its origin.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Derived from &#8220;Nade Usagi&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Superpower life&#8221; and &#8220;Rabbit&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the myth &#8220;Inaba&#8217;s White Rabbit,&#8221; it is said that the priest&#8217;s deceased power, the Great Power, was healed of the injury of a &#8220;rabbit&#8221; who made a mistake and injured his body, and was also converted to a bad heart.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Nade rabbit&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Because of this myth, I hope that the worshipers of the power of the Great Powers (Oguni) will be widely accepted by the worshipers.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">I want to heal myself after praying in front of the worship hall. Let&#8217;s pat and pray for the same place as the body part, and let&#8217;s receive the patronage of the vast and vast Ogami<\/span><\/p>\n<p><strong>Information board excerpt<\/strong><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11092\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-14-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-14-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-14-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-14.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Around the main shrine and the main shrine, there are thick moss-covered cedar trees in a dense sanctuary.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11094\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-14-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-14-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-14-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-14.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11096\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-16-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-16-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-16-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-16.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a fine ring with a roof in the back right of the hall of worship<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11098\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-2-3-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-2-3-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-2-3-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-2-3.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u62dd\u6bbf\u306e\u96a3\u306b\u306f \u529f\u970a\u6bbf\uff08koreiden\uff09\u304c\u5efa\u3061\u307e\u3059<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f53\u793e\u306e\u65e7\u672c\u6bbf\u3092\u6d3b\u7528\u3057\u3066\u3044\u308b\u3068\u306e\u4e8bNext to the worship hall is the Koreiden hall. It is said that the former main hall of the Company is being used.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11100\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-14-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-14-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-14-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-14-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-14.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">The Goryoden adjacent to the main shrine enshrines over 6,400 pillars of the spirits of the country that had been conquered from the Tonami area from the Sino-Japanese Russo-Japanese War to the Great East Asian War, as well as those who have contributed to the development of this region.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The K\u014dreiden main shrine is the former main shrine of this shrine, and is the result of the Inami sculpture that was erected in 1974. It is also designated as a cultural property.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">The &#8220;Sazare stone&#8221; sung in the national anthem &#8220;Kimigayo&#8221; is placed on the left front of the hall of worship.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11102\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-14-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-14-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-14-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-14.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is &#8220;Takase Inari Shrine&#8221; on the right side (east side) in front of Kamibashi<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u9ad8\u702c\u7a32\u8377\u793eTakase Inari is a company that has been worshiped by the spirit of Fushimi Inari Taisha, which has been a belief of people since ancient times, and is revered as a god of rich harvest and prosperous business.<\/span><\/p>\n<p><strong>From the official website<\/strong><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11104\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-12-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-12-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-12-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-12.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We will leave the precincts with amulet and red stamp at the awarding office<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11106\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-13-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-13-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-13-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-13-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-13.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the torii gate, look back, bow<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11108\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-2-2-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-2-2-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-2-2-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-2-2-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-2-2.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<h2><b>Old tales held down to shrinks<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3><b>\u300e\u9ad8\u702c\u795e\u793e\u8a8c\u300fAncient paintings recorded in &#8220;Takase Shrine Magazine&#8221;<\/b><\/h3>\n<p><b>\u5199\u771fimage <\/b><b>\u3010\u539f\u6587\u53c2\u7167\u3011<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 <\/span><span style=\"font-weight: 400;\">\u9ad8\u702c\u795e\u793e\u8a8c \u51fa\u7248\u8005 \u9ad8\u702c\u795e\u793e\u793e\u52d9\u6240 \u51fa\u7248\u5e74\u6708\u65e5 \u5927\u6b632hoto image [See the original text] National Diet Library Digital Collection Takase Shrine Magazine Publisher Takase Shrine Office Date Taisho 2 https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/943445<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/943445<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11110\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-8-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-8-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-8-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-8.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><b>\u300e\u9ad8\u702c\u795e\u793e\u8a8c\u300fDescription of &#8220;corporation&#8221; in &#8220;Takase Shrine Magazine&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u300c\u8d8a\u4e2d\u56fd\u4e00\u4e4b\u5bae\u300d&#8221;Etsu Chugoku Ichinomiya&#8221; is claimed by several companies \u30fbImizu Shrine (Nikami) , Kita Shrine , Oyama Shrine (Tateyama Gongen) , Takase Shrine (Our company)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5c04\u6c34\u795e\u793e(\u4e8c\u4e0a\u795e)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u6c17\u591a\u795e\u793e<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u96c4\u5c71\u795e\u793e(\u7acb\u5c71\u6a29\u73fe)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u9ad8\u702c\u795e\u793e\uff08\u5f53\u793e\uff09<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Have been fighting each other for a long time<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is a long sentence, but it is described in &#8220;5.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Please read if you are interested.<\/span><\/p>\n<p><b>\u3010\u539f\u6587\u53c2\u7167\u3011<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 <\/span><span style=\"font-weight: 400;\">\u9ad8\u702c\u795e\u793e\u8a8c \u51fa\u7248\u8005 \u9ad8\u702c\u795e\u793e\u793e\u52d9\u6240 \u51fa\u7248\u5e74\u6708\u65e5 \u5927\u6b632[See the original text] National Diet Library Digital Collection Takase Shrine Magazine Publisher Takase Shrine Office Date Taisho 2 https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/943445<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/943445<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11112\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-9-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-9-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-9-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-9.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11114\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-10-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-10-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-10-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-10.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11116\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-11-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-11-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-11-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-11.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11118\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-12-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-12-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-12-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-12.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11120\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-13-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-13-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-13-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-13.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11122\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-14-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-14-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-14-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-14.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11124\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-15-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-15-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-15-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-15.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11126\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-16-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-16-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-16-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-image-16.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/><\/p>\n<p><b>It is revered as the Ichinomiya of China, and the deity god enshrines the power of the great kingdom (Taiki Takamei). There is also the Takase ruins, which is said to have been used as a place of residence for our company.<\/b><\/p>\n<p><b>\u9ad8\u702c\u795e\u793e\uff08takase shrine\uff09&#8221;Hai&#8221; at Takase shrine (90 degree bow)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11128\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Takase Shrine is prestigious as Ichinomiya in&#8221;\u8d8a\u4e2d\u56fd&#8221; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.<\/p>\n","protected":false},"author":1,"featured_media":11130,"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-11143","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=\"Takase Shrine is prestigious as Ichinomiya in&quot;\u8d8a\u4e2d\u56fd&quot; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.\" \/>\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\/takase-shrine\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Takase Shrine (Takase, Nanto City) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Takase Shrine is prestigious as Ichinomiya in&quot;\u8d8a\u4e2d\u56fd&quot; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/takase-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-06-25T03:00:49+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-06-25T14:53:39+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Takase Shrine (Takase, Nanto City) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Takase Shrine is prestigious as Ichinomiya in&quot;\u8d8a\u4e2d\u56fd&quot; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.\" \/>\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\\\/takase-shrine\\\/#blogposting\",\"name\":\"Takase Shrine (Takase, Nanto City) - Shrine-heritager\",\"headline\":\"Takase Shrine (Takase, Nanto City)\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/s-1-23.jpg\",\"width\":1024,\"height\":768},\"datePublished\":\"2020-06-25T12:00:49+09:00\",\"dateModified\":\"2020-06-25T23:53:39+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#listItem\",\"name\":\"Takase Shrine (Takase, Nanto City)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#listItem\",\"position\":3,\"name\":\"Takase Shrine (Takase, Nanto City)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\",\"name\":\"Shrine-heritager Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage \\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/s-\\u30bf\\u30a4\\u30c8\\u30eb\\u306a\\u3057.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/\",\"name\":\"Takase Shrine (Takase, Nanto City) - Shrine-heritager\",\"description\":\"Takase Shrine is prestigious as Ichinomiya in\\\"\\u8d8a\\u4e2d\\u56fd\\\" , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/s-1-23.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#mainImage\",\"width\":1024,\"height\":768},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/takase-shrine\\\/#mainImage\"},\"datePublished\":\"2020-06-25T12:00:49+09:00\",\"dateModified\":\"2020-06-25T23:53:39+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":"Takase Shrine (Takase, Nanto City) - Shrine-heritager","description":"Takase Shrine is prestigious as Ichinomiya in\"\u8d8a\u4e2d\u56fd\" , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.","canonical_url":"https:\/\/shrineheritager.com\/en\/takase-shrine\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#blogposting","name":"Takase Shrine (Takase, Nanto City) - Shrine-heritager","headline":"Takase Shrine (Takase, Nanto City)","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-23.jpg","width":1024,"height":768},"datePublished":"2020-06-25T12:00:49+09:00","dateModified":"2020-06-25T23:53:39+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#listItem","name":"Takase Shrine (Takase, Nanto City)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#listItem","position":3,"name":"Takase Shrine (Takase, Nanto City)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}}]},{"@type":"Organization","@id":"https:\/\/shrineheritager.com\/en\/#organization","name":"Shrine-heritager Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","url":"https:\/\/shrineheritager.com\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2024\/06\/s-\u30bf\u30a4\u30c8\u30eb\u306a\u3057.jpg","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/takase-shrine\/","name":"Takase Shrine (Takase, Nanto City) - Shrine-heritager","description":"Takase Shrine is prestigious as Ichinomiya in\"\u8d8a\u4e2d\u56fd\" , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-23.jpg","@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#mainImage","width":1024,"height":768},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/takase-shrine\/#mainImage"},"datePublished":"2020-06-25T12:00:49+09:00","dateModified":"2020-06-25T23:53:39+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":"Takase Shrine (Takase, Nanto City) - Shrine-heritager","og:description":"Takase Shrine is prestigious as Ichinomiya in&quot;\u8d8a\u4e2d\u56fd&quot; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew.","og:url":"https:\/\/shrineheritager.com\/en\/takase-shrine\/","article:published_time":"2020-06-25T03:00:49+00:00","article:modified_time":"2020-06-25T14:53:39+00:00","twitter:card":"summary_large_image","twitter:title":"Takase Shrine (Takase, Nanto City) - Shrine-heritager","twitter:description":"Takase Shrine is prestigious as Ichinomiya in&quot;\u8d8a\u4e2d\u56fd&quot; , and the deity of the shrine enshrines (main power of the great power). There is also the Takase ruins, which is said to be the site of our company, and it is presumed that it is a sacred place during the Yayoi period when the Agricultural culture grew."},"aioseo_meta_data":{"post_id":"11143","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 10:19:56","updated":"2025-07-01 07:47:14","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTakase Shrine (Takase, Nanto City)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/"},{"label":"Takase Shrine (Takase, Nanto City)","link":"https:\/\/shrineheritager.com\/en\/takase-shrine\/"}],"views":667,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11143","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=11143"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11143\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/11130"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=11143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=11143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=11143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}