    <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":13471,"date":"2020-07-20T11:24:23","date_gmt":"2020-07-20T02:24:23","guid":{"rendered":"https:\/\/shrineheritager.com\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/"},"modified":"2020-07-20T13:38:19","modified_gmt":"2020-07-20T04:38:19","slug":"%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/","title":{"rendered":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09"},"content":{"rendered":"<p><strong>For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan. The building was built by &#8220;shogun Tokugawa (\u5fb3\u5ddd\u5c06\u8ecd) &#8220;.It is gorgeous.<\/strong><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11894\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-1-1-436x600.jpg\" alt=\"\" width=\"436\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-1-1-436x600.jpg 436w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-1-1.jpg 744w\" sizes=\"(max-width: 436px) 100vw, 436px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11896\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-1-379x600.jpg\" alt=\"\" width=\"379\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-1-379x600.jpg 379w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-1.jpg 647w\" sizes=\"(max-width: 379px) 100vw, 379px\" \/><\/p>\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><\/h3>\n<p> <b> <\/b><span style=\"font-size: 130%;\"><b>\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09<br \/>\n<\/b><\/span><strong> \uff08\u3044\u3061\u306e\u307f\u3084 \u306c\u304d\u3055\u304d\u3058\u3093\u3058\u3083\uff09<\/strong><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<h3><b> <\/b><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Ichinomiya, Tomioka City, Gunma Prefecture, Japan<\/span><\/p>\n<h3><b>[\u5730 \u56f3 (Google Map)]<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E4%B8%8A%E5%B7%9E%E4%B8%80%E3%83%8E%E5%AE%AE\/%E3%80%92370-2452+%E7%BE%A4%E9%A6%AC%E7%9C%8C%E5%AF%8C%E5%B2%A1%E5%B8%82%E4%B8%80%E3%83%8E%E5%AE%AE%EF%BC%91%EF%BC%95%EF%BC%93%EF%BC%95+%E8%B2%AB%E5%89%8D%E7%A5%9E%E7%A4%BE\/@36.253456,138.8595,18z\/data=!4m19!4m18!1m10!1m1!1s0x601e9ab97292d347\" data-lkc-id=\"151\" 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\">\u4e0a\u5dde\u4e00\u30ce\u5bae\u99c5 to \u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E4%25B8%258A%25E5%25B7%259E%25E4%25B8%2580%25E3%2583%258E%25E5%25AE%25AE%2F%25E3%2580%2592370-2452%2B%25E7%25BE%25A4%25E9%25A6%25AC%25E7%259C%258C%25E5%25AF%258C%25E5%25B2%25A1%25E5%25B8%2582%25E4%25B8%2580%25E3%2583%258E%25E5%25AE%25AE%25EF%25BC%2591%25EF%25BC%2595%25EF%25BC%2593%25EF%25BC%2595%2B%25E8%25B2%25AB%25E5%2589%258D%25E7%25A5%259E%25E7%25A4%25BE%2F%4036.253456%2C138.8595%2C18z%2Fdata%3D%214m19%214m18%211m10%211m1%211s0x601e9ab97292d347?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u4e0a\u5dde\u4e00\u30ce\u5bae\u99c5 to \u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E4%B8%8A%E5%B7%9E%E4%B8%80%E3%83%8E%E5%AE%AE\/%E3%80%92370-2452+%E7%BE%A4%E9%A6%AC%E7%9C%8C%E5%AF%8C%E5%B2%A1%E5%B8%82%E4%B8%80%E3%83%8E%E5%AE%AE%EF%BC%91%EF%BC%95%EF%BC%93%EF%BC%95+%E8%B2%AB%E5%89%8D%E7%A5%9E%E7%A4%BE\/@36.253456,138.8595,18z\/data=!4m19!4m18!1m10!1m1!1s0x601e9ab97292d347\">https:\/\/www.google.com\/maps\/dir\/\u4e0a\u5dde\u4e00\u30ce\u5bae\/\u3012370-2452+\u7fa4\u99ac\u770c\u5bcc\u5ca1\u5e02\u4e00\u30ce\u5bae\uff11\uff15\uff13\uff15+\u8cab\u524d\u795e\u793e\/@36.253456,138.8595,18z\/data=!4m19!4m18!1m10!1m1!1s0x601e9ab97292d347<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>\u3010\u5fa1\u796d\u795e (God&#8217;s name to pray)\u3011<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b>\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u795e\uff08futsunushi no kami\uff09<br \/>\n<\/b><b>\u300a\u914d\u300b\u59eb\u5927\u795e\uff08hime no okami\uff09<\/b><\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<p><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 \u4e0a\u91ce\u56fd\u4e00\u4e4b\u5bae<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb \u5225\u8868\u795e\u793e<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11898\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">A historical note distributed by the shrine<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11900\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-5-825x600.jpg\" alt=\"\" width=\"825\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-5-825x600.jpg 825w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-5-768x559.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-5.jpg 1024w\" sizes=\"(max-width: 825px) 100vw, 825px\" \/><\/p>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">Ueno Kuniichinomiya, Former Prefectural Mint Nakasha, Ichinomiya Kanzen Shrine, Ichinomiya Jinza, Tomioka City, Gunma Prefecture.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As it has been sung in the Warabe song for a long time, Ichinomiya Kanzen Shrine is a shrine in Ueno province, and it is believed and loved by people in the distance as well as the prefecture as a god of good luck, security, agriculture, machinery, marriage, and good luck, and the god of safe production. The shrine is located in a scenic spot that faces the clear stream of the River, the railway line in the north, the rice in the south, the chichibu mountain range, and the mountain range of The Kanzu Arabun to the west, climbing the small hill, and passing through the large torii gate of Tanuri which looks up. It has a form that is unusual in the whole country of going down the approach of the north slope, and the shrine hall of the total lacquered colorful color is surrounded by a dense forest and is skillfully arranged, and it is a gorgeous thing like seeing toering palace of Nikko, It is called small sunlight.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><strong>\u5fa1\u796d\u795e \u7d4c\u6d25\u4e3b\u795e\u3001\u59eb\u5927\u795e<\/strong>\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Jedutsu is the son of the two gods of The Tsutsuo and The Tsutsu-onna, and it is a god of the founding which is good as The Master of The Buddha of Ikinasai, and is a god of the founding which consulted with the great power lord of Izumo province (Shimane Prefecture) with the order of the heavenly sun keisuke son came to our country, and dedicated the land for the heavenly grandchild.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Hime-Ogami is unknown to the god of the festival, and is probably considered to be the guardian deity of sericulture machine loave in the Ijomejo (the ancient name of the Ichinomiya region).<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>Venerable<\/strong>\u3000<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to the company biography, Mr. Isobe, the chief priest of The Usui District, visited the coast of the Southern Seaside, and established a residence in The Onamiya, The First Emperor&#8217;s Yasukan, on March 15, 1995.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is a dedication of the first time on March 15, 2010, emperor Tenmu Hakuho, and it is written again every time the Shinto position rises, and it is written in the collection of the collection of the duke of Rakujo in the imperial amount.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is known that there were a lot of offerings etc. especially worshipful by the samurai family and the local family in the samurai age, and there was a dedication article etc. from the okukata party, and the belief of the goddess was also strong in the rule of The Emperor Daigo and the Enki, and it was a rule of The Emperor Of Daigo, and the worship of Asano was enshrined as the Onenomiya of Ueno Province, and it came to the samurai era.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the 4th year of Meiji, he was established in the National Mint Nakasha.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1946, due to the abolition of the corporate system, it was called Ichinomiya Kanzen Shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">During this time, the shrine will be treated to the shrine in the event of a one-dynasty state emergency, such as the visit of the royal family, such as the worship of the royal family.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><strong>Shrine hall and precincts<\/strong>\u3000<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><strong>For the current shrine,<\/strong><br \/>\nIt was renovated at the order of Tokugawa 3rd Shogun Iemitsu, and was built in 12 years (about 330 years ago).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 11 years, the former \u797f, the fifth Shogun Tsunayoshi made a major repair, and not only was the total lacquered and splendid splendid structure of the early Edo period, but its structure was designated as an important cultural property (formerly a national treasure) because of its unique point, which is called the so-called pre-construction.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It can be said that the shrine, the tower gate, and the east-west corridor are the architecture of the same age, and it can be said that it is in the road that the carpenter of the Tokugawa family completes the world-class art building called Nikko Temple.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The <strong>precincts<\/strong> are<br \/>\nIn the forest of about 26,000 tsubo, there is a sacred tree of about 1200 years of trees in the back of the main shrine, and it is said that it is also known as Iina Fujitagi in the old days, Fujiwara Hidego (Saito Tahidego) is said to have planted several or so 36 annuals with a prayer for victory, and now only one sacred tree remains.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The west gate is the site of the Imperial Palace of the Shikinen Sengu Festival, and the gate in the east is the site of the monastery of the old Shinto shrine and the buddhist buddhist style era, and the torii gate in the unknown gate where there is the ruins of Kannon dodo, the three-story pagoda, the bell tower, etc. is said to have been in the place of the imperial torii gate far south in the old days.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><strong>Treasures<\/strong>\u3000<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There are more than 400 works, including mirrors and armor, as well as works that are sufficient to talk about ancient reverence beliefs such as sacred clothes, ancient documents, and kagura surfaces.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is prized in metalwork art as what can be seen through the mirror, a hundred dozen sides, Nara, Heian, Kamakura, Muromachi, Yoshino, Momoyama, and Edo periods,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The one specified in the inner heavy sentence is as follows.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This work was written about 2000 years ago.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">About 360 years ago, around 3 years ago, the nanny dedication of Obata Takechiyo, Umezaku pattern copper mirror,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">About 760 years ago, in the Kamakura period, Taketora-patterned copper mirror,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">About 500 years ago, the Muromachi period. God&#8217;s clothing, more than 60 remaining, new dedication every Sengu since Genwa 9 years.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u203bSee from &#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Main Office]<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-11902\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-4.jpg\" alt=\"\" width=\"1024\" height=\"575\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-4.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-4-768x431.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u672c\u6bbf\u5411\u304b\u3063\u3066\u5de6\u8107\u306b\u93ae\u5ea7<br \/>\n<\/span><b>\u30fb\u629c\u927e\u82e5\u5fa1\u5b50\u795e\u793e\uff08nukihokowakamiko shrine\uff09<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u547d\u5fa1\u5b50<\/b><b><br \/>\n<\/b><b> \u203b<\/b><span style=\"font-weight: 400;\">\u5143\u306f\u4e00\u30ce\u5bae\u5b57\u82e5\u5bae\u306b\u93ae\u5ea7 \u660e\u6cbb38\u5e74\u306b\u73fe\u5728\u5730\u306b\u9077\u5ea7<\/span><b><br \/>\n<\/b><span style=\"font-weight: 400;\">The 27th Generation of Emperor Ankan (531-535) was founded.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11904\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\"><br \/>\n In the middle of<\/span>the stone steps down from the main gate to the tower gate, <b>tsukikan Shrine<\/b> <span style=\"font-weight: 400;\">(headquarters before Kan&#8217;ei 12 years old is used as the shrine hall)<br \/>\n  <\/span> At the time of The God and Buddha Xiai, it is a moon reading shrine<span style=\"font-weight: 400;\"> worshipping the moon night viewing life in the Meiji period at the time of The God and Buddha Xiai.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> <\/span><b>\u300a\u4e3b\u300b\u6708\u591c\u898b\u547d<\/b><b><br \/>\n<\/b><b>\u300a\u5408\u300b\u5fa1\u5dbd\u4e4b\u795e\u30fb\u5927\u96f7\u795e\u30fb\u5927\u65e5\u5b41\ue081\u547d\u30fb\u8c4a\u5b87\u6c17\u6bd8\u58f2\u795e\u30fb\u5927\u7a74\u725f\u9045\u795e<\/b><b><br \/>\n<\/b><b>\u516b\u8862\u6bd4\u53e4\u795e\u30fb\u5efa\u5fa1\u540d\u65b9\u795e\u30fb\u516b\u5742\u5200\u58f2\u547d\u30fb\u83c5\u539f\u9053\u771f\u516c<\/b><b><br \/>\n<\/b><b>\u733f\u7530\u6bd8\u53e4\u795e\u30fb\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u795e\u30fb\u5927\u5bae\u80fd\u58f2\u547d\u30fb\u54c1\u9640\u548c\u6c17\u547d<\/b><b><br \/>\n<\/b><b>\u5c11\u540d\u6bd8\u53e4\u90a3\u795e\u30fb\u8fd1\u6238\u795e<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u203b\u660e\u6cbb41\u5e74 \u793e\u4e45\u53f8\u795e\u793e\uff08\u79cb\u7551\u7435\u7436\u6fa4\uff09\u30fb\u96f7\u96fb\u795e\u793e\uff08\u79cb\u7551\u4e8c\u30c4\u77f3\uff09\u30fb\u6e6f\u524d\u795e\u793e\uff08\u79cb\u7551\u88cf\u6839\uff09\u30fb\u8fd1\u6238\u795e\u793e\uff08\u5bcc\u5ca1\u5e02\u91ce\u4e0a\uff09\u306e\u8fd1\u57284\u793e\u3092\u5408\u7940<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11906\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u4eee\u6bbf\u6577\u5730\u306b\u96a3\u63a5\u306b\u93ae\u5ea7<br \/>\n<\/span><b>\u30fb\u5185\u5bae<\/b><span style=\"font-weight: 400;\">\uff08\u5bdb\u6c3812\u5e74 \u73fe\u5728\u5730\u306b\u9077\u5bae\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u300a\u4e3b\u300b\u5929\u7167\u7687\u5927\u795e<\/b><\/p>\n<p><b>\u30fb\u5916\u5bae<\/b><span style=\"font-weight: 400;\">\uff08\u5bdb\u6c3812\u5e74 \u73fe\u5728\u5730\u306b\u9077\u5bae\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> <\/span><b>\u300a\u4e3b\u300b\u8c4a\u53d7\u5927\u795e<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11908\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u65e5\u679d\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5927\u5df1\u8cb4\u547d\u30fb\u5927\u5c71\u548b\u547d<\/b><b><br \/>\n<\/b><b>\u300a\u5408\u300b\u5efa\u5fa1\u540d\u65b9\u547d\u30fb\u516b\u5742\u5200\u58f2\u547d\u30fb\u8c4a\u53d7\u59eb\u547d\u30fb\u706b\u7523\u970a\u547d\u30fb\u83c5\u539f\u9053\u771f\u516c<\/b><b><br \/>\n<\/b><b>\u7a32\u5009\u9b42\u547d\u30fb\u6728\u82b1\u54b2\u8036\u59eb\u547d\u30fb\u4f0a\u90aa\u90a3\u5c90\u547d\u30fb\u4f0a\u90aa\u90a3\u7f8e\u547d\u30fb\u5927\u7269\u4e3b\u547d<\/b><b><br \/>\n<\/b><b>\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u547d\u30fb\u6ce2\u8fe9\u591c\u9808\u6bd8\u58f2\u547d\u30fb\u5927\u5c71\u6d25\u898b\u547d\u30fb\u5927\u65e5\u5b41\ue081\u547d<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11910\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11914\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u65e5\u679d\u795e\u793e\u30fb\u5916\u5bae\u30fb\u5185\u5bae\u306f\u4e26\u3093\u3067\u93ae\u5ea7\u3057\u307e\u3059<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11912\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u4e8c\u5341\u4e8c\u793e<br \/>\n<\/b><span style=\"font-weight: 400;\"> \u793e\u9818\u5185\u306b\u7940\u3089\u308c\u3066\u3044\u305f\u5404\u793e\u3092 \u5bdb\u6c3812\u5e74\u306e\u9020\u55b6\u6642\u306b\u4e00\u68df\u306b\u307e\u3068\u3081\u305f\u3068\u4f1d\u308f\u308a\u307e\u3059<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11916\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u516b\u5742\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u7d20\u76de\u55da\u547d\uff08susanowo no mikoto\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">7\u670817\u65e5\u306b\u304a\u8a63\u308a\u306e\u969b\u306b\u306f \u7dcf\u9580\u306b \u672b\u793e \u516b\u5742\u795e\u793e\u796d\u5fa1\u65c5\u6240 \u304c\u658e\u884c\u3055\u308c\u3066\u3044\u307e\u3057\u305f<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11918\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11920\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11922\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(Preliminary knowledge of this shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\">\u300fThe two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide. <\/span><\/p>\n<h3><span style=\"color: #0000ff;\"><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\uff08engishiki jimmeicho\uff09The shrine record was completed in December 927 AD.<\/b><\/span><\/h3>\n<p><b>[\u65e7 \u884c\u653f\u533a\u5206]\uff08Old administrative district\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(God&#8217;s seating number)<\/span> <b><span style=\"font-size: 120%; color: #0000ff;\">Higashiyamado 382 seats&#8230; Large 42 (including monthly Shinjo 5) and small 340<\/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: 120%; color: #0000ff;\">\u4e0a\u91ce\u56fd 12\u5ea7\uff08\u59273\u5ea7\u30fb\u5c0f9\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><b><span style=\"font-size: 120%; color: #0000ff;\">\u7518\u697d\u90e1 2\u5ea7\uff08\u59271\u5ea7\u30fb\u5c0f1\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u540d\u795e\u5927 \u5927 \u5c0f]Ceremony Meishin Taisha <span style=\"font-size: 120%; color: #0000ff;\">\u5f0f\u5185 \u540d\u795e\u5927\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"color: #0000ff; font-size: 120%;\">\u8cab\u524d\u795e\u793e\uff08\u540d\u795e\u5927\uff09<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"color: #0000ff;\">\uff08\u306c\u304d\u306e\u3055\u304d\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 120%; color: #0000ff;\">\uff08nukino sakino kamino yashiro\uff09 <\/span><\/b><\/p>\n<p><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000004146&amp;ID=M2014101719562090086&amp;TYPE=&amp;NO=<\/span> <span style=\"font-weight: 400;\">Image Use<br \/>\n <\/span> <span style=\"font-weight: 400;\">National Diet Library Digital Collection Enki-shiki Publication (Baba) [Former Kurashi] Autumn Leaves Yama Bunko<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11925\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-3-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-3-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-3-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-3.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>About &#8220;The shrine of the descent visit&#8221; which is rare in the whole country of Kanzen Shrine<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">It&#8217;s a shrine that goes up, flattens, and now goes down, a shrine that is rare in japan.<\/span><\/p>\n<p><b>Approach to the approach<\/b><\/p>\n<p><span style=\"font-weight: 400;\">From Omotesando to Otorii, Omotesando goes up the stone steps.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11927\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Flat approach<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is at the same height from the large torii gate to the main gate, and the flat Omotesando continues like an arc.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11929\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-2-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-2-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-2-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-2-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11931\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>The approach to the descent<\/b><\/p>\n<p><span style=\"font-weight: 400;\">From the main gate to the tower gate and the shrine hall, Omotesando goes down the stone steps.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11933\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h4><b>More about Setsushi, Suesha and Maenomiya<\/b><\/h4>\n<h5><b>Bordering Setsha<br \/>\n <\/b><b>Arafune Shrine (arafune shrine) &#8220;Lord&#8221; Jetsu Lord Life<\/b><\/h5>\n<p><span style=\"font-weight: 400;\">As the origin of the god of the mountain, there is &#8220;Shintoshu&#8221; with Sasaokayama (Arafuneyama)<\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>Please see the article of Arafune Shrine which is said to be the outer setsha of Kanzen Shrine.<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b>\u30fb\u7a32\u542b\u795e\u793e\uff08inafukumi shrine\uff09\u300a\u4e3b\u300b\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u547d<\/b><\/h5>\n<p><span style=\"font-weight: 400;\">Please see the photograph that &#8220;Raijin small window&#8221; in the main hall of the head office is facing Mt. Ina, and look at it (please enlarge it and see the small window of the second floor part of the center of the main hall)<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11935\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h5><b>\u5883\u5916\u672b\u793e<\/b><b>\u30fb\u5c0f\u8239\u795e\u793e\uff08kobune shrine\uff09\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u547d<\/b><\/h5>\n<p><b> <\/b> <span style=\"font-weight: 400;\">It is said that it is the head office&#8217;s exodus, and it is said that it is a seat further to the north in old days.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;The Origin Book of the Edo Period&#8221; enshrines one of the two boats that Ichinomiya Daimigami rode from Tengu<\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>Please see the article of Ofune Shrine which is said to be the exorcism of Kanzen Shrine.<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b>\u8cab\u524d\u795e\u793e\u306e\u524d\u5bae\uff08\u65e7\u93ae\u5ea7\u5730\uff09<br \/>\n<\/b><b>\u30fb\u54b2\u524d\u795e\u793e\uff08sakisaki shrine\uff09\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u547d \u30fb\u5927\u5df1\u8cb4\u547d \u30fb\u4fdd\u98df\u547d<\/b><\/h5>\n<p><span style=\"font-weight: 400;\"> <\/span> <span style=\"font-weight: 400;\">According to the company biography, three pillars of &#8220;Lightning Ashiseki&#8221; are now in the first year of Emperor Ankan (534) that it was the land of the present-day Sakimae Shrine that was camped when he went to Arafuneyama on the border of Ueno and Shinano provinces in order to conquer the kenshin mekata life.  , in the first year of Hakuho (650), when Asabe Asaomi was built in<br \/>\n<\/span> the Imperial Court, the main life of Keitsu was <span style=\"font-weight: 400;\">transferred to Rengaoka Iris Valley in Kanraku-gun by a oracle, and<\/span> it became the seat of Ueno Kuni Ichinomiya <b>Kanukimae Shrine.<\/b> <span style=\"font-weight: 400;\">\u3068\u306a\u3063\u305f<\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>Please see the article of Sakimae Shrine which is regarded as the maenomiya (former jinzachi) of Kanzen Shrine.<\/b><\/span><\/p>\n<p>&nbsp;<\/p>\n<h2><b> <\/b><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the state when I visited this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Get off at Kamishu Ichinomiya Station and walk 15 minutes<br \/>\n <\/span> <span style=\"font-weight: 400;\">Turn right at Prefectural Road No. 198 and go up the approach to the square with a parking lot.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11937\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Arrived at Ichinomiya Kanzen Shrine (ichinomiya yukisaki shrine)<\/b><\/p>\n<p>Go <span style=\"font-weight: 400;\">up the stone steps, bow and pass through the large torii gate<br \/>\n <\/span> <span style=\"font-weight: 400;\">From the large torii gate, a flat approach leads to the main gate in an arc.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11939\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In front of the main gate, keio 2nd year (1866) donation (1544 local sericulture farmers, silk merchants of Kamishu, Edo, and Yokohama) A splendid 395cm high &#8220;Karado lantern&#8221; was built seven years later, and the Tomioka Paper Factory opened seven years later.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11941\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Beyond that, a unique Komainu sits.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11943\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11945\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a history guide board, too, and it reads and it indulges.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11951\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you bow and pass through the main gate, you&#8217;ll see a tower gate far below, not in front of you.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11953\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11955\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The stone steps of the steep descent continue, and it is surprised at the descent approach.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11957\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the way down the approach to the stone steps, on the left is a temporary hall site (the ceremony year Sengu is held every 12 years at Kanzen Shrine, and a temporary hall is built on the temporary hall site), and the shrine sits later.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11959\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">If you go down the stone steps further, you will find &#8220;Saikan&#8221; on your right.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11961\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine on the left to face you.<\/span><\/p>\n<p><b>\u30fb\u6708\u8aad\u795e\u793e<\/b><span style=\"font-weight: 400;\">\uff08\u5bdb\u6c3812\u5e74\u4ee5\u524d\u306e\u672c\u793e \u65e7\u62dd\u6bbf\u3092\u793e\u6bbf\u3068\u3057\u3066\u3044\u307e\u3059\uff09<br \/>\n<\/span><span style=\"font-weight: 400;\"> <\/span><b>\u300a\u4e3b\u300b\u6708\u591c\u898b\u547d<\/b><b><br \/>\n<\/b><b>\u300a\u5408\u300b\u5fa1\u5dbd\u4e4b\u795e\u30fb\u5927\u96f7\u795e\u30fb\u5927\u65e5\u5b41\ue081\u547d\u30fb\u8c4a\u5b87\u6c17\u6bd8\u58f2\u795e\u30fb\u5927\u7a74\u725f\u9045\u795e<\/b><b><br \/>\n<\/b><b>\u516b\u8862\u6bd4\u53e4\u795e\u30fb\u5efa\u5fa1\u540d\u65b9\u795e\u30fb\u516b\u5742\u5200\u58f2\u547d\u30fb\u83c5\u539f\u9053\u771f\u516c<\/b><b><br \/>\n<\/b><b>\u733f\u7530\u6bd8\u53e4\u795e\u30fb\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u795e\u30fb\u5927\u5bae\u80fd\u58f2\u547d\u30fb\u54c1\u9640\u548c\u6c17\u547d<\/b><b><br \/>\n<\/b><b>\u5c11\u540d\u6bd8\u53e4\u90a3\u795e\u30fb\u8fd1\u6238\u795e<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11963\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s a tower gate under the stone steps, and there&#8217;s a temizusha on the left.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11965\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11967\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s a coin box at the gate, and you&#8217;ll be here.<\/span><\/p>\n<p><b>Give me a prayer.<br \/>\n<\/b><b>When you reach the god of worship, where you worship God&#8217;s power, pray with your hands together.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11969\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It surrounds the sanctuary with a tower gate and a corridor, but the door is liberated and it goes to the shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11971\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The shrine is very splendid, but the founders are the same, and the main hall, worship hall, tower gate, and corridor are built by Tokugawa Iemitsu, the 3rd Shogun (1635).<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11973\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Genroku 11 (1698) It is said that the 5th Shogun Tsunayoshi&#8217;s large-scale repair was painted with colorful lacquer and it became a splendid construction of the present day.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11975\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The main hall, worship hall, tower gate, and corridor are all designated as important cultural properties of the country<br \/>\n <\/span> <span style=\"font-weight: 400;\">many of the giraffes are drawn.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11977\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11979\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The main hall&#8217;s architectural style is a unique single-story two-story building called Kanzenzo.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The interior of the building is on the second floor, and the upper part is equipped with a Kamiza.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It can be seen from the outside, but &#8220;Raijin small window&#8221; (the second floor part in the center of the front of the main hall) is provided toward the direction of Mt. Ina., the front of the main hall.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Look up at the shrine from left and right.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11981\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11983\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11985\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11987\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I can&#8217;t get close to the outside of the wall on the left towards the main shrine, but there is a shrine in the precincts.<\/span><\/p>\n<p><b>\u30fb\u629c\u927e\u82e5\u5fa1\u5b50\u795e\u793e\uff08nukihokowakamiko shrine\uff09<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u547d\u5fa1\u5b50<\/b><b><br \/>\n<\/b><b> \u203b<\/b><span style=\"font-weight: 400;\">\u5143\u306f\u4e00\u30ce\u5bae\u5b57\u82e5\u5bae\u306b\u93ae\u5ea7 \u660e\u6cbb38\u5e74\u306b\u73fe\u5728\u5730\u306b\u9077\u5ea7<\/span><b><br \/>\n<\/b><span style=\"font-weight: 400;\">The 27th Generation of Emperor Ankan (531-535) was founded.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11989\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11991\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you leave the one-end tower gate, there is a office and a god tag awarding place, and you will receive a seal etc.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11993\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When I went clockwise around the shrine hall,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Kagura-den&#8221; on the right<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11995\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Fujitasugi&#8221; in the back<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11997\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left is &#8220;Keizo Pass&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11999\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12001\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Look up at the main shrine from behind.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12003\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-52-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-52-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-52-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-52.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We&#8217;re going back in front of the tower gate, passing in front of the well of the temizusha.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12005\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-53-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-53-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-53-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-53.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the way back, it will be a stone step up to the main gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12007\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-54-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-54-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-54-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-54.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the position where the lantern stands in the middle of the stone steps<br \/>\n <\/span> <span style=\"font-weight: 400;\">Temporary Hall site (the ceremony year Sengu is held every 12 years at Kanzen Shrine, and a temporary hall is built on the temporary hall site), so the shrine sits down, so it is a pilgrimage.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12009\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-55-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-55-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-55-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-55.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It is a arrangement map of the precincts of the temporary hall site.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12011\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-56-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-56-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-56-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-56.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Sitting adjacent to the temporary hall site<\/span><\/p>\n<p><b>\u30fb\u5185\u5bae<\/b><span style=\"font-weight: 400;\">\uff08\u5bdb\u6c3812\u5e74 \u73fe\u5728\u5730\u306b\u9077\u5bae\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u300a\u4e3b\u300b\u5929\u7167\u7687\u5927\u795e<\/b><\/p>\n<p><b>\u30fb\u5916\u5bae<\/b><span style=\"font-weight: 400;\">\uff08\u5bdb\u6c3812\u5e74 \u73fe\u5728\u5730\u306b\u9077\u5bae\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> <\/span><b>\u300a\u4e3b\u300b\u8c4a\u53d7\u5927\u795e<\/b><\/p>\n<p><b>\u30fb\u65e5\u679d\u795e\u793e<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5927\u5df1\u8cb4\u547d\u30fb\u5927\u5c71\u548b\u547d<\/b><b><br \/>\n<\/b><b>\u300a\u5408\u300b\u5efa\u5fa1\u540d\u65b9\u547d\u30fb\u516b\u5742\u5200\u58f2\u547d\u30fb\u8c4a\u53d7\u59eb\u547d\u30fb\u706b\u7523\u970a\u547d\u30fb\u83c5\u539f\u9053\u771f\u516c<\/b><b><br \/>\n<\/b><b>\u7a32\u5009\u9b42\u547d\u30fb\u6728\u82b1\u54b2\u8036\u59eb\u547d\u30fb\u4f0a\u90aa\u90a3\u5c90\u547d\u30fb\u4f0a\u90aa\u90a3\u7f8e\u547d\u30fb\u5927\u7269\u4e3b\u547d<\/b><b><br \/>\n<\/b><b>\u5b87\u8fe6\u4e4b\u5fa1\u9b42\u547d\u30fb\u6ce2\u8fe9\u591c\u9808\u6bd8\u58f2\u547d\u30fb\u5927\u5c71\u6d25\u898b\u547d\u30fb\u5927\u65e5\u5b41\ue081\u547d<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12013\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-57-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-57-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-57-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-57.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u4e8c\u5341\u4e8c\u793e<br \/>\n<\/b><span style=\"font-weight: 400;\"> \u793e\u9818\u5185\u306b\u7940\u3089\u308c\u3066\u3044\u305f\u5404\u793e\u3092 \u5bdb\u6c3812\u5e74\u306e\u9020\u55b6\u6642\u306b\u4e00\u68df\u306b\u307e\u3068\u3081\u305f\u3068\u4f1d\u308f\u308a\u307e\u3059<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12015\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-58-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-58-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-58-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-58.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a &#8220;Stajii tree&#8221; of 1,000 years old, and it visits involuntarily.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12017\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-59-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-59-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-59-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-59.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;m leaving the precincts from the west gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12019\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-60-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-60-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-60-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-60.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s another gate.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is called akazunomon, and it is a gate and torii gate set up at the time of the imperial envoy&#8217;s visit.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12021\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-61-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-61-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-61-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-61.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Return to the front of the main gate and head to the Otorii Gate on the arcing approach.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12023\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-62-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-62-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-62-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-62.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the Otorii Gate,<\/span> <span style=\"font-weight: 400;\">you can see Mt. Inagi<\/span> in front of you and see the town of Ichinomiya.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12025\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-63-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-63-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-63-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-63.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<p><b>About the Sacred Floor in the History of the Six Kingdoms<\/b><\/p>\n<h3><b>Tradition written in &#8220;Tsuku Nihon Koku Kokuki&#8221;<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The 54th Emperor Ninmei&#8217;s reign (833-850) 18 years (869) Sadakan 11 years completed<\/span><\/p>\n<blockquote><p><b>\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\u300f\u627f\u548c6\u5e746\u6708\uff08839\uff09\u7532\u7533\u6761<\/b><span style=\"font-weight: 400;\">\u306b <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5949\u6388\u306b\u3064\u3044\u3066 \u4e0a\u91ce\u56fd\u306e<\/span><span style=\"font-weight: 400;\">\u300c\u62d4\u92d2\u795e\uff08<\/span><span style=\"font-weight: 400;\">\u8cab\u524d\u795e\u793e<\/span><span style=\"font-weight: 400;\">\uff09\u300d\u300c\u8d64\u57ce\u795e\uff08\u8d64\u57ce\u795e\u793e\uff09\u300d\u300c\u4f0a\u8cc0\u4fdd\u795e\uff08\u4f0a\u9999\u4fdd\u795e\u793e\uff09\u300d\u3068\u4e26\u3093\u3067\u7121\u4f4d\u304b\u3089\u5f93\u4e94\u4f4d\u4e0b\u3068\u3042\u308a\u307e\u3059 <\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;Continued Nihongoki&#8221; (869) Sadakan 11 years completion Winner: Fujiwara Ryobo \/ School revision: Tateno Spring Festival Kanmoto Hiromasa 2007 [former brewer] Ministry of the Interior<br \/>\n  <\/span>https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047680&amp;ID=&amp;TYPE=&amp;NO<span style=\"font-weight: 400;\">=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12027\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-1-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-1-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-1-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-1.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/><\/p>\n<h3><b>Tradition written in &#8220;Nihon sandai jitsoku&#8221;<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u5e73\u5b89\u6642\u4ee3\uff08\u5ef6\u559c\u5143\u5e74\uff08901\u5e74\uff09\u6210\u7acb\uff09\u306b\u7de8\u7e82\u3055\u308c\u305f\u6b74\u53f2\u66f8 \u516d\u56fd\u53f2\u306e\u7b2c\u516d\u7b2c56\u4ee3 \u6e05\u548c\u5929\u7687\u30fb\u7b2c57\u4ee3 \u967d\u6210\u5929\u7687\u30fb\u7b2c58\u4ee3 \u5149\u5b5d\u5929\u7687<br \/>\n<\/span><span style=\"font-weight: 400;\">3\u4ee3\u306e\u5929\u7687\u306e\u5fa1\u4ee3 \u5929\u5b892\u5e74\uff08858\uff098\u6708\uff5e\u4ec1\u548c3\u5e74\uff08887\uff098\u6708\u306e30\u5e74\u9593\u3092\u6271\u3046<\/span><\/p>\n<blockquote><p><b>\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u8c9e\u89b3\u5143\u5e74\u6b63\u670827\u65e5\u7532\u7533\u6761\uff08859\uff09\u306b \u4e0a\u91ce\u56fd<\/b><b>\u300c\u8cab\u524d\u795e\uff08\u8cab\u524d\u795e\u793e\uff09\u300d\u6b63\u4e94\u4f4d\u4e0b\u52f3\u516b\u7b49\u304b\u3089\u5f93\u56db\u4f4d\u4e0b\u52f3\u516b\u7b49 <\/b><span style=\"font-weight: 400;\">\u3068\u8a18\u3055\u308c\u307e\u3059<\/span><b> <\/b><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;Nippon Sandai Jitsuroku&#8221; Enki 1st year (901) Approved by: Fujiwara Tokihei \/ School Revision: Matsushita Mibayashi Publishing Book (Aba) Hirofumi 13 years 20 books [former kurashu] Autumn leaves mountain paperback<br \/>\n <\/span>https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047721&amp;ID=M2014093020345388640&amp;TYPE=&amp;NO<span style=\"font-weight: 400;\">=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12029\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-4-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-4-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-4-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-4.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<blockquote><p><b>\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u8c9e\u89b39\u5e746\u670820\u65e5\u4e01\u4ea5\u6761\uff08867\uff09\u306b <\/b><b><br \/>\n<\/b><b>\u4e0a\u91ce\u56fd \u5f93\u56db\u4f4d\u4e0b\u52f3\u516b\u7b49\u300c\u8cab\u524d\u795e\uff08\u8cab\u524d\u795e\u793e\uff09\u300d\u306b\u5f93\u56db\u4f4d\u4e0a\u52f3\u516b\u7b49<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f93\u4e94\u4f4d\u4e0a\u300c\u8d64\u57ce\u795e\uff08\u8d64\u57ce\u795e\u793e\uff09\u300d\u300c\u4f0a\u8cc0\u4fdd\u795e\uff08\u4f0a\u9999\u4fdd\u795e\u793e\uff09\u300d\u4e26\u6b63\u4e94\u4f4d\u4e0b<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f93\u4e94\u4f4d\u4e0b\u300c\u7532\u6ce2\u5bbf\u7962\u795e\uff08\u7532\u6ce2\u5bbf\u7962\u795e\u793e\uff09\u300d\u5f93\u4e94\u4f4d\u4e0a \u3068\u8a18\u3055\u308c\u307e\u3059<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference from the original text] National Archives Digital Archives [Japan Sandai Jitsuroku] source<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12031\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-2-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-2-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-2-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-2-2.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<blockquote><p><b>\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u8c9e\u89b318\u5e744\u670810\u65e5\u4e01\u5df3\u6761\uff08876\uff09\u306b<\/b><\/p>\n<p><b>\u4e0a\u91ce\u56fd \u5f93\u56db\u4f4d\u4e0a\u52f3\u516b\u7b49\u300c\u8cab\u524d\u795e\uff08\u8cab\u524d\u795e\u793e\uff09\u300d\u306b\u6b63\u56db\u4f4d\u4e0b<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u4e94\u4f4d\u4e0a\u300c\u4f0a\u8cc0\u4fdd\u795e\uff08\u4f0a\u9999\u4fdd\u795e\u793e\uff09\u300d\u5f93\u56db\u4f4d\u4e0b<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u4e94\u4f4d\u4e0b\u300c\u7532\u6ce2\u5bbf\u7962\u795e\uff08\u7532\u6ce2\u5bbf\u7962\u795e\u793e\uff09\u300d\u6b63\u4e94\u4f4d\u4e0a \u3068\u8a18\u3055\u308c\u307e\u3059<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference from the original text] National Archives Digital Archives [Japan Sandai Jitsuroku] source<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12033\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-3-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-3-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-3-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-3.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<blockquote><p><b>\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u5143\u61763\u5e74\u958f10\u67084\u65e5\u5e9a\u5bc5\u6761\uff08879\uff09\u306b<\/b><\/p>\n<p><b>\u4e0a\u91ce\u56fd \u6b63\u56db\u4f4d\u4e0b\u300c\u8cab\u524d\u795e\uff08\u8cab\u524d\u795e\u793e\uff09\u300d\u306b\u6b63\u56db\u4f4d\u4e0a\u52f3\u516b\u7b49<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f93\u4e94\u4f4d\u4e0b\u300c\u6ce2\u5df1\u66fd\u795e\uff08\u6ce2\u5df1\u66fd\u795e\u793e\uff09\u300d\u300c\u82e5\u4f0a\u8cc0\u4fdd\u795e\uff08\u82e5\u4f0a\u8cc0\u4fdd\u795e\u793e\uff09\u300d\u4e26\u5f93\u4e94\u4f4d\u4e0a \u3068\u8a18\u3055\u308c\u307e\u3059<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference from the original text] National Archives Digital Archives [Japan Sandai Jitsuroku] source<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12035\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-4-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-4-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-4-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-4.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<blockquote><p><b>\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u5143\u61764\u5e745\u670825\u65e5\u620a\u5bc5\u6761\uff08880\uff09\u306b<\/b><\/p>\n<p><b>\u4e0a\u91ce\u56fd \u6b63\u56db\u4f4d\u4e0a\u52f3\u516b\u7b49\u300c\u8cab\u524d\u795e\uff08\u8cab\u524d\u795e\u793e\uff09\u300d\u306b\u5f93\u4e09\u4f4d\u52f2\u4e03\u7b49<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f93\u56db\u4f4d\u4e0b\u300c\u8d64\u57ce\u77f3\u795e\u300d\u300c\u4f0a\u8cc0\u4fdd\u795e\uff08\u4f0a\u9999\u4fdd\u795e\u793e\uff09\u300d\u4e26\u5f93\u56db\u4f4d\u4e0a<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u4e94\u4f4d\u4e0b\u300c\u7532\u6ce2\u5bbf\u7962\u795e\uff08\u7532\u6ce2\u5bbf\u7962\u795e\u793e\uff09\u300d\u5f93\u56db\u4f4d\u4e0b<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u4e94\u4f4d\u4e0b\u300c\u5c0f\u795d\u795e\uff08\u5c0f\u795d\u795e\u793e\uff09\u300d\u300c\u6ce2\u5df1\u66fd\u795e\uff08\u6ce2\u5df1\u66fd\u795e\u793e\uff09\u300d\u4e26\u6b63\u4e94\u4f4d\u4e0a\u52f2\u5341\u4e8c\u7b49<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5f93\u4e94\u4f4d\u4e0a\u300c\u8cc0\u8302\u795e\uff08\u8cc0\u8302\u795e\u793e\uff09\u300d\u300c\u7f8e\u548c\u795e\uff08\u7f8e\u548c\u795e\u793e\uff09\u300d\u4e26\u6b63\u4e94\u4f4d\u4e0b\u52f2\u5341\u4e8c\u7b49<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6b63\u516d\u4f4d\u4e0a\u300c\u7a32\u88f9\u5730\u795e\uff08\u7a32\u88f9\u5730\u795e\u793e\uff09\u300d\u5f93\u4e94\u4f4d\u4e0b\u52f2\u5341\u4e8c\u7b49 \u3068\u8a18\u3055\u308c\u307e\u3059<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference from the original text] National Archives Digital Archives [Japan Sandai Jitsuroku] source<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12037\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-5-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-5-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-5-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-5.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<p><b>For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.<\/b><\/p>\n<p><b>\u8cab\u524d\u795e\u793e\uff08nukisaki shrine\uff09\u300c\u62dd (hai)\u300d(Bow down to 90 degrees)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11957\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.<\/p>\n","protected":false},"author":1,"featured_media":11892,"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-13471","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=\"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.\" \/>\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\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-07-20T02:24:23+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-07-20T04:38:19+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.\" \/>\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\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#blogposting\",\"name\":\"\\u4e00\\u4e4b\\u5bae \\u8cab\\u524d\\u795e\\u793e\\uff08ichinomiya nukisaki shrine\\uff09 - Shrine-heritager\",\"headline\":\"\\u4e00\\u4e4b\\u5bae \\u8cab\\u524d\\u795e\\u793e\\uff08ichinomiya nukisaki shrine\\uff09\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-4.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-07-20T11:24:23+09:00\",\"dateModified\":\"2020-07-20T13:38:19+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#listItem\",\"name\":\"\\u4e00\\u4e4b\\u5bae \\u8cab\\u524d\\u795e\\u793e\\uff08ichinomiya nukisaki shrine\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#listItem\",\"position\":3,\"name\":\"\\u4e00\\u4e4b\\u5bae \\u8cab\\u524d\\u795e\\u793e\\uff08ichinomiya nukisaki shrine\\uff09\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\",\"name\":\"Shrine-heritager Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage \\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/s-\\u30bf\\u30a4\\u30c8\\u30eb\\u306a\\u3057.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/\",\"name\":\"\\u4e00\\u4e4b\\u5bae \\u8cab\\u524d\\u795e\\u793e\\uff08ichinomiya nukisaki shrine\\uff09 - Shrine-heritager\",\"description\":\"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \\u201cdown road\\u201d that is very rare in Japan.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-4.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\\\/#mainImage\"},\"datePublished\":\"2020-07-20T11:24:23+09:00\",\"dateModified\":\"2020-07-20T13:38:19+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":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager","description":"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#blogposting","name":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager","headline":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-4.jpg","width":1024,"height":682},"datePublished":"2020-07-20T11:24:23+09:00","dateModified":"2020-07-20T13:38:19+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#listItem","name":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#listItem","position":3,"name":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}}]},{"@type":"Organization","@id":"https:\/\/shrineheritager.com\/en\/#organization","name":"Shrine-heritager Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","url":"https:\/\/shrineheritager.com\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2024\/06\/s-\u30bf\u30a4\u30c8\u30eb\u306a\u3057.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/","name":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager","description":"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-4.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/#mainImage"},"datePublished":"2020-07-20T11:24:23+09:00","dateModified":"2020-07-20T13:38:19+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":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager","og:description":"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan.","og:url":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/","article:published_time":"2020-07-20T02:24:23+00:00","article:modified_time":"2020-07-20T04:38:19+00:00","twitter:card":"summary_large_image","twitter:title":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09 - Shrine-heritager","twitter:description":"For worship, once go up the approach from the south side and go through the Otorii. A flat approach leads to the main gate, drawing an arc. Then, from there, there is a steep descending stone step, and the shrine is built right below. Up, flattening, and then down. Go to the shrine on a \u201cdown road\u201d that is very rare in Japan."},"aioseo_meta_data":{"post_id":"13471","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:50:37","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/"},{"label":"\u4e00\u4e4b\u5bae \u8cab\u524d\u795e\u793e\uff08ichinomiya nukisaki shrine\uff09","link":"https:\/\/shrineheritager.com\/en\/%e4%b8%80%e4%b9%8b%e5%ae%ae-%e8%b2%ab%e5%89%8d%e7%a5%9e%e7%a4%be%ef%bc%88ichinomiya-nukisaki-shrine%ef%bc%89\/"}],"views":1345,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13471","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=13471"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13471\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/11892"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=13471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=13471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=13471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}