    <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":11340,"date":"2020-06-27T12:00:28","date_gmt":"2020-06-27T03:00:28","guid":{"rendered":"https:\/\/shrineheritager.com\/chokaizan-omonoimi-shrine\/"},"modified":"2020-06-27T23:58:17","modified_gmt":"2020-06-27T14:58:17","slug":"chokaizan-omonoimi-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/","title":{"rendered":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09"},"content":{"rendered":"<p><b>\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)<\/b><\/p>\n\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><\/h3>\n<p><b> <\/b><b><span style=\"font-size: 130%;\">\uff08chokaizan<\/span> omonoimi shrine\uff09<br \/>\n<\/b><b><span style=\"font-size: 120%;\">\uff08warabioka<\/span> kuchi no miya\uff09<\/b><b> <\/b><\/p>\n<h3><b>[\u8aad \u307f (How to read)] <\/b><\/h3>\n<p><b> <\/b><b>\uff08\u3061\u3087\u3046\u304b\u3044\u3056\u3093\u304a\u304a\u3082\u306e\u3044\u307f\u3058\u3093\u3058\u3083 \u308f\u3089\u3073\u304a\u304b\u304f\u3061\u306e\u307f\u3084\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">51 Kamigawaraoka Matsugaoka, Yusa Town, Yamagata Prefecture<\/span><\/p>\n<h3><b>[\u5730 \u56f3 (Google Map)]<\/b><\/h3>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E9%81%8A%E4%BD%90\/%E3%80%92999-8314+%E5%B1%B1%E5%BD%A2%E7%9C%8C%E9%A3%BD%E6%B5%B7%E9%83%A1%E9%81%8A%E4%BD%90%E7%94%BA%E4%B8%8A%E8%95%A8%E5%B2%A1%E6%9D%BE%E3%82%B1%E5%B2%A151+%E5%AD%97+%E5%87%BA%E7%BE%BD%E5%9B%BD%E4%B8%80%E4%B9%8B%E5%AE%AE+%E9%B3%A5%E6%B5%B7%E5%B1%B1%E5%A4%A7%E7%89%A9%E5%BF%8C%E7%A5%9E%E7%A4%BE%EF%BC%88%E8%95%A8%E5%B2%A1%E5%8F%A3%E4%B9%8B%E5%AE%AE%EF%BC%89\/@39.0045984,139.9191463,15z\/data=!4m14!4m13!1m5!1m1!1s0x5f8e9076a3f1ec7d\" data-lkc-id=\"129\" 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\">\u904a\u4f50 to \u51fa\u7fbd\u56fd\u4e00\u4e4b\u5bae \u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08\u8568\u5ca1\u53e3\u4e4b\u5bae\uff09<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E9%2581%258A%25E4%25BD%2590%2F%25E3%2580%2592999-8314%2B%25E5%25B1%25B1%25E5%25BD%25A2%25E7%259C%258C%25E9%25A3%25BD%25E6%25B5%25B7%25E9%2583%25A1%25E9%2581%258A%25E4%25BD%2590%25E7%2594%25BA%25E4%25B8%258A%25E8%2595%25A8%25E5%25B2%25A1%25E6%259D%25BE%25E3%2582%25B1%25E5%25B2%25A151%2B%25E5%25AD%2597%2B%25E5%2587%25BA%25E7%25BE%25BD%25E5%259B%25BD%25E4%25B8%2580%25E4%25B9%258B%25E5%25AE%25AE%2B%25E9%25B3%25A5%25E6%25B5%25B7%25E5%25B1%25B1%25E5%25A4%25A7%25E7%2589%25A9%25E5%25BF%258C%25E7%25A5%259E%25E7%25A4%25BE%25EF%25BC%2588%25E8%2595%25A8%25E5%25B2%25A1%25E5%258F%25A3%25E4%25B9%258B%25E5%25AE%25AE%25EF%25BC%2589%2F%4039.0045984%2C139.9191463%2C15z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x5f8e9076a3f1ec7d?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u904a\u4f50 to \u51fa\u7fbd\u56fd\u4e00\u4e4b\u5bae \u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08\u8568\u5ca1\u53e3\u4e4b\u5bae\uff09<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E9%81%8A%E4%BD%90\/%E3%80%92999-8314+%E5%B1%B1%E5%BD%A2%E7%9C%8C%E9%A3%BD%E6%B5%B7%E9%83%A1%E9%81%8A%E4%BD%90%E7%94%BA%E4%B8%8A%E8%95%A8%E5%B2%A1%E6%9D%BE%E3%82%B1%E5%B2%A151+%E5%AD%97+%E5%87%BA%E7%BE%BD%E5%9B%BD%E4%B8%80%E4%B9%8B%E5%AE%AE+%E9%B3%A5%E6%B5%B7%E5%B1%B1%E5%A4%A7%E7%89%A9%E5%BF%8C%E7%A5%9E%E7%A4%BE%EF%BC%88%E8%95%A8%E5%B2%A1%E5%8F%A3%E4%B9%8B%E5%AE%AE%EF%BC%89\/@39.0045984,139.9191463,15z\/data=!4m14!4m13!1m5!1m1!1s0x5f8e9076a3f1ec7d\">https:\/\/www.google.com\/maps\/dir\/\u904a\u4f50\/\u3012999-8314+\u5c71\u5f62\u770c\u98fd\u6d77\u90e1\u904a\u4f50\u753a\u4e0a\u8568\u5ca1\u677e\u30b1\u5ca151+\u5b57+\u51fa\u7fbd\u56fd\u4e00\u4e4b\u5bae+\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08\u8568\u5ca1\u53e3\u4e4b\u5bae\uff09\/@39.0045984,139.9191463,15z\/data=!4m14!4m13!1m5!1m1!1s0x5f8e9076a3f1ec7d<\/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><b>\u300a\u4e3b\u300b\u5927\u7269\u5fcc\u5927\u795e\uff08ohomonoimi no ohokami\uff09<\/b><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u4e94\u7a40\u8c4a\u7a63 Pray for good harvest<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u6d77\u4e0a\u5b89\u5168 Maritime safety<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5384\u9664\u958b\u904b Prayer at an age considered a milestone in life.Bring good luck and happiness.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">etc etc<\/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 \u51fa\u7fbd\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><img decoding=\"async\" class=\"alignnone size-large wp-image-10999\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-28-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-28-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-28-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-3-28.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><b>Dewa Kuninomiya \uff08chokaizan omonoimi shrine\uff09 History (abbreviated)<\/b><\/p>\n<p><b><\/b><b>The deity of the god of \u5927\u7269\u5fcc\u5927\u795e\uff08ohomonoimi no ohokami\uff09<\/b><\/p>\n<p><b><\/b><span style=\"font-weight: 400;\">According to the Yuosha shrine, it appeared in the country of the 12th Emperor \u666f\u884c\u5929\u7687, and the creation of the shrine is said to be the 29th Emperor \u6b3d\u660e\u5929\u7687 25 (564).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Mt. Chokai is an active volcano, and in the event of an eruption or other abnormal event, the royal court enshrined it and held a ceremony. The head office is located at the summit of the mountain,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The main shrine is enshrined at the summit of the mountain, and a village called &#8220;Kuchinomiya&#8221; is enshrined at the Nike places in Warabioka and Fukiura.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\uff08chokaizan omonoimi shrine\uff09 is lined up with the government office in November of 862 (862), and is listed in the Enki Shiki Shrine as Meishin Taisha along with Tsukiyama Shrine of Fukiura Shinza.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It later became Kazunomiya Dewa and gained the respect of Asano. In particular, he was respected by successive emperors, praying for the victory of Tachiyoshi Hachiman, the donation of land by Kennobu Kitahata, and the shrines of the Kamakura Shogunate and the Shonai lord.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since the middle of the Middle Ages, the shrines and Buddhist monasteries have been renowned to serve as shrine priests, but when the Shinto and Buddhist temples were separated in 1870,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">the shrine was restored to the old shrine, and in May 1871 (Meiji 4).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Fukiuraguchinomiya was lined up with Kokuchuchusha, but in July 1880,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">the summit main shrine was changed to Kokuchuchusha, and in 1881,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">the shrines of Warabioka and Fukiura were called Lonomiya. Established a system of biennial official festival execution. In 1955 (Showa 30), the three companies are collectively called the current company name.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The main shrine at the top of the mountain, like the shrine of Ise, is rebuilt every 20 years under the ceremonial construction. The current Gotenden was built in 1997.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 2007, the shrine of this shrine and the Zuijinmon and Kagura halls were designated as registered tangible cultural assets of the country, and in 2008, a wide precinct from the summit main hall to Kuchinomiya, It has been designated as a National Historic Site.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Main festival days (Warabioka Kuchinomiya)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">1\u67087\u65e5 \u5fa1\u7a2e\u8494\u795e\u4e8b<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">5\u67083\u65e5 \u4f8b\u5927\u796d \u8568\u4e18\u5ef6\u5e74\u821e\u5949\u7d0d<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">6\u670825\u65e5 \u4e94\u7a40\u8c4a\u7a63\u7948\u9858\u796d\u30fb\u7a32\u8377\u795e\u793e\u796d<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">10\u67082\u65e5 \u8358\u7167\u5c45\u6210\u795e\u793e\u796d<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">11\u670812\u65e5 \u65b0\u5617\u796d<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u5e73\u621023\u5e743\u6708\u5409\u65e5 \u5fa9\u5143 \uff2e\uff30\uff2f\u6cd5\u4eba\u904a\u4f50\u9ce5\u6d77\u89b3\u5149\u5354\u4f1a<\/span><\/p>\n<p><b>From the precincts guide board<\/b><\/p><\/blockquote>\n<p><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11000\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-24-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-24-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-24-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-4-24.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><b>chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 On the precinct<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><b> <\/b><span style=\"font-weight: 400;\">March 28, 2008<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The designated Mt. Chokai was repeatedly shrine- served since ancient times due to its unstable appearance and repeated volcanic activity, which has been repeated since ancient times. It is a mountain of religion that has been revered as the god of things.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the Middle Ages, it was established as a sacred place for Shugendo.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the modern age, Shugen people established their own activity bases around Mt. Chokai, and they decided to worship the sacred mountain.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Among them, the warabioka people, with Ryuzu-ji as the head of their school, were called Mt. Chokaiyama, Bunko and Sanjubo Waraboka, and boasted the most powerful force in the worship.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The main precincts are located almost in the center of the Kamiwarabioka area (commonly known as &#8220;Kamidera&#8221;), which retains the image of the shukubo village, such as &#8220;Oizumibo Nagayamon&#8221; (a nationally registered tangible cultural property).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When you dive through the flat and flat Zuishinmon (formerly the Niomon) of &#8220;Dewa Kazunomiya&#8221; donated by Tadashi Sakai, the lord of Shonai, you can see the vermilion Kagura hall on your right. At the Kaguraden, at the annual festival on May 3rd (&#8220;Daimonbei Matsuri&#8221;), the warrior enrollment (Yamagata prefecture designated intangible) is a performing art that is integrated with the training and passage rituals of Yamabushi. Folk cultural property) is dedicated.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Furthermore, as you proceed along the approach, you will find the main shrine facing south facing the Santorii gate, with a large front yard. This is a magnificent shrine that reminds us of what once was the rise of Warabioka.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In addition, in the precincts,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">in the precincts of Sakata,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Mitsuoka&#8217;s donation to the Houki Into (a tangible cultural property designated by Yusa Town) and the Yasushi Suruga Mamoru Sadakken are involved in the turmoil during the Tenpo years.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition to the Sueshaso Terui Nari Shrine (Yusa Town&#8217;s designated tangible cultural property) that enshrines, there is a stone monument with about 400 steps on the hillside of Mt. There is a &#8220;den&#8221; and a beech natural forest (a natural monument designated by Yusa Town) miraculously left in a lowland about 150 m above sea level.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This historic site represents the faith and cultural heritage of Mt. Chokai.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Precinct guide map Yusa Town Board of Education<\/span><\/p>\n<p><strong>From the precincts guide board<\/strong><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">A shrine of Kaze Shrine\u98a8\u795e\u793e and Sho Terui Nari Shrine\u8358\u7167\u5c45\u6210\u795e\u793e\u306e\u5408\u6bbf<\/span><\/p>\n<p><b>\u6442\u793e \u98a8\u795e\u793e\uff08fu shrine\uff09<\/b><b><br \/>\n<\/b><b>\u672b\u793e \u8358\u7167\u5c45\u6210\u795e\u793e\uff08sosho inari shrine\uff09(\u904a\u4f50\u753a\u6307\u5b9a\u6709\u5f62\u6587\u5316\u8ca1)<\/b><\/p>\n<p><b>\u300aMaster\u300bSuruga Yabe\u300a\u4e3b\u300b\u77e2\u90e8\u99ff\u6cb3\u5b88\u5b9a\u8b19<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11001\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-24-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-24-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-24-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-5-24.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">The festival god enshrines Edominamicho magistrate &#8220;Suruga Yabe Sadakage Ken&#8221; \u300c\u77e2\u90e8\u99ff\u6cb3\u5b88\u5b9a\u8b19\u300d<\/span><b><br \/>\n<\/b><span style=\"font-weight: 400;\">at the Tenpo 11th year (1840) in the three-sided territorial relocation riot (Shonai clan to Echigo Nagaoka, Echigo Nagaoka clan to Kawagoe, Kawagoe clan to Shonai). In Edo, efforts were made to prevent the shonai clan from being transposed, and the territory replacement was suspended. Afterwards, it was honed to enshrine the &#8220;Survey Yabe Shunken Yabe&#8221; Edominamicho who was imprisoned by the Matsudaira family of the Iwana Kuwana clan and died unemployment. 3 years (1846) Built by the request of local residents<\/span><\/p>\n<p><strong>Information board summary<\/strong><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11002\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-24-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-24-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-24-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-6-24.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">3 companies on the right side line up towards the main shrine<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11003\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-26-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-26-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-26-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-7-26.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the left<\/span><\/p>\n<p><strong>\u30fb\u672b\u793e \u706b\u93ae\u795e\u793e\uff08hozume shrine\uff09<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11004\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-25-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-25-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-8-25.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11005\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-25-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-25-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-25-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-9-25.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><strong>\u30fb\u672b\u793e \u677e\u30b1\u5ca1\u795e\u793e\uff08matsugaoka shrine\uff09<br \/>\n<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11006\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-24-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-24-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-10-24.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11007\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-11-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><strong>\u30fb\u672b\u793e \u767d\u5c71\u795e\u793e\uff08shirayama shrine\uff09<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11008\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-12-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11009\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-23-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-23-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-23-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-13-23.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><strong>To the main shrine, on your left hand<br \/>\n\u30fb\u672b\u793e \u6728\u4e08\u8449\u795e\u793e\uff08kidakeha shrine\uff09<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11010\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11011\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-22-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-22-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-22-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-15-22.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(Preliminary knowledge of this shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09\u300f<\/span><span style=\"font-weight: 400;\">The two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide.<\/span><\/p>\n<h3><b>\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;\"> ( Number of gods&#8217; seats )<\/span><b><span style=\"font-size: 130%;\">\u6771\u5c71\u9053 382\u5ea7\u2026\u592742\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u56175\uff09\u30fb\u5c0f340<\/span><br \/>\n<\/b><b>[\u65e7 \u56fd \u540d ]\uff08old county name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">( Number of gods&#8217; seats )<\/span><b><span style=\"font-size: 130%;\">\u51fa\u7fbd\u56fd 9\u5ea7\uff08\u59272\u5ea7\u30fb\u5c0f7\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">( Number of gods&#8217; seats )<\/span><span style=\"font-size: 130%;\"><b>\u98fd\u6d77\u90e1 3\u5ea7\uff08\u59272\u5ea7\u30fb\u5c0f1\u5ea7\uff09<\/b><\/span><\/p>\n<p><b>[\u540d\u795e\u5927 \u5927 \u5c0f] Ceremony Meishin Taisha<span style=\"font-size: 130%;\">\u5f0f\u5185 \u540d\u795e\u5927\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ]<span style=\"font-size: 130%;\"> \u5927\u7269\u5fcc\u795e\u793e\uff08\u8c9e\u30fb\u540d\u795e\u5927\uff09<\/span><\/b><\/p>\n<p><b>[\u3075 \u308a \u304c \u306a ]<span style=\"font-size: 120%;\">\uff08\u304a\u307b\u3082\u306e\u3044\u307f\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 130%;\">\uff08ohomonoimi no 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;\">\u753b\u50cf\u5229\u7528<br \/>\n<\/span><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 \u5ef6\u559c\u5f0f \u520a\u672c\uff08\u8dcb\u520a\uff09[\u65e7\u8535\u8005]\u7d05\u8449\u5c71\u6587\u5eab<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11012\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-7-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-7-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-7-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-B-1-7.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;\"> I will introduce the preliminary knowledge that will make you interested in this shrine from an otaku perspective.<\/span><\/h3>\n<h4><b>About &#8220;\u300c\u9ce5\u6d77\u5c71\uff08chokai san\uff09\u300d&#8221; where the main shrine of \u5927\u7269\u5fcc\u795e\u793e\uff08omonoimi shrine\uff09 sits<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">The main shrine of \u5927\u7269\u5fcc\u795e\u793e\uff08omonoimi shrine\uff09 is located at the top of an active volcano with an altitude of 2,236 m \u300c\u9ce5\u6d77\u5c71\uff08chokai san\uff09\u300d, which extends between Yamagata and Akita prefectures.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11345\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-34-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-34-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-34-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-16-34.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the old name, there was no mountain name \u300c\u9ce5\u6d77\u5c71\uff08chokai san\uff09\u300d<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the history of Rokugoku (orthodox history) such as &#8220;\u7d9a\u65e5\u672c\u5f8c\u7d00\uff08shoku nihon koki\uff09&#8221; (completed in 11th year of Jogan (869)),<br \/>\nthis mountain is named &#8220;ohomonoimi no ohokami&#8221; of Zinza in Sakumi-gun Was called<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The reason why it was called in this way and was revered as the Meishin Shrine was the period<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">when the Yamato Imperial Court was struggling to build a Ritsuryo state. The period of Keiun (704-708) and Wado (708-715) It coincides with the time when the Ezo expedition that started from the north to the beginning of the present north of Akita Shonai and beyond<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At that time, it is said that this region was covered with primeval forest and there were Ezo that were chased in the south.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">which had been chased to the south . In such a situation, Chokaisan, an active volcano that constantly explodes and occasionally explodes It seems to have been awe-inspiring for the Imperial Court<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Under this circumstance, &#8220;Ohomonoimi no ohokami&#8221; is said to be &#8220;monument&#8221; (to hate sinister uncleanness as a sacrifice).<br \/>\nThe theory that Yamato worshiped in advance as a god (active volcano) that causes mountain explosions was partly due to the fact that mountain worship was active.<br \/>\nIt is supposed that it was supposed to have been<\/span><\/p>\n<h4><b>Controversy over &#8220;Ichinomiya&#8221; \u30fb<\/b><b>\u5439\u6d66\uff08fuku ra\uff09and\u8568\u5ca1\uff08warabi oka\uff09 debate<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">As a mountain of training for Shinto and Buddhism, as a new god<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Chokai san has an altitude of 2,236m. Mountain worship is at its peak.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><strong>At the main climbing entrance<br \/>\n\u30fbYajima\/Otaki (Kigata entrance) Akita Prefecture side<br \/>\n\u30fbFukiura and Warabioka Yamagata Prefecture had four locations<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">It is a complicated aspect involving denominational and Buddhist denominational conflicts, etc. Different believers form a certain power at each entrance, and it was very common for them to disagree with each other.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the Edo period, a controversy began to emerge, arguing for the right place for a village at the foot of the mountain by insisting on the management and supervision right of the &#8220;Gongendo at the summit&#8221; (currently the &#8220;head office&#8221;). government is also involved in controversy, such as Han &#8220;will continue to vigorously endlessly followed<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Gotenden at the top of the mountain<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11014\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-19-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-19-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-17-19.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u30fbFukiura precedes Warabioka when responding to the Shinto-Buddha Separation Ordinance in 1868 (Meiji 1868)<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fbMembers of Fukiura devote all Shinto to Meiji (3rd year of Meiji) The next company name will also be the Daimonsai Shrine.<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fbMay 1871 (Meiji 4) The Daimonsai Shrine in Fukiura will be lined up with the Kokusun Chusha, and it will also be possible to manage the Gongendo on the summit.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The warriors of Warabioka have repeatedly petitioned Yamagata Prefecture and the Meiji government from Shinobu after Shinobi to try to regain their rights, but the litigation also fails. I thought<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u30fbAugust 7, 1880 (August 7, 1880) The left minister, Arisugawa Miya, will give a notice to his son, &#8220;The Gongendo at the summit will serve as the main shrine for the big shrine, and the big shrines of Fukiura and Warabioka will be used as the shrine (later the mouth). Nonomiya)\u201d<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fbThis notification was implemented in 1884 and the conflict between the two parties was settled.<\/span><\/p>\n<p><strong>The content of this irregular ritual system, which was issued as an eclectic proposal after a long debate,<br \/>\nis that &#8220;Kuchinomiya&#8221; of &#8220;Fukuura&#8221; and &#8220;warabi oka&#8221; is &#8220;Kokunomiya&#8221; The priest, who has a shrine office as a &#8220;great gods shrine&#8221;,<\/strong><br \/>\n<strong>is that both shrine offices will replace the shrine at the mountaintop main shrine located in Fukiura every year for one year.<\/strong><\/p>\n<p><span style=\"color: #0000ff;\"><b>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09<\/b><b>\u5439\u6d66\uff08fuku ra\uff09<\/b><b>\u53e3\u30ce\u5baeKuchinomiya <\/b><b>article also please visit<\/b><\/span><\/p>\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine-2\/\" class=\"st-cardlink\">\n\t\t\t<div class=\"kanren st-cardbox\" >\n\t\t\t\t\t\t\t\t\t<div class=\"st-cardbox-label\"><span style=\"background:#cca300;\" class=\"st-cardbox-label-text\">Read together<\/span><\/div>\n\t\t\t\t\t\t\t\t<dl class=\"clearfix\">\n\t\t\t\t\t<dt class=\"st-card-img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"682\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25-768x512.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t<\/dt>\n\t\t\t\t\t<dd>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<h5 class=\"st-cardbox-t\">chokaizan omonoimi shrine \uff08fuku ra kuchi no miya\uff09<\/h5>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"st-card-excerpt smanone\">\n\t\t\t\t\t\t\t\t<p>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09 is Ichinomiya Dewa Kuninomiya. There are 3 shrines with Mt. The Satomiya called &#8220;kuchi no miya&#8221; is located in two places, &#8220;\u300c\u5439\u6d66\uff08fuku ra\uff09\u300d&#8221; and &#8220;\u300c\u8568\u5ca1\uff08warabi oka\uff09\u300d&#8221;. It is an old company<\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"cardbox-more\">\u7d9a\u304d\u3092\u898b\u308b<\/p>\n\t\t\t\t\t\t\t\t\t\t\t<\/dd>\n\t\t\t\t<\/dl>\n\t\t\t<\/div>\n\t\t\t<\/a>\n\t\t\t\n<h4><b>Characteristics of warabi oka&#8217;s history and luck<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">As mentioned above, there is a power struggle at each of the trails in the holy place of Shugendo, &#8220;chokai san,&#8221; and there was a complicated relationship involving sectarian confrontations.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Among them, Warabioka Kuchinomiya is located at the southwest foot of Mt. Chokai.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is said that during the Edo period, it controlled the key to the &#8220;Gongen-do of the summit&#8221; (currently &#8220;Headquarters&#8221;) and was a great power of 33 Sobo (25 &#8220;Fukiura&#8221; and 18 Yajima).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Characters of the \u201cwarabi oka\u201d palace&#8217;s auspicious \u201cChinkaisan Kiseki Hiki\u201d (Hoei 6th year 1709) and \u201cChokaisan Engi Wasan\u201d (Kaei 5th year 1852) written around this time are the actors. It is a point to explain the premise that (role small angle) was opened.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u30fbIt was named &#8220;Mt. Chokai&#8221; because the &#8220;Gokai no Mori&#8221; was seen when the actor (role Kokaku) first climbed the mountain at &#8220;Mt. Chokai&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u30fbBecause evil spirits called &#8220;long and long legs&#8221; lived in &#8220;Mt. Chokai&#8221; and plagued the villagers, in the era of Emperor Tenmu(\u5929\u6b66\u5929\u7687), a pilgrim who continued his training\uff08\u5f79\u5c0f\u89d2\uff09defeated the devil and opened the mountain trail.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This kind of auspiciousness is also said to be due to the intention to counter it by advocating a theory that is older than the theory that was originally founded by &#8220;Jikaku Daishi (Enjin)&#8221;, which is transmitted to &#8220;Fukura&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11015\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-22-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-22-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-22-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-18-22.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the state when I visited this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">10 minutes by car from JR Yusa Station,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">20 minutes by car from Sakai Minato IC on the Nihonkai Tohoku Expressway<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When you turn left the position to climb from the plains prefectural road 373 No.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">of fields to spread Warabioka &#8220;one of Torii&#8221; is situated in the case of walk from here.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11016\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-18-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-18-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-18-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-19-18.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09<\/b><\/p>\n<p><b>Arrived at \uff08\u8568\u5ca1\u53e3\u30ce\u5bae\uff09\uff08warabioka kuchi no miya\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11017\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-20-2-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a wooden lantern at the entrance to the precincts, &#8220;Nino-torii&#8221; and &#8220;Zuijinmon (formerly Nioumon)&#8221;<br \/>\n<\/span><span style=\"font-weight: 400;\">\uff08chokaizan omonoimi shrine\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11018\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-18-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-18-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-18-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-21-18.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I will bow once and go through &#8220;Nii Torii&#8221;. It will be a festival. There will be a temple called &#8220;Mt.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11019\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-19-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-19-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-19-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-22-19.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Zuijinmon (formerly Niomon)&#8221; (registered as a national registered tangible cultural property in 2007) will be built.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11020\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-18-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-18-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-18-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-23-18.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Lanterns of &#8220;Ichinomiya&#8221; are lined up and &#8220;Ideno Kazunomiya&#8221; is on the flat<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11021\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-24-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you pass through the Zuijinmon gate, you will find the &#8220;Treasure Seal Tower&#8221; on the left hand side of which is the &#8220;Treasure Seal Tower&#8221; (contributed by Mitsuoka Honma, a merchandiser of Sakata&#8217;s 12th century (1800)).<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11022\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-25-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11023\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-26-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A vermilion Kaguraden (nationally registered tangible cultural property) will be built to the right. It was originally a bell tower (bell tower), but it is said that it was changed to Kaguraden by the 4th year of the Order of Divine Buddhism in Keio.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11024\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-16-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-16-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-16-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-27-16.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you go up the stone steps, &#8220;Sanno Torii&#8221; will be on your left.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11025\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-28-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When entering from Zuijinmon, turn left and go to the shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11026\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-29-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Main Hall &amp; Hall of worship&#8221; (Meiji 29 \u2013 Nationally Registered Tangible Cultural Property) is built in front. The main hall has a big roof and is powerful. A Komainu dog sits in front of the main hall.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11027\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-30-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11028\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-12-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-12-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-12-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-31-12.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Go to the hall of worship. The flat amount says &#8220;Dorigen, Chokaiyama&#8221;.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11029\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-11-400x600.jpg\" alt=\"\" width=\"400\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-11-400x600.jpg 400w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-32-11.jpg 682w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/p>\n<p><b>Give a prayer with prayers A prayer that puts both hands together,<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11030\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-33-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>A prayer that puts both hands together, praying to reach the deity of the festival<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11031\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-34-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Since the main hall and the worship hall are integrated, the building has a depth.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11032\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-35-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It is a tribute to the precincts of the shrine<br \/>\n<\/span><span style=\"font-weight: 400;\"> On the left hand side towards the main shrine is the Suisha \u6728\u4e08\u8449\u795e\u793e\uff08kidakeha shrine\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11010\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-14-21.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">On the right hand side of the main shrine, the four end companies are lined up.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11033\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-36-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A shrine of Kaze Shrine\u98a8\u795e\u793e and Sho Terui Nari Shrine\u8358\u7167\u5c45\u6210\u795e\u793e\u306e\u5408\u6bbf<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u6442\u793e \u98a8\u795e\u793e\uff08fu shrine\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u672b\u793e \u8358\u7167\u5c45\u6210\u795e\u793e\uff08sosho inari shrine\uff09(\u904a\u4f50\u753a\u6307\u5b9a\u6709\u5f62\u6587\u5316\u8ca1)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300aMaster\u300bSuruga Yabe\u300a\u4e3b\u300b\u77e2\u90e8\u99ff\u6cb3\u5b88\u5b9a\u8b19<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11034\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-37-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The flat amount says &#8220;Fu Shrine\/Inari Shrine&#8221; Does Inari Shrine mean the same as Inari Shrine?<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11035\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-38-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">3 companies line up next to it<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11036\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">From the left<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u672b\u793e \u706b\u93ae\u795e\u793e\uff08hozume shrine\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11038\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-39-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">\u672b\u793e \u677e\u30b1\u5ca1\u795e\u793e\uff08matsugaoka shrine\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><img decoding=\"async\" class=\"alignnone size-large wp-image-11037\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-40-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u672b\u793e \u767d\u5c71\u795e\u793e\uff08shirayama shrine\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11039\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-41-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I will return to the approach after leaving the precincts<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11040\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-42-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-42-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-42-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-42-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I always heard that the shrine office was absent, but on May 3 it was an annual festival so many people came and it was early in the morning so when I asked you I got a stamp<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11041\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-43-5-436x600.jpg\" alt=\"\" width=\"436\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-43-5-436x600.jpg 436w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-43-5.jpg 744w\" sizes=\"(max-width: 436px) 100vw, 436px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">At that time, I heard from the people in the office about the &#8220;dai ombei matsuri&#8221;, an annual festival on May 3rd, where there is an on bei in front of the kami yado.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Return to the approach<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11042\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-44-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-44-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-44-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-44-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go through the torii gate, look back, bow<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11043\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-45-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-45-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-45-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-45-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When going to \u795e\u5bbf\uff08kami yado\uff09, the \u5fa1\u5e63\uff08on bei\uff09was beautifully enshrined.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11044\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-46-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-46-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-46-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-46-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>What is the annual festival &#8220;dai ombei matsuri&#8221; on May 3 every year?<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Originally, it was a magnificent festival in which the trainees of Chokaiyama Warabioka competed for the on bei attached to the bamboo at the 10-month training event, and now the youth and the locals dressed as trainees It seems that people in the world take money (on bei)<\/span><\/p>\n<p><strong>\u5fa1\u5e63\uff08on bei\uff09\u306e\u5263\u5148\uff08ken saki\uff09\u306b\u306f<br \/>\nThe sun on the front and the moon on the back are drawn on the ken saki of the on bei to pray for the peace of the Mt. Chokai and the abundance of the five grains.<\/strong><\/p>\n<p><strong>\u5fa1\u5e63\uff08on bei\uff09in front of Shinjuku (Otorikan)<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11348\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-47-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-47-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-47-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-47-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3><b>The tradition of\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\uff08nihon sandai jitsuroku\uff09\u300fwritten on August 4, 2nd year of Genkei (878)<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">Summary<br \/>\n<\/span><span style=\"font-weight: 400;\">\u201cThe Akita Ryuran (Genkei no Ran) that occurred in the Heian period\u201d A fortune-telling of the Imperial Army&#8217;s defeat during the years 878 and 879. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Since ancient times, the &#8220;three gods of the big god, the god of the mountain, the god of the mountain,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">and the god of the small&#8221;, who have had a spiritual experience in the war since ancient times, said that the prayers could not reach because the gods returned to the bandits.<\/span><\/p><\/blockquote>\n<p><b>[See original text]<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9 \u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u5ef6\u559c\u5143\u5e74\uff08901\u5e74\uff09\u6210\u7acb <\/span><span style=\"font-weight: 400;\">\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-11046\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-1-1-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-1-1-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-1-1-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-1-1.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-11047\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-2-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-2-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-2-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-2.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<h3><b>The tradition of\u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\uff08nihon sandai jitsuroku\uff09\u300fwritten on February 27, 880<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Occurred in the Heian period &#8220;Akita Ebisuran (turbulence of the original Kei)&#8221; Motokei 2 years (878 years) &#8211; Motokei three years (879 years) was a Shojo in response to was welfare in peacetime after pacifying<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This is the last in the earlier Middle Ages Is the record of ascension<\/span><\/p>\n<p><span style=\"font-weight: 400;\">After that, when the Deputy Kunishi received the official certificate in the article on April 19, 1939 (939) in &#8220;Honcho Century&#8221;, he became the second highest queen.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Commitment<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300c \u51fa\u7fbd\u56fd \u6708\u5c71\u795e \u6b63\u4e09\u4f4d\u52f2\u56db\u7b49<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u5927\u7269\u5fcc\u795e \u6b63\u4e09\u4f4d\u52f2\u4e09\u7b49 \u306b\u4e26\u3073\u6388\u3051\u308b \u5f93\u4e8c\u4f4d\u3078\u965e\u53d9<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u300d<\/span><\/p><\/blockquote>\n<p><b>[See original text]<\/b><span style=\"font-weight: 400;\">\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9 \u300e\u65e5\u672c\u4e09\u4ee3\u5b9f\u9332\u300f\u5ef6\u559c\u5143\u5e74\uff08901\u5e74\uff09\u6210\u7acb <\/span><span style=\"font-weight: 400;\">\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-11048\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-3-849x600.jpg\" alt=\"\" width=\"849\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-3-849x600.jpg 849w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-3-768x543.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-U-3.jpg 1024w\" sizes=\"(max-width: 849px) 100vw, 849px\" \/><\/p>\n<p><b>As head office (Okumiya) sits on the summit of Mt. Chokai as Dewa Kuninomiya, the foot of the mountain is called &#8220;Kuchinomiya&#8221; and is located in two places, &#8220;fuku ra&#8221; and &#8220;warabi oka&#8221;. The shrine is settled down. It is said that the ritual of the shrine is the reign of Emperor Kinmei 25 years (more than 1400 years ago).<\/b><\/p>\n<p><b>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09\uff08\u8568\u5ca1\u53e3\u30ce\u5bae\uff09\uff08warabioka kuchi no miya\uff09<\/b><b> <\/b> <b>&#8220;hai&#8221; (90 degree bow)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-11049\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-48-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-48-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-48-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-48-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"color: #0000ff;\"><b>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09<\/b><\/span><span style=\"color: #0000ff;\"><b>\u5439\u6d66\uff08fuku ra\uff09<\/b> <b> Kuchinomiya<\/b> <b>article also please visit<\/b><\/span><\/p>\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine-2\/\" class=\"st-cardlink\">\n\t\t\t<div class=\"kanren st-cardbox\" >\n\t\t\t\t\t\t\t\t\t<div class=\"st-cardbox-label\"><span style=\"background:#cca300;\" class=\"st-cardbox-label-text\">Read together<\/span><\/div>\n\t\t\t\t\t\t\t\t<dl class=\"clearfix\">\n\t\t\t\t\t<dt class=\"st-card-img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1024\" height=\"682\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-25-768x512.jpg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t<\/dt>\n\t\t\t\t\t<dd>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<h5 class=\"st-cardbox-t\">chokaizan omonoimi shrine \uff08fuku ra kuchi no miya\uff09<\/h5>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"st-card-excerpt smanone\">\n\t\t\t\t\t\t\t\t<p>\u9ce5\u6d77\u5c71\u5927\u7269\u5fcc\u795e\u793e\uff08chokaizan omonoimi shrine\uff09 is Ichinomiya Dewa Kuninomiya. There are 3 shrines with Mt. The Satomiya called &#8220;kuchi no miya&#8221; is located in two places, &#8220;\u300c\u5439\u6d66\uff08fuku ra\uff09\u300d&#8221; and &#8220;\u300c\u8568\u5ca1\uff08warabi oka\uff09\u300d&#8221;. It is an old company<\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"cardbox-more\">\u7d9a\u304d\u3092\u898b\u308b<\/p>\n\t\t\t\t\t\t\t\t\t\t\t<\/dd>\n\t\t\t\t<\/dl>\n\t\t\t<\/div>\n\t\t\t<\/a>\n\t\t\t\n","protected":false},"excerpt":{"rendered":"<p>\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)<\/p>\n","protected":false},"author":1,"featured_media":10997,"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-11340","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ichinomiya-all-over-japan","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)\" \/>\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\/chokaizan-omonoimi-shrine\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-06-27T03:00:28+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-06-27T14:58:17+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)\" \/>\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\\\/chokaizan-omonoimi-shrine\\\/#blogposting\",\"name\":\"chokaizan omonoimi shrine\\uff08warabioka kuchi no miya\\uff09 - Shrine-heritager\",\"headline\":\"chokaizan omonoimi shrine\\uff08warabioka kuchi no miya\\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\\\/06\\\/s-1-27.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-06-27T12:00:28+09:00\",\"dateModified\":\"2020-06-27T23:58:17+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#listItem\",\"name\":\"chokaizan omonoimi shrine\\uff08warabioka kuchi no miya\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#listItem\",\"position\":3,\"name\":\"chokaizan omonoimi shrine\\uff08warabioka kuchi no miya\\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\\\/chokaizan-omonoimi-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/\",\"name\":\"chokaizan omonoimi shrine\\uff08warabioka kuchi no miya\\uff09 - Shrine-heritager\",\"description\":\"\\uff08chokaizan omonoimi shrine\\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \\uff08chokaizan omonoimi shrine\\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\\u6b3d\\u660e\\u5929\\u7687) 25 years (more than 1400 years ago)\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/s-1-27.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/chokaizan-omonoimi-shrine\\\/#mainImage\"},\"datePublished\":\"2020-06-27T12:00:28+09:00\",\"dateModified\":\"2020-06-27T23:58:17+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":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager","description":"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)","canonical_url":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#blogposting","name":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager","headline":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\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\/06\/s-1-27.jpg","width":1024,"height":682},"datePublished":"2020-06-27T12:00:28+09:00","dateModified":"2020-06-27T23:58:17+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#listItem","name":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#listItem","position":3,"name":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\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\/chokaizan-omonoimi-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/","name":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager","description":"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/06\/s-1-27.jpg","@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/#mainImage"},"datePublished":"2020-06-27T12:00:28+09:00","dateModified":"2020-06-27T23:58:17+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":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager","og:description":"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)","og:url":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/","article:published_time":"2020-06-27T03:00:28+00:00","article:modified_time":"2020-06-27T14:58:17+00:00","twitter:card":"summary_large_image","twitter:title":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09 - Shrine-heritager","twitter:description":"\uff08chokaizan omonoimi shrine\uff09 is called Dewakuni Ichinomiya. The head office (Okumiya) sits on the summit of Mt. Satomiya is seated in two places, The creation of the shrine of \uff08chokaizan omonoimi shrine\uff09 (Waraoka guchinomiya) is handed down to the Emperor Kinmei(\u6b3d\u660e\u5929\u7687) 25 years (more than 1400 years ago)"},"aioseo_meta_data":{"post_id":"11340","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 10:19:56","updated":"2025-07-01 07:47:15","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tchokaizan omonoimi shrine\uff08warabioka kuchi no miya\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":"chokaizan omonoimi shrine\uff08warabioka kuchi no miya\uff09","link":"https:\/\/shrineheritager.com\/en\/chokaizan-omonoimi-shrine\/"}],"views":1165,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11340","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=11340"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/11340\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/10997"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=11340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=11340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=11340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}