    <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":22580,"date":"2020-11-28T15:03:44","date_gmt":"2020-11-28T06:03:44","guid":{"rendered":"https:\/\/shrineheritager.com\/awashima-shrine-hikonawa-town-yonago-city\/"},"modified":"2020-11-28T15:03:46","modified_gmt":"2020-11-28T06:03:46","slug":"awashima-shrine-hikonawa-town-yonago-city","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/","title":{"rendered":"Awashima Shrine (Hikonawa Town, Yonago City)"},"content":{"rendered":"&#13;\n<p class=\"wp-block-paragraph\"><strong>It is Awashima Shrine (Yonago City). In mythology, it enshrines &#8220;Sukuna hikona no mikoto&#8221;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &#8220;unusual godliness.&#8221; Perhaps this sanctuary is a space that leads to &#8220;the land of the eternal world.&#8221;<\/strong><\/p>&#13;\n&#13;\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-22582\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BEA.jpg\" alt=\"\" width=\"1024\" height=\"575\"\/><\/p>&#13;\n&#13;\n<p>\u00a0<\/p>&#13;\n<h2 class=\"wp-block-heading\">\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/h2>&#13;\n&#13;\n<h3>\u3010\u795e\u793e\u540d\u3011(Shrine name)<\/h3>&#13;\n<p class=\"wp-block-paragraph\"><span style=\"font-size: 130%;\"><strong><span class=\"fz-28px\">\u7c9f\u5d8b\u795e\u793e<\/span>\uff08Awashima shrine\uff09<br\/><\/strong><\/span>( <strong>\u3042\u308f\u3057\u307e\u3058\u3093\u3058\u3083<\/strong>)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u3010\u901a\u79f0\u540d\u3011(Common name)<\/p>&#13;\n&#13;\n<h3>\u3010\u93ae\u5ea7\u5730\u3011(location) \u3000<\/h3>&#13;\n<p class=\"wp-block-paragraph\">1404 Hikomeicho, Yonago City, Tottori Prefecture<\/p>&#13;\n&#13;\n<h3>\u3010\u5730\u3000\u56f3\u3011(Google Map)\u00a0<\/h3>&#13;\n<p class=\"wp-block-paragraph\"><div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"https:\/\/www.google.com\/maps\/place\/%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE\/@35.4439045,133.2899482,17z\/data=!3m1!4b1!4m5!3m4!1s0x0\" data-lkc-id=\"5\" 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\">Google Maps<\/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%2Fplace%2F%25E7%25B2%259F%25E5%25B6%258B%25E7%25A5%259E%25E7%25A4%25BE%2F%4035.4439045%2C133.2899482%2C17z%2Fdata%3D%213m1%214b1%214m5%213m4%211s0x0?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">Google Maps<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/place\/%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE\/@35.4439045,133.2899482,17z\/data=!3m1!4b1!4m5!3m4!1s0x0\">https:\/\/www.google.com\/maps\/place\/\u7c9f\u5d8b\u795e\u793e\/@35.4439045,133.2899482,17z\/data=!3m1!4b1!4m5!3m4!1s0x0<\/div><div class=\"lkc-excerpt\">Find local businesses, view maps and get driving directions in Google Maps.<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div><\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u5fa1\u796d\u795e\u3011 (God&#8217;s name to pray) <\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><span style=\"font-size: 120%;\"><strong>\u300a\u4e3b\u300b\u5c11\u5f66\u540d\u547d sukunahikona no mikoto<br\/><\/strong><strong>\u300a\u914d\u300b\u5927\u5df1\u8cb4\u547d oonamuchi no mikoto<br\/><\/strong><strong>\u300a\u914d\u300b\u795e\u529f\u7687\u540e jingu kougo<\/strong><\/span><\/p>&#13;\n<p><strong><\/strong><\/p>&#13;\n<p class=\"wp-block-paragraph\"><strong><\/strong><\/p>\r\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u5fa1\u795e\u683c\u3011(God&#8217;s Great Power)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb\u96e3\u75c5\u82e6\u96e3\u3092\u6551\u3046 Save intractable disease and difficulties<br\/>\u30fb\u5a66\u4eba\u306e\u75c5\u6c17\u5e73\u7652 Healing of women sickness<br\/>\u30fb\u5b89\u7523 Healthy birth<br\/>\u30fb\u5b50\u6388 Children will be born as desired<br\/>\u30fb\u4ea4\u901a\u5b89\u5168 Traffic safety <br\/>\u30fb\u7b49 etc<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u683c\u5f0f\u3011(Rules of dignity)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">A venerable place<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u5275\u5efa\u3011(Beginning of history)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Unknown<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Shrines are very old, from the age when the gods flourished<br\/>And the faith is still going on<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-22584\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BEB.jpg\" alt=\"\" width=\"1024\" height=\"576\"\/><\/p>&#13;\n<p>\u00a0<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u7531\u7dd2\u3011(history)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u5c71\u9802\u306e\u5f53\u795e\u793e\u306b\u93ae\u307e\u308a\u307e\u3059\u5c11\u5f66\u540d\u547d\u306f\u3001\u9060\u304f\u795e\u4ee3\u306e\u6614\u3001\u5927\u5df3\u8cb4\u547d\u5373\u3061\u5927\u56fd\u4e3b\u547d\u3068\u5171\u306b\u529b\u3092\u5408\u305b\u5fc3\u3092\u4e00\u3064\u306b\u3057\u3066\u3053\u306e\u56fd\u3092\u5fa1\u7d4c\u55b6\u306b\u306a\u308a\u3001\u53c8\u3001\u533b\u7642\u306e\u6cd5\u3092\u6559\u3048\u3001\u7981\u53ad\u306e\u8853\u3092\u6388\u3051\u3001\u4eba\u3005\u3092\u4e07\u75c5\u3088\u308a\u304a\u6551\u3044\u306b\u306a\u3063\u305f\u795e\u5fb3\u7121\u6bd4\u306e\u529f\u52b4\u795e\u3067\u3042\u308a\u3001\u305d\u306e\u5c0a\u3044\u5fa1\u795e\u5fb3\u306f\u53e4\u4e8b\u8a18\u3001\u65e5\u672c\u66f8\u7d00\u306b\u8a18\u3055\u308c\u3066\u3044\u308b\u901a\u308a\u3067\u3042\u308b\u304c\u3001\u5e38\u4e16\u306e\u56fd\u306b\u304a\u6e21\u308a\u306b\u306a\u3063\u305f\u305d\u306e\u6700\u5f8c\u306e\u8a18\u5ff5\u5730\u304c\u3053\u306e\u7c9f\u5d8b\u3067\u3042\u308b\u3002<br\/><br\/>\u5275\u5efa\u5e74\u4ee3\u306f\u4e0d\u660e\u3060\u304c\u3001\u53e4\u4ee3\u3088\u308a\u795e\u5948\u5099\u5c71\u3068\u3057\u3066\u306e\u4fe1\u4ef0\u304c\u3042\u308a\u3001\u795e\u529f\u7687\u540e\u30fb\u5f8c\u918d\u9190\u5929\u7687\u5fa1\u7948\u9858\u306e\u4f1d\u627f\u3001\u6226\u56fd\u6642\u4ee3\u5c3c\u5b50\u6c0f\u306e\u5bc4\u9032\u3001\u6c5f\u6238\u6642\u4ee3\u7c73\u5b50\u57ce\u4e3b\u4ee3\u3005\u306e\u5d07\u656c\u7b49\u8a18\u9332\u306b\u6b8b\u3055\u308c\u3066\u3044\u308b\u3002<br\/><br\/>\u5c71\u9802\u306e\u5fa1\u793e\u6bbf\u306f\u3001\u5927\u6b63\uff11\uff11\u5e74\u713c\u5931\u3057\u3001\u662d\u548c\uff11\uff11\u5e74\uff12\u6708\u518d\u5efa\u306e\u3082\u306e\u3067\u3042\u308a\u3001\u7dcf\u53f0\u6e7e\u6867\u9020\u308a\u3067\u5c4b\u6839\u306f\u9285\u677f\u847a\u304d\u3001\u5f13\u6d5c\u534a\u5cf6\u968f\u4e00\u3092\u8a87\u308b\u3002\u5fa1\u795e\u5fb3 \u96e3\u75c5\u82e6\u96e3\u3092\u304a\u6551\u3044\u306b\u306a\u308b\u7956\u795e\u69d8\u3067\u3042\u3089\u305b\u3089\u308c\u3001\u6b8a\u306b\u5a66\u4eba\u306e\u75c5\u6c17\u5e73\u7652\u3001\u5b89\u7523\u3001\u5b50\u6388\u3001\u4ea4\u901a\u5b89\u5168\u7b49\u306e\u7948\u9858\u591a\u304f\u3001\u6c0f\u5b50\u306f\u3082\u3068\u3088\u308a\u53e4\u6765\u5e83\u7bc4\u56f2\u306b\u308f\u305f\u308b\u5eb6\u6c11\u306e\u7be4\u304d\u5d07\u656c\u3092\u3042\u3064\u3081\u3066\u3044\u308b\u3002<\/p>&#13;\n<p>\u203b\u300c\u5168\u56fd\u795e\u793e\u796d\u7940\u796d\u793c\u7dcf\u5408\u8abf\u67fb(\u5e73\u62107\u5e74)\u300d[\u795e\u793e\u672c\u5e81]\u304b\u3089\u53c2\u7167<\/p>&#13;\n&#13;\n<h3 class=\"wp-block-heading\">\u3010\u5883\u5185\u793e\u3011(Other deities within the precincts)<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb\u8352\u795e\u5bae \u300a\u4e3b\u300b\u9808\u4f50\u4e4b\u7537\u5927\u795e susanoonoookami<br\/>\u30fb\u8c4a\u53d7\u5bae \u300a\u4e3b\u300b\u8c4a\u53d7\u5927\u795etoyoukenoookami<br\/>\u30fb\u5fa1\u5ca9\u5bae \u300a\u4e3b\u300b\u5c11\u5f66\u540d\u547dsukunahikonanomikoto<br\/>\u30fb\u516b\u767e\u59eb\u5bae\u300a\u4e3b\u300b\u516b\u767e\u59eb\u547dyaohimenomikoto<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010\u3053\u306e\u795e\u793e\u306e\u4e88\u5099\u77e5\u8b58\u3011(Preliminary knowledge of this shrine)<\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">The enshrined place is the place name &#8220;Yonago City Hikona-cho&#8221;, and tells the very reason for enshrining the festival deity\u300c\u5c11\u5f66\u540d\u547dsukunahikonanomikoto\u300d<br\/>Because, it is a ground where The Great Life of Shiko arrived from &#8220;the country of the world&#8221; to &#8220;this world&#8221;, and it is a place where it returned to &#8220;the country of the world&#8221; and that is, a place with the legend of going back and home.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is a small shrine called &#8220;Oiwagu Shrine&#8221; in the precincts<br\/>This is the place where the famous Shiko was arrived in Awashima by boat and landed first, and it is considered to be a very sacred place.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">&#8220;Hakuto Fudoki&#8221; (Itsubun) 733 (Tenpei 5) is written as follows<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">&#8220;Awashima, Aimi county.<br\/>There is Awashima which has the village of Amaribe in the west north of the county office.<br\/>When The Great Life of Shiko sowed awa and came to fruit, it was shot in the awa and went to the country of the world, hence Awashima.&#8221;<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is written that there is a similar myth in &#8220;Nihon Calligraphy&#8221;, and that Sknaviconanomikoto was played by awastalks in Awashima (Awashima) and went to the ever-world.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There is no doubt that the landing place of The Famous Life of Shiko is an important point of the festival god among some candidate sites, alcause it is only said in &#8220;Kojiki&#8221; that &#8220;it appeared on the cape of Miho&#8221;.<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Awashima is now on land with Yonago, but it is said that it was literally a small island floating in Nakaumi.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Since ancient times, the beautiful island in the Nakaumi has been the object of people&#8217;s faith.<br\/>In the Edo period, worshippers crossed over to Awashima in a boat and there was a dock with a wage of 3 sentences &#8220;3 sentences passed&#8221;.<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22586\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE2-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010\u795e\u793e\u306b\u304a\u8a63\u308a\u3011(Pray at the shrine)<\/h2>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Go through the torii There is a hand water house on the right side of the approach to cleanse<br\/>On the left is a shrine office, and there are also terrings and edas of the famous Shiko life, etc., and you will be awarded while listening to various stories to the priest.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">In addition, it is a signboard of the venerable at the end of the left hand<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-22588\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE3.jpg\" alt=\"\" width=\"1024\" height=\"576\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">If you go through the second torii gate as it is, there is a small hill 38 meters 38 meters from the sea level now that was a former island.<br\/>You will look up at the 188 long stone steps that follow the top.<br\/>There is also a coin box for those who visit at the foot of the mountain.<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22590\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE4-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-22592\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;5-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">When you climb the stairs pleasantly, there is a zujinmon gate, and the god who sits worships the statue of the god &#8220;two pillars of combing rock window and Toyokushi rock window&#8221;<br\/>Continue to haiden main hall<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">When you pass through the Suijinmon Gate, the air in the precincts is clearly different.<br\/>Perhaps this divine area is a space that is well-undersuted in the &#8220;land of the world&#8221;?\u3000I feel that<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">This is the top of Awashima, which climbed a long stone steps covered with trees.<br\/>Wear the glow of the sky and unleash an ness of 1000000000000000000000000000000000<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22594\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE6-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>I pray while praying that I will not reach the god of gods that will be calmed down, and that I will do a high kashiwa hand and accompany Kamiwei.<\/strong><\/p>&#13;\n<p>I tried to get back on the approach.<br\/>If you go behind the main shrine, there is also a far worship place to Izumo Taisha and Ise<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">From there, if you go back, there was a superb view of &#8220;Nakaumi&#8221; where you can take your breath away.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">It is also called &#8220;Akitsuki of Awashima&#8221; and &#8220;Kinkai Hakkei&#8221; as scenic spots.<br\/>Nishikiumi shines from the summit of Awashima reflecting the falling sun. That&#8217;s it.<\/p>&#13;\n<p>The old name of Nakaumi today is &#8220;Nishikikai&#8221;, and the divine view from the island where God dwells is indescribable.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Just post a picture of the sunset and a picture of the calm Nakaumi in the daytime<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-22596\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE7.jpg\" alt=\"\" width=\"1024\" height=\"576\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><img decoding=\"async\" class=\"alignnone size-large wp-image-22598\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE8-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n<p>Slowly down the long stairs of Omotesando<br\/>There is a shrine with a \u876e name called &#8220;Ara Jingu \u876eJajin Shrine&#8221; in the middle, but the festival god is Susanoo Okami<br\/>It may be enshrined in the middle of Awashima to calm this island, or the whole Awashima is a snake god body wrapped around a toguro<\/p>&#13;\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-22600\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE9-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><img decoding=\"async\" class=\"alignnone size-large wp-image-22602\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE10-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">If you get off the stone steps of the approach and go around the foothills of Awashima,<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb There is &#8220;Oiwagu Shrine&#8221; (Oiwa Shuushi)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">\u30fb There are &#8220;Shrine&#8221; and &#8220;Iwaya&#8221; of &#8220;Shizu no Iwaya&#8221; (Shizuno Iwaya)<\/p>&#13;\n&#13;\n<h2 class=\"wp-block-heading\">\u3010\u795e\u793e\u306e\u4f1d\u627f\u3011(Old tales handed down to shrines)<\/h2>&#13;\n&#13;\n<h3><strong>\u300c\u5fa1\u5ca9\u5bae\u7960\u300d(\u304a\u3044\u308f\u304d\u3085\u3046\u3057)<\/strong><\/h3>&#13;\n<p class=\"wp-block-paragraph\"><img decoding=\"async\" class=\"alignnone size-large wp-image-22604\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BE11-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">As I introduced earlier, it is said that the famous life of Mr. Shiko arrived in Awashima by boat from &#8220;The Land of the Everssei&#8221; and landed first, and it is called &#8220;Oiwa-san&#8221; and is considered to be a very sacred place.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">According to the information board:<\/p>&#13;\n&#13;\n<blockquote>&#13;\n<p class=\"wp-block-paragraph\">&#8220;This Oiwa, called &#8216;Oiwa-san&#8217;, has long been believed by ancient people who believed that God would come from the sea as &#8216;the first rock that God arrived at from the sea was hugged first&#8217;, that is, &#8220;God&#8217;s yoyo&#8221;.\u3000The rock is the same as the stone, and the stone can be read as &#8220;seki&#8221;, so there are many people who come as gods that work well with the wind and seki, and since ancient years, it has been a god who has been indestively ill, and there are many records of the dedication and dedication as a thank you for the fulfillment of a full application.&#8221;<\/p>&#13;\n<\/blockquote>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">This is also uttering a spirit that does not become a good thing<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-22606\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;12-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">If you go further,<\/p>&#13;\n&#13;\n<h3>\u300c\u9759\u306e\u5ca9\u5c4b\u300d(\u3057\u305a\u306e\u3044\u308f\u3084)<\/h3>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-22608\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;13-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">A sad legend is written in red as &#8220;The Legend of Yao hyakugaoka Nun&#8221; (Happyaku-haku no Denses)<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">According to the information board  <\/p>&#13;\n&#13;\n<blockquote>&#13;\n<p class=\"wp-block-paragraph\">&#8220;In the past, there were 11 fishermen around here, and as the 60th son of Awashima Shrine, they held a &#8220;lecture&#8221; gathering once a month. One time, a fisherman moved in and asked me to join him.<\/p>&#13;\n<\/blockquote>&#13;\n<p class=\"wp-block-paragraph\">A year later, when this fisherman was on his turn, he put everyone on a boat to thank him for his gratitude so far, and guided him to a splendid palace like Ryugu.<br\/>When I returned a few days later, the mermaid dish (meat) was served as the best treat, but everyone was creepy and did not eat it, and I hid it in the front and tyed it to the sea on the way home.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">However, a fisherman forgot to throw it in the sea, so the 18-year-old daughter of the house found her father&#8217;s kimono when she folded it and ate it without her knowing.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">After that, it is said that the daughter became the body of immortality, did not grow old no matter how many years passed, and remained an 18-year-old daughter no matter how long she left, so she rather became a nun, entered this cave himself, ate dried persimmons, and died while ringing \u9266.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">At this time, because daughter&#8217;s age was 800 years old, villagers said that this was treated, this daughter was called &#8216;Yappihioka nun&#8217; (Happyaku-haku-san) or &#8216;Yahihime-san&#8217; (Yahime-san), and it was secretly enshrined.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">We still have a wide range of faith in the benefits of longevity.&#8221;<\/p>&#13;\n&#13;\n&#13;\n<p class=\"wp-block-paragraph\">And what a sad iwaya legend is written<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-22610\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;14-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\"\/><img decoding=\"async\" class=\"alignnone size-large wp-image-22612\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;15-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">There&#8217;s also another tradition in this iwaya.<\/p>&#13;\n&#13;\n<h3>\u4e07\u8449\u96c6\uff08\u5dfb\uff13\u30fb355\u756a\uff09\u306e\u6b4c<\/h3>&#13;\n&#13;\n<p class=\"wp-block-paragraph\"><strong>&#8220;The Song of Masato Oishi Village (Oishinosgri Mahit)<\/strong><br\/><strong>The iwaya of Shitsu, the name of Shouhiko, has been wet for many years.&#8221;<\/strong><\/p>&#13;\n<p><strong><\/strong><\/p>&#13;\n<p class=\"wp-block-paragraph\"><strong>(Iwaya in Shito, where the great country lord and the famous Life of Shiko lived, must have passed for many years.)<\/strong><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">By the time of the Manyo collection compiled at the end of the 8th century, it was a famous place for tokyo people to know.<br\/>While enjoying the sense of time slip, go through the torii gate and thank you for bowing<\/p>&#13;\n&#13;\n<figure class=\"wp-block-image size-large\"><\/figure><p><img decoding=\"async\" class=\"alignnone size-large wp-image-22614\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-&#x7C9F;&#x5D8B;&#x795E;&#x793E;16-801x600.jpg\" alt=\"\" width=\"801\" height=\"600\"\/><\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">Empress Shinko (empress of the 14th Emperor Nakae) and Emperor Go-Daigo (the 96th Emperor and the first Emperor of the Southern Morning) are also said to have visited the shrine.<\/p>&#13;\n&#13;\n<p class=\"wp-block-paragraph\">&#8220;Awashima Shrine&#8221; has &#8220;Gojinwei&#8221; that you want to visit again<\/p>&#13;\n","protected":false},"excerpt":{"rendered":"<p>It is Awashima Shrine (Yonago City). In mythology, it enshrines &#8220;Sukuna hikona no mikoto&#8221;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &#8220;unusual godliness.&#8221; Perhaps this sanctuary is a space that leads to &#8220;the land of the eternal world.&#8221;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[],"tags":[327],"class_list":["post-22580","post","type-post","status-publish","format-standard","hentry","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"It is Awashima Shrine (Yonago City). In mythology, it enshrines &quot;Sukuna hikona no mikoto&quot;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &quot;unusual godliness.&quot; Perhaps this sanctuary is a space that leads to &quot;the land of the eternal world.&quot;\" \/>\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\/awashima-shrine-hikonawa-town-yonago-city\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"It is Awashima Shrine (Yonago City). In mythology, it enshrines &quot;Sukuna hikona no mikoto&quot;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &quot;unusual godliness.&quot; Perhaps this sanctuary is a space that leads to &quot;the land of the eternal world.&quot;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-11-28T06:03:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-11-28T06:03:46+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"It is Awashima Shrine (Yonago City). In mythology, it enshrines &quot;Sukuna hikona no mikoto&quot;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &quot;unusual godliness.&quot; Perhaps this sanctuary is a space that leads to &quot;the land of the eternal world.&quot;\" \/>\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\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#blogposting\",\"name\":\"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager\",\"headline\":\"Awashima Shrine (Hikonawa Town, Yonago City)\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BEA.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#articleImage\"},\"datePublished\":\"2020-11-28T15:03:44+09:00\",\"dateModified\":\"2020-11-28T15:03:46+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#webpage\"},\"articleSection\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\\uff08Other old shrine\\uff09, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#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\\\/tag\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\\\/#listItem\",\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\\uff08Other old shrine\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tag\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\\\/#listItem\",\"position\":2,\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\\uff08Other old shrine\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tag\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#listItem\",\"name\":\"Awashima Shrine (Hikonawa Town, Yonago City)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#listItem\",\"position\":3,\"name\":\"Awashima Shrine (Hikonawa Town, Yonago City)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/tag\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\\\/#listItem\",\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\\uff08Other old shrine\\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\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#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\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#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\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/\",\"name\":\"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager\",\"description\":\"It is Awashima Shrine (Yonago City). In mythology, it enshrines \\\"Sukuna hikona no mikoto\\\", which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off \\\"unusual godliness.\\\" Perhaps this sanctuary is a space that leads to \\\"the land of the eternal world.\\\"\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/awashima-shrine-hikonawa-town-yonago-city\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"datePublished\":\"2020-11-28T15:03:44+09:00\",\"dateModified\":\"2020-11-28T15:03:46+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":"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager","description":"It is Awashima Shrine (Yonago City). In mythology, it enshrines \"Sukuna hikona no mikoto\", which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off \"unusual godliness.\" Perhaps this sanctuary is a space that leads to \"the land of the eternal world.\"","canonical_url":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/","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\/awashima-shrine-hikonawa-town-yonago-city\/#blogposting","name":"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager","headline":"Awashima Shrine (Hikonawa Town, Yonago City)","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/01\/s-%E7%B2%9F%E5%B6%8B%E7%A5%9E%E7%A4%BEA.jpg","@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#articleImage"},"datePublished":"2020-11-28T15:03:44+09:00","dateModified":"2020-11-28T15:03:46+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#webpage"},"articleSection":"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#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\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/#listItem","name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/#listItem","position":2,"name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09","item":"https:\/\/shrineheritager.com\/en\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#listItem","name":"Awashima Shrine (Hikonawa Town, Yonago City)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#listItem","position":3,"name":"Awashima Shrine (Hikonawa Town, Yonago City)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/#listItem","name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\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\/awashima-shrine-hikonawa-town-yonago-city\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#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\/awashima-shrine-hikonawa-town-yonago-city\/#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\/awashima-shrine-hikonawa-town-yonago-city\/#webpage","url":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/","name":"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager","description":"It is Awashima Shrine (Yonago City). In mythology, it enshrines \"Sukuna hikona no mikoto\", which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off \"unusual godliness.\" Perhaps this sanctuary is a space that leads to \"the land of the eternal world.\"","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"datePublished":"2020-11-28T15:03:44+09:00","dateModified":"2020-11-28T15:03:46+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":"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager","og:description":"It is Awashima Shrine (Yonago City). In mythology, it enshrines &quot;Sukuna hikona no mikoto&quot;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &quot;unusual godliness.&quot; Perhaps this sanctuary is a space that leads to &quot;the land of the eternal world.&quot;","og:url":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/","article:published_time":"2020-11-28T06:03:44+00:00","article:modified_time":"2020-11-28T06:03:46+00:00","twitter:card":"summary_large_image","twitter:title":"Awashima Shrine (Hikonawa Town, Yonago City) - Shrine-heritager","twitter:description":"It is Awashima Shrine (Yonago City). In mythology, it enshrines &quot;Sukuna hikona no mikoto&quot;, which is said to have been flipped by the stalk of millet and passed to tokoyo. The summit of Awashima, which climbed through the long stone steps covered with trees, wears the brilliance of the sky and gives off &quot;unusual godliness.&quot; Perhaps this sanctuary is a space that leads to &quot;the land of the eternal world.&quot;"},"aioseo_meta_data":{"post_id":"22580","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 22:11:53","updated":"2025-07-01 08:27:11","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/\" title=\"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09\">\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAwashima Shrine (Hikonawa Town, Yonago City)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09","link":"https:\/\/shrineheritager.com\/en\/tag\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be-en\/"},{"label":"Awashima Shrine (Hikonawa Town, Yonago City)","link":"https:\/\/shrineheritager.com\/en\/awashima-shrine-hikonawa-town-yonago-city\/"}],"views":909,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/22580","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=22580"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/22580\/revisions"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=22580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=22580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=22580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}