    <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":13982,"date":"2020-07-30T03:53:27","date_gmt":"2020-07-29T18:53:27","guid":{"rendered":"https:\/\/shrineheritager.com\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/"},"modified":"2020-07-30T03:53:29","modified_gmt":"2020-07-29T18:53:29","slug":"%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/","title":{"rendered":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09"},"content":{"rendered":"<p><b>Komagata Shrine Headquarters is called &#8220;Riku Chugoku Ichinomiya&#8221;, and &#8220;Okumiya&#8221; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11491\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-414x600.jpg\" alt=\"\" width=\"414\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-414x600.jpg 414w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2.jpg 707w\" sizes=\"(max-width: 414px) 100vw, 414px\" \/><\/p>\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><b><br \/>\n<\/b><b><\/b><\/h3>\n<p><b><span style=\"font-size: 130%;\">\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09<\/span><br \/>\n<\/b><b> <\/b><b> <\/b><b>\uff08\u3053\u307e\u304c\u305f\u3058\u3093\u3058\u3083\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<p> <b> <\/b><span style=\"font-weight: 400;\">komagatasan<\/span><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><b><\/b><span style=\"font-weight: 400;\">1-83 Mizusawa-Nakaueno-cho, Mizusawa Park, Oshu City, Iwate Prefecture<\/span><\/p>\n<h3><b>[\u5730 \u56f3 (Google Map)]<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E6%B0%B4%E6%B2%A2\/%E3%80%92023-0857+%E5%B2%A9%E6%89%8B%E7%9C%8C%E5%A5%A5%E5%B7%9E%E5%B8%82%E6%B0%B4%E6%B2%A2%E4%B8%AD%E4%B8%8A%E9%87%8E%E7%94%BA%EF%BC%91%E2%88%92%EF%BC%98%EF%BC%93+%E6%B0%B4%E6%B2%A2%E5%85%AC%E5%9C%92%E5%86%85+%E9%99%B8%E4%B8%AD%E4%B8%80%E5%AE%AE+%E9%A7%92%E5%BD%A2%E7%A5%9E%E7%A4%BE\/@39.1375527,141.1399382,17z\/data=!4m14!4m13!1m5!1m1!1s0x5f8f4a6e106cc49b\" data-lkc-id=\"146\" 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\">\u6c34\u6ca2 to \u9678\u4e2d\u4e00\u5bae \u99d2\u5f62\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%25E6%25B0%25B4%25E6%25B2%25A2%2F%25E3%2580%2592023-0857%2B%25E5%25B2%25A9%25E6%2589%258B%25E7%259C%258C%25E5%25A5%25A5%25E5%25B7%259E%25E5%25B8%2582%25E6%25B0%25B4%25E6%25B2%25A2%25E4%25B8%25AD%25E4%25B8%258A%25E9%2587%258E%25E7%2594%25BA%25EF%25BC%2591%25E2%2588%2592%25EF%25BC%2598%25EF%25BC%2593%2B%25E6%25B0%25B4%25E6%25B2%25A2%25E5%2585%25AC%25E5%259C%2592%25E5%2586%2585%2B%25E9%2599%25B8%25E4%25B8%25AD%25E4%25B8%2580%25E5%25AE%25AE%2B%25E9%25A7%2592%25E5%25BD%25A2%25E7%25A5%259E%25E7%25A4%25BE%2F%4039.1375527%2C141.1399382%2C17z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x5f8f4a6e106cc49b?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u6c34\u6ca2 to \u9678\u4e2d\u4e00\u5bae \u99d2\u5f62\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E6%B0%B4%E6%B2%A2\/%E3%80%92023-0857+%E5%B2%A9%E6%89%8B%E7%9C%8C%E5%A5%A5%E5%B7%9E%E5%B8%82%E6%B0%B4%E6%B2%A2%E4%B8%AD%E4%B8%8A%E9%87%8E%E7%94%BA%EF%BC%91%E2%88%92%EF%BC%98%EF%BC%93+%E6%B0%B4%E6%B2%A2%E5%85%AC%E5%9C%92%E5%86%85+%E9%99%B8%E4%B8%AD%E4%B8%80%E5%AE%AE+%E9%A7%92%E5%BD%A2%E7%A5%9E%E7%A4%BE\/@39.1375527,141.1399382,17z\/data=!4m14!4m13!1m5!1m1!1s0x5f8f4a6e106cc49b\">https:\/\/www.google.com\/maps\/dir\/\u6c34\u6ca2\/\u3012023-0857+\u5ca9\u624b\u770c\u5965\u5dde\u5e02\u6c34\u6ca2\u4e2d\u4e0a\u91ce\u753a\uff11\u2212\uff18\uff13+\u6c34\u6ca2\u516c\u5712\u5185+\u9678\u4e2d\u4e00\u5bae+\u99d2\u5f62\u795e\u793e\/@39.1375527,141.1399382,17z\/data=!4m14!4m13!1m5!1m1!1s0x5f8f4a6e106cc49b<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>\u3010\u5fa1\u796d\u795e (God&#8217;s name to pray)\u3011<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b>Six gods, &#8220;Komagata Okami&#8221;, written on the building sign of Okumiya<\/b><\/span><\/p>\n<p><span style=\"font-size: 130%;\"><b>\u300a\u4e3b\u300b\u5929\u7167\u5927\u5fa1\u795e\uff08amaterasu omikami\uff09<br \/>\n<\/b><b>\u5929\u5e38\u7acb\u5c0a\uff08ameno tokotachi no mikoto\uff09<br \/>\n<\/b><b>\u570b\u72ed\u69cc\u5c0a\uff08kunino sazuchi no mikoto\uff09<br \/>\n<\/b><b> \u543e\u52dd\u5c0a\uff08akatsu no mikoto\uff09\uff1d<\/b><span style=\"font-weight: 400;\">\u5929\u5fcd\u7a57\u8033\u5c0a<br \/>\n<\/span><b> \u7f6e\u702c\u5c0a\uff08okise no mikoto\uff09\uff1d <\/b><span style=\"font-weight: 400;\">\u74ca\u74ca\u6775\u5c0a<br \/>\n<\/span><b> \u5f66\u706b\u706b\u51fa\u898b\u5c0a\uff08hiko hohodemi no mikoto\uff09<\/b><\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u7523\u696d\u958b\u767a\uff08\u793e\u696d\u7e41\u6804\uff09Industrial development<br \/>\n<\/span><span style=\"font-weight: 400;\">Traffic safety Prayer for Traffic safety<br \/>\n<\/span><span style=\"font-weight: 400;\">Victory prayer Victory prayer Victory prayer<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5408\u683c\u7948\u9858 Prayer for passing the exam<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u65b9\u4f4d\u9664\u3051 You can rule out bad directions<br \/>\n<\/span><span style=\"font-weight: 400;\">Home safety Safe and stable home life<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u826f\u7e01\u7948\u9858 A desire to deepen connections and intimacy with good people<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5384\u9664\u3051 Prayer at an age considered a milestone in life<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5fc3\u9858\u6210\u5c31 Realization of wish of heart<\/span><\/p>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u6240\u8f09\u793e<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb \u9678\u4e2d\u56fd\u4e00\u4e4b\u5bae<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb \u5225\u8868\u795e\u793e<\/span><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Founding is unknown. Various legends are passed down to the present<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11493\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">The Kameno\uff08\u6bdb\u91ce\u4e00\u65cf\uff09 clan emerged in the Kanto region in the ancient times, revered Mt.Akagi, and worshiped the god of Akagi to rule the Ueno Plain, but later became divided into Kaminokuni and Shimogenokuni, and Shimogeno became Nikko Volcano. Established Futarayama Shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It was worshiped against the backdrop of a dormant volcano, and Mt. Komagata is also located on the outer ring of Akagi Volcano, and the word &#8220;Mao\uff08\u300e\u99ac\u738b\u300f\uff09&#8221; can be seen scatteredly around the Futarayama Shrine\uff08\u4e8c\u8352\u5c71\u795e\u793e\uff09.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Kamikeno and Shimogeno\uff08\u4e0a\u6bdb\u91ce\u30fb\u4e0b\u6bdb\u91ce\u6c0f\uff09 extend their powers to the north, studying with their homeland everywhere they go, searching for a shapely mountain with a solitary mountain at a dormant volcano, and naming the second highest peak of the mountain range Komagatake or Komagatayama. , Dedicated to Komagata Ogami.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It also reaches Oshu, and you can see a male figure from the Isawa Plain, soliciting Komagata Ogami to the summit and naming it Komagatake.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is due to \u4e0a\u6bdb\u91ce\u80c6\u6ca2\u516c, who was at the time of the Emperor Yuuraku\u96c4\u7565\u5929\u7687 (around 456).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Of all the Komagata shrines enshrined in Hidemine in Japan like this, only two companies, the &#8220;Komagata shrine&#8221; in Kurihara-gun, Miyagi prefecture, and our company, are in the Enki-style god list.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The reason why our company advanced the Shinto rank to the fourth rank below was that it was worshiped by the Conqueror General, &#8220;Sakaue Tamura Maro(\u5742\u4e0a\u7530\u6751\u9ebb\u5442)&#8221;, who founded the Mutsu country &#8220;Isawa Castle.&#8221; It was due to the above reports from this office many times.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There is a song called Komagata that called Akagi Shrine in the old days, and sang Koma. At that time, Korea was in the Koryo era and was also a country of admiration for culture, so I used the word coma to show off to the world.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The fact that Hakone Shrine of Hakone Mountain Enshrine dedicates Komagata Shrine is similar to the description that it has solicited Koma Daijin from Korea.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In this way, it can be said that the god of Akagi is the god of Komagata.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">As Sakaue Tamura Maro and Minamoto no Yoriyotomo and father-in-law worshiped Komagata Okami seriously and learned that they fulfilled their wishes for martial arts, the four generations of Fujiwara who built glory in Oshu were also worshiped.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Mt.Tabaine(\u675f\u7a32\u5c71)&#8221; seen in the east across the Kitakami River from Hiraizumi is also called Mt. Komagata.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This may make it difficult to climb the steep Komagatake mountain often, and it is believed that Komagata Okami was enshrined on this mountain.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Hidehira Fujiwara casts a deity with copper on Hakone Engi.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">To enshrine the god of Komagata can be imagined how Fujiwara dedicated his respect.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Thus, the reverence of Komagata Shrine is magnificent, and the number of branch offices extends from each prefecture in the Tohoku region to the Kanto region, reaching the number of hundreds.<\/span><\/p>\n<p><b>From the official website<\/b><\/p><\/blockquote>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<blockquote><p><b>head shrine<\/b><span style=\"font-weight: 400;\"> Nakaueno-cho, Mizusawa-shi, Iwate <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Okumiya<\/b><span style=\"font-weight: 400;\"> Komagatake, Nishine, Kanegasaki-cho, Isawa-gun, Iwate Prefecture<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u5fa1\u796d\u795e (God&#8217;s name to pray)<\/b>Komagata Okami<span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6587\u5fb3\u5929\u7687\u4ec1\u5bff\u5143\u5e74\u6b63\u4e94\u4f4d<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6e05\u548c\u5929\u7687\u8c9e\u89b34\u5e74\u5f93\u56db\u4f4d\u4e0b\uff08\u5965\u5dde\u6700\u9ad8\u306e\u795e\u968e\u4e5f\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Arranged with a small shrine under the control of \uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>About Okumiya<\/b><span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the old days, Okumiya was sitting on top of &#8220;Dainichidake&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Dainichidake&#8221; is a sacred mountain that rises to the south of &#8220;Komagatake&#8221; where the &#8220;Okunomiya&#8221; is currently enshrined, and there is a Shinto monument actually named Komagata Daimyojin.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Komagatake&#8221; and &#8220;Dainichidake&#8221; together with &#8220;Ushigatayama&#8221; and other mountains form the outer ring of the former volcanic volcano, and &#8220;Komagatayama&#8221; is a collective term for these mountain ranges. The reason why the mountain was settled on &#8220;Dainichidake&#8221; is because it was the highest mountain in the mountain range.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The modern Okumiya was built on the summit of &#8220;Komagatake&#8221; at the present location. The building area is 3 tsubo, 3 minutes and 5 minutes, and it is headed to Tohoku with a jewel.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This place, Sanyo, is the former territory of Date, in Isawa County, and San&#8217;in is the former territory of Nanbu, in Waga-gun. It was settled on the border of both territories and, in addition, the reverence of both was extremely high, so it is a Shinto shrine. The example was that each public fund was remodeled every 20 years.<\/span><\/p>\n<p><b>\u672c\u793e\u306b\u3064\u3044\u3066<\/b><span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Our company&#8217;s site was originally Shiogama Shrine&#8217;s land, but when it was lined up at the national shrine on May 14, 1868, both the Satomiya and Okumiya were in an area with inconvenient transportation, so the prefectural governor, etc. Since it was not possible to visit, the current shrine, which was the location of the Mizusawa prefectural government at that time, was designated as a temporary worship place.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, in 7th year of Meiji, the shrine was greatly repaired and made into an official place of worship.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Furthermore, in 1868, the spirit of God was transferred from the summit,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Shiogama Shrine was enshrined in Kasuga Shrine, which is the company&#8217;s Beppu, and was transferred to the shrine&#8217;s Issai Komagata Shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The main hall and the worship hall were originally built by Sosori Mizusawa, the chief lord of the castle, in 6th year of Kan&#8217;ei, but suffered a fire in 6th year of Ansei and burned down. It was revived in Bunkyu 3rd year.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Among them, the main shrine is a giant tree of Keyaki, which was carved by the carpenter Mankichi Kumagai of Nishigawai-gun, Kinugawa-mura, and is all made by Sangensha.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, the current shrine became a shrine suitable for Rikuchu Ichinomiya both in name and reality, with a total construction cost of 62600 yen (Ministry of Interior subsidy 32600 yen) to commemorate the 30th anniversary of the transition to the current shrine. It is a thing.<\/span><\/p>\n<p><b>\u91cc\u5bae\u306b\u3064\u3044\u3066<\/b><span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Satomiya was settled at Hinakozawa, Nishineji, Kanegasaki-machi, which reached about 12 km at the foot of &#8220;Komagatake&#8221;, and was positioned as a pre-war prefectural shrine, but now it is an independent festival according to the new law.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">According to the Ou Kanso Kenzoku magazine, it is difficult to climb and worship the Holy Spirit because the enclave of Okumiya is a sacred mountain in the world, and the mountains are steep. Furthermore, from &#8220;Ugai Shimizu&#8221; on the hillside, women were forbidden ahead. It is said that the Holy Spirit was moved from the top of the mountain and served in harmony so that villagers and young women could worship.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is also a Satomiya in &#8220;Iwasaki&#8221; of the former Nanbu territory, but now the relationship with our company has disappeared.<\/span><\/p>\n<p><b>&#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Head Office]<\/b><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b> <\/b><b>\u30fb\u5c71\u795e\u793e\uff08yama no kamisha\uff09<br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5927\u5c71\u8879\u795e\uff08oyamatsumi no kami\uff09<br \/>\n<\/b><b> \u6728\u82b1\u958b\u8036\u59eb\u795e\uff08konohanasakuya hime no kami\uff09<\/b><\/p>\n<blockquote><p><b>Yama shrine<\/b><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Konohana Sakuya Hime no kami&#8221; is the god of giving birth to a healthy baby.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Of the small pillows on either side of the shrine, those who want a boy should take white, and those who want a girl should take red, and they should be enshrined in the shrine of the family to pray for a safe delivery.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When a child is born safely, it is customary to return it with two red and white pillows.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Oyama zumi no kami is a mountain god. It is widely worshiped as a guardian deity of forestry, wood and its processing, and construction.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Festival Day April 12th<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Festival Day October 12th<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">From the information board<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11495\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>\u30fb\u5225\u5bae \u9e7d\u7ac3\u795e\u793e\uff08shiogama jinja\uff09<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u9e7d\u571f\u8001\u7fc1\u795e\uff08shiotsuchi no oji no kami\uff09<\/b><b><br \/>\n<\/b><b>\u6b66\u7515\u69cc\u795e\uff08takemikatsuchi no kami\uff09<\/b><b><br \/>\n<\/b><b>\u7d4c\u6d25\u4e3b\u795e\uff08futsunushi no kami\uff09<\/b><\/p>\n<p><b>\u300a\u5408\u300b\u5929\u5150\u5c4b\u6839\u795e\uff08ameno koyane no kami\uff09<\/b><b><br \/>\n<\/b><b>\u6bd4\u8ce3\u795e\uff08hime no kami\uff09<\/b><b><br \/>\n<\/b><b>\u85e4\u539f\u938c\u8db3\u671d\u81e3\uff08fujiwarakamatari no ason\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11497\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><b>\u9e7d\u7ac3\u795e\u793e<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Go reign of Emperor Go Reisen (1052), Minamoto no Yoriie and father-in-law tried to conquer Abe Sadao and prayed for it at Shiogama Shrine in Shiogama City, Miyagi Prefecture. Daimyojin) was entrusted to the Shinto God.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since then, it has been called Shiogama Village and was named until the enforcement of the Mizusawa City System (1948).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the 16th year of Kan&#8217;ei (1629), Mr. Sotoru Rumori, the first owner of Mizusawa Castle, repaired the company. In 1763, the seventh lord of the castle, Mr. Yoshimori Torumura, moved to the present location from the land of Ishida and Daimyojin and maintained the precincts, worshiped as the guardian deity of the territory, set up a belief and a shrine house It became one of the most famous shrines in this region and gathered faith.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Due to the great fire in the 6th year of Ansei (1859), the whole town was scorched and the shrine also burned down, so the 11th castle master Kunimune Rusume revived. In particular, the main shrine had a diameter of 7. It was finished with one big tree of keyaki of 8 meters. It still exists as the main hall of Komagata Shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1903, from the summit of Mt. Komagatake, the Holy Spirit was transferred to Shiogama Shrine, which became Komagata Shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Excerpt from the pamphlet<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11499\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-2-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-2-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-2-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-2-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-2.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><b>\u30fb\u6c34\u6ca2\u62db\u9b42\u793e\uff08mizusawa shokonsha\uff09<br \/>\n<\/b><b> \u300a\u4e3b\u300b\u90f7\u571f\u51fa\u8eab\u306e\u8b77\u56fd\u306e\u82f1\u970a<\/b><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">This shrine has been enshrined in the spirit of a native nation who dedicated his precious life as a flower of a nation to protect his precious life in the face of numerous national difficulties from the Meiji Restoration (Boshin War) to the Great East Asian War.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5225\u540d\u90f7\u571f\u306e\u9756\u56fd\u795e\u793e\u3068\u3082\u3044\u3044\u307e\u3059\u3002<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> \u796d\u65e5 \u516d\u6708\u4e8c\u65e5<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> \u6848\u5185\u677f\u3088\u308a<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11501\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(Preliminary knowledge of this shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\">\u300fThe two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide. <\/span><\/p>\n<h3><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\uff08engishiki jimmeicho\uff09The shrine record was completed in December 927 AD.<\/b><\/h3>\n<p><b>[\u65e7 \u884c\u653f\u533a\u5206]\uff08Old administrative district\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(God&#8217;s seating number)<\/span> <b><span style=\"font-size: 120%; color: #0000ff;\">Higashiyamado 382 seats&#8230; Large 42 (including monthly Shinjo 5) and small 340<\/span><br \/>\n <\/b><b>[\u65e7 \u56fd \u540d ]\uff08old county name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"font-size: 120%; color: #0000ff;\">\u9678\u5965\u56fd 100\u5ea7\uff08\u592715\u5ea7\u30fb\u5c0f85\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><span style=\"font-size: 120%; color: #0000ff;\"><b>\u80c6\u6ca2\u90e1 7\u5ea7\uff08\u4e26\u5c0f\uff09<br \/>\n<\/b><\/span><b>[\u540d\u795e\u5927 \u5927 \u5c0f] <span style=\"font-size: 120%; color: #0000ff;\">\u5f0f\u5185\u5c0f\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"font-size: 120%; color: #0000ff;\">\u99d2\u5f62\u795e\u793e<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"font-size: 90%; color: #0000ff;\">\uff08\u3053\u307e\u304b\u305f\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 130%; color: #0000ff;\">\uff08komakatano kamino yashiro\uff09 <\/span><\/b><\/p>\n<p><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000004146&amp;ID=M2014101719562090086&amp;TYPE=&amp;NO=<\/span> <span style=\"font-weight: 400;\">Image Use<br \/>\n <\/span> <span style=\"font-weight: 400;\">National Diet Library Digital Collection Enki-shiki Publication (Baba) [Former Kurashi] Autumn Leaves Yama Bunko<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11504\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">\u3042\u306a\u305f\u304c \u3053\u306e\u795e\u793e\u306b\u8208\u5473\u304c\u6e67\u304f\u3088\u3046\u306a\u4e88\u5099\u77e5\u8b58\u3092\u30aa\u30bf\u30af\u8996\u70b9\u3067\u3054\u7d39\u4ecb\u3057\u307e\u3059<\/span><\/h3>\n<p><b>Komagata shrine is about the composition of &#8220;Okumiya&#8221;, &#8220;Two Villages&#8221; and &#8220;Headquarters&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Komagata shrine originally originated in the dedication of &#8220;Komagata Ogami&#8221; to the summit of &#8220;Komagatake&#8221; in Kanegasaki. Because both &#8220;Okumiya&#8221; and &#8220;Satomiya&#8221; were in a location where transportation was inconvenient, the present location of &#8220;Shiogama Shrine&#8221;, which was located in the town of Mizusawa, was used as a place of worship.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Details of the details<\/span><\/p>\n<p><b>About &#8220;Okumiya&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Originally, there was Okumiya at the summit of &#8220;Dainichidake&#8221; in the south of &#8220;Komagatake&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since early modern times, we will move to the summit of &#8220;Komagatake&#8221;.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the Edo period, there was &#8220;Komagatake&#8221; at the boundary of the &#8220;Sendai clan&#8221; and &#8220;Morioka clan&#8221;, so it is said that every 20 years, both clans replaced and rebuilt the shrine.<\/span><\/p>\n<p><b>About &#8220;Two Village Shrines&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Komagatake&#8221; is difficult to visit at the Okumiya at the summit. Before &#8220;Ugai Shimizu&#8221; on the hillside, there was a sacred mountain where women were prohibited. The Sendai clan and the Morioka clan each built a Satomiya at the foot of Komagatake by soliciting the spirits of the summit.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u30fb\u4ed9\u53f0\u85e9\u5074\u306e\u91d1\u30f6\u5d0e\u306e\u91cc\u5bae<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u76db\u5ca1\u85e9\u5074\u306e\u5ca9\u5d0e\u306e\u91cc\u5bae<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Two village shrines are settled<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-11506\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6.jpg\" alt=\"\" width=\"1024\" height=\"535\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-768x401.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p><b>Please see the article of Komagata Shrine Satomiya<\/b><\/p>\n<p>&nbsp;<\/p>\n<p><b>About &#8220;Headquarters&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The origin of national Shinto in the Meiji era\u300c<\/span><span style=\"font-weight: 400;\">National shrine<\/span><span style=\"font-weight: 400;\">The main hall of the Shiogama Shrine near Mizusawa Prefectural Government at that time was designated as a temporary hall of worship.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It became an official place of worship at Komagata Shrine in 1874.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1903, the spirit of the summit of the mountaintop was solicited to the place of worship and became the headquarters of Komagata Shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">All of the original Shiogama Shrine has been transferred to Komagata Shrine, and all of the shrines have been incorporated into the Kasuga Shrine of the precincts of the precincts of the temple grounds.<\/span><\/p>\n<p><b>About the origin of the name of Komagata<\/b><\/p>\n<p><span style=\"font-weight: 400;\">According to a company biography, around the 4th century, the &#8220;Keno&#8221; clan emerged in the Kanto region in the Kanto region, worshiping Akagiyama, and worshiping the god of Akagi to rule the Ueno plains. Divided into &#8220;Jomo no kuni&#8221; and &#8220;Shimoge no kuni&#8221;, Shimogeno founded Futarasan Shrine at Nikko Volcano.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This belief was worshiped against the background of a dormant volcano, and there is Mt.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is said that the \u201cKeno clan\u201d, who gradually expanded their power in the Tohoku area, chose a \u201cquiet volcano\u201d with a good shape and called \u201cKomagatake\u201d to enshrine Komagata Okami.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When we arrived at this place, we saw the appearance of &#8220;Isawa&#8221; plains, and solicited &#8220;Komagata Okami&#8221; on the summit, and named it &#8220;Komagatake&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is due to \u4e0a\u6bdb\u91ce\u80c6\u6ca2\u516c, who was at the time of the Emperor Yuuraku\u96c4\u7565\u5929\u7687 (around 456).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Sakaue Tamura Maro applies for promotion of the deity of Komagata Shrine, which was said to have been the &#8220;guardian deity of Emi&#8221; after the conquest.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">After that, it was told that the shrine was erected on the present summit of Komagatake (850), and it was collectively called &#8220;Komagatayama&#8221; along with &#8220;Komagatake&#8221;, &#8220;Ushigatayama&#8221;, and &#8220;Washigamoriyama&#8221;. An ancient monument of &#8220;Komagata Daimyojin&#8221; is still on the summit of &#8220;Dainichidake&#8221; (now Kyozukayama)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p>\n<p><b>Komagata Shrine Spring Festival &#8220;Children&#8217;s Horse Warrior Procession&#8221;<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Children aged 5 to 10 wear armor helmets, ride bravely on horseback, and walk through the city.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the old days, &#8220;Yorii Minamoto&#8221; and &#8220;Yoshiya&#8221; parents and children set up an arrowhead in the middle of &#8220;Komagatake&#8221; (mountain of Mt. Komagata Shrine) to pray for the peace of the region<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is an event dedicated to the shrine in hope of healthy growth of children<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11508\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-1-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-1-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-1.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11510\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-2-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-2-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-2.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/p>\n<h2><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">We will post pictures of both normal and snow scenes when visiting this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">15 minutes walk from JR Mizusawa Station From the entrance to Mizusawa Park<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11512\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the snow into the precincts<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11514\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>Arrived at Komagata shrine<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11516\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It is in front of Torii<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Snow-covered stone lantern A guardian dog is sitting<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11518\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11520\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In May, it&#8217;s in front of the Torii gate where azaleas are in bloom It&#8217;s the same place<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11522\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The torii is lined with pouring ropes, and the flat surface says &#8220;Komagata Shrine&#8221;<br \/>\n<\/span><span style=\"font-weight: 400;\">Bow and go through<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11524\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The approach leads straight to the Shinmon worship hall<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11526\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11528\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a &#8220;Temizuya&#8221; on the left side before the Shinmon Gate and cleanse it.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11530\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A lantern marked &#8220;Komagata Shrine&#8221; on the shrine<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11532\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The precincts are wide and spacious The stone pavement path continues straight so that you can distinguish the middle of the line, but for some reason everyone keeps walking along the middle of the line.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11534\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The precincts are another world when it comes to snow scenes<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11536\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-1-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-1-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-1-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-1-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-1.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In front of the front shrine, two trees stand on the left and right, and sometimes it is snowing and I feel the atmosphere<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11538\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">May is like a completely different shrine<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11540\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11542\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-2-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-2-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-2-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-2-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-2.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><b>I would like to go to the hall of worship. On the flat, there is &#8220;Komagata Shrine, Shohei Goto Shinpei 3rd place, Shinpei Goto\u300c\u99d2\u5f62\u795e\u793e \u6b63\u4e09\u4f4d\u52f2\u4e00\u7b49\u7537\u7235\u5f8c\u85e4\u65b0\u5e73\u300d&#8221;.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11544\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>The lantern is &#8220;National Komagata Shrine&#8221; and the basis for building the headquarters is written down.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11546\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>Give me a prayer.<br \/>\n<\/b><b>When you reach the god of worship, where you worship God&#8217;s power, pray with your hands together.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11548\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Look up to the main shrine from the side of the worship hall<br \/>\n<\/span><span style=\"font-weight: 400;\">Icicles dripping from the roof of the temple<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11550\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-801x600.jpg 801w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-768x575.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-202x150.jpg 202w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24.jpg 1024w\" sizes=\"(max-width: 801px) 100vw, 801px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In May, young leaves are thick and comfortable<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11552\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-025-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-025-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-025-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-025.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A shrine in the precincts sits next to it. I pray<\/span><\/p>\n<p><b>\u30fb\u5c71\u795e\u793e\uff08yama no kamisha\uff09<br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5927\u5c71\u8879\u795e\uff08oyamatsumi no kami\uff09<br \/>\n<\/b><b> \u6728\u82b1\u958b\u8036\u59eb\u795e\uff08konohanasakuya hime no kami\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11554\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11556\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>\u30fb\u5225\u5bae \u9e7d\u7ac3\u795e\u793e\uff08shiogama jinja\uff09<\/b><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u9e7d\u571f\u8001\u7fc1\u795e\uff08shiotsuchi no oji no kami\uff09<\/b><b><br \/>\n<\/b><b>\u6b66\u7515\u69cc\u795e\uff08takemikatsuchi no kami\uff09<\/b><b><br \/>\n<\/b><b>\u7d4c\u6d25\u4e3b\u795e\uff08futsunushi no kami\uff09<\/b><\/p>\n<p><b>\u300a\u5408\u300b\u5929\u5150\u5c4b\u6839\u795e\uff08ameno koyane no kami\uff09<\/b><b><br \/>\n<\/b><b>\u6bd4\u8ce3\u795e\uff08hime no kami\uff09<\/b><b><br \/>\n<\/b><b>\u85e4\u539f\u938c\u8db3\u671d\u81e3\uff08fujiwarakamatari no ason\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11558\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u6c34\u6ca2\u62db\u9b42\u793e\uff08mizusawa shokonsha\uff09<br \/>\n<\/b><b> \u300a\u4e3b\u300b\u90f7\u571f\u51fa\u8eab\u306e\u8b77\u56fd\u306e\u82f1\u970a<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11560\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The shrine office is located next to the southwest Shinmon gate in the precincts, and is the award office for red stamps and guards.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11562\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Worship and leave the precinct<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11564\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the torii and look back<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11566\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3><b>Tradition recorded in\u300e\u65e5\u672c\u6587\u5fb3\u5929\u7687\u5b9f\u9332\uff08nihon montokutenno jitsuroku\uff09\u300f<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u300e\u65e5\u672c\u6587\u5fb3\u5929\u7687\u5b9f\u9332\u300f\uff08\u5143\u61763\u5e74\uff08879\u5e74\uff09\u5b8c\u6210\uff09\u306f \u516d\u56fd\u53f2\u306e\u7b2c\u4e94\u306b\u3042\u305f\u308a<br \/>\n<\/span><span style=\"font-weight: 400;\">\u5e73\u5b89\u6642\u4ee3\u306b\u7de8\u7e82\u3055\u308c\u305f\u6b74\u53f2\u66f8\u3010\u6587\u5fb3\u5929\u7687\u306e\u5fa1\u4ee3\u3011[\u5609\u79653\u5e74\uff08850\uff09\uff5e\u5929\u5b892\u5e74\uff08858\uff09]\u306e8\u5e74\u9593\u3092\u8a18\u9332\u3057\u305f\u6587\u5fb3\u5b9f\u9332\u3068\u3082\u3044\u3044 \u7de8\u5e74\u4f53\u30fb\u6f22\u6587\u30fb\u516810\u5dfb<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u610f\u8a33<br \/>\n<\/span><span style=\"font-weight: 400;\">\u300c \u4ec1\u5bff\u5143\u5e74\uff08851\uff099\u67082\u65e5 \u9678\u5965\u56fd\u306e\u300c\u99d2\u5f62\u795e\u300d\u6b63\u4e94\u4f4d\u4e0b\u306b\u795e\u968e\u3092\u9032\u3080\u300d<\/span><\/p><\/blockquote>\n<p><b>\u3010\u539f\u6587\u53c2\u7167\u3011<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u300e\u65e5\u672c\u6587\u5fb3\u5929\u7687\u5b9f\u9332\u300f\u5143\u61763\u5e74\uff08879\u5e74\uff09\u5b8c\u6210 \u9078\u8005:\u85e4\u539f\u57fa\u7d4c\uff0f\u6821\u8a02\u8005:\u677e\u4e0b\u898b\u6797 \u520a\u672c\u520a\u672c ,\u5bdb\u653f08\u5e74 10\u518a[\u65e7\u8535\u8005]\u8fb2\u5546\u52d9\u7701<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047714&amp;ID=M2018040912122716848&amp;TYPE=&amp;NO=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11568\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-W-1-904x600.jpg\" alt=\"\" width=\"904\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-W-1-904x600.jpg 904w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-W-1-768x510.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-W-1.jpg 1024w\" sizes=\"(max-width: 904px) 100vw, 904px\" \/><\/p>\n<h3><b>Tradition written in &#8220;Nihon sandai jitsoku&#8221;<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u5e73\u5b89\u6642\u4ee3\u306b\u7de8\u7e82\u3055\u308c\u305f\u6b74\u53f2\u66f8 \u516d\u56fd\u53f2\u306e\u7b2c\u516d<\/span><\/p>\n<blockquote><p><b>\u610f\u8a33<br \/>\n<\/b><span style=\"font-weight: 400;\">\u300c\u8c9e\u89b34\u5e74\uff08862\uff096\u670818\u65e5 \u9678\u5965\u56fd \u6b63\u4e94\u4f4d\u4e0b\u300c\u99d2\u5f62\u795e\u300d\u5f93\u56db\u4f4d\u4e0b\u3092\u6388\u304b\u308b\u300d<\/span><\/p><\/blockquote>\n<p><b>\u3010\u539f\u6587\u53c2\u7167\u3011<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u5ef6\u559c\u5143\u5e74\uff08901\u5e74\uff09\u6210\u7acb \u9078\u8005:\u85e4\u539f\u6642\u5e73\uff0f\u6821\u8a02\u8005:\u677e\u4e0b\u898b\u6797 \u520a\u672c\uff08\u8dcb\u520a\uff09\u5bdb\u658713\u5e74 20\u518a[\u65e7\u8535\u8005]\u7d05\u8449\u5c71\u6587\u5eab<br \/>\n<\/span><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047721&amp;ID=M2014093020345388640&amp;TYPE=&amp;NO=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11570\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-U-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<p><b>It is said to be &#8220;Riku Chugoku Ichinomiya,&#8221; and &#8220;Okumiya&#8221; is settled on the summit of Komagatake Mountain. In ancient times, it was thought that the whole area was a production area for war horses.<\/b><\/p>\n<p><b>&#8220;Hai (hai)&#8221; at the Komagata shrine (90 degree bow)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11572\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Komagata Shrine Headquarters is called &#8220;Riku Chugoku Ichinomiya&#8221;, and &#8220;Okumiya&#8221; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.<\/p>\n","protected":false},"author":1,"featured_media":11489,"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-13982","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 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Komagata Shrine Headquarters is called &quot;Riku Chugoku Ichinomiya&quot;, and &quot;Okumiya&quot; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"shrine-heritager\"\/>\n\t<meta name=\"google-site-verification\" content=\"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\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=\"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Komagata Shrine Headquarters is called &quot;Riku Chugoku Ichinomiya&quot;, and &quot;Okumiya&quot; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-07-29T18:53:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-07-29T18:53:29+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Komagata Shrine Headquarters is called &quot;Riku Chugoku Ichinomiya&quot;, and &quot;Okumiya&quot; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#blogposting\",\"name\":\"\\u99d2\\u5f62\\u795e\\u793e \\u672c\\u793e\\uff08komagata shrine\\uff09 - Shrine-heritager\",\"headline\":\"\\u99d2\\u5f62\\u795e\\u793e \\u672c\\u793e\\uff08komagata shrine\\uff09\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1.jpg\",\"width\":1024,\"height\":768},\"datePublished\":\"2020-07-30T03:53:27+09:00\",\"dateModified\":\"2020-07-30T03:53:29+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#listItem\",\"name\":\"\\u99d2\\u5f62\\u795e\\u793e \\u672c\\u793e\\uff08komagata shrine\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#listItem\",\"position\":3,\"name\":\"\\u99d2\\u5f62\\u795e\\u793e \\u672c\\u793e\\uff08komagata shrine\\uff09\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\",\"name\":\"Shrine-heritager Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage \\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/s-\\u30bf\\u30a4\\u30c8\\u30eb\\u306a\\u3057.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/\",\"name\":\"\\u99d2\\u5f62\\u795e\\u793e \\u672c\\u793e\\uff08komagata shrine\\uff09 - Shrine-heritager\",\"description\":\"Komagata Shrine Headquarters is called \\\"Riku Chugoku Ichinomiya\\\", and \\\"Okumiya\\\" is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#mainImage\",\"width\":1024,\"height\":768},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\\\/#mainImage\"},\"datePublished\":\"2020-07-30T03:53:27+09:00\",\"dateModified\":\"2020-07-30T03:53:29+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"name\":\"Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager","description":"Komagata Shrine Headquarters is called \"Riku Chugoku Ichinomiya\", and \"Okumiya\" is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#blogposting","name":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager","headline":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1.jpg","width":1024,"height":768},"datePublished":"2020-07-30T03:53:27+09:00","dateModified":"2020-07-30T03:53:29+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#listItem","name":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#listItem","position":3,"name":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}}]},{"@type":"Organization","@id":"https:\/\/shrineheritager.com\/en\/#organization","name":"Shrine-heritager Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","url":"https:\/\/shrineheritager.com\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2024\/06\/s-\u30bf\u30a4\u30c8\u30eb\u306a\u3057.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/","name":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager","description":"Komagata Shrine Headquarters is called \"Riku Chugoku Ichinomiya\", and \"Okumiya\" is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#mainImage","width":1024,"height":768},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/#mainImage"},"datePublished":"2020-07-30T03:53:27+09:00","dateModified":"2020-07-30T03:53:29+09:00"},{"@type":"WebSite","@id":"https:\/\/shrineheritager.com\/en\/#website","url":"https:\/\/shrineheritager.com\/en\/","name":"Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","inLanguage":"en-US","publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","og:type":"article","og:title":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager","og:description":"Komagata Shrine Headquarters is called &quot;Riku Chugoku Ichinomiya&quot;, and &quot;Okumiya&quot; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan.","og:url":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/","article:published_time":"2020-07-29T18:53:27+00:00","article:modified_time":"2020-07-29T18:53:29+00:00","twitter:card":"summary_large_image","twitter:title":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09 - Shrine-heritager","twitter:description":"Komagata Shrine Headquarters is called &quot;Riku Chugoku Ichinomiya&quot;, and &quot;Okumiya&quot; is settled on the summit of Komagatake Mountains. In ancient times, it was thought that the area around the area was a production area for war horses. It is also said that in accordance with the Shinto Buddhist study with the horse head Kannon and Dainichi Nyorai, they are solicited and widely worshiped in various parts of Eastern Japan."},"aioseo_meta_data":{"post_id":"13982","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 05:08:24","updated":"2025-07-01 07:56:41","seo_analyzer_scan_date":null,"focus_keyword":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\t\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/"},{"label":"\u99d2\u5f62\u795e\u793e \u672c\u793e\uff08komagata shrine\uff09","link":"https:\/\/shrineheritager.com\/en\/%e9%a7%92%e5%bd%a2%e7%a5%9e%e7%a4%be-%e6%9c%ac%e7%a4%be%ef%bc%88komagata-shrine%ef%bc%89\/"}],"views":1543,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13982","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=13982"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13982\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/11489"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=13982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=13982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=13982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}