    <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":13574,"date":"2020-07-23T23:32:20","date_gmt":"2020-07-23T14:32:20","guid":{"rendered":"https:\/\/shrineheritager.com\/%e4%b8%89%e5%b6%8b%e5%a4%a7%e7%a4%be%ef%bc%88mishima-taisha%ef%bc%89\/"},"modified":"2023-09-20T02:33:52","modified_gmt":"2023-09-19T17:33:52","slug":"mishima-taisha","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/","title":{"rendered":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09"},"content":{"rendered":"<p><b>Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and island activities of the Izu Islands for a long time.<\/b> Since he went to pray in <b>the hope of starting and established the Samurai government in 1180, it became a shrine of the shogunate reverence through the Kamakura period, and it is still the center of the belief of izu peninsula as Izu Kuni Ichinomiya.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12043\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-6-415x600.jpg\" alt=\"\" width=\"415\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-6-415x600.jpg 415w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-6.jpg 709w\" sizes=\"(max-width: 415px) 100vw, 415px\" \/><\/p>\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><\/h3>\n<p><b> <\/b><span style=\"font-size: 130%;\"><b>\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09<br \/>\n<\/b><\/span><b> <\/b><b>\uff08\u307f\u3057\u307e\u305f\u3044\u3057\u3083\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Taisha<\/span> <span style=\"font-weight: 400;\">(taisha) and Myojin (myojin sun)<\/span><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><b>\u3000<\/b><span style=\"font-weight: 400;\">2-1-5 Omiya, Mishima, Shizuoka 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\/%E4%B8%89%E5%B3%B6\/%E3%80%92411-0035+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%89%E5%B3%B6%E5%B8%82%E5%A4%A7%E5%AE%AE%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%E2%88%92%EF%BC%95+%E4%B8%89%E5%B6%8B%E5%A4%A7%E7%A4%BE\/@35.1239208,138.9136563,17z\/data=!4m14!4m13!1m5!1m1!1s0x60199a84df94e5c7\" data-lkc-id=\"152\" 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\">\u4e09\u5cf6\u5e02 to \u4e09\u5d8b\u5927\u793e<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E4%25B8%2589%25E5%25B3%25B6%2F%25E3%2580%2592411-0035%2B%25E9%259D%2599%25E5%25B2%25A1%25E7%259C%258C%25E4%25B8%2589%25E5%25B3%25B6%25E5%25B8%2582%25E5%25A4%25A7%25E5%25AE%25AE%25E7%2594%25BA%25EF%25BC%2592%25E4%25B8%2581%25E7%259B%25AE%25EF%25BC%2591%25E2%2588%2592%25EF%25BC%2595%2B%25E4%25B8%2589%25E5%25B6%258B%25E5%25A4%25A7%25E7%25A4%25BE%2F%4035.1239208%2C138.9136563%2C17z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x60199a84df94e5c7?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u4e09\u5cf6\u5e02 to \u4e09\u5d8b\u5927\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E4%B8%89%E5%B3%B6\/%E3%80%92411-0035+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%89%E5%B3%B6%E5%B8%82%E5%A4%A7%E5%AE%AE%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%E2%88%92%EF%BC%95+%E4%B8%89%E5%B6%8B%E5%A4%A7%E7%A4%BE\/@35.1239208,138.9136563,17z\/data=!4m14!4m13!1m5!1m1!1s0x60199a84df94e5c7\">https:\/\/www.google.com\/maps\/dir\/\u4e09\u5cf6\/\u3012411-0035+\u9759\u5ca1\u770c\u4e09\u5cf6\u5e02\u5927\u5bae\u753a\uff12\u4e01\u76ee\uff11\u2212\uff15+\u4e09\u5d8b\u5927\u793e\/@35.1239208,138.9136563,17z\/data=!4m14!4m13!1m5!1m1!1s0x60199a84df94e5c7<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>\u3010\u5fa1\u796d\u795e (God&#8217;s name to pray)\u3011<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b>The god of the two pillars is generally referred to as &#8220;mishima Daimyojin&#8221;.<\/b><\/span><\/p>\n<p><span style=\"font-size: 120%;\"><b>\u300a\u4e3b\u300b\u5927\u5c71\u7947\u547d\uff08oyamatsumi no mikoto\uff09<\/b><b><br \/>\n<\/b><b> \u7a4d\u7fbd\u516b\u91cd\u4e8b\u4ee3\u4e3b\u795e\uff08tsumihayae kotoshironushi no kami\uff09<\/b><\/span><\/p>\n<p><span style=\"font-size: 120%;\"><b>\u300a\u914d\u300b\u963f\u6ce2\u795e\uff08awa no kami\uff09<\/b><b><br \/>\n<\/b><b> \u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\uff08ikonahime no mikoto\uff09<\/b><b><br \/>\n<\/b><b> \u694a\u539f\u795e\uff08yakiwara no kami\uff09<\/b><\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Protect of Mountines, the guardian deity of Yamamori Agricultural, forests and agricultural products<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u798f\u5fb3\u306e\u795e God of Fortune<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5bb6\u5185\u5b89\u5168 Safe and comfortable home life<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5546\u58f2\u7e41\u76db Wishing business prosperity<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u4ea4\u901a\u5b89\u5168 Pray for Traffic safety<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5b89\u7523 Healthy childbirth<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u521d\u5bae\u8a63 Baby prays at shrine for the first time<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u4e03\u4e94\u4e09\u8a63 7 year old 5 year old 3 year old celebration<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5384\u9664\u3051 Prayer at an age considered a milestone in life<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u958b\u904b Good luck<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u75c5\u6c17\u5e73\u7652 God cures the disease<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5408\u683c\u7948\u9858 Prayer for passing the exam<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u826f\u7e01\u7948\u9858 A desire to deepen connections and intimacy with good people<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u305d\u306e\u4ed6 etc<\/span><\/p>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<p><b>\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u6240\u8f09\u793e \u540d\u795e\u5927\u6708\u6b21\u65b0\u5617<br \/>\n<\/b><b>\u30fb \u4f0a\u8c46\u56fd\u4e00\u4e4b\u5bae\uff08izunokuni ichinomiya\uff09<br \/>\n<\/b><b>\u30fb \u5225\u8868\u795e\u793e<br \/>\n<\/b><b>\u30fb<\/b><b> \u4f0a\u8c46\u56fd\u7dcf\u793e<\/b><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The foundation is unknown.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Engishiki<\/span> <span style=\"font-weight: 400;\">Jimmeicho&#8221;<\/span><span style=\"font-weight: 400;\">(compiled in December 1927) states that izu kunigamo-gun (southern Izu Peninsula, Izu Islands) is located.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The present zaza was affiliated with Tabata-gun at that time, so it is different from the description.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then, various theories are proposed, and the Senza theory has become a popular theory.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At first, it is a theory that it was transferred to Izu Kokufu (current shrine) in Okawa-go, Tabata-gun in addition to Kamo-gun Mishima-go (The Island of Izu Islands) and To Taisha-go Shirahama (now Shirahama Shrine Ikonabi-\u54a9-mei Shrine) and to Izu Kokufu (current shrine area) in Ogawa-go, Tabata-gun.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The current place of the zaza can be confirmed from an article in the 4th year (1180) of &#8220;Azuma Kagami&#8221;<\/span><\/p>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12045\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\"><strong>Mishima Taisha<\/strong><\/span><\/p>\n<p><b>Festival God Oyama Gionjin and The Lord&#8217;s God<\/b><span style=\"font-weight: 400;\">\u3000<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Oyama Gionjin is the god of the mountain, and it is a god of the industrial industry and the god of the national land development management for the start of the forest agriculture.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The head god of the war is commonly referred to as Ebisu-sama, and it is a god of commerce, industry, fisheries, and Fukutoku amicable.<\/span><\/p>\n<p><b>The<\/b> <span style=\"font-weight: 400;\">foundation was very old in the former government mint taisha, and it sat in this place, and it became the place name of Mishima in the name of God. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the system of Enki, it was lined up to Myojin University, which is already the highest case, and it was deposited in the official mint of the monthly and New Year&#8217;s shrine, and 2000 bundles of the festival fee rice were received.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since the Middle Ages, the samurai have been revered, especially Minamoto Yoritomo, on August 17, 1944, when he volunteered deeply to raise his flag, and as soon as he succeeded, he built the shrine hall, dedicated the sacred treasure, and revered it more and more.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since then, he has gathered the reverence of the common people, including warlords of Takemon, and the name of Mishima Daimeijin has become widely known to the whole country.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In 1868, it was listed in the highest-established Kanmin Taisha Shrine, but the post-war government-mint system was abolished.<\/span><\/p>\n<p><b>Annual Festival<\/b> It is <span style=\"font-weight: 400;\">called a big festival in three days of 15th, 16th and 17th, mainly on August 16. <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, the festival is held 115 degrees a year.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Treasures<\/b> <span style=\"font-weight: 400;\">Including the National Treasure Umemaki-e Te Box (Hira Masako Dedication), Shigefumi Mune Tadakazu, Shigefumi Akiyoshi Shitasashi, Shigemi Mitsushima Today&#8217;s Book No, other old documents such as Yoritomo, Yoriie, Ando, Kenke, Sozui (Hayaun), etc. are stored. <\/span><\/p>\n<p><b>The shrine hall and the precincts<\/b> <span style=\"font-weight: 400;\">have been built several dozen times since ancient times, but the present shrine building is 11 years in 11 years of Kaei (the god of Mishima-Ogami)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It was completed in Keio 2 years by the priest Yadabe Shikibe Moriharu who collapsed due to the Tokai earthquake on April 4, investing a huge cost of more than 16,677 cars with 10 years.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">After that, some repairs were carried out by the Great Kanto Earthquake and the Izu Earthquake.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The precincts are about 15,000 tsubo (50,000 square meters).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;National Shrine Festival Comprehensive Survey (1995)&#8221; [Shrine Head Office]<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b>Wakamiya Shrine (Wakamiya shrine)<\/b><span style=\"font-weight: 400;\">(Setsha that enshrines the deity god of the debored Namei Shrine of The<\/span> God of The God of Mishima Ogami, The God of The Shrine of The Shrine of The Shrine of The Shrine of The Shrine of The God of The Great God of Mishima University)<span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u300a\u4e3b\u300b\u7269\u5fcc\u5948\u4e43\u547d\uff08monoimina no mikoto\uff09<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span> <b>\u8a89\u7530\u5225\u547d\uff08homutawake no mikoto\uff09<\/b><span style=\"font-weight: 400;\">\uff08\u7b2c15\u4ee3 \u5fdc\u795e\u5929\u7687\uff09<\/span><b><br \/>\n<\/b><b>\u795e\u529f\u7687\u540e\uff08jingu kogo\uff09<\/b><b><br \/>\n<\/b><b>\u5983\u5927\u795e\uff08hime no okami\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12047\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-6-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-6-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-6-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-6.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><b>\u30fb\u898b\u76ee\u795e\u793e\uff08mirume shrine\uff09(<\/b><span style=\"font-weight: 400;\">\u4e09\u5d8b\u5927\u795e\u306e\u4f0a\u8c46\u8af8\u5cf6\u306e\u5983\u795e\u516d\u67f1\u3092\u7940\u308b\u6442\u793e)<\/span><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u6ce2\u5e03\u6bd4\u58f2\u547d\uff08\u4f0a\u8c46\u5927\u5cf6\u306e\u5983\u795e\uff09<\/b><b><br \/>\n<\/b><b>\u4e45\u723e\u90fd\u6bd4\u54a9\u547d\uff08\u65b0\u5cf6\u306e\u5983\u795e\uff09<\/b><b><br \/>\n<\/b><b>\u4f0a\u8cc0\u725f\u6bd4\u54a9\u547d\uff08\u4e09\u5b85\u5cf6\u306e\u5983\u795e\uff09<\/b><b><br \/>\n<\/b><b>\u4f50\u4f0e\u591a\u9ebb\u6bd4\u54a9\u547d\uff08\u4e09\u5b85\u5cf6\u306e\u5983\u795e\uff09<\/b><b><br \/>\n<\/b><b>\u4f0a\u6ce2\u4e43\u6bd4\u54a9\u547d\uff08\u4e09\u5b85\u5cf6\u306e\u5983\u795e\uff09<\/b><b><br \/>\n<\/b><b>\u512a\u6ce2\u5937\u547d\uff08\u516b\u4e08\u5cf6\u306e\u5983\u795e\uff09<\/b><\/p>\n<p><b>\u6771\u4e94\u793e (<\/b><span style=\"font-weight: 400;\">\u5185\u5ead \u821e\u6bbf\u306e\u6771\u65b9\u306b\u93ae\u5ea7\u3057\u6b21\u306e5\u793e\u3092\u7940\u308b\u672b\u793e)<br \/>\n<\/span><b>\u30fb\u5927\u6960\u793e\u300a\u4e3b\u300b\u5927\u6960\u795e<br \/>\n<\/b><b>\u30fb\u5929\u795e\u793e\u300a\u4e3b\u300b\u74ca\u74ca\u6775\u5c0a<br \/>\n<\/b><b>\u30fb\u8056\u795e\u793e\u300a\u4e3b\u300b\u8056\u795e<br \/>\n<\/b><b>\u30fb<\/b><b>\u7b2c\u4e09\u793e\u300a\u4e3b\u300b\u7b2c\u4e09\u738b\u5b50<br \/>\n<\/b><b>\u30fb<\/b><b>\u5e78\u795e\u793e\u300a\u4e3b\u300b\u733f\u7530\u5f66\u795e<\/b><\/p>\n<p><b>\u897f\u4e94\u793e (<\/b><span style=\"font-weight: 400;\">\u5185\u5ead \u821e\u6bbf\u306e\u897f\u65b9\u306b\u93ae\u5ea7\u3057\u6b21\u306e5\u793e\u3092\u7940\u308b\u672b\u793e)<br \/>\n<\/span><b>\u30fb<\/b><b>\u5c0f\u6960\u793e\u300a\u4e3b\u300b\u5c0f\u6960\u795e<br \/>\n<\/b><b>\u30fb<\/b><b>\u7b2c\u4e8c\u793e\u300a\u4e3b\u300b\u7b2c\u4e8c\u738b\u5b50<br \/>\n<\/b><b>\u30fb<\/b><b>\u9152\u795e\u793e\u300a\u4e3b\u300b\u8c4a\u53d7\u6bd4\u58f2\u795e<br \/>\n<\/b><b>\u30fb<\/b><b>\u98ef\u795e\u793e\u300a\u4e3b\u300b\u4fdd\u98df\u795e<br \/>\n<\/b><b>\u30fb<\/b><b>\u8239\u5bc4\u793e\u300a\u4e3b\u300b\u5869\u571f\u8001\u7fc1<\/b><\/p>\n<p><b>\u30fb<\/b><b>\u7953\u6238\u795e\u793e\uff08harahedo shrine\uff09(<\/b><span style=\"font-weight: 400;\">\u5883\u5185\u897f\u5074\u306b\u93ae\u5ea7 \u7953\u6238\u56db\u67f1\u306e\u795e\u3092\u7940\u308b\u672b\u793e)<\/span><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u7e54\u6d25\u59eb\u795e\uff08seoritsuhime no kami\uff09<\/b><b><br \/>\n<\/b><b>\u901f\u79cb\u6d25\u59eb\u795e\uff08hayaakitsuhime no kami\uff09<\/b><b><br \/>\n<\/b><b>\u6c17\u5439\u6238\u4e3b\u795e\uff08ibukidonushi no kami\uff09<\/b><b><br \/>\n<\/b><b>\u901f\u4f50\u9808\u826f\u59eb\u795e\uff08hayasasuraihime no kami\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">\u685c\u5ddd\u304c\u6d41\u308c\u8fbc\u3080\u6c60\u306e\u4e2d\u306e\u5cf6\u306b\u93ae\u5ea7 \u56fd\u53f8\u306b\u3088\u3063\u3066\u3053\u306e\u5730\u306b\u5949\u658e\u3055\u308c \u56fd\u53f8\u306e\u5927\u793e\u53c2\u62dd\u306e\u969b\u306f\u5fc5\u305a\u5f53\u5730\u3067\u7953\u3044\u3092\u884c\u306a\u3063\u305f\u3068\u4e91\u3046<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12049\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb<\/b><b>\u53b3\u5cf6\u795e\u793e\uff08itsukushima shrine\uff09(<\/b><span style=\"font-weight: 400;\">\u5883\u5185 \u795e\u6c60\u4e2d\u306e\u5cf6\u306b\u93ae\u5ea7 \u5317\u6761\u653f\u5b50\u306e\u52e7\u8acb)<\/span><b><br \/>\n<\/b><b>\u300a\u4e3b\u300b\u5e02\u6775\u5cf6\u59eb\u547d\uff08ichikishimahime no mikoto\uff09<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12051\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb<\/b><b>\u4f0a\u8c46\u9b42\u795e\u793e (<\/b><span style=\"font-weight: 400;\">\u4f0a\u8c46\u4e00\u5186\u306e\u6226\u6ca1\u82f1\u970a\u4e8c\u4e09\u4e03\u4e8c\u67f1\u3092\u7940\u308b\u5883\u5185\u672b\u793e)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u300a\u4e3b\u300b\u8b77\u56fd\u306e\u82f1\u970a<\/b><\/p>\n<p><b>\u30fb<\/b><b>\u6de1\u5d8b\u795e\u7891\u300a\u4e3b\u300b\u6de1\u5cf6\u795e<\/b><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(Preliminary knowledge of this shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\">\u300fThe two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide. <\/span><\/p>\n<h3><span style=\"color: #0000ff;\"><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\uff08engishiki jimmeicho\uff09The shrine record was completed in December 927 AD.<\/b><\/span><\/h3>\n<p><b>[\u65e7 \u884c\u653f\u533a\u5206]\uff08Old administrative district\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"font-size: 120%; color: #0000ff;\">\u6771\u6d77\u9053 731\u5ea7\u2026\u592752\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u561719\uff09\u30fb\u5c0f679<\/span><br \/>\n<\/b><b>[\u65e7 \u56fd \u540d ]\uff08old county name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"font-size: 120%; color: #0000ff;\">\u4f0a\u8c46\u56fd 92\u5ea7\uff08\u59275\u5ea7\u30fb\u5c0f87\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"font-size: 120%; color: #0000ff;\">\u8cc0\u8302\u90e1 46\u5ea7\uff08\u59274\u5ea7\u30fb\u5c0f44\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u540d\u795e\u5927 \u5927 \u5c0f]Ceremony Meishin Taisha <span style=\"font-size: 120%; color: #0000ff;\">\u5f0f\u5185 \u540d\u795e\u5927\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ] <span style=\"font-size: 120%; color: #0000ff;\">\u4f0a\u8c46\u4e09\u5cf6\u795e\u793e\uff08\u540d\u795e\u5927\u6708\u6b21\u65b0\u5617\uff09<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"color: #0000ff;\">\uff08\u3044\u305a\u307f\u3057\u307e\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 120%; color: #0000ff;\">\uff08izumishima 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;\">Image Use<br \/>\n<\/span> <span style=\"font-weight: 400;\">National Diet Library Digital Collection Enki-shiki Publication (Baba) [Former Kurashi] Autumn Leaves Yama Bunko<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12054\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-4-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-4-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-4-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-4.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">\u3042\u306a\u305f\u304c \u3053\u306e\u795e\u793e\u306b\u8208\u5473\u304c\u6e67\u304f\u3088\u3046\u306a\u4e88\u5099\u77e5\u8b58\u3092\u30aa\u30bf\u30af\u8996\u70b9\u3067\u3054\u7d39\u4ecb\u3057\u307e\u3059<\/span><\/h3>\n<h4><b>It is five companies that were considered to be the outer setsha of Mishima Taisha, and it is considered to be the company of &#8220;Engishiki Jimmeicho&#8221;.<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">Izu Province is one of the rule-of-law countries that used to be a local administrative division of Japan, and in modern administrative divisions, &#8220;Shizuoka Prefecture Izu Peninsula&#8221; &amp; &#8220;Tokyo Izu Islands&#8221; become the equivalent area Mishima Taisha was &#8220;Izu Kuni Ichinomiya&#8221;, and Ninomiya, Sannomiya, and Shinomiya were setsha outside the border.<\/span><\/p>\n<h5><b>(1) &#8220;Asama Shrine&#8221;<\/b><span style=\"font-weight: 400;\">(Ninomiya, Izu Province) Zhenzachi: Shibamoto-cho, Mishima 6-3<\/span><\/h5>\n<p><b>(Izu Kunigamo-gun, Iga-mu-Himei Shrine)<\/b><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b>\u2781 &#8220;Yangbara Shrine&#8221;<\/b><span style=\"font-weight: 400;\">(Sannomiya, Izu province) Jinzachi: 4-7 Kitada-cho, Mishima City<\/span><\/h5>\n<p><b>(Izu Kunidata-gun, Yangbara Shrine, Meishin University) &#8220;Engishiki&#8221; Ronsha<\/b><b><\/b><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b><\/b><b>\u2782 &#8220;Hirose Shrine&#8221;<\/b><span style=\"font-weight: 400;\">(Izukuni Shinomiya) Jinzachi: Mishima City Ichimachi 19 (Rakujuen)<\/span><\/h5>\n<p><b>(Hirose Shrine, Izu Kunidata-gun)<\/b><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b>(4) &#8220;Uuchi Shrine&#8221;<\/b> <span style=\"font-weight: 400;\"> (God of The Gate) Jinzachi: Umena 1, Mishima City<\/span><\/h5>\n<p><b>(Izu Kunitakata-gun, Ametose KitaChimei Shrine) &#8220;Engishiki&#8221;<\/b><b><br \/>\n<\/b><b>(Izu Kunigamo-gun, Iami-\u6c10Betsumei Shrine)<\/b><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h5><b>\u2784 &#8220;Sauchi Shrine&#8221; <\/b> <span style=\"font-weight: 400;\">(God of The Gate) Jinzachi: Mishima Nakajima-ji Nishi 310-2<\/span><\/h5>\n<p><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>(Bunri Shrine, Izu Kunidata-gun)<\/b><b><br \/>\n<\/b><b>(Izu Kunitakata-gun, Ametose KitaChimei Shrine) &#8220;Engishiki&#8221;<\/b><b><\/b><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h4><b>About &#8220;Harahedo shrine&#8221; (The end shrine that enshrines the god of the four pillars of The Temple on the west side of the precincts)<\/b><b><\/b><\/h4>\n<p><span style=\"font-weight: 400;\">It is a mysterious shrine of the formality that &#8220;It was a priesting here without fail at the time of the taisha visit of the kokuji&#8221; which is dedicated to this place on the island in the pond where the Cherry River of the subsoil water of Mt. Fuji flows, and it is thought that it was enshrined before Mishima Daisha moved to here separately from the taisha.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12056\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12058\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-6.jpg\" alt=\"\" width=\"974\" height=\"548\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-6.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-6-768x432.jpg 768w\" sizes=\"(max-width: 974px) 100vw, 974px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Mishima Taisha Precinct End Shrine<\/span><\/p>\n<p><b>Exorcism Shrine<\/b> <span style=\"font-weight: 400;\">(Harahedo Jinja) (also known as Urashima-san)<\/span><\/p>\n<p><b>Festival God<\/b> <span style=\"font-weight: 400;\">Oriz Himegami (Seoritsu Himenokami)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Hayaakitsu Himegami (Hayaakitsuhimenokami)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Kibukido Lord God (Ibukidoninokami)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Hayasa Sura Himegami (Hayasasrehimenokami)<\/span><\/p>\n<p><b>Goyu<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">Once upon a time, the clear stream of Sakuragawa flowed in and it was a refreshing place to look around the island.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The \u5ef0 (chow) of the Kokushi (Kokushi) enshrines the Exorcism (Harahedono wolf) on this island.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that it is the origin of The Shrine (Harahedojinja) that Kuniji (Kokushi) did the Bokbe (Urabe) of the country and performed the exorcism at the time of the visit to Mishima Taisha.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since then, Sakuragawa has also been called the Exorcism River, and on the west side of this island, it is called Uramachi (Uramachi) and Otorisho-cho (Harahedomachi) and Miyagawa-cho (Miyagawamachi) etc. as the place where the Bokbe (Urabe) lived in the old days, and it becomes the ujiko area of this company and is holding a festival event.<\/span><\/p>\n<p><b>Festival<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">June 30<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">December 31<\/span><\/p>\n<p><b>Gozo-ei<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is unknown that the old thing is, but the state of your company of a considerable scale is known in the old picture of Ichihen Seie (Kamakura period)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Recently, on May 1988, the priest, Yadabe Shikibe Moriharu, was completed with the Taisha company and the shrine, and the Ministry of the Interior restored and renovated on July 8, 1946.<\/span><\/p>\n<p><b>Gomotoden<\/b> <span style=\"font-weight: 400;\">Kasuga-zukuri Four-way four-tsubo<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>Gokaiden<\/b> <span style=\"font-weight: 400;\">Irimaya-zukuri Rokutsubo<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the guide board of the precincts<\/span><\/p><\/blockquote>\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;\">About 1.1km from Mishima Station via Prefectural<br \/>\nRoad No. 51 about 15 minutes on foot<\/span> <span style=\"font-weight: 400;\">The place facing the old Tokaido Sits at the starting point of Shimoda Highway as the gateway to Izu.<\/span><\/p>\n<p><b>Arrived at Mishima Taisha<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A large torii gate and the company&#8217;s name &#8220;Mishima Taisha&#8221; are built at the head of the company.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12060\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Bow through the torii gate of the head of the company.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12062\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a stone on the<br \/>\nright hand side.<\/span> <span style=\"font-weight: 400;\">It&#8217;s a bit scary name,<br \/>\nbut I feel relieved when I read the guide board.<\/span> <span style=\"font-weight: 400;\">&#8220;Tangled \u579c is a tool to prevent the tangle of yarn, and the meaning word of the arrangement the stone which was placed at the intersection of the old Tokaido and arranged the person who came and went.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12064\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The approach extends straight through the kamiike pond, and it is a large, large precinct.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12066\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I visit the precinct shrine which is said to be a recommendation of Masako Hojo on the island in the shinto pond of the approach.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u30fb<\/b> <b>Itsukushima Shrine (itsukushima shrine)<\/b><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Ichikijima Himemei (ichikishiminami no mikoto)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12068\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12070\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Next, the &#8220;main gate&#8221; is built, and it goes through with a bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12072\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In addition, we walked along the approach of a row of cherry trees.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12074\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Shinmon&#8221; is built, and it goes through with a bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12076\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the center of the precincts, there is a &#8220;dance hall&#8221; built.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12078\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">You can see the shrine hall behind &#8220;Maiden&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12080\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>I&#8217;m going to go to the shrine.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12082\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Give me a prayer.<br \/>\n<\/b><b>When you reach the god of worship, where you worship God&#8217;s power, pray with your hands together.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12084\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left side towards the shrine hall, the shrine sits in the precincts and visits.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12086\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Left side immediately towards the shrine<\/span><\/p>\n<p><b>Wakamiya Shrine (Wakamiya shrine)<\/b><span style=\"font-weight: 400;\">(Setsha that enshrines the deity god of the debored Namei Shrine of The<\/span> God of The God of Mishima Ogami, The God of The Shrine of The Shrine of The Shrine of The Shrine of The Shrine of The God of The Great God of Mishima University)<span style=\"font-weight: 400;\"><br \/>\n<\/span><b>&#8220;Lord&#8221; Nana no Life (monoimina no mikoto)<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u3000\u3000\u3000\u3000<\/span><b>Homutake no mikoto<\/b><span style=\"font-weight: 400;\">(15th Emperor Ogami)<\/span><b><br \/>\n<\/b><b>Empress Jingu kogo<\/b><b><br \/>\n<\/b><b>Hime no okami<\/b><\/p>\n<p><span style=\"font-weight: 400;\">On the left side towards The Maiden<\/span><\/p>\n<p><b>Mirume shrine<\/b> <span style=\"font-weight: 400;\">(Setsha dedicated to the six pillars of the Princess of the Izu Islands of Mishima Ogami)<\/span><b><br \/>\n<\/b><b>&#8220;Lord&#8221; Hafu Hieimei (The Queen of Izu Oshima)<\/b><b><br \/>\n<\/b><b>The Life \u54a9 Kujito (The Queen of Niijima)<\/b><b><br \/>\n<\/b><b>Iga-muhi\u54a9 Life (The Queen of Miyakejima)<\/b><b><br \/>\n<\/b><b>The Life \u54a9 The Life of The Princess of Miyakejima<\/b><b><br \/>\n<\/b><b>The Life of \u54a9 Inami (The Queen of Miyakejima)<\/b><b><br \/>\n<\/b><b>Yunami Imei (The Queen of Hachijo Island)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12088\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right side towards The Maiden, there is a god tag awarding place where you can award amulets, seals, etc.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12090\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12092\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;ll leave the precincts and return to the Shrine Gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12094\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We&#8217;ll go back the approach, go through the main gate, look back, and bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12096\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">If you go west from the main gate instead of the direction of kamiike a little while ago, you will<\/span> see <b>&#8220;Harahedo Shrine&#8221;<\/b> of <span style=\"font-weight: 400;\">the precincts.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12098\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">As I mentioned earlier, I&#8217;ll leave out the details, but originally, it would be the right way to visit here, so there&#8217;s also a temizusha.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12100\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<p><b>There is a theory that Mishima no kami is the god of the Izu Islands called &#8220;mishima no kami&#8221; (awe-honored name<br \/>\nfor the Izu Islands of people who were in awe of ancient eruptions)<\/b> <b>It is said that the old place of the zhenza was &#8220;Mishima&#8221;.<\/b><\/p>\n<h3><b>&#8220;Nihonn koki&#8221; Ismon 9 (832) May \u7678 (22nd) Article on the company site<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">&#8220;Nihon koboki&#8221; is a record of 792-833 (42 years) (10 existing volumes in the history of six countries)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Mishima Taisha is said to have originally been enshrined in Shirahama, Shimoda City, izu islands, and the description is considered to be a description at the time of Shirahama Jinza, so I take care of &#8220;Meishin&#8221; because it showed the god of god at this time.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\"> <strong>Original text<\/strong> <\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Izu Kunigen Kami Mishima-jin Ikonahi\u54a9 God Nizen-minmeijin Fukai \u6467 Takaganhei Zonoji 2,000-cho-ku Sakushinjinji-in Ike-Sanji Kami-Igano no Katsumae-sui-sui-sui&#8221;<\/span><\/p>\n<p><b>Translation<br \/>\n<\/b> <span style=\"font-weight: 400;\">&#8220;There was a word from Izu Province&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Take care of the two-way gods of Mishima-jin (Mishima Taisha) and Ikonahi-\u54a9 &#8212; (Shimoda Shirahama Shrine)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">This god is in the \u6467 high of the deep valley that was blocked.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The land of Hirazo is permitted 2,000 towns, and the shinto shrine &#8220;Niin&#8221; system and the pond are three places to build.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The thing that God is different is a non-victory meter.<\/span><\/p><\/blockquote>\n<h3>Tradition <b>remaining in Tomito Mishima Shrine<\/b> <b>(Former Mijima Shrine)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">&#8220;Mishima no kami&#8221; of the festival god<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Izu Nanashima Island was pioneered, and on the way to &#8220;Mishima Taisha&#8221; from &#8220;Shirahama Shrine&#8221; in Kamo-gun (now Shirahama, Kawazu-cho) to Mishima Taisha, Mishima-cho, Tabata-gun (now Mishima City, Shizuoka Prefecture)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The &#8220;futo&#8221; here was also bathed in God&#8217;s virtues, so he said motomijima shrine (moto mishima shrine), but later changed it to Mishima Shrine.<\/span><\/p>\n<p><span style=\"color: #0000ff;\"><b>For more information, please refer to the article &#8220;Tomito Mishima Shrine (Motomishima Shrine)&#8221;<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n<h3><b>&#8220;Tsuku Nihon Koku Kokuki&#8221; (840)<\/b><\/h3>\n<h4><b>&#8220;Tsuku Nihon Koku Kokuki&#8221; 7th year (840) Tradition written on September 23<\/b><\/h4>\n<blockquote><p><strong>Summary<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Awa no kami&#8221; of Mishima-jin&#8217;s main wife (honmi) in Kamitsushima (Kozushima) The &#8220;monoimina no mikoto&#8221; of the son god is enshrined.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">On the night of July 5, 1938, a violent eruption occurred in Kamitsushima (Kozushima), but the result of the fortune-telling was that the guardian of The Mishima-jin (Ikonabi\u54a9 Life- Shirahama Shrine) was given the rank (Kamishina) to the third floor.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It was considered to be due to anger over the fact that &#8220;Awa no kami&#8221; (Awa no kami) (Awa \u54a9 life: Awamei Shrine) of the hongo had been reported.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"> <strong>\u610f\u8a33<\/strong> Translation <\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;The main shrine of Mishima Taisha is &#8220;awa no kami&#8221; which sits in Uezushima (now Kozushima).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, &#8220;monoimina no mikoto&#8221; is enshrined, but it is the god of &#8220;awa no kami&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The newly built shrine is 4 in the hospital, the stone room is 2 between the 2, the dark room 13 units, Tsushima is Shigeshige Kusagi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .<\/span><\/p><\/blockquote>\n<h4><b>&#8220;Tsuku Nihon Koku Kokuki&#8221; 7th year (840) Tradition written on The 14th of October<\/b><\/h4>\n<blockquote><p><span style=\"font-weight: 400;\">Summary<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the article about one month after receiving the article of The Article of September 23 of 840<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is written that the sacred floors of &#8220;Awa no kami&#8221; and &#8220;monomina no mikoto&#8221; rose from the infix to the fifth place down.<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;Continued Nihongoki&#8221; (869) Sadakan 11 years completion Winner: Fujiwara Ryobo \/ School revision: Tateno Spring Festival Kanmoto Hiromasa 2007 [former brewer] Ministry of the Interior<br \/>\n<\/span>https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047680&amp;ID=&amp;TYPE=&amp;NO<span style=\"font-weight: 400;\">=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12102\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-2-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-2-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-2-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-1-2.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12104\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-2-1-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-2-1-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-2-1-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-2-1.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12106\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-3-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-3-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-3-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-3.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12108\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-4-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-4-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-4-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-4.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12110\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-5-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-5-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-5-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-T-5.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/><\/p>\n<h3><b>It enters the Middle Ages from ancient times, and it is written as a document that can confirm the present seat in 1180 in the 4th year (1180) of &#8220;Azuma kagami&#8221;<\/b><\/h3>\n<h4><b>&#8220;Azumakagami&#8221; 4th year (1180) &#8220;Minamoto Yoritomo&#8217;s raising&#8221; written in the August 17 article (it is an important day that can be said to be a turning point to the samurai government in Japanese history)<\/b><\/h4>\n<blockquote><p><b>Summary<\/b><\/p>\n<p><span style=\"font-weight: 400;\">August 17 (current mid-September) Fine weather It becomes the Shinto ritual of Mishima Taisha<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On this day, Minamoto Yoritomo named him a soldier to kill Mr. Hei.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">On this day, Lord Yoritomo will visit Mishima Taisha Shrine just before the military.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">At the time of the final soldier&#8217;s army, Tokimasa Hojo said, &#8220;Today, there is a Shinto ritual of Mishima Taisha, so the crowd is worshiping, so when you go around Ushihoe Bouletra\u00dfe, you should go to the back road because it is suspected by people who come and go.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Yoritomo replies, &#8220;It&#8217;s a reasonable opinion, but it&#8217;s the beginning of a new world, so you can&#8217;t use the road, and you should go along the main street where you can&#8217;t use a horse on The Island Street.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Hojo Tokimasa and his friends shot arrow stones around Tenmanzaka in front of Yamaki Kanetaka&#8217;s mansion.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Many of Kanetaka&#8217;s followers were absent because they visited the Shrine of Mishima Taisha and stayed at the inn of the Yose River.<br \/>\nThe remaining samurai fought for death, but in the meantime, the Sasaki Sadatsuna brothers joined this battle after avenging Tsutsumi Nobuen.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As a result, Minamoto Yoritomo successfully avenged Yamaki Kanetaka.<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">\u3010\u539f\u6587\u53c2\u7167\u3011\u56fd\u7acb\u516c\u6587\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9\u300e\u543e\u59bb\u93e1\u300f \u6cbb\u627f04\u5e74\u5199\u672c \u5ba4\u753a[\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=F1000000000000047829&amp;ID=&amp;TYPE=&amp;NO=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12112\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-1-846x600.jpg\" alt=\"\" width=\"846\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-1-846x600.jpg 846w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-1-768x545.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-1.jpg 1024w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12114\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-2-846x600.jpg\" alt=\"\" width=\"846\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-2-846x600.jpg 846w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-2-768x545.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-2.jpg 1024w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12116\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-3-846x600.jpg\" alt=\"\" width=\"846\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-3-846x600.jpg 846w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-3-768x545.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-3.jpg 1024w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/><\/p>\n<h4><b>&#8220;Azuma Kagami&#8221; Bunji 4th year (1188) The first &#8220;nisho mode&#8221; written in the article of the New Year&#8217;s Day 20<\/b><\/h4>\n<p>Visit <span style=\"font-weight: 400;\">to &#8220;Izu province running yu gongen (Izuyama shrine)&#8221; and &#8220;Sagami province Hakone Gongen (Hakone Shrine)&#8221; where Minamoto Yoritomo-ko started, and visit to Mishima Taisha shrine is called &#8220;nisho mode&#8221;.<br \/>\n<\/span> <span style=\"font-weight: 400;\">It is said that the name of &#8220;nisho mode&#8221; took two of the former, both<br \/>\nof which are &#8220;God and Buddha&#8221; related to Yoritomo.<\/span> <span style=\"font-weight: 400;\">Since then, the kamakura shogun shogun has held almost a new year&#8217;s annual event through the Kamakura Shogunate.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Bunji 4th year (1188) New Year&#8217;s Day is written about the Shinto ritual of &#8220;nisho mode&#8221; below summary<\/span><\/p>\n<p><b>1188 New Year&#8217;s Day 16<br \/>\n<\/b> <span style=\"font-weight: 400;\">Mr. Yoritomo visited Tsuruoka Hachimangu Shrine, and after returning to the Imperial Palace, he started bathing at Shojin Kiyoshisai in two places.<\/span><\/p>\n<p><b>1188 New Year&#8217;s Day<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The departure in two places approached, and I ordered it again today though it ordered in advance to guard the mountain road to the country imperial people such as Kai Izu Suruga etc.<br \/>\nThat&#8217;s because you&#8217;re especially cautious because you still don&#8217;t know where Yoshitsune is.<\/span><\/p>\n<p><b>20th Of New Year&#8217;s Day,1188<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Yoritomo left Kamakura and visited Izuyama Gongen Hakone Gongen Mishima Taisha Shrine.<br \/>\nBushu \u53c3 Junshu Genshin \u014co Kamiso Nitta Kurato Satomi Kanjin Tokukawa Saburo, etc.<br \/>\nGoro Izawa Mijiro Koyama&#8217;s attendants were 300 cavalry.<br \/>\nIt is said that as a person in charge of Miura Sukeyoshisumi, he made a ukibashi (Funabashi) on the Sagami River.<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference to the original text] National Archives Digital Archives [Azuma Mirror] Jijo 04 Manuscript Muromachi [former kurashi] Autumn Leaves Yama Bunko<br \/>\n<\/span> <span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047829&amp;ID=&amp;TYPE=&amp;NO=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12118\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-4-846x600.jpg\" alt=\"\" width=\"846\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-4-846x600.jpg 846w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-4-768x545.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-4.jpg 1024w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12120\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-5-846x600.jpg\" alt=\"\" width=\"846\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-5-846x600.jpg 846w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-5-768x545.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-ZZ-5.jpg 1024w\" sizes=\"(max-width: 846px) 100vw, 846px\" \/><\/p>\n<p><b>As Izu Kuni Ichinomiya, he had been revered by the Imperial Court as a god responsible for the eruption and island activities of the Izu Islands for a long time.<\/b><\/p>\n<p><b>&#8220;hai&#8221; (90 degree bow) to Mishima Taisha (mishima taisha)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12122\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-1-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-1-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-1-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-2-1.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p><span style=\"font-size: 130%;\"><strong><span style=\"color: #0000ff;\">Please see the article of Ikonabi \u54a9 Mei Shrine (Shirahama Shrine) which is said to be a former shrine.<\/span><\/strong><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong>\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/\" class=\"st-cardlink\">\n\t\t\t<div class=\"kanren st-cardbox\" >\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\/07\/s-1-15.jpg\" class=\"attachment-full size-full wp-post-image\" alt=\"\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-15.jpg 1024w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-15-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\">Ikonahime no mikoto shrine (Shirahama Shrine)<\/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>Ikonahime no mikoto shrine, according to the good luck of the shrine, &#8220;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&#8221;, and the pioneer god of izu islands &#8220;Mishima-jin &#8211; Mishima-jin&#8221; and the empress god &#8220;Ikonahime no mikoto&#8221; The hill &#8220;hitachiyama&#8221; on the Shirahama coast of the jinzachi area is a ritual site that enshrines the Izu Islands since ancient times, but the rituals of Ikonahime no mikoto Shrine are still continuing.<\/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<\/strong><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times.\u3000As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.<\/p>\n","protected":false},"author":1,"featured_media":12041,"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,322],"class_list":["post-13574","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=\"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.\" \/>\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\/mishima-taisha\/\" \/>\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=\"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/mishima-taisha\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-07-23T14:32:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-09-19T17:33:52+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.\" \/>\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\\\/mishima-taisha\\\/#blogposting\",\"name\":\"\\u4e09\\u5d8b\\u5927\\u793e\\uff08mishima taisha\\uff09 - Shrine-heritager\",\"headline\":\"\\u4e09\\u5d8b\\u5927\\u793e\\uff08mishima taisha\\uff09\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-5.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-07-23T23:32:20+09:00\",\"dateModified\":\"2023-09-20T02:33:52+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, \\u4e2d\\u90e8\\u5730\\u65b9, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#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\\\/mishima-taisha\\\/#listItem\",\"name\":\"\\u4e09\\u5d8b\\u5927\\u793e\\uff08mishima taisha\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#listItem\",\"position\":3,\"name\":\"\\u4e09\\u5d8b\\u5927\\u793e\\uff08mishima taisha\\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\\\/mishima-taisha\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#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\\\/mishima-taisha\\\/#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\\\/mishima-taisha\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/\",\"name\":\"\\u4e09\\u5d8b\\u5927\\u793e\\uff08mishima taisha\\uff09 - Shrine-heritager\",\"description\":\"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-5.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mishima-taisha\\\/#mainImage\"},\"datePublished\":\"2020-07-23T23:32:20+09:00\",\"dateModified\":\"2023-09-20T02:33:52+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":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager","description":"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.","canonical_url":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/","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\/mishima-taisha\/#blogposting","name":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager","headline":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-5.jpg","width":1024,"height":682},"datePublished":"2020-07-23T23:32:20+09:00","dateModified":"2023-09-20T02:33:52+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, \u4e2d\u90e8\u5730\u65b9, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#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\/mishima-taisha\/#listItem","name":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#listItem","position":3,"name":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\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\/mishima-taisha\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#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\/mishima-taisha\/#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\/mishima-taisha\/#webpage","url":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/","name":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager","description":"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-5.jpg","@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/#mainImage"},"datePublished":"2020-07-23T23:32:20+09:00","dateModified":"2023-09-20T02:33:52+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":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager","og:description":"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula.","og:url":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/","article:published_time":"2020-07-23T14:32:20+00:00","article:modified_time":"2023-09-19T17:33:52+00:00","twitter:card":"summary_large_image","twitter:title":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09 - Shrine-heritager","twitter:description":"Mishima Taisha had been revered by the Imperial Court as a god responsible for the eruption and construction activities of the Izu Islands since ancient times. As a Ichinomiya in Izu Province, it is the center of faith in the Izu Peninsula."},"aioseo_meta_data":{"post_id":"13574","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:55","updated":"2025-07-01 07:52:12","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\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":"\u4e09\u5d8b\u5927\u793e\uff08mishima taisha\uff09","link":"https:\/\/shrineheritager.com\/en\/mishima-taisha\/"}],"views":1823,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13574","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=13574"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/13574\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/12041"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=13574"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=13574"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=13574"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}