    <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":15876,"date":"2020-08-20T13:30:44","date_gmt":"2020-08-20T04:30:44","guid":{"rendered":"https:\/\/shrineheritager.com\/ikonahime-no-mikoto-shrine-shirahama-shrine\/"},"modified":"2020-08-20T13:30:44","modified_gmt":"2020-08-20T04:30:44","slug":"ikonahime-no-mikoto-shrine-shirahama-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/","title":{"rendered":"Ikonahime no mikoto shrine (Shirahama Shrine)"},"content":{"rendered":"<p><b>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;Ikonabi\u54a9&#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 Ikonabi \u54a9 Meise Shrine are still continuing.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12501\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-16-437x600.jpg\" alt=\"\" width=\"437\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-16-437x600.jpg 437w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-2-16.jpg 745w\" sizes=\"(max-width: 437px) 100vw, 437px\" \/><\/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> <span style=\"font-size: 130%;\"><b>Ikonahime no mikoto shrine (ikonamime no mikoto<br \/>\n shrine)<\/b><\/span>(Ikonahime Mikoto Kojija) <b><span style=\"font-size: 130%;\"> <\/span><\/b> <b> <\/b> <b>\uff08\u3044\u3053\u306a\u3072\u3081\u306e\u307f\u3053\u3068\u3058\u3093\u3058\u3083\uff09<\/b><\/p>\n<p><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/p>\n<p> <b> \u3000<\/b><span style=\"font-size: 120%;\"><br \/>\n  <b>Shirahama Shrine<\/b><br \/>\n<\/span><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Shirahama 2740, Shimoda City, 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%BC%8A%E8%B1%86%E6%80%A5%E4%B8%8B%E7%94%B0\/%E3%80%92415-0012+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%8B%E7%94%B0%E5%B8%82%E7%99%BD%E6%B5%9C%EF%BC%92%EF%BC%97%EF%BC%94%EF%BC%90+%E4%BC%8A%E5%8F%A4%E5%A5%88%E6%AF%94%E5%92%A9%E5%91%BD%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%BF%B1%E7%A5%9E%E7%A4%BE)\/@34.687106,138.9527582,15.24z\/data=!4m14!4m13!1m5!1m1!1s0x601758bc6b973afd\" data-lkc-id=\"166\" 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\">\u4f0a\u8c46\u6025\u4e0b\u7530\u99c5 to \u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e)<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%25E4%25BC%258A%25E8%25B1%2586%25E6%2580%25A5%25E4%25B8%258B%25E7%2594%25B0%2F%25E3%2580%2592415-0012%2B%25E9%259D%2599%25E5%25B2%25A1%25E7%259C%258C%25E4%25B8%258B%25E7%2594%25B0%25E5%25B8%2582%25E7%2599%25BD%25E6%25B5%259C%25EF%25BC%2592%25EF%25BC%2597%25EF%25BC%2594%25EF%25BC%2590%2B%25E4%25BC%258A%25E5%258F%25A4%25E5%25A5%2588%25E6%25AF%2594%25E5%2592%25A9%25E5%2591%25BD%25E7%25A5%259E%25E7%25A4%25BE%28%25E7%2599%25BD%25E6%25BF%25B1%25E7%25A5%259E%25E7%25A4%25BE%29%2F%4034.687106%2C138.9527582%2C15.24z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x601758bc6b973afd?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u4f0a\u8c46\u6025\u4e0b\u7530\u99c5 to \u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e)<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E4%BC%8A%E8%B1%86%E6%80%A5%E4%B8%8B%E7%94%B0\/%E3%80%92415-0012+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%8B%E7%94%B0%E5%B8%82%E7%99%BD%E6%B5%9C%EF%BC%92%EF%BC%97%EF%BC%94%EF%BC%90+%E4%BC%8A%E5%8F%A4%E5%A5%88%E6%AF%94%E5%92%A9%E5%91%BD%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%BF%B1%E7%A5%9E%E7%A4%BE)\/@34.687106,138.9527582,15.24z\/data=!4m14!4m13!1m5!1m1!1s0x601758bc6b973afd\">https:\/\/www.google.com\/maps\/dir\/\u4f0a\u8c46\u6025\u4e0b\u7530\/\u3012415-0012+\u9759\u5ca1\u770c\u4e0b\u7530\u5e02\u767d\u6d5c\uff12\uff17\uff14\uff10+\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e)\/@34.687106,138.9527582,15.24z\/data=!4m14!4m13!1m5!1m1!1s0x601758bc6b973afd<\/div><div class=\"lkc-excerpt\">Google \u30de\u30c3\u30d7\u3067\u5730\u56f3\u3092\u691c\u7d22\u3002\u4e57\u63db\u6848\u5185\u3001\u8def\u7dda\u56f3\u3001\u30c9\u30e9\u30a4\u30d6\u30eb\u30fc\u30c8\u3001\u30b9\u30c8\u30ea\u30fc\u30c8\u30d3\u30e5\u30fc\u3082\u3002\u898b\u3084\u3059\u3044\u5730\u56f3\u3067\u304a\u5e97\u3084\u30b5\u30fc\u30d3\u30b9\u3001\u5730\u57df\u306e\u60c5\u5831\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u4e16\u754c\u5730\u56f3\u3082\u65e5\u672c\u8a9e\u3067\u3001\u65c5\u306e\u30d7\u30e9\u30f3\u306b\u3082\u4fbf\u5229\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<h3><b>\u3010\u5fa1\u796d\u795e (God&#8217;s name to pray)\u3011<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b>\u300a\u4e3b\u300b\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\uff08ikonahime no mikoto\uff09<\/b><\/span><span style=\"font-weight: 400;\">(The After-The Great God of Mishima)<\/span><b><br \/>\n<\/b><span style=\"font-size: 120%;\"><b>Mishima Daimyojin<\/b><\/span><b><br \/>\n<\/b><span style=\"font-size: 120%;\"><b>\u898b\u76ee\uff08mime\uff09<\/b><\/span><span style=\"font-weight: 400;\">(Goddess, God of Mishima Daimyoji)<\/span><b><br \/>\n<\/b><span style=\"font-size: 120%;\"><b>\u82e5\u5bae\uff08wakamiya\uff09 (The<\/b><\/span><span style=\"font-weight: 400;\">God of Mishima Daimigami)<\/span><b><br \/>\n<\/b><span style=\"font-size: 120%;\"><b>\u5263\u30ce\u5fa1\u5b50\uff08tsurugi no miko\uff09 (tsurugi no miko)<\/b><\/span><span style=\"font-weight: 400;\">(The God of Mishima Daimigami)<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12503\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-16-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-16-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-16-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-3-16.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u516b\u65b9\u5384\u9664 Pray in every direction, except for trouble<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u7e01\u7d50\u3073 Deepen connections and intimacy with people<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u6d77\u4e0a\u5b89\u5168 Maritime safety<br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5927\u6f01\u6e80\u8db3 Good harvest and big catch<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5546\u58f2\u7e41\u76db Wishing business prosperity<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u5b89\u7523 Healthy childbirth<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u4ea4\u901a\u5b89\u5168 Pray for Traffic safety<\/span><span style=\"font-weight: 400;\"><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\u7b49etc<\/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\u793e<br \/>\n<\/b><b>\u30fb \u5225\u8868\u795e\u793e<\/b><\/p>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><b>According to the good luck of Shirahama Shrine, in the 6th year of Emperor Takayasu, &#8220;This god is transferred here from Miyakejima, and later it will be transferred to Mishima&#8221; and it is said that the god who came from the island was enshrined.<\/b><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">2,400 years ago, The God of The Festival, Mishima Daimigami, landed on Shirahama in Izu, riding the Kuroshio from the south with his eyes, Wakamiya, and the Son of the Sword.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is a god who handed over the land of Izu from the great god of Fuji, received Ikona Himei as a empress from Shimogamo of Minami Izu, settled in Shirahama, and later built Izu Nanashima.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the official website of Shizuoka Shrine Agency<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<blockquote><p><b> <\/b>Mishima Ogami (also known as the lord god) of the festival of IIkonahime no mikoto Shrine was a long time ago (more than 2,000 years ago. I came to Izu across the sea from the south.<\/p>\n<p><span style=\"font-weight: 400;\">The because this white sand beach was too beautiful that I arrived at this shirahama especially in Izu.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Mishima Ogami, who arrived at Shirahama, met the god of Mt. Fuji, the landowner of Izu, and handed over the land of Izu.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In addition, Mishima Ogami started to burn the island, or build an island, with the help of the god of the companion, the god of Wakamiya, the son of the sword, the dragon god of Izu, the sea god, and the thunder god because the land of Izu was small.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">First, we built a small island one night a day.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Because it is the first island, I named it Hatsushima.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next, Shima jinshujima (present-day Kozushima) where gods gather and consult,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Oshima, then on a big island,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next, Niijima made white with sea salt,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next, the sight of the attendant, Wakamiya, the island that makes the house of the son of the sword, Miyakejima,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next, Mikurajima to put the storehouse of Mishima Ogami,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then the island off the coast, towards the offing,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then a small small island,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next, Wang&#8217;s nose island, like the nose of the tengu<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Finally, we created the tenth island, Jujima (present-day Rishima).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Mishima Ogami, who created 10 islands in 7 days, placed a empress on the islands and created a child.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">These empresses and children are still enshrined as Shikiuchisha on the islands of Izu. Mishima Ogami loved the empresses and their children very much, but among them, Ikonahime no mikoto life was especially loved, and he was always close to Mishima Ogami.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Ogami built a shrine on Miyake jima island and stayed in Miyakejima for a while, but later came back to Shirahama with his beloved empress, Ikonahime no mikoto, the life and attendant&#8217;s appearance, Wakamiya, and the son of the sword.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">And, a big company was built in this Shirahama, and it lived in this beautiful Shirahama for a long time. That is the Life Shrine Ikonahime no mikoto.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300c\u5168\u56fd\u795e\u793e\u796d\u7940\u796d\u793c\u7dcf\u5408\u8abf\u67fb(\u5e73\u62107\u5e74)\u300d[\u795e\u793e\u672c\u5e81]<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b> <\/b><strong>\u30fb\u4e8c\u5341\u516d\u793e\u795e\u793e\uff08nijuroku sha shrine\uff09<\/strong><br \/>\n<strong>(At the time of Sengu in 1921, 26 shrines were enshrined in one company.)<br \/>\nIt was originally enshrined as a clan god in each house of the company house.)<\/strong><br \/>\n<strong>1.Shohiko Meimei Shrine 2.Miko Shrine 3.Ojin Emperor&#8217;s Shrine 4.Susanoo Mei Shrine 5.Tenji Roof Life Shrine<br \/>\n6.Ten-Moisture Life Shrine 7.Amaterasu-kodai Shrine 8.Class Nagatobe Shrine 9.Kihana Saki Yahime Mei Shrine 10.Seorizu Himemei Shrine<br \/>\n11.Kurainatamamei Shrine 12.Toyouki Hi-Seimei Shrine 13.Keitsu Main Life Shrine 14.Kumano Shrine 15.Kaitsumi Shrine<br \/>\n16.Kaizu Toyotamahiko Shrine 17.Dainen Shrine 18.Ishinaga Hieimei Shrine 19.Wakamiya Shrine 20.Hai Shrine<br \/>\n21.Dairai Shrine 22.Takako-san Rei Shrine 23.Kanayama Bikomei Shrine 224.Kanayama Hi-Life Shrine 25.Oyama-gion Shrine<br \/>\n26.Toyoto Grand Shrine<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12506\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-4-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12508\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-16-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-16-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-16-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-5-16.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Sunamura Inari Shrine<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12510\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-16-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-16-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-16-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-6-16.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Eye shrine<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u76ee\u5927\u795e<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12512\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-7-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>\u30fb\u898b\u76ee\u5f01\u8ca1\u5929\u793e\uff08mime benzaiten\uff09<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u898b\u76ee\u795e\uff08mime no kami\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12514\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-8-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Sakaigai Suesha (Ikonabi\u54a9 is said to be the former zaza of The Meise Shrine (Shirahama Shrine))<\/span><\/p>\n<p><b>\u30fb\u5341\u4e8c\u660e\u795e\u793e\uff08juni myojin sha\uff09<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u5927\u6960\u547d\u30fb\u5c0f\u6960\u547d\u30fb\u5fa1\u4ee3\u5fb3\u547d\u30fb\u611f\u8fb2\u516b\u7515\u547d\u30fb\u6a2a\u6c60\u547d<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Ikanmei, Chiumei, Okenmikomei, Okenbimei, Mita no No mei<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u4f0a\u8c46\u5948\u6bd4\u54a9\u547d\u30fb\u7a42\u4fbf\u611f\u5fdc\u547d<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12516\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-17-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-17-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-17-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-9-17.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58(Preliminary knowledge of this shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">This shrine has a long history.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33<\/span><span style=\"font-weight: 400;\">\uff08engishiki jimmeicho\uff09<\/span><span style=\"font-weight: 400;\">The two volumes that are regarded as important among all 50 ritual- style scrolls created by the Imperial Court during the middle Heian period are called &#8221; engishiki jimmeicho &#8221; (edited in December 927). Approximately 1100 years ago, the name of &#8220;2861 company&#8221; and the number of gods enshrined there are listed in the list of government offices (shikinaisha) nationwide.<\/span><\/p>\n<h3><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\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e\uff08\u540d\u795e\u5927\uff09<\/span><br \/>\n<\/b><b>[\u3075 \u308a \u304c \u306a ]<span style=\"color: #0000ff;\">\uff08\u3044\u3053\u306a\u3072\u3081\u306e\u307f\u3053\u3068\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"font-size: 120%; color: #0000ff;\">\uff08ikonahime no mikoto no kamino yashiro\uff09 <\/span><\/b><\/p>\n<p><span style=\"font-weight: 400;\">https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000004146&amp;ID=M2014101719562090086&amp;TYPE=&amp;NO=<\/span><span style=\"font-weight: 400;\">\u753b\u50cf\u5229\u7528<br \/>\n<\/span><span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3 \u5ef6\u559c\u5f0f \u520a\u672c\uff08\u8dcb\u520a\uff09[\u65e7\u8535\u8005]\u7d05\u8449\u5c71\u6587\u5eab<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12518\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-11-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-11-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-11-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-B-1-11.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h3><b>[Otaky Point] (Points Selected by Japan Otaku)<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">I will introduce the preliminary knowledge that you will be interested in this shrine from a otaku&#8217;s point of view.<\/span><\/p>\n<h4><b>About &#8220;12 Ming Shrine&#8221;, the former jinzachi of Ikonahime no mikoto (Shirahama Shrine)<\/b><\/h4>\n<p><strong>\u30fb\u5341\u4e8c\u660e\u795e\u793e\uff08juni myojin sha\uff09<\/strong><br \/>\n<strong>\u300a\u4e3b\u300b\u5927\u6960\u547d\u30fb\u5c0f\u6960\u547d\u30fb\u5fa1\u4ee3\u5fb3\u547d\u30fb\u611f\u8fb2\u516b\u7515\u547d\u30fb\u6a2a\u6c60\u547d<br \/>\n\u30fb\u4f0a\u8fe6\u547d\u30fb\u77e5\u5b87\u547d\u30fb\u5c3e\u5065\u5fa1\u5b50\u547d\u30fb\u5c3e\u5065\u6bd4\u547d\u30fb\u898b\u591a\u8afe\u547d<br \/>\n\u30fb\u4f0a\u8c46\u5948\u6bd4\u54a9\u547d\u30fb\u7a42\u4fbf\u611f\u5fdc\u547d<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12520\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-10-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h4><b>The location of &#8220;12 ming Shrine&#8221; which is said to be the former jinzachi of Ikonahime no mikoto (Shirahama Shrine)<\/b><\/h4>\n<p><span style=\"font-weight: 400;\">It is the &#8220;land of kami ake&#8221; northwest of Ikonahime no mikoto Shrine (Shirahama<br \/>\n Shrine<\/span>from <span style=\"font-weight: 400;\">R135, and going up the narrow road in front of Shimoda Prince Hotel, it sits on the right side and it is sitting on the right side about a 7 minute walk from Shirahama Shrine.<\/span><\/p>\n<p>Map of The Sing<\/p>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/dir\/%E4%BC%8A%E5%8F%A4%E5%A5%88%E6%AF%94%E5%92%A9%E5%91%BD%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%BF%B1%E7%A5%9E%E7%A4%BE)\/%E3%80%92415-0012+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%8B%E7%94%B0%E5%B8%82%E7%99%BD%E6%B5%9C%EF%BC%91%EF%BC%95%EF%BC%91%EF%BC%94+%E5%8D%81%E4%BA%8C%E6%98%8E%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%B5%9C)\/@34.6952777,138.9702963,17.64z\/data=!4m14!4m13!1m5!1m1!1s0x60175f45290cf78b\" data-lkc-id=\"167\" 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\">\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e) to \u5341\u4e8c\u660e\u795e\u793e(\u767d\u6d5c)<\/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%25BC%258A%25E5%258F%25A4%25E5%25A5%2588%25E6%25AF%2594%25E5%2592%25A9%25E5%2591%25BD%25E7%25A5%259E%25E7%25A4%25BE%28%25E7%2599%25BD%25E6%25BF%25B1%25E7%25A5%259E%25E7%25A4%25BE%29%2F%25E3%2580%2592415-0012%2B%25E9%259D%2599%25E5%25B2%25A1%25E7%259C%258C%25E4%25B8%258B%25E7%2594%25B0%25E5%25B8%2582%25E7%2599%25BD%25E6%25B5%259C%25EF%25BC%2591%25EF%25BC%2595%25EF%25BC%2591%25EF%25BC%2594%2B%25E5%258D%2581%25E4%25BA%258C%25E6%2598%258E%25E7%25A5%259E%25E7%25A4%25BE%28%25E7%2599%25BD%25E6%25B5%259C%29%2F%4034.6952777%2C138.9702963%2C17.64z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x60175f45290cf78b?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e) to \u5341\u4e8c\u660e\u795e\u793e(\u767d\u6d5c)<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E4%BC%8A%E5%8F%A4%E5%A5%88%E6%AF%94%E5%92%A9%E5%91%BD%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%BF%B1%E7%A5%9E%E7%A4%BE)\/%E3%80%92415-0012+%E9%9D%99%E5%B2%A1%E7%9C%8C%E4%B8%8B%E7%94%B0%E5%B8%82%E7%99%BD%E6%B5%9C%EF%BC%91%EF%BC%95%EF%BC%91%EF%BC%94+%E5%8D%81%E4%BA%8C%E6%98%8E%E7%A5%9E%E7%A4%BE(%E7%99%BD%E6%B5%9C)\/@34.6952777,138.9702963,17.64z\/data=!4m14!4m13!1m5!1m1!1s0x60175f45290cf78b\">https:\/\/www.google.com\/maps\/dir\/\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e(\u767d\u6ff1\u795e\u793e)\/\u3012415-0012+\u9759\u5ca1\u770c\u4e0b\u7530\u5e02\u767d\u6d5c\uff11\uff15\uff11\uff14+\u5341\u4e8c\u660e\u795e\u793e(\u767d\u6d5c)\/@34.6952777,138.9702963,17.64z\/data=!4m14!4m13!1m5!1m1!1s0x60175f45290cf78b<\/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<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">It is now a<br \/>\n border-ending company.<\/span> <span style=\"font-weight: 400;\">It is said to be the former zazachi &#8220;kami ake&#8221; of Ikonahime no mikoto Shrine (Shirahama Shrine).<\/span><\/p>\n<p>See the <span style=\"font-weight: 400;\">\u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u300e\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e\u300f\u51fa\u7248\u662d\u548c18\u53c2\u7167<br \/>\n https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1123608<\/span><a href=\"https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1123608\"><span style=\"font-weight: 400;\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1123608<\/span><\/a><span style=\"font-weight: 400;\">p138-p139<\/span> <span style=\"font-weight: 400;\">as follows:<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">&#8220;Well, I think that it is good to believe not only from the legend but also from the monument and others which remain in the ruins that the first seat in Shirahama was the land of the shinmei.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That is, this place is about at the foot of the rooster of Mt. Takane, and it is located in the place facing one valley which enters the bay from the north of the present company land, and there is a place where the place name of the kagura hall, The Mitarai, etc. is actually located in the same place elementary school, and there is a field and the place where the person of the field and the repellent clothes who do not apply fertilizer in fear of the present god and the person of the repellent clothes do not apply.<br \/>\nThe<\/span> <span style=\"font-weight: 400;\">name of &#8220;Shinmei Kamiike&#8221; is the same as &#8220;Miyake&#8221;, and even if it is not possible to affirm all the consideration that it has the relation with Mishima Shin, it will not be an estimate that should be thrown away by all.&#8221;<\/span> <span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p><\/blockquote>\n<h4><b>On the God of Festival at The Twelve-Year-High Shrine (Shirahama)<\/b><\/h4>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12522\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-11-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\"><br \/>\n \u56fd\u7acb\u56fd\u4f1a\u56f3\u66f8\u9928\u30c7\u30b8\u30bf\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u300e\u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e\u300f\u51fa\u7248\u662d\u548c18\u53c2\u7167<\/span> <a href=\"https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1123608\"><span style=\"font-weight: 400;\">https:\/\/dl.ndl.go.jp\/info:ndljp\/pid\/1123608<\/span><\/a> <b> <\/b> <span style=\"font-weight: 400;\">written in p138 to p139<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">&#8220;I enshrined the gods who were sitting around kami ake (kagura, forest, Shinmei, Mitarai, etc.), but the name of the shrine is also very special, and it is consistent with the Setsue of Mishima Taisha in the family god of The Mishima God which looks like Miyakeki.&#8221;<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">For this reason,<br \/>\n the company magazine believes that this is equivalent to the former zaza of Mishima-jin (Mishima Taisha).<\/span> <span style=\"font-weight: 400;\">As another theory, there is also a tradition that the local &#8220;the land of kami ake&#8221; is used as a seating ground of &#8220;Mishimajin, Ikonahime no mikoto&#8221; before Tencho 9 (832).<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">Moreover, twelve companies with a very deep relation with the head office are enshrined in the last shrine in the place called Shinmei which is said to be an old company site of the head office though it is a non-border land. The twelve companies are on the left.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u5927\u6960\u547d\u3001\u5c0f\u6960\u547d\u3001\u5fa1\u4ee3\u5fb3\u547d\u3001\u611f\u8fb2\u516b\u7515\u547d\u3001\u6a2a\u6c60\u547d\u3001 \u4f0a\u8fe6\u547d\u3001\u77e5\u5b87\u547d\u3001\u5c3e\u5065\u5fa1\u5b50\u547d\u3001\u5c3e\u5065\u6bd4\u547d\u3001\u898b\u591a\u8afe\u547d\u795e\u793e\u3001\u4f0a\u8c46\u5948\u6bd4\u547d\u3001\u7a42\u4fbf\u611f\u61c9\u547d\u3001<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From Shirahama Shrine precincts guide board<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12524\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-12-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>Visit the Shrine (Pray at the Shrine)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the state when I visited this shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">About 5.5km from Izukyu Shimoda Station via R135 About 5.5km by car About 15 minutes<br \/>\n by car<\/span> <span style=\"font-weight: 400;\">Along R135, there is a red drum bridge hanging over the Miyamae River at the head<\/span> of the company.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12526\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-14-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-14-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-14.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is not &#8220;Monkaburi Matsu&#8221; but &#8220;The old tree of The Gate Kaburi Kashiwa(Biyakushin)&#8221; and I feel the history only by this.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12528\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-14-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Arrival at Ikonahime no mikoto Shrine (ikonamin no mikoto shrine)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">When you cross the bridge, you will find a vermillion torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12530\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-12-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-12-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-12-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-15-12.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the guide in front of the right hand side, it is written &#8220;Izu&#8217;s oldest shrine&#8221; in the back of the Komainu<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12532\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-13-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-13-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-16-13.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the left, there is a company title &#8220;Shikiuchi Taisha Ikonahime no mikoto Shrine&#8221; next to the Shiba Inu<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12534\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-17-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Because it sits in Shirahama, its<br \/>\n common name is Shirahama Shrine.<\/span> <span style=\"font-weight: 400;\">There is &#8220;Shirahama Shrine&#8221; in the flat forehead of the red torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12536\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-18-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The stone-paved approach continues to<br \/>\n swell from side to side.<\/span> <span style=\"font-weight: 400;\">Bow through the torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12538\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-19-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There&#8217;s a temizusha on your left hand, and it cleanses you.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12540\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-20-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right hand side of the approach, it&#8217;s<br \/>\n been a thousand and three hundred years since it withered.<\/span> <span style=\"font-weight: 400;\">On the left hand side of the approach, there is a 2,000-year-old &#8220;Yakushi no Yakusin&#8221;<\/span> where a statue of a pharmacist is enshrined in a cave.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12542\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-21-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12544\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-22-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right hand side of the large precinct, there is a shrine in the back of the office.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12546\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-23-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I visit the shrine on the left side of the precincts.<\/span><\/p>\n<p><b>\u30fb\u898b\u76ee\u5f01\u8ca1\u5929\u793e\uff08mime benzaiten\uff09<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u898b\u76ee\u795e\uff08mime no kami\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said to be a marriage shrine, and it is said that it is the god of Mishima Ogami.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12548\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-24-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12550\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-25-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The approach which draws a slight arc is passed to the worship hall.<\/span><b> <\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12552\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-26-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The name of the natural stone is &#8220;Izu Kuni Ichinomiya Shirahama Taisha&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12554\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-27-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">By the time of the worship hall, the stone lantern Komainu goes up the stone steps of about four steps at the end of the god light.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><img decoding=\"async\" class=\"alignnone size-large wp-image-12556\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-6-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-6-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-6-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-28-6.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/span><\/p>\n<p><span style=\"font-weight: 400;\">A small Komainu is set up to stick to the stone pillar of this stone step.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12558\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-29-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12560\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-30-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>The sculpture of the shrine is delicate and elegant.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12562\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-31-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>On the flat forehead is \u300c\u4f0a\u8c46\u5f0e\u5d8c\u795e\u793e \u4f0a\u53e4\u5948\u6bd4\u54a9\u547d\u795e\u793e\u300d<br \/>\n<\/b> Izu Mishima Shrine Ikonabi \u54a9Mei Shrine&#8221; is written in parallel.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12564\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-32-4.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-12566\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-33-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The main shrine stands on the hill at the rear of the shrine.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">To the main hall, there is a approach that goes around from the left hand side of the precincts.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12569\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-34-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a red torii gate at the entrance of the approach to the main shrine, and a small vermillion torii gate stands on the left and right side of the road.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12571\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-35-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;m going<br \/>\n to visit the shrine.<\/span> <span style=\"font-weight: 400;\">On the right is Sunamura Inari Shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12573\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-36-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the stairs on your left<\/span><\/p>\n<p><b>\u30fb\u4e8c\u5341\u516d\u793e\u795e\u793e\uff08nijuroku sha shrine\uff09<\/b><b><br \/>\n<\/b><b>(At the time of Sengu in 1921, 26 shrines were enshrined in one company.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12577\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-37-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In addition, if you go up the approach to the main shrine, the approach will curve to the right.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is a shrine in the precincts on the left hand side of the approach, and it is a pilgrimage.<\/span><\/p>\n<p><b>Eye shrine<\/b><b><br \/>\n<\/b><b> <\/b> <span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u76ee\u5927\u795e<br \/>\n <\/span> the description says <span style=\"font-weight: 400;\">that there was a big hump in the trunk, and there was a legend that eye disease would be cured if you washed your eyes with the water in it.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12579\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-38-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;God light&#8221; is put up on both sides of the approach here, and there is a tag &#8220;Gohonden Shinto area from this&#8221; in the center of the approach, and the ball wall is turned, and a scarlet torii gate is built.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12583\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-39-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you bow and pass through the torii gate, you will feel as<br \/>\n clean as if you were tense, and you will be in the sacred area correctly.<\/span> <span style=\"font-weight: 400;\">In addition, there is a stand tag on the approach, and there is &#8220;The inside is a sacred area than this, and the entry other than the visitor is prohibited, and there is a company office&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12585\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-40-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a stone step of about 20 steps ahead, and the inner ball wall is turned, and there is a tag of &#8220;God front&#8221; and the God gate comes into view.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12587\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-41-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-12589\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-42-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The approach that has gone up now is the one that a general visitor climbs from the left side, and there is a staircase which climbs straight from the worship hall to the main shrine, too, and this is blocked by the wall like the approach where &#8220;God&#8221; or the priest passes.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12592\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-43-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The main shrine of the ryuzo is built in the migaki in the precincts of the main shrine.<\/span><\/p>\n<p><b>I&#8217;ll go to<br \/>\n the gate.<\/b> <b>I&#8217;m sing a<br \/>\n lot of money. I wish you all the best.<\/b> <b>I pray with my hands together, hitting a high hand that can&#8217;t reach the god of worship who bows and settles while wishing to be in accordance with your divine power.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12594\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-44-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">We&#8217;ll go back to the approach, go through the torii gate, look back, and bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12596\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-45-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Return to the precincts below, stop at the Kamifu awarding office, receive a seal, etc.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12599\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-46-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Leaving the precincts, head to the torii gate that stands toward the sea in the &#8220;Daimeijiniwa&#8221; behind the shrine.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When I go back to the back<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span>You can see <b>the hill &#8220;hitachiyama&#8221; on the Shirahama coast of the ancient ruins that enshrine<\/b> the Izu <span style=\"font-weight: 400;\">Islands.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There is a very atmosphere of &#8220;Biyakushin&#8221; which stood white and withered.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12602\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-47-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is &#8220;Daimei shiniwa&#8221; at the end of the white sand, and the torii gate comes into view.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12604\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-48-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Because the tide is low, I walk on the coast &#8220;Daimei Shiniwa&#8221; is located in the center of Shirahama, and you can see Shirahama Ohama.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12607\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-49-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Proceed to the torii gate.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>&#8220;hai&#8221; (90-degree bow) to the gods of the Izu Islands &#8220;Mishima-jin&#8221;<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12610\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-50-2.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>According to the good luck of Shirahama Shrine, in the 6th year of Emperor Takayasu, &#8220;This god is transferred here from Miyakejima, and it is said that the god who came from the island was enshrined.<\/b><\/p>\n<h3><b>\u300e\u65e5\u672c\u5f8c\u7d00\uff08nihon koki\uff09\u300f\u9038\u6587 \u5929\u95779\u5e74 (832) May \u7678 (22nd) Article on the company site<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The text is described<\/span> in the description\u54a9 of the <b>time when Ikonami no mikoto shrine (ikonami no mikoto shrine) and Mishima Taisha (mishima taisha) were both sitting<\/b> in Shirahama, Shimoda <span style=\"font-weight: 400;\">City, so we kept &#8220;Meishin&#8221; because they showed their divine majesty at this time.<\/span><\/p>\n<blockquote><p><b>Original<br \/>\n text<\/b> <b>\u300c\u4f0a\u8c46\u56fd\u8a00\u4e0a \u4e09\u5cf6\u795e \u4f0a\u53e4\u5948\u6bd4\u54a9\u795e \u4e8c\u524d\u9810\u540d\u795e \u6b64\u795e\u585e\u6df1\u8c37\u6467\u9ad8\u5dcc \u5e73\u9020\u4e4b\u5730 \u4e8c\u5343\u753a\u8a31 \u4f5c\u795e\u5bae\u4e8c\u9662 \u6c60\u4e09\u51e6 \u795e\u7570\u4e4b\u4e8b \u4e0d\u53ef\u52dd\u8a08 \u300d<\/b><\/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 Ikonahime no mikoto &#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><b>&#8220;Izu no Shimayaki&#8221;<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12615\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-51-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">It is an old story of the legend of Mishima Daimeijin and the God of Life.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From<\/span> <b>&#8220;The Old Story of Nankoku Izu&#8221; [Published by Shimoda Youth Chamberhttp:\/\/minwa.matsurino.com\/index-2.htm <\/b><\/p>\n<p><span style=\"font-weight: 400;\">Summary<br \/>\n<\/span> <span style=\"font-weight: 400;\">&#8220;A long time ago, The Great Gods of Fuji saw the ocean below and thought that if they burned down the country, they would have a great country, so he stuck one arm at the bottom of the sea.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then the fire blew up from the sea, and the fire continued to catch up day and night, and the country &#8220;The country which did not go out&#8221; (Izu no Kuni) which protruded into the sea was burned.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Fuji&#8217;s God was very satisfied with the beautiful scenery of a wonderful country.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">As usual, I noticed a man from the bottom climbing a man who couldn&#8217;t be seen.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;I&#8217;m a prince who came from Tengu (India), and i&#8217;ve been far from japan all the way to Japan, touching my father&#8217;s life with my stepmother.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Fuji&#8217;s Gods were talking about the man, but he thought he was a good man with a good way of speaking, a good attitude, and a good man.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Then, what are you doing?&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Yes, I came because I want you to give me the land I live on.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Because this man who seemed to be honest liked, &#8220;Well, if it is, it is a land of Izu that I burned out, and I give the country of Izu to the country of Izu&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The prince went to izu country as soon as he thanked him, and walked all over the place, and the more I walked, the more beautiful the scenery of Izu was, and the seafood was covered with the seafood.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"> The prince was completely concerned, and the more bald he was to build the country, the more he wanted a little more land, and he went to The Great God of Fuji.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Ogami-sama, I want a little more land.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Mr. Ogami who was looking at the prince&#8217;s country building<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">All right, all right, i&#8217;ll give you a wide sea, and you can burn the island there, but before you do, go back to Tengu and tell your father&#8217; king what you&#8217;ve done.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The prince set out from the beach in Shirahama, returned to his father&#8217;s king, and talked about the country of Japan, and the father became happy, too.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The prince was so happy that he immediately set sail for the country of Japan.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">But on the way, the ship flowed to the country of Tango (Kyoto).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The prince, completely cought after the long voyage and storm, went to a house by the sea to eat and inn.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There was an old couple who were 320 years old and the children of Wakamiya Kengu who came from the country of Baidu (Korea) there.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">When the prince tells the story of the land of Izu,<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">He said, &#8220;Take the three shrines, and you should be named Mishima Myojin.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Myojin regained his energy, followed Minomiya and continued his boat trip, and finally arrived at Mihogasaki in Shirahama.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Myojin immediately came back to The Great God of Fuji, and the story of his father king was told, and he started to bake the island in the sea of Izu.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The clever look was Hairyuo White Dragon King Aoryu, and many other dragon kings have been brought, Wakamiya called the thunder of fire, and Kengu called the thunder of the water and started burning the island.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When the dragon king put the three big stones which had been gotten from the god of Fuji to the sea, the thunder of the fire burned it, and the thunder of the water poured water into this and cooled it.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Then, the flame immediately knew the sky, and the sea was crowded, and one island was built in one night a day.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The gods are the first island, so we named it Hatsushima.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">On the second day, the island where the gods who bake the island gather, Jinshujima (Kanzu island)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The third is Oshima.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The fourth is a white island like the salt of the sea.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The fifth is Wakamiya Kengu Miyakejima to build a house of eyes.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Sixth, we built Mikura island to build myojin&#8217;s brewery.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the seventh, far south, the island off the coast.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Eighth, Kojima.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the ninth, Wang&#8217;s nose-like Wang&#8217;s island<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The tenth island was named Jujima.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Mr. Ogami of Fuji was very pleased that the land of Izu flourished mainly in Mishima Myojin.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Wakamiya Kengu: I call the three gods of the eyes the three gods of Mishima Myojin.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that it tried to call Shirahama Myojin again because it is easy to be crowded with Mishima Taisha.<\/span><\/p><\/blockquote>\n<p><b>According to good luck, &#8220;This god moved here from Miyakejima, and later moved to Mishima&#8221; The pioneer god of izu islands &#8220;Mishima-jin- Mishima-jin&#8221; and the god of the shrine &#8220;Ikonabi \u54a9 life&#8221; are enshrined the hill &#8220;Hitachiyama&#8221; on the Shirahama coast of the jinzachi area as a ritual site that enshrines the Izu Islands from ancient times\u54a9.<\/b><\/p>\n<p><b>&#8220;hai&#8221; (90-degree bow) at Ikonahime no mikoto Shrine (ikonamime no mikoto shrine)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-12622\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-15-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-15-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-15-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-13-15.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"color: #0000ff; font-size: 120%;\">Please see the article of Mishima Taisha <b>which enshrines<\/b> Mishima <b>god.<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong>[st-card myclass=&#8221;&#8221; id=&#8221;11462&#8243; label=&#8221;See together <{strong><\/span})({span=\"color:#0000ff;\"}) ({strong})\" pc_height=\"\" name=\"\" bgcolor=\"#cca300\" color=\"\" fontaweesome=\"\" readmore=\"on\" thumbnail=\"on\" type=\"]<\/strong><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<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","protected":false},"author":1,"featured_media":12499,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[307],"tags":[308,322],"class_list":["post-15876","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category--en","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Ikonahime no mikoto shrine, according to the good luck of the shrine, &quot;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&quot;, and the pioneer god of izu islands &quot;Mishima-jin - Mishima-jin&quot; and the empress god &quot;Ikonahime no mikoto&quot; The hill &quot;hitachiyama&quot; 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.\" \/>\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\/ikonahime-no-mikoto-shrine-shirahama-shrine\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Ikonahime no mikoto shrine, according to the good luck of the shrine, &quot;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&quot;, and the pioneer god of izu islands &quot;Mishima-jin - Mishima-jin&quot; and the empress god &quot;Ikonahime no mikoto&quot; The hill &quot;hitachiyama&quot; 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.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-08-20T04:30:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-08-20T04:30:44+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Ikonahime no mikoto shrine, according to the good luck of the shrine, &quot;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&quot;, and the pioneer god of izu islands &quot;Mishima-jin - Mishima-jin&quot; and the empress god &quot;Ikonahime no mikoto&quot; The hill &quot;hitachiyama&quot; 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.\" \/>\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\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#blogposting\",\"name\":\"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager\",\"headline\":\"Ikonahime no mikoto shrine (Shirahama Shrine)\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-15.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-08-20T13:30:44+09:00\",\"dateModified\":\"2020-08-20T13:30:44+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#webpage\"},\"articleSection\":\"\\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33\\uff08engishiki jimmeicho\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, \\u4e2d\\u90e8\\u5730\\u65b9, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\\\/#listItem\",\"name\":\"\\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33\\uff08engishiki jimmeicho\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\\\/#listItem\",\"position\":2,\"name\":\"\\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33\\uff08engishiki jimmeicho\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#listItem\",\"name\":\"Ikonahime no mikoto shrine (Shirahama Shrine)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#listItem\",\"position\":3,\"name\":\"Ikonahime no mikoto shrine (Shirahama Shrine)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\\\/#listItem\",\"name\":\"\\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33\\uff08engishiki jimmeicho\\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\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/\",\"name\":\"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager\",\"description\":\"Ikonahime no mikoto shrine, according to the good luck of the shrine, \\\"This god is transferred here from Miyakejima, and it will be transferred to Mishima later\\\", and the pioneer god of izu islands \\\"Mishima-jin - Mishima-jin\\\" and the empress god \\\"Ikonahime no mikoto\\\" The hill \\\"hitachiyama\\\" 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.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/s-1-15.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/ikonahime-no-mikoto-shrine-shirahama-shrine\\\/#mainImage\"},\"datePublished\":\"2020-08-20T13:30:44+09:00\",\"dateModified\":\"2020-08-20T13:30:44+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":"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager","description":"Ikonahime no mikoto shrine, according to the good luck of the shrine, \"This god is transferred here from Miyakejima, and it will be transferred to Mishima later\", and the pioneer god of izu islands \"Mishima-jin - Mishima-jin\" and the empress god \"Ikonahime no mikoto\" The hill \"hitachiyama\" 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.","canonical_url":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#blogposting","name":"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager","headline":"Ikonahime no mikoto shrine (Shirahama Shrine)","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-15.jpg","width":1024,"height":682},"datePublished":"2020-08-20T13:30:44+09:00","dateModified":"2020-08-20T13:30:44+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#webpage"},"articleSection":"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, \u4e2d\u90e8\u5730\u65b9, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/#listItem","name":"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/#listItem","position":2,"name":"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#listItem","name":"Ikonahime no mikoto shrine (Shirahama Shrine)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#listItem","position":3,"name":"Ikonahime no mikoto shrine (Shirahama Shrine)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/#listItem","name":"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\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\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/","name":"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager","description":"Ikonahime no mikoto shrine, according to the good luck of the shrine, \"This god is transferred here from Miyakejima, and it will be transferred to Mishima later\", and the pioneer god of izu islands \"Mishima-jin - Mishima-jin\" and the empress god \"Ikonahime no mikoto\" The hill \"hitachiyama\" 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.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/07\/s-1-15.jpg","@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/#mainImage"},"datePublished":"2020-08-20T13:30:44+09:00","dateModified":"2020-08-20T13:30:44+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":"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager","og:description":"Ikonahime no mikoto shrine, according to the good luck of the shrine, &quot;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&quot;, and the pioneer god of izu islands &quot;Mishima-jin - Mishima-jin&quot; and the empress god &quot;Ikonahime no mikoto&quot; The hill &quot;hitachiyama&quot; 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.","og:url":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/","article:published_time":"2020-08-20T04:30:44+00:00","article:modified_time":"2020-08-20T04:30:44+00:00","twitter:card":"summary_large_image","twitter:title":"Ikonahime no mikoto shrine (Shirahama Shrine) - Shrine-heritager","twitter:description":"Ikonahime no mikoto shrine, according to the good luck of the shrine, &quot;This god is transferred here from Miyakejima, and it will be transferred to Mishima later&quot;, and the pioneer god of izu islands &quot;Mishima-jin - Mishima-jin&quot; and the empress god &quot;Ikonahime no mikoto&quot; The hill &quot;hitachiyama&quot; 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."},"aioseo_meta_data":{"post_id":"15876","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 09:05:44","updated":"2025-07-01 07:59:42","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/\" title=\"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\">\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIkonahime no mikoto shrine (Shirahama Shrine)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%bb%b6%e5%96%9c%e5%bc%8f%e5%86%85%e7%a4%be-en\/"},{"label":"Ikonahime no mikoto shrine (Shirahama Shrine)","link":"https:\/\/shrineheritager.com\/en\/ikonahime-no-mikoto-shrine-shirahama-shrine\/"}],"views":1322,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/15876","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=15876"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/15876\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/12499"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=15876"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=15876"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=15876"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}