    <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":10731,"date":"2020-01-18T16:36:31","date_gmt":"2020-01-18T07:36:31","guid":{"rendered":"https:\/\/shrineheritager.com\/hikawa-shrine\/"},"modified":"2020-06-24T21:52:30","modified_gmt":"2020-06-24T12:52:30","slug":"hikawa-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/","title":{"rendered":"Omiya Hikawa Shrine"},"content":{"rendered":"&#13;\n<p class=\"wp-block-paragraph\"><strong>Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &#8220;Omiya&#8221; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &#8220;Great Miyai&#8221; which has been enshrined in this place without being transferred for about 2,400 years.<\/strong><\/p>&#13;\n&#13;\n&#13;\n<h2 class=\"wp-block-heading\">Introduction (Introduction)<\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u3010Name of shrine\u3011 (Hrine name) <strong><span class=\"fz-24px\"><span class=\"fz-28px\">Hikawa Shrine (Hikawa Shrine)<\/span><\/span><\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u3010How to read\u3011 (How to read) <strong>Hikawajija<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">[Common name] (Common name) Mr. Ohikawa, ohikawasama<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u3010Jinzachi\u3011 (location) 1-407 Takahana-cho, Omiya-ku, Saitama City, Saitama Prefecture<br\/>\u3010Map\u3011 (Google Map)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E5%A4%A7%E5%AE%AE\/%E3%80%92330-0803+%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E9%AB%98%E9%BC%BB%E7%94%BA%EF%BC%91%E2%88%92%EF%BC%94%EF%BC%90%EF%BC%97+%E6%B0%B7%E5%B7%9D%E7%A5%9E%E7%A4%BE\/@35.9125762,139.6246634,16z\/data=!4m14!4m13!1m5!1m1!1s0x6018c143cc2c5285:0x280f665a32e5d413!2m2!1d139.6238548!2d35.9064485!1m5!1m1!1s0x6018c147ffcd80df:0x3e27069d9d126211!2m2!1d139.6297722!2d35.9167055!3e2\" data-lkc-id=\"116\" 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\">\u5927\u5bae\u99c5 to \u6c37\u5ddd\u795e\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E5%25A4%25A7%25E5%25AE%25AE%2F%25E3%2580%2592330-0803%2B%25E5%259F%25BC%25E7%258E%2589%25E7%259C%258C%25E3%2581%2595%25E3%2581%2584%25E3%2581%259F%25E3%2581%25BE%25E5%25B8%2582%25E5%25A4%25A7%25E5%25AE%25AE%25E5%258C%25BA%25E9%25AB%2598%25E9%25BC%25BB%25E7%2594%25BA%25EF%25BC%2591%25E2%2588%2592%25EF%25BC%2594%25EF%25BC%2590%25EF%25BC%2597%2B%25E6%25B0%25B7%25E5%25B7%259D%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.9125762%2C139.6246634%2C16z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x6018c143cc2c5285%3A0x280f665a32e5d413%212m2%211d139.6238548%212d35.9064485%211m5%211m1%211s0x6018c147ffcd80df%3A0x3e27069d9d126211%212m2%211d139.6297722%212d35.9167055%213e2?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u5927\u5bae\u99c5 to \u6c37\u5ddd\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E5%A4%A7%E5%AE%AE\/%E3%80%92330-0803+%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E9%AB%98%E9%BC%BB%E7%94%BA%EF%BC%91%E2%88%92%EF%BC%94%EF%BC%90%EF%BC%97+%E6%B0%B7%E5%B7%9D%E7%A5%9E%E7%A4%BE\/@35.9125762,139.6246634,16z\/data=!4m14!4m13!1m5!1m1!1s0x6018c143cc2c5285:0x280f665a32e5d413!2m2!1d139.6238548!2d35.9064485!1m5!1m1!1s0x6018c147ffcd80df:0x3e27069d9d126211!2m2!1d139.6297722!2d35.9167055!3e2\">https:\/\/www.google.com\/maps\/dir\/\u5927\u5bae\/\u3012330-0803+\u57fc\u7389\u770c\u3055\u3044\u305f\u307e\u5e02\u5927\u5bae\u533a\u9ad8\u9f3b\u753a\uff11\u2212\uff14\uff10\uff17+\u6c37\u5ddd\u795e\u793e\/@35.9125762,139.6246634,16z\/data=!4m14!4m13!1m5!1m1!1s0x6018c143cc2c5285:0x280f665a32e5d413!2m2!1d139.6238548!2d35.9064485!1m5!1m1!1s0x6018c147ffcd80df:0x3e27069d9d126211!2m2!1d139.6297722!2d35.9167055!3e2<\/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><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">(Completed in December 1927) The shrine record was completed in December 927 AD.<\/p>&#13;\n&#13;\n<h3><strong>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\u300c\u65e7\u56fd\u540d \u90e1\u3000\u30fb\u3000\u795e\u793e\u540d\u300d<\/strong><\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">[engishiki jimmeicho] &#8220;old region name shrine name&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>Musashikuni Adachi-gun Hikawa Shrine Meishin Taisha Ichiza<\/strong><br\/><strong>musashinokuni atachin hikawa no kaminoyashiro myoginaisha<\/strong><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010Festival God\u3011 (God&#8217;s name to pray)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>The Life of Susanoo (Susanomikoto) <br\/><\/strong> <strong>&#8220;Lord&#8221; Inada Himemei (inadahimenomikoto) <br\/><\/strong> <strong>&#8220;Lord&#8221; Takamei Ohmi (aomuchinomikoto) <br\/><\/strong> <strong>Kuraina Tamamei (ukanomitamanomikoto)<\/strong><\/p>&#13;\n<p><strong><\/strong><\/p><strong><\/strong><strong><\/strong>\r\n&#13;\n<h3 class=\"wp-block-heading\">[Gody] (God&#8217;s Great Power)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Happy birth prayer Healthy birth<br\/>Naming Find a good name<br\/>New Year&#8217;s visit Baby prays at shrine for the first time<br\/>Shichigosan Celebration 7 year old 5 year old 3 year old celebration<br\/>Admission prayer Tell God you want to go to the school you want<br\/>Coming-of-Age Festival Coming-of-age ceremony<br\/>Home safety Safe and stable home life<br\/>Shinto wedding Wedding in front of God<br\/>Prayer to ward off evil Prayer prayer at an age considered a lesson in life<br\/>Traffic safety prayer Pray for traffic safety<br\/>etc etc<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010Formal\u3011 (Rules of dignity)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Musashikuni ichinomiya<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Enki Shikinaisha Meishin Taisha (engishikinaisha myoginaissha)<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010Founding\u3011 (Beginning of History)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">According to the company&#8217;s book, from now on, 2400 years ago (2400 years ago)<br\/>It is said that the foundation of the 5th Emperor Takaaki on the day not in April 3rd year.<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010History\u3011 (history)<\/h3>&#13;\n&#13;\n<blockquote>&#13;\n<p class=\"wp-block-paragraph\">According to the company&#8217;s book, it was built in the 5th Emperor Takaaki&#8217;s 5th year ago, about 2,400 years ago.<\/p>&#13;\n<\/blockquote>&#13;\n<p class=\"wp-block-paragraph\">The 12th Emperor Jingyong&#8217;s Prince, The Prince of Japan, visited this shrine and prayed for The Toi Jinsada.<br\/>It is said that the 13th Emperor Seiku&#8217;s brother, Hige Himei (etamohinomikoto) of the Izumo people became Musashi Kokuzo by the order of the Imperial Court, worshiped Hikawa Shrine, and more and more said that our shrine&#8217;s divine power increased the shining style.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">About 1200 years ago, the 45th Emperor Seimu&#8217;s reign the system of the best shrine was established in each country, and it is called the shrine of Musashi province.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"> In the literature, the 60th Emperor Daigo ordered the compilation of the &#8220;Enki-shiki Shinmeisho (compiled in 1927)&#8221; and as Meishin Taisha (a shrine dedicated to the famous god that is said to be a great spiritual test since ancient times), it is written that it was deposited in the monthly Shinjo draft imperial mint, and it was entrusted to the temporary festival.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In addition, on October 28, 1868, the 122nd Emperor Meiji was enshrined in the Gyoyuki Family Festival, and was designated as a shrine of the Memorial Festival of the Japanese country, and in May 1868, he was lined up at the Kanmin Taisha Shrine.<br\/>In the annual festival every year, the imperial family&#8217;s envoys are sent to the shrine, and a solemn ceremony is held.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said that the shrine with the name of Hikawa Shrine is mainly in the land of Omiya, and the number of them is 280 companies in Saitama Prefecture and Tokyo.<br\/>It is said that this shows that the descendants of Musashi Kunizo, who were based in the land of Omiya, developed remarkably as a clan in politics (each festival).<\/p>&#13;\n<p>\u203bSee from &#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Main Office]<\/p>&#13;\n&#13;\n&#13;\n<h3 class=\"wp-block-heading\">[Precinct company] (Other Deities within the preciscants)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Setsha Monmonjin Shrine &#8220;Lord&#8221; Ashima Milk Life Tema Milk Life<br\/>Tianjin Shrine &#8220;Lord&#8221; Shohiko Meimei<br\/>Munakata Shrine &#8220;Main&#8221; Takiri Hisuri Life Ichisunjima Hieimei Tasunzu Hieimei<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Suesha Yamagion Shrine &#8220;Lord&#8221; Oyama Gyemei<br\/>Ishigami Shrine &#8220;Lord&#8221; Futo Gotamamei<br\/>Atago Shrine &#8220;Lord&#8221; Buddha&#8217;s Life<br\/>Rai Shrine &#8220;Lord&#8221; Dairaimei<br\/>Sumiyoshi Shrine &#8220;Main&#8221; Bottom Tsutsuo Mei Nakatsuo Mei Kamitsutsuo Life<br\/>Shinmei Shrine &#8220;Lord&#8221; Amaterasu Ogami<br\/>Tenman Shrine &#8220;Lord&#8221; Michizane Sugawara<br\/>Matsuo Shrine &#8220;Lord&#8221; Hatakemei Oyama<br\/>Mitake Shrine &#8220;Lord&#8221; Takamei Ohmi<br\/>Inari Shrine &#8220;Lord&#8221; Kuraina Soul Life<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010Preliminary knowledge of this shrine\u3011 (Preliminary Knowledge of This Shrine)<\/h2>&#13;\n&#13;\n<h3>\u300c\u5927\u5bae\u300d(\u57fc\u7389\u770c)\u306e\u5730\u540d\u306f \u300c\u5927\u3044\u306a\u308b\u5bae\u5c45\u300d\u3068\u6c37\u5ddd\u795e\u793e\u3092\u79f0\u3048\u305f\u3053\u3068\u306b\u7531\u6765\u3057\u3066\u3044\u307e\u3059<\/h3>&#13;\n<p class=\"wp-block-paragraph\">It is a sign of gratitude to the god of worship of the people who thrived here and set the foundation of today.<br\/>The environment around the shrine used to be a vast lake called &#8220;minuma&#8221; on the east side of the shrine, forming a rich soil, and there are ruins from before Yayoi, and it is thought that people&#8217;s lives have been enriched.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It seems that the image remained until the early Showa period, but in the Edo period, a large reservoir spanning about 39 kilometers around it was also developed (Minuma Tamei).<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Minuma is the meaning of a lake with sacred water that gives rich blessings in &#8220;Kaminuma&#8221; and &#8220;Onuma&#8221;.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Even now, the water that springs out from the &#8220;janoike&#8221; in the sacred area of the shrine grounds is poured abundantly so that it spreads to the kamiike pond in the precincts, and the pond in Omiya Park which was a former precinct is also transmitted to the remnant that was a minuma.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10852\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2461\u3007\u3007\u795e\u6c60-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2461\u3007\u3007\u795e\u6c60-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2461\u3007\u3007\u795e\u6c60-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2461\u3007\u3007\u795e\u6c60.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10854\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2782\u3007\u3007\u5927\u5bae\u516c\u5712\u306e\u6c60-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2782\u3007\u3007\u5927\u5bae\u516c\u5712\u306e\u6c60-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2782\u3007\u3007\u5927\u5bae\u516c\u5712\u306e\u6c60-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2782\u3007\u3007\u5927\u5bae\u516c\u5712\u306e\u6c60.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I sit here without being transferred from ancient times Hikawa Shrine&#8217;s zaza is in a position that protrudes high like a nose in the Omiya plateau as if standing on the banks of the minuma.<br\/>It is exciting just to imagine that the lakeside would have surrounded the sacred area of the hill where the shrine is located deep in the inlet of the quiet Minuma.<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">[Otaky Point] (Points Selected by Japan Otaku)<\/h3>&#13;\n&#13;\n<h4>\u3053\u306e\u6c37\u5ddd\u795e\u793e\u300c\u898b\u6cbc (minuma)\u300d\u306e\u5730\u306f\u3000\u7e04\u6587\u6642\u4ee3\u306e\u592a\u967d\u4fe1\u4ef0\u306e\u62e0\u70b9\u3067\u3082\u3042\u3063\u305f\u3088\u3046\u3067\u3000\u7e04\u6587\u306e\u4fe1\u4ef0\u3092\u300c\u8352\u811b\u5dfe\u795e \u30a2\u30e9\u30cf\u30d0\u30ad\u306e\u304b\u307f (arahabakinokami)\u300d\u3068\u7d50\u3073\u3064\u3051\u308b\u8aac\u304c\u3042\u308a\u307e\u3059<\/h4>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Currently, the main festival deity of the set shrine &#8220;monkyoakjin shrine&#8221; (monkyoakjin shrine) beside the main shrine in the precincts of the precincts is Ashima milk life (ashinazuchinomikoto) Tema milk life (tenazuchinomikoto) and Izumo system, but it seems to have been originally called &#8220;Arahabaki Shrine&#8221; This corresponds to the case where Arashin-jin is enshrined as &#8220;guest god&#8221; (gate guest god)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">About this company, &#8220;Edo Famous Places Zukai&#8221; Makinoshi (Tengennobe) is &#8220;Aranami-no-sha-no-sha (located beside the head office). It enshrines two gods of Tema milk and Ashima milk. In Musashi Kuni Fudoki, there is a place where &#8220;The Three Years of Miu-Hiko-Kashoku-ina&#8221;, says &#8220;Ihei niya this company&#8221;.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">&#8220;Shimeram koto&#8221; is not just a thing of this God!<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure>&#13;\n<div id=\"attachment_6213\" style=\"width: 1034px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-6213\" class=\"size-full wp-image-10856\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x3007;&#x3007;&#x5199;&#x771F;&#x2463;&#x3007;&#x3007;&#x9580;&#x5BA2;&#x4EBA;&#x795E;&#x793E;-2.jpg\" alt=\"\" width=\"1024\" height=\"576\"\/><p id=\"caption-attachment-6213\" class=\"wp-caption-text\">DSC_0058<\/p><\/div>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">As this guest god, the shrine that enshrines Arashin-jin is scattered here, not only Musashi but also Mikawa Izumo Iyo.<br\/>In Izumo, it is located in the precincts of Sata Shrine and Izumo Taisha Shrine as well as Hikawa Shrine\u8630.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">These kuninomiyatsuko are all closely related to Mr. Monobe, who was a clan with samurai and steelmaking technology (the Jinbetsu clan of the Tenjin-based who assumed the life of The Sun of The Samurai) In the generation of Emperor Seiji, Izumo&#8217;s brother Takage Hise (etamoohinomikoto) became Musashi Kokuzo by the order of the Imperial Court and worshiped Hikawa Shrine, but the central clan who supported the Yamato Imperial Court at that time It was Mr. Monobe.<\/p>&#13;\n&#13;\n<h4>\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08927\u5e74\u7de8\u7e82\uff09\u306e\u51fa\u96f2\u570b\u306e\u6240\u8f09\u300c\u51fa\u96f2\u570b\u5927\u539f\u90e1 \u6590\u4f0a\u795e\u793e(hii Shrine)\u300d\u3067\u306f\u3000\u6c37\u5ddd\u795e\u793e\u306e\u5143\u5bae\u3067\u3042\u308b\u3068\u5ba3\u8a00\u3057\u3066\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059<\/h4>&#13;\n<p class=\"wp-block-paragraph\">The jinzachi is located along the \u7c38 River of Izumo, and the famous myth that Susanoo&#8217;s life got rid of the Eight Great Snake remains, and it is a shrine with the legend that it buried the eight heads and calmed the spirit.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In this company story, &#8220;The foundation of the head office is very old, and it is described in the ancient history story that the spirit was transferred to the former Kanmin Taisha Hikawa Shrine in the fifth year of Emperor Takaaki&#8221;<br\/>It is said that it was a considerable taisha at that time, and it declares it to be the former shrine of Hikawa Shrine in a word, and it is described.<\/p>&#13;\n<p><strong><span style=\"color: #0000ff;\">See the article &#8220;Hii Shrine,Izumo Kuniohara-gun&#8221;<\/span><\/strong><\/p>&#13;\n<p><span style=\"font-weight: 400;\"><\/span><\/p>&#13;\n<p>\u00a0<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is generally said that the \u7c38 river became Hikawa based on this.<br\/>These traditions represent the fact that 2,400 years ago, the 5th Emperor Takaaki&#8217;s reign, had boarded this place with the Musashi Kokuzo clan from Izumo.<\/p>&#13;\n<h4>\u4e00\u65b9\u3067\u3000\u300c\u8352\u811b\u5dfe\u795e(arahabakinokami)\u300d\u306f\u3000\u305d\u306e\u305a\u3063\u3068\u4ee5\u524d\u304b\u3089\u3000\u6c37\u5ddd\u795e\u793e\u306e\u5730\u306b\u5730\u4e3b\u795e\u3068\u3057\u3066\u5148\u4f4f\u306e\u795e\u3068\u3057\u3066\u3044\u305f\u306e\u3060\u3068\u3059\u308b\u8aac\u3082\u3042\u308a\u307e\u3059<\/h4>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is a story which goes back to the Jomon period completely demonstrating the true nature of the ancient company at last.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">With these in mind<br\/>It&#8217;s an ancient imagination.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10858\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-InkedInkedInkedInkednew_LI-1012x600.jpg\" alt=\"\" width=\"974\" height=\"577\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-InkedInkedInkedInkednew_LI-1012x600.jpg 1012w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-InkedInkedInkedInkednew_LI-768x455.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-InkedInkedInkedInkednew_LI.jpg 1024w\" sizes=\"(max-width: 974px) 100vw, 974px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The three red marks are the current locations of the three shrines.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Upper left Omiya Hikawa Shrine (Omiya-ku Takahana-cho)<br\/>Naka Nakahikawa Shrine = Present Nakayama Shrine (Nakagawa, Minuma Ward)<br\/>Lower right Hikawa onnor \u9ad4 Shrine (Three rooms in Midori-ku)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">These three shrines are all on the banks of the former minuma and lined up in a straight line.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Upper left Men&#8217;s body company (father god)<br\/>Naka \u7c38 Ojisha (Ojigami)<br\/>Lower right Women&#8217;s Body Company (Mother God)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said that while having each role, it had a vast sacred area until the early modern age and functioned for each festival as one Hikawa Shrine.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Omiya Hikawa Shrine Ototaisha (Father God)<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10860\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2784\u3007\u3007\u697c\u9580-4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2784\u3007\u3007\u697c\u9580-4-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2784\u3007\u3007\u697c\u9580-4-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2784\u3007\u3007\u697c\u9580-4.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Nakahikawa Shrine (now Nakayama Shrine) \u7c38 Ojisha (Ojigami)<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10862\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2465\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2465\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2465\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2465\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10864\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2466\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2466\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2466\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2466\u3007\u3007\u4e2d\u6c37\u5ddd\u795e\u793e-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Hikawa \u9ad4 Shrine Women&#8217;s Body Shrine (Mother God)<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10866\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2467\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2467\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2467\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2467\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10868\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2788\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2788\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2788\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2788\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2788\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It overlaps with the solar belief of the Jomon period.<br\/>Surprisingly intentional arrangement, the solar operating trajectory appears on the straight line of these three companies.<br\/>The sun of the summer solstice sets at Omiya Hikawa Shrine in the west-northwest.<br\/>The sun of the winter solstice rises from hikawa onna shrine in the east-southeast \u9ad4.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The sun faith and calendar must have been one of the most important shinto rituals for the ancient people.<br\/>The orbit of this sun is sewn together by three shrines of the swamp of God like a dragon god.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said that the god of the festival also has the divine virtue as a dragon god.<br\/>The state scholar Tsutsumi Morning Wind (1765-1834) says, &#8220;There is a legend that Hikawa Daimeijin is the god of dragon appearance.&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Hikawa Onen \u9ad4 Shrine had the Mifune Festival until the Edo period as a festival of &#8220;Ryujin&#8221; that lives in Minuma, and there is still a little atmosphere reminiscent of the former &#8220;Minuma&#8221; in front of the company.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10870\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fA\u3007\u3007\u898b\u6cbc\u306e\u306a\u3054\u308a\u3000\u6c37\u5ddd\u5973\u4f53\u795e\u793e-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fA\u3007\u3007\u898b\u6cbc\u306e\u306a\u3054\u308a\u3000\u6c37\u5ddd\u5973\u4f53\u795e\u793e-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fA\u3007\u3007\u898b\u6cbc\u306e\u306a\u3054\u308a\u3000\u6c37\u5ddd\u5973\u4f53\u795e\u793e-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fA\u3007\u3007\u898b\u6cbc\u306e\u306a\u3054\u308a\u3000\u6c37\u5ddd\u5973\u4f53\u795e\u793e.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10872\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fB\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e\u3000\u9f8d\u795e\u796d\u308a-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fB\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e\u3000\u9f8d\u795e\u796d\u308a-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fB\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e\u3000\u9f8d\u795e\u796d\u308a-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771fB\u3007\u3007\u6c37\u5ddd\u5973\u4f53\u795e\u793e\u3000\u9f8d\u795e\u796d\u308a.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a rumor that there is Mt. Asama on this extension line, and Google Map is created by entertainment.<br\/><a href=\"https:\/\/www.google.com\/maps\/d\/u\/0\/edit?hl=ja&amp;hl=ja&amp;mid=17WVouc_5U3ESplSIeH-e5dY9UaPVw0w4&amp;ll=36.10781628873703%2C139.03225642672442&amp;z=10\">https:\/\/www.google.com\/maps\/d\/u\/0\/edit?hl=ja&amp;hl=ja&amp;mid=17WVouc_5U3ESplSIeH-e5dY9UaPVw0w4&amp;ll=36.10781628873703%2C139.03225642672442&amp;z=10<\/a><\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010Visit to the shrine\u3011 (Pray at the shrinee)<\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">How do you visit Omiya Hikawa Shrine?<br\/>If you are going to proceed on the front approach, you will go along the approach like a beautiful green belt of the longest class in Japan about 2km long in Japan by the side of Nakasendo beside The Jr Saitama Shintoshin Station<br\/>Most worshippers walk from JR Omiya Station and start visiting from &#8220;Nino torii (13 meters high and boasts the best in the Kanto region in wood)&#8221; in the north of Prefectural Road No. 2.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Even from here, a wide approach to the three torii gates at the entrance to the shrine grounds extends about 500 meters, and old zelkova trees with old remnants are lined up and set up on the approach.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10874\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u3007\u3007\u4e8c\u306e\u9ce5\u5c45-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u3007\u3007\u4e8c\u306e\u9ce5\u5c45-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u3007\u3007\u4e8c\u306e\u9ce5\u5c45-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u3007\u3007\u4e8c\u306e\u9ce5\u5c45.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10876\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u20152\u3007\u3007\u53c2\u9053-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u20152\u3007\u3007\u53c2\u9053-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u20152\u3007\u3007\u53c2\u9053-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2469\u20152\u3007\u3007\u53c2\u9053.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Finally, we went through the three torii gates and went through the vast precincts of Musashi Ichinomiya Hikawa Shrine, which is about 30,000 tsubo in size (90,000 tsubo in the Edo period), and the growing old cedars and old pine trees have a long history and welcome worshippers.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">On the right hand side of the approach, which arcs slightly in the center of the pure precincts, it continues with Kagura-den<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10878\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246a\u3007\u3007\u4e09\u306e\u9ce5\u5c45-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246a\u3007\u3007\u4e09\u306e\u9ce5\u5c45-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246a\u3007\u3007\u4e09\u306e\u9ce5\u5c45-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246a\u3007\u3007\u4e09\u306e\u9ce5\u5c45.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n<div id=\"attachment_6226\" style=\"width: 984px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-6226\" class=\"size-large wp-image-10880\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x3007;&#x3007;&#x5199;&#x771F;&#x246B;&#x3007;&#x3007;&#x7A4F;&#x3084;&#x304B;&#x306A;&#x30AB;&#x30FC;&#x30D6;&#x306E;&#x53C2;&#x9053;.jpg\" alt=\"\" width=\"974\" height=\"548\"\/><p id=\"caption-attachment-6226\" class=\"wp-caption-text\">DSC_0027<\/p><\/div>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10882\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246c\u3007\u3007\u795e\u697d\u6bbf\u3068\u984d\u6bbf-3-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246c\u3007\u3007\u795e\u697d\u6bbf\u3068\u984d\u6bbf-3-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246c\u3007\u3007\u795e\u697d\u6bbf\u3068\u984d\u6bbf-3-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246c\u3007\u3007\u795e\u697d\u6bbf\u3068\u984d\u6bbf-3.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Next, There is &#8220;Main&#8221; Shohiko Meimei of Setssha Tianjin Shrine (Amatsumi no Yashiro)<br\/>I am aw and grateful that the god of Tianjin god and the dragon god exists as a setsha (treated as a set shrine similar to the gate guest shrine above) in hikawa&#8217;s shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10884\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246d\u3007\u3007\u5929\u795e\u793e-3-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246d\u3007\u3007\u5929\u795e\u793e-3-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246d\u3007\u3007\u5929\u795e\u793e-3-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246d\u3007\u3007\u5929\u795e\u793e-3-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246d\u3007\u3007\u5929\u795e\u793e-3.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Return to the approach and give shoyu to the left and right end shrines, and if you go further, you will cross the red-colored kamibashi bridge over the kamiike pond that spreads out in the precincts.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><img decoding=\"async\" class=\"alignnone size-large wp-image-10886\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246e\u3007\u3007\u795e\u6a4b-3-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246e\u3007\u3007\u795e\u6a4b-3-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246e\u3007\u3007\u795e\u6a4b-3-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246e\u3007\u3007\u795e\u6a4b-3.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n<p>There are a lot of turtles and carp swimming in Kamiike.<br\/>On the rocks coming out of the water of the pond, you can see a huge number of turtles basking in the sun.<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10888\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246f\u3007\u3007\u5f01\u5929\u5cf6-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246f\u3007\u3007\u5f01\u5929\u5cf6-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246f\u3007\u3007\u5f01\u5929\u5cf6-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u246f\u3007\u3007\u5f01\u5929\u5cf6-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Bentenjima, which can be seen in the middle of the pond, is a Munakata shrine that enshrines the three pillars of Munakata&#8217;s goddess (Takiri Hieimei Ichisunjima Hieimei) and this is also a shrine, so I&#8217;m going to go back to the shrine.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Cross the bridge, there&#8217;s a temizusha on your left, and there&#8217;s finally a fine, vermillion tower gate.<br\/>If you go through this, you&#8217;ll be greeted by the Maiden, and you&#8217;ll be the shrine and the main shrine.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10890\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2470\u3007\u3007\u624b\u6c34\u820e-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2470\u3007\u3007\u624b\u6c34\u820e-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2470\u3007\u3007\u624b\u6c34\u820e-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2470\u3007\u3007\u624b\u6c34\u820e.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">must go to a certain sanctuary before there is<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">If you go from the temizusha to the left, there is a &#8220;snake pond&#8221; it is a sanctuary that was once forbiddenfoot, but it is involved in the maintenance of the parking lot, and now it is a welcome sanctuary that is generally liberated.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said to be the birthplace of Hikawa Shrine in the water source of Minuma, and since ancient times, Ryujajin has been enshrined as a god to cure water from the tradition that Susanoomikoto got rid of the Eight Great Snakes in the incarnation of the water god.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10892\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2472\u3007\u3007\u86c7\u306e\u6c60-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2472\u3007\u3007\u86c7\u306e\u6c60-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2472\u3007\u3007\u86c7\u306e\u6c60-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2472\u3007\u3007\u86c7\u306e\u6c60-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10894\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2471\u3007\u3007\u86c7\u306e\u6c60-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2471\u3007\u3007\u86c7\u306e\u6c60-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2471\u3007\u3007\u86c7\u306e\u6c60-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2471\u3007\u3007\u86c7\u306e\u6c60-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Once again, from the front of the splendid, vermillion tower gate, we bowed deeply to the sacred area.<br\/>Pass through the gate and go to the shrine and the main shrine as you go around while being greeted by the maiden.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Whenever you come to visit, people are always lively, waiting for your turn lightly at the shrine.<br\/>I thank you while praying to be in accordance with your divine power, and i will put a high hand on the high hand to reach the god of the festival that calms down, and i put my hands together to finish the prayer.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The left hand is the god tag awarding place on the back of the worship hall, and it is crowded with the award of the seal and the amulet for the person who is waiting for the prayer.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10896\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2473\u3007\u3007\u697c\u9580-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2473\u3007\u3007\u697c\u9580-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2473\u3007\u3007\u697c\u9580-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2473\u3007\u3007\u697c\u9580-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10898\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f21\u3007\u3007\u821e\u6bbf-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f21\u3007\u3007\u821e\u6bbf-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f21\u3007\u3007\u821e\u6bbf-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f21\u3007\u3007\u821e\u6bbf-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10900\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f22\u3007\u3007\u62dd\u6bbf-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f22\u3007\u3007\u62dd\u6bbf-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f22\u3007\u3007\u62dd\u6bbf-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f22\u3007\u3007\u62dd\u6bbf-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10902\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f23\u3007\u3007\u795e\u672d\u6388\u4e0e\u6240-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f23\u3007\u3007\u795e\u672d\u6388\u4e0e\u6240-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f23\u3007\u3007\u795e\u672d\u6388\u4e0e\u6240-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f23\u3007\u3007\u795e\u672d\u6388\u4e0e\u6240.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a small east gate on the left hand side from the god tag awarding place to the tower gate, and when I turned around here and returned, I talked a little while ago, &#8220;Setsanguan Shrine&#8221; which seems to have been called &#8220;Arahabaki Shrine&#8221; Next to it, Suesha Mitake Shrine is lined up next to it.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I also thank you while wishing to be in accordance with the god of god, and calm down.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10904\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f24\u3007\u3007\u6771\u9580-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f24\u3007\u3007\u6771\u9580-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f24\u3007\u3007\u6771\u9580-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f24\u3007\u3007\u6771\u9580.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n<div id=\"attachment_6239\" style=\"width: 984px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-6239\" class=\"size-large wp-image-10906\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x5199;&#x771F;25&#x3007;&#x3007;&#x9580;&#x5BA2;&#x4EBA;&#x795E;&#x793E;.jpg\" alt=\"\" width=\"974\" height=\"548\"\/><p id=\"caption-attachment-6239\" class=\"wp-caption-text\">DSC_0053<\/p><\/div>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I went back to Shinbashi again and gave Shoyu to Suesha.<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-10908\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f26\u3007\u3007\u795e\u6a4b-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f26\u3007\u3007\u795e\u6a4b-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f26\u3007\u3007\u795e\u6a4b-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f26\u3007\u3007\u795e\u6a4b-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Visit Setsha Munakata Shrine, which sits on Bentenjima Island floating in Kamiike, pass through the torii gate over the bridge, cross the small island, and an indescribable calm mind flows, and time is stationary.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The God of The Festival is also a guiding goddess, so I pray peacefully.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10910\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f27\u3007\u3007\u5b97\u50cf\u795e\u793e-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f27\u3007\u3007\u5b97\u50cf\u795e\u793e-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f27\u3007\u3007\u5b97\u50cf\u795e\u793e-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f27\u3007\u3007\u5b97\u50cf\u795e\u793e-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f27\u3007\u3007\u5b97\u50cf\u795e\u793e.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10912\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f28\u3007\u3007\u5b97\u50cf\u795e\u793e-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f28\u3007\u3007\u5b97\u50cf\u795e\u793e-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f28\u3007\u3007\u5b97\u50cf\u795e\u793e-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f28\u3007\u3007\u5b97\u50cf\u795e\u793e-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a very large signboard in the precincts in front of the three torii gates.<br\/>I will understand the god of the festival of Setsha and Suesha who visited until a while ago, and I will review it with ah, while I think that God will surely be able to remember us.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">I passed through the three torii gates and looked back and bowed.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10914\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f29\u3007\u3007\u5883\u5185\u6848\u5185\u770b\u677f-645x600.jpg\" alt=\"\" width=\"645\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f29\u3007\u3007\u5883\u5185\u6848\u5185\u770b\u677f-645x600.jpg 645w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f29\u3007\u3007\u5883\u5185\u6848\u5185\u770b\u677f-768x715.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f29\u3007\u3007\u5883\u5185\u6848\u5185\u770b\u677f.jpg 1024w\" sizes=\"(max-width: 645px) 100vw, 645px\" \/><img decoding=\"async\" class=\"alignnone size-large wp-image-10916\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f30\u3007\u3007DSC_0126-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f30\u3007\u3007DSC_0126-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f30\u3007\u3007DSC_0126-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f30\u3007\u3007DSC_0126.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010Tradition of shrines\u3011 (Old tales held down to shrinks)<\/h2>&#13;\n&#13;\n<h3>\u300c\u65e5\u672c\u6b66\u5c0a (yamatotakerunomikoto)\u300d<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">(About the place name of Adachi-gun)<br\/>When The 12th Prince of Emperor Keigyo, Nihon Takeson was injured at the time of the Tosei, an old man appeared on his dream pillow, so there was a legend that he came to stand up when he visited our company according to his teachings, and it is said that this area has come to be referred to as &#8220;Adachi&#8221; because of this.<\/p>&#13;\n&#13;\n<h3>\u300c\u5e73\u5c06\u9580 (tairano masakado)\u306e\u4e71\u300d<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is said that Hira Sadamori prayed for victory in the War of Hirashomon, and cleared the war splendidly.<br\/>&#8220;Hikawa Shrine Adachi-gun Takahana-mura Shomon Rebellion, he is said to dedicate the Hira Sadamori brother Yaya to pray for victory. (&#8220;Shinhen Musashi Fudoki&#8221;<\/p>&#13;\n&#13;\n<h3>\u300c\u6e90\u983c\u671d (minamotonoyoritomo)\u516c\u304b\u3089\u306e\u5d07\u656c\u300d<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In the company biography, it is said that Minamoto Yoritomo ordered Mihei Doijiro to rebuild the shrine hall in 1180, and ordered 3,000 pieces of company territory and the Shinma Shinken.<\/p>&#13;\n&#13;\n<h3>\u300c\u5fb3\u5ddd\u5e55\u5e9c (tokugawabakufu)\u304b\u3089\u306e\u5d07\u656c\u300d<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">August 1596 (1596) Tokugawa clan built all the heads of the company with Ina Bizen Mori Tadatsugu as the dedication, and in March (1667) of Kanbun, the construction of the shrine building with Abe Bungomori as a dedication<br\/>Various stories such as are told<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">All of this is a story about the admiring and prayers of the general of the Battle of the Samurai and the Samurai.<br\/>You can feel the divine virtues of this god god.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10918\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f31\u3007\u3007\u697c\u9580-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f31\u3007\u3007\u697c\u9580-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f31\u3007\u3007\u697c\u9580-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f31\u3007\u3007\u697c\u9580-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n<p>\u3082\u3046\u3000\u4f55\u5341\u56de\u304a\u8a63\u308a\u3092\u3057\u305f\u3053\u3068\u3067\u3057\u3087\u3046\u304b<br\/>\u3044\u3064\u3082\u611f\u8b1d\u3067\u4e00\u676f\u306b\u306a\u308b\u3088\u3046\u306a\u3054\u795e\u5a01\u306b\u6e80\u3061\u3066\u3044\u307e\u3059<\/p>&#13;\n<p><\/p>&#13;\n<p class=\"wp-block-paragraph\">Hikawa Shrine&#8217;s god of worship is a composition of the rough Susanoo life as if Inada Himemei and Oki Takamei are supporting them.<br\/>It is a sacred area of a dignified Ki though it is calm and calm as reflected in the minuma.<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-10920\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f32\u3007\u3007\u86c7\u306e\u6c60-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f32\u3007\u3007\u86c7\u306e\u6c60-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f32\u3007\u3007\u86c7\u306e\u6c60-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u5199\u771f32\u3007\u3007\u86c7\u306e\u6c60.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>&#13;\n<p><strong><span style=\"color: #0000ff;\">\u6c37\u5ddd\u795e\u793e\u306e\u5143\u5bae\u3068\u547c\u3070\u308c\u3066\u3044\u308b\u795e\u793e\u304c\u3000\u51fa\u96f2\u306b\u3042\u308a\u307e\u3059<\/span><\/strong><br\/><strong><span style=\"color: #0000ff;\">\u6590\u4f0a\u795e\u793e\uff08\u96f2\u5357\u5e02\u6728\u6b21\u753a\uff09\u306e\u8a18\u4e8b\u3092\u3054\u89a7\u304f\u3060\u3055\u3044<\/span><\/strong><\/p>&#13;\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/shrineheritager.com\/hii-shrine\/\" data-lkc-id=\"122\" 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=shrineheritager.com\" alt=\"\" width=\"16\" height=\"16\" \/><\/div><div class=\"lkc-domain\">shrine-heritager<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"\/\/shrineheritager.com\/wp-content\/uploads\/pz-linkcard\/cache\/15afde2b4ea136736283c50fe7f79a1ea6a331c84af86a3fa89cb267c1db1cea.webp\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u6590\u4f0a\u795e\u793e\uff08\u96f2\u5357\u5e02\u6728\u6b21\u753a\uff09<\/div><div class=\"lkc-url\" title=\"https:\/\/shrineheritager.com\/hii-shrine\/\">https:\/\/shrineheritager.com\/hii-shrine\/<\/div><div class=\"lkc-excerpt\">\u6590\u4f0a\u795e\u793e\uff08\u96f2\u5357\u5e02\u6728\u6b21\u753a\uff09\u306f\u3000\u300c\u80a5\uff08hi\uff09\u306e\u6cb3\u4e0a\u300d\u306b\u93ae\u5ea7\u3059\u308b\u793e\u3068\u3055\u308c\u3066\u3044\u307e\u3059\u3000\u6590\u4f0a\u795e\u793e\uff08hii shrine\uff09\u306e\u53e4\u53f2\u4f1d\u306e\u8a18\u8f09\u3067\u306f\u3000\u6b66\u85cf\u570b\u4e00\u4e4b\u5bae\u300c\u5927\u5bae\u6c37\u5ddd\u795e\u793e\u300d\uff08\u3055\u3044\u305f\u307e\u5e02\u5927\u5bae\uff09\u306f\u3000\u5b5d\u662d\u5929\u76875\u5e74\u306b\u5206\u970a\u5949\u9077\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u3044\u307e\u3059\u3000\u3053\u308c\u306b\u3088\u308c\u3070\u3000\u6771\u4eac\u90fd\u30fb\u57fc\u7389\u770c\u306b\u6570\u591a\u304f\u5206\u5e03\u3059\u308b\u6c37\u5ddd\u795e\u793e\uff08hikawa shrine\uff09\u306e\u767a\u7965\u306e\u5143\u5bae\u3068\u306a\u308a\u307e\u3059\u3053\u3053\u304b\u3089\u306f\u3000\u63b2\u8f09\u795e\u793e\u306e\u547c\u79f0\u540d\u3092\u6642\u4ee3\u9806\u306b\u8aac\u660e\u3057\u3066\u3044\u304d\u307e\u3059\u307e\u305a\u521d\u3081\u306f\u3000\u4eca\u304b\u3089\u7d041300\u5e74\u524d\u30fb\u5929\u5e735\u5e74\uff08733\u5e74\uff092\u670830\u65e5\u306b\u5b8c\u6210\u3057\u305f\u300e\u51fa\u96f2\u570b\u98a8\u571f\u8a18\u300f\u6b21\u306b\u3000\u4eca\u304b\u3089\u7d041100\u5e74\u524d\u30fb\u5e73\u5b89\u6642\u4ee3\u4e2d\u671f\uff08\u5ef6\u95775\u5e74927\u5e74)\u306b\u5b8c\u6210\u3057\u305f\u300e...<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>&#13;\n","protected":false},"excerpt":{"rendered":"<p>Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &#8220;Omiya&#8221; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &#8220;Great Miyai&#8221; which has been enshrined in this place without being transferred for about 2,400 years.<\/p>\n","protected":false},"author":1,"featured_media":10733,"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-10731","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=\"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &quot;Omiya&quot; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &quot;Great Miyai&quot; which has been enshrined in this place without being transferred for about 2,400 years.\" \/>\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\/hikawa-shrine\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Omiya Hikawa Shrine - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &quot;Omiya&quot; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &quot;Great Miyai&quot; which has been enshrined in this place without being transferred for about 2,400 years.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-01-18T07:36:31+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-06-24T12:52:30+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Omiya Hikawa Shrine - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &quot;Omiya&quot; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &quot;Great Miyai&quot; which has been enshrined in this place without being transferred for about 2,400 years.\" \/>\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\\\/hikawa-shrine\\\/#blogposting\",\"name\":\"Omiya Hikawa Shrine - Shrine-heritager\",\"headline\":\"Omiya Hikawa Shrine\",\"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\\\/01\\\/s-\\u3007\\u3007\\u5199\\u771f\\u2460\\u3007\\u3007\\u5927\\u5bae\\u6c37\\u5ddd\\u795e\\u793e\\u3000.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-01-18T16:36:31+09:00\",\"dateModified\":\"2020-06-24T21:52:30+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#listItem\",\"name\":\"Omiya Hikawa Shrine\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#listItem\",\"position\":3,\"name\":\"Omiya Hikawa Shrine\",\"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\\\/hikawa-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/\",\"name\":\"Omiya Hikawa Shrine - Shrine-heritager\",\"description\":\"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present \\\"Omiya\\\" (Saitama Prefecture) is derived from the honor of Hikawa Shrine as \\\"Great Miyai\\\" which has been enshrined in this place without being transferred for about 2,400 years.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/s-\\u3007\\u3007\\u5199\\u771f\\u2460\\u3007\\u3007\\u5927\\u5bae\\u6c37\\u5ddd\\u795e\\u793e\\u3000.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/hikawa-shrine\\\/#mainImage\"},\"datePublished\":\"2020-01-18T16:36:31+09:00\",\"dateModified\":\"2020-06-24T21:52:30+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":"Omiya Hikawa Shrine - Shrine-heritager","description":"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present \"Omiya\" (Saitama Prefecture) is derived from the honor of Hikawa Shrine as \"Great Miyai\" which has been enshrined in this place without being transferred for about 2,400 years.","canonical_url":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#blogposting","name":"Omiya Hikawa Shrine - Shrine-heritager","headline":"Omiya Hikawa Shrine","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\/01\/s-\u3007\u3007\u5199\u771f\u2460\u3007\u3007\u5927\u5bae\u6c37\u5ddd\u795e\u793e\u3000.jpg","width":1024,"height":682},"datePublished":"2020-01-18T16:36:31+09:00","dateModified":"2020-06-24T21:52:30+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#listItem","name":"Omiya Hikawa Shrine"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#listItem","position":3,"name":"Omiya Hikawa Shrine","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\/hikawa-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/","name":"Omiya Hikawa Shrine - Shrine-heritager","description":"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present \"Omiya\" (Saitama Prefecture) is derived from the honor of Hikawa Shrine as \"Great Miyai\" which has been enshrined in this place without being transferred for about 2,400 years.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-\u3007\u3007\u5199\u771f\u2460\u3007\u3007\u5927\u5bae\u6c37\u5ddd\u795e\u793e\u3000.jpg","@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/#mainImage"},"datePublished":"2020-01-18T16:36:31+09:00","dateModified":"2020-06-24T21:52:30+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":"Omiya Hikawa Shrine - Shrine-heritager","og:description":"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &quot;Omiya&quot; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &quot;Great Miyai&quot; which has been enshrined in this place without being transferred for about 2,400 years.","og:url":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/","article:published_time":"2020-01-18T07:36:31+00:00","article:modified_time":"2020-06-24T12:52:30+00:00","twitter:card":"summary_large_image","twitter:title":"Omiya Hikawa Shrine - Shrine-heritager","twitter:description":"Omiya Hikawa Shrine is an ancient shrine that accompanies the luck of victory, and it is said that the place name of the present &quot;Omiya&quot; (Saitama Prefecture) is derived from the honor of Hikawa Shrine as &quot;Great Miyai&quot; which has been enshrined in this place without being transferred for about 2,400 years."},"aioseo_meta_data":{"post_id":"10731","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:54","updated":"2025-07-01 07:12:05","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tOmiya Hikawa Shrine\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":"Omiya Hikawa Shrine","link":"https:\/\/shrineheritager.com\/en\/hikawa-shrine\/"}],"views":1809,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/10731","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=10731"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/10731\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/10733"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=10731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=10731"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=10731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}