    <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":17685,"date":"2020-09-30T14:45:27","date_gmt":"2020-09-30T05:45:27","guid":{"rendered":"https:\/\/shrineheritager.com\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/"},"modified":"2020-09-30T14:45:27","modified_gmt":"2020-09-30T05:45:27","slug":"%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/","title":{"rendered":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09"},"content":{"rendered":"<p><b>\u6c34\u82e5\u9162\u795e\u793e\u306f <\/b><b>\u96a0\u5c90\u56fd<\/b><b>\uff08oki no kuni\uff09\u306e<\/b><b>\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.<\/b><\/p>\n\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16626\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-2-1-826x600.jpg\" alt=\"\" width=\"826\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-2-1-826x600.jpg 826w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-2-1-768x558.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-2-1.jpg 1024w\" sizes=\"(max-width: 826px) 100vw, 826px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16628\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-\uff12-1-436x600.jpg\" alt=\"\" width=\"436\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-\uff12-1-436x600.jpg 436w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-\uff12-1.jpg 744w\" sizes=\"(max-width: 436px) 100vw, 436px\" \/><\/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> <\/b> <b>\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09<br \/>\n<\/b><\/span><b>\uff08\u307f\u305a\u308f\u304b\u3059\u3058\u3093\u3058\u3083\uff09<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<p><b> <\/b><span style=\"font-weight: 400;\">\u660e\u795e\u3055\u3093\uff08myojin san\uff09<\/span><\/p>\n<h3><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">723, Okinoshima-cho, Oki-gun, Shimane 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\/%E8%A5%BF%E9%83%B7%E6%B8%AF%E3%83%95%E3%82%A7%E3%83%AA%E3%83%BC%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB\/%E3%80%92685-0311+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E9%9A%A0%E5%B2%90%E9%83%A1%E9%9A%A0%E5%B2%90%E3%81%AE%E5%B3%B6%E7%94%BA%E9%83%A1%EF%BC%97%EF%BC%92%EF%BC%93+%E9%9A%B1%E5%B2%90%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E6%B0%B4%E8%8B%A5%E9%85%A2%E7%A5%9E%E7%A4%BE\/@36.2414226,133.256553,13z\/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x0\" data-lkc-id=\"228\" 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\">\u897f\u90f7\u6e2f\u30d5\u30a7\u30ea\u30fc\u30bf\u30fc\u30df\u30ca\u30eb to \u96b1\u5c90\u570b\u4e00\u4e4b\u5bae \u6c34\u82e5\u9162\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%25E8%25A5%25BF%25E9%2583%25B7%25E6%25B8%25AF%25E3%2583%2595%25E3%2582%25A7%25E3%2583%25AA%25E3%2583%25BC%25E3%2582%25BF%25E3%2583%25BC%25E3%2583%259F%25E3%2583%258A%25E3%2583%25AB%2F%25E3%2580%2592685-0311%2B%25E5%25B3%25B6%25E6%25A0%25B9%25E7%259C%258C%25E9%259A%25A0%25E5%25B2%2590%25E9%2583%25A1%25E9%259A%25A0%25E5%25B2%2590%25E3%2581%25AE%25E5%25B3%25B6%25E7%2594%25BA%25E9%2583%25A1%25EF%25BC%2597%25EF%25BC%2592%25EF%25BC%2593%2B%25E9%259A%25B1%25E5%25B2%2590%25E5%259C%258B%25E4%25B8%2580%25E4%25B9%258B%25E5%25AE%25AE%2B%25E6%25B0%25B4%25E8%258B%25A5%25E9%2585%25A2%25E7%25A5%259E%25E7%25A4%25BE%2F%4036.2414226%2C133.256553%2C13z%2Fdata%3D%213m1%214b1%214m14%214m13%211m5%211m1%211s0x0?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u897f\u90f7\u6e2f\u30d5\u30a7\u30ea\u30fc\u30bf\u30fc\u30df\u30ca\u30eb to \u96b1\u5c90\u570b\u4e00\u4e4b\u5bae \u6c34\u82e5\u9162\u795e\u793e<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E8%A5%BF%E9%83%B7%E6%B8%AF%E3%83%95%E3%82%A7%E3%83%AA%E3%83%BC%E3%82%BF%E3%83%BC%E3%83%9F%E3%83%8A%E3%83%AB\/%E3%80%92685-0311+%E5%B3%B6%E6%A0%B9%E7%9C%8C%E9%9A%A0%E5%B2%90%E9%83%A1%E9%9A%A0%E5%B2%90%E3%81%AE%E5%B3%B6%E7%94%BA%E9%83%A1%EF%BC%97%EF%BC%92%EF%BC%93+%E9%9A%B1%E5%B2%90%E5%9C%8B%E4%B8%80%E4%B9%8B%E5%AE%AE+%E6%B0%B4%E8%8B%A5%E9%85%A2%E7%A5%9E%E7%A4%BE\/@36.2414226,133.256553,13z\/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x0\">https:\/\/www.google.com\/maps\/dir\/\u897f\u90f7\u6e2f\u30d5\u30a7\u30ea\u30fc\u30bf\u30fc\u30df\u30ca\u30eb\/\u3012685-0311+\u5cf6\u6839\u770c\u96a0\u5c90\u90e1\u96a0\u5c90\u306e\u5cf6\u753a\u90e1\uff17\uff12\uff13+\u96b1\u5c90\u570b\u4e00\u4e4b\u5bae+\u6c34\u82e5\u9162\u795e\u793e\/@36.2414226,133.256553,13z\/data=!3m1!4b1!4m14!4m13!1m5!1m1!1s0x0<\/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: 130%;\"><b>\u300a\u4e3b\u300b<\/b><b><br \/>\n<\/b><b>\u672c \u6bbf \u6c34\u82e5\u9162\u547d\uff08mizuwakasu no mikoto\uff09<\/b><\/span><\/p>\n<p><span style=\"font-size: 120%;\"><b>\u300a\u914d\u300b<\/b><b><br \/>\n<\/b><b>\u5de6\u76f8\u6bbf \u4e2d\u8a00\u795e\uff08nakagoto no kami\uff09<\/b><b><br \/>\n<\/b><b>\u53f3\u76f8\u6bbf \u9234\u5fa1\u524d\uff08suzu no gozen<\/b><\/span><b><br \/>\n<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The name of the shrine comes from the main festival god Mizuwakasu no ikoto, but this god is a god visible in the &#8220;Kiki Myth&#8221; and does not know the details of its lineage and traces.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There are various theories about interpretation, and water is also referred to as &#8220;water&#8221; or &#8220;water&#8221; as a beautiful name.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is also a theory that it is related to The Tamawaka Vinegar Life Shrine in Oki, which has the same &#8220;young vinegar&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\">We do not know the details of the lineage and traces of suzu no gozen (nakagoto no kami) Suzu gozen.<\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011\uff08\u3054\u5229\u76ca\uff09<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u30fb\u4e94\u7a40\u8c4a\u7a63 Pray for good harvest<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u6d77\u5cf6\u5b88\u8b77 Guardian deity of the sea and the island<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u30fb\u822a\u6d77\u5b89\u5168 Voyage safety<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">etc etc<\/span><\/p>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<p><b>\u30fb\u300e\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\uff08engishiki jimmeicho\uff09\u300f\u6240\u8f09\u793e\uff08\u540d\u795e\u5927\uff09<br \/>\n<\/b><b>\u30fb \u96a0\u5c90\u56fd\u4e00\u4e4b\u5bae\uff08oki no kuni ichinomiya\uff09<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><span style=\"font-weight: 400;\">The 10th Emperor Sojin&#8217;s Imperial Day<\/span><\/p>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16630\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-size: 120%;\"><b>\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09<\/b><\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u4e3b\u796d\u795e<\/b><span style=\"font-weight: 400;\"> \u6c34\u82e5\u9162\u547d\uff08mizuwakasu no mikoto\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>God Crest Chrysanthemums<\/b> <span style=\"font-weight: 400;\"> \u83cachrysanthemum<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>May<\/b> <span style=\"font-weight: 400;\">3rd<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u7279\u6b8a\u795e\u4e8b<\/b><span style=\"font-weight: 400;\"> \u6c34\u82e5\u9162\u795e\u793e\u796d\u793c\u98a8\u6d41\uff08\u770c\u6307\u5b9a\u7121\u5f62\u6587\u5316\u8ca1 \u9694\u5e74\u6bce\u5076\u6570\u5e74\u658e\u884c\uff09<\/span><\/p>\n<p><b>It<\/b> is said that the God of Mizuwaya Vinegar was raised from the sea to The Island of Igo, crossed the mountain into this village, and was entrusted with national land development and northern <span style=\"font-weight: 400;\">defense. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Our company was in the difficulty of fire and flood damage in the old days, and because the ancient documents, company treasures, etc. were almost lost, the time is not clear, but it is an old shrine that is written in the Engi-style God&#8217;s name book &#8220;Oki National Calm District District Mizuwakmei Shrine Meijin university&#8221; in the domestic book, &#8220;4th place, Mizuwa wakazu Myogami, Oki Ichinomiya&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the ancient documents in which the sitting age remains slightly, Emperor Nintoku and the old book are shrines that have been revered in Asano as gods of rich harvest, sea island protection and navigation safety since ancient times, and were listed in the National Mint Nakasha in 1868.<\/span><\/p>\n<p><b>\u56fd\u6307\u5b9a\u91cd\u8981\u6587\u5316\u8ca1 <span style=\"font-size: 120%;\">\u6c34\u82e5\u9162\u795e\u793e\u672c\u6bbf<\/span><\/b><span style=\"font-weight: 400;\">January 21, 1992<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The present main shrine was built in 1795, and alover the shape of the plane is Shinmei-zo, and the roof is similar to Kasuga-zo, but it has a simple and simple beauty called &#8220;Oki-zo&#8221; and has dignity and dignity. The main shrine is facing south and the roof is 16 meters high with gyechedam-made saws, the crest of the chrysanthemum attached to the demon plate is 33 cm in diameter, the plane shape is between the front 3, the depth is 2, the front is a pull thick lotus lattice door and both sides are \u8500 houses, and the other is horizontal feathered plate. The interior is divided into the outside and the inside.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The roof is six lengths in a thick place with a nine-sun slope, and three measures in a thin place. On the other hand, the square material of the snout is used in the cedar skin of one flow. The roof is usually changed every 20 years and requires about 2,700 bundles of five-length combs. Mizuwawa Vinegar Shrine<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the precinct guide board<\/span><\/p><\/blockquote>\n<p><b><img decoding=\"async\" class=\"alignnone size-large wp-image-16632\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/>2<\/b><\/p>\n<h3><b>\u3010\u5883\u5916\u793e (Related shrines outside the precincts)\u3011<\/b><\/h3>\n<p><span style=\"font-size: 120%;\"><b> <\/b><b>\u5143\u5bae <\/b><b>\u6367\u7fbd\u5c71\u795e\u793e\uff08hoba san shrine \uff09<\/b><\/span><b><br \/>\n<\/b>\u300a\u4e3b\u300b\u6c34\u82e5\u9162\u547d\uff08mizuwakasu no mikoto\uff09<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16634\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><strong>According to the sinceath of \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Omatsujin Mizuwa wakazu life is raised from the sea to the island of Kashiwa in Igo, and it enters this village beyond the mountain.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u3053\u3053\u306b\u8a18\u8f09\u306e\u5c71\uff08\u7530\u7551\u306e\u4e2d\u306e\u5c0f\u4e18\uff09\u3092\u6367\u7fbd\u5c71\uff08hoba san\uff09\u3068\u547c\u3073 \u6367\u7fbd\u5c71\u795e\u793e\uff08hoba san shrine \uff09\u304c\u93ae\u5ea7\u3057\u307e\u3059<\/span><\/p>\n<p><span style=\"color: #0000ff; font-size: 120%;\"><b>\u4f0a\u5f8c\u795e\u793e\u3068\u6367\u7fbd\u5c71\u795e\u793e\u306e\u8a18\u4e8b\u3092\u3054\u89a7\u304f\u3060\u3055\u3044<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/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><b>\u3010\u5ef6\u559c\u5f0f\u795e\u540d\u5e33\u3011\uff08engishiki jimmeicho\uff09This record was completed in December 927 AD.<\/b><\/h3>\n<p><b>[\u65e7 \u884c\u653f\u533a\u5206]\uff08Old administrative district\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><b><span style=\"color: #0000ff; font-size: 120%;\">\u5c71\u9670\u9053 560\u5ea7\u2026\u592737\uff08\u3046\u3061\u9810\u6708\u6b21\u65b0\u56171\uff09\u30fb\u5c0f523<\/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=\"color: #0000ff; font-size: 120%;\">\u96a0\u5c90\u56fd 16\u5ea7\uff08\u59274\u5ea7\u30fb\u5c0f2\u5ea7\uff09<\/span><br \/>\n<\/b><b>[\u65e7 \u90e1 \u540d ]\uff08old region name\uff09<br \/>\n<\/b><span style=\"font-weight: 400;\">(\u795e\u69d8\u306e\u93ae\u5ea7\u6570\uff09<\/span><span style=\"color: #0000ff; font-size: 120%;\"><b>\u7a4f\u5730\u90e1 3\u5ea7\uff08\u59272\u5ea7\u30fb\u5c0f1\u5ea7\uff09<\/b><\/span><\/p>\n<p><b>[\u540d\u795e\u5927 \u5927 \u5c0f] <span style=\"color: #0000ff; font-size: 120%;\">\u5f0f\u5185\u540d\u795e\u5927\u793e<\/span><\/b><\/p>\n<p><b>[\u65e7 \u795e\u793e\u540d ]<span style=\"font-size: 130%;\"><span style=\"color: #0000ff;\">\u6c34\u82e5\u9162\u547d\u795e\u793e\uff08\u8c9e\u30fb\u540d\u795e\u5927\uff09<\/span><\/span><br \/>\n<\/b><b><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">[\u3075 \u308a \u304c \u306a ]<\/span>\uff08\u307f\u306a\u308f\u304b\u3059\u306e\u307f\u3053\u3068\u306e \u304b\u307f\u306e\u3084\u3057\u308d\uff09\uff08\u307f\u3087\u3046\u3058\u3093\u3060\u3044\uff09<\/span><br \/>\n<\/b><b>[How to read] <span style=\"color: #0000ff; font-size: 120%;\">\uff08minawakasu no mikoto no kaminoyashiro\uff09\uff08myojindai\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-16637\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-B-1-3-862x600.jpg\" alt=\"\" width=\"862\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-B-1-3-862x600.jpg 862w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-B-1-3-768x535.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-B-1-3.jpg 1024w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/p>\n<h2><b>[Otaky Point] (Points Selected by Japan Otaku)<\/b><\/h2>\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<h3><b>About the festival of \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09<\/b><\/h3>\n<h3><b>\u796d\u793c\u98a8\u6d41\uff08sairei furyu\uff09<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">It used to be held on March 3rd of the lunar calendar. It is held especially every other year (even year A.D.) now.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;Seaei furyu&#8221; of Mizuwawa Wakazu Shrine<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is counted as one of the three major festivals in Oki and is designated as an intangible folk cultural property designated by Shimane Prefecture.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;The Three Great Festivals of Oki&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">(Seaei furyu at \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09)<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Oki Mura Matsuri Furyu&#8221; at Ichinomori Shrine and Hachioji Shrine<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Goree furyu&#8221; at Tamawaka Vinegar Life Shrine<\/span><\/p>\n<blockquote><p><b>\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 Festival Furyu<\/b><\/p>\n<p><span style=\"font-weight: 400;\">\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is a shrine built in each village in the Goka district, and in addition to being listed as Meijin Taisha in the Enki- style god name book of the Heian period, it was said to be one of the shrines of Oki Country.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The former company site is located to the north of the present, and has been changing several times due to the loss of the river due to flooding.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In this festival, which is an example festival of \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09, a mountain car called &#8220;Katsurayama&#8221; is held to the travel office, but it is said that it is due to this washed-out shrine, the shrine body, and the materials for reconstruction.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The float is marked with a turtle&#8217;s head, the pine tree is decorated with white birds, red and white flowers, and the ropes brought from each district are tied, and it is towed to the travel office lively by the Uchiko at the hand of the wooden song. Children also participated around the age of two or three, and the first time they visited the mountain, they called it &#8220;Hatsuyama-kei.&#8221;<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Next to the travel center, there is a stage where kagura dances such as shrine maiden dance, first stand, lion dance, and dairaku are performed. In the baba next to it, a yabusame is done.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the precincts guide board<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16639\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h3><b>Oki Classical Sumo<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">The roof of \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is usually changed every 20 years.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Oki, a sumo tournament called &#8220;Classical Sumo&#8221; is held throughout the night when there is a memorial project of the town and the completion of a large-scale public works project.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that the name &#8220;classical sumo&#8221; was originally held as a dedication sumo &#8220;Miya Sumo&#8221; to God.<\/span><\/p>\n<blockquote><p><b>The Characteristics of Oki&#8217;s Classical Sumo<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is done in the second game (the first winner gives up the second victory)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Held as a commemoration of the completion of shrine Sengu shrines and large-scale public works projects<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is carried out through the night (starting in the evening and finishing in the afternoon of the next day)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">More than 200 people participated as sumo wrestlers in the big tournament.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The number of initiatives is close to 300, such as without five people<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The highest rank is Oseki (there is no yokozuna, leaving the old sumo form)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The pillar of the ring is presented as an article of honor in Oseki Sekiwaki of the role wrestler<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Koyuki is presented with a stick connecting the pillars.<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">Once every 20 years, classical sumo is played in a covered ring on the left side of the torii gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16641\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-6-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-6-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-6-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-6-3.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 13.8km<br \/>\n<\/span> from Saigo Port via R485 about 25 minutes by car   We will sit in the northwestern county after <span style=\"font-weight: 400;\">the island.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16643\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>Arrived at Mizuwakasu Shrine<\/b><\/p>\n<p><span style=\"font-weight: 400;\">One torii gate is built on the company&#8217;s name, &#8220;Oki Ichinomiya Mizuwa waka vinegar shrine&#8221;<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16645\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">If you bow and go through the torii gate, you will \u81ba the remains of a private cram school and a memorial hall.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At the end of the Edo period, Kunito Nakanishi, a national scholar, established a private cram school in the precincts and recited the king.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u81ba School is a private cram school where a man from Nakamura who was opening a school in Kyoto at the end of the Edo period was taught by Ryozo Nakanuma, a samurai from Nakamura, who returned home on fire as a son-in-law, cooperated with his adoptive father, Nakanishi Awasai, as a lecturer, and taught the way of Bunmu to gather young people on the island and protect the Oki country from the outside.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The young people who learned here focused their passion on the Oki uproar of the fourth year of Keio.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This building was used as a county school from the Meiji Restoration and existed until around Meiji 30.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the stone monument in the precincts<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16647\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p>When you come to the second torii area, the precincts are <span style=\"font-weight: 400;\">opened<br \/>\n <\/span> There is a ring with classical sumo once every 20 years on the left side of the approach to <span style=\"font-weight: 400;\">Kuromatsu.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16649\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">When you go through the torii gate, there is a approach through the old black pine tree, and there is a feeling.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16651\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a turtle&#8217;s hand water house on the left hand in front of the Shinmon Gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16653\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16655\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The Shinmon Gate where the line rope hangs is built and it is passed through.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16657\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The shrine hall is built in front of the building.<\/span><\/p>\n<p><b>I&#8217;m going to go to the shrine.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16659\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>I wish you a change.<\/b><\/p>\n<p><b>A prayer that puts both hands together, praying to reach the deity of the festival<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16661\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p>At the back of the shrine is a main shrine called &#8220;Oki-zuzu&#8221; which is unique to Oki <span style=\"font-weight: 400;\"><br \/>\n <\/span> In <span style=\"font-weight: 400;\">1992,<\/span> it was designated as an important cultural property along with the main shrine of Tamawaka Vinegar Life Shrine.<\/p>\n<p><span style=\"font-weight: 400;\">I worship the main shrine from the left and right.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16663\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16665\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u56fd\u6307\u5b9a\u91cd\u8981\u6587\u5316\u8ca1 <\/span><span style=\"font-size: 120%;\"><b>\u6c34\u82e5\u9162\u795e\u793e\u672c\u6bbf Mizuwakasu Main Shrine<\/b><\/span><b><br \/>\n<\/b><span style=\"font-weight: 400;\">January 21, 1992<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Mizuwakwa Vinegar Shrine Honden Mizuwakzu Shrine Honden is one of the representative examples of Oki-zuzu, a shrine building unique to Oki.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In Oki-zo, the main shrine enters the wife for a long time in the back, and the roof is a cut-off roof, but it puts a candle called the front worship. Mizuwaka Vinegar Shrine Honden, as well as Tamawaka Vinegar Life Shrine, as a large-scale shrine building, this Oki-zu<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The present main shrine is said to have been rebuilt by local carpenters such as the carpenter&#8217;s building Liang Mori Contributehachi (Kiyohachi) because the previous shrine building was wrecked in 1795. At the time of construction at this time, due to the request of the shrine again and again, a request for the cooperation of the donation came out from the government office in Oki country which combined the island front which crossed the sea. In the wish from this shrine to the government office, it is written that the construction of the shrine before that was also built by collecting donations from all over Oki Country.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is a shrine that has continued since ancient times as described in the Enki-style god name book of the extension 5 years (927), and it can be said that it was supported not only by the surrounding area but also by many regions as the first shrine in Oki Country.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Oki Island Town Board of Education<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16667\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the precincts, the god crest of the &#8220;oni ita&#8221; chrysanthemum which is not a demon tile is 33 cm in diameter, the plane shape is between the front 3 and the depth 2, the front is a difference thick lotus lattice door, and both sides are \u8500 houses, and the other is horizontal feathered plate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16669\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16671\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">&#8220;okamiya&#8221; In general, it is a &#8220;temporary shrine&#8221; where the mikoshi leaves the shrine and is temporarily rested to perform Shinto shrines.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16673\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16675\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Is the building with the long-\u994c &#8220;God&#8217;s place&#8221;?<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16677\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 tomb group<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There are two in existence.<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 tomb group<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At \u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09, there are two tombs called Mizuwawa Vinegar Shrine Kofun Group. In this No. 1 pass, ornaments such as earthenware from the middle of the 6th century to the 7th century, iron products such as swords and swords, and magatama are buried, and it is thought that the period when the tomb was built was around this time. The horizontal hole stone chamber currently exposed is the largest in the Oki area with a length of 11 meters, and two sarthagums believed to have been placed in the basal chamber were found.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As for The No. 2 pass on the back side of the main hall, the seal is scraped by the main shrine, but it leaves a hill that can be thought of as a circle.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Based on the size and construction of the stone chamber of No. 1, it is an ancient tomb that can be thought of as a relationship with influential people in this area at that time, and it is considered to be one of the most important tombs in the Oki area.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the information board<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16679\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-16681\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">To the east of the shrine is the Oki Local Museum.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The building was relocated and restored from the Oki County public office in the Meiji era, and exhibits folk cultural properties and Takeshima materials, which are designated tangible cultural properties of the prefecture.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16683\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-29-2-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-29-2-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-29-2-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-29-2.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u5cf6\u6839\u770c\u6307\u5b9a\u6709\u5f62\u6587\u5316\u8ca1 <span style=\"font-size: 120%;\"><strong>\u65e7\u5468\u5409\u5916\u4e09\u90e1\u5f79\u6240\u5e81\u820e<br \/>\n<\/strong><\/span><\/span><span style=\"font-weight: 400;\">\uff08\u662d\u548c\u56db\u5341\u4e94\u5e74\u5341\u6708\u4e8c\u5341\u4e03\u65e5\u5efa\u7b2c\u5341\u516b\u53f7\uff09<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This building was built in 1885 by the Oki Sagun (Suki, Ochi, Chibu, Ama) federation in the center of Saigo Town as the Suki District Three County Office Building. After that, it was transferred to Shimane Prefecture and used as the Oki Island Government Building, Oki Branch Office Building in Shimane Prefecture, etc., but since it was abandoned in 1943, Goka Village took over this, and in May 1945. It has been relocated, restored, managed and opened to the public in this area.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">There are 12 girders (width) (22.91 meters) and 5 girders (depth) (9.55 meters). It has the characteristics of the government guard architecture in the early Meiji era, but it also has unusual characteristics such as the bellows being made of wood instead of plaster and the roof being not a hipped roof but a gable.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It is the oldest Western-style wooden building in Shimane prefecture and has maintained a lifeline of more than 100 years since its construction.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">March 1993 Shimane Prefectural Board of Education<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the information board<\/span><\/p><\/blockquote>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16685\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Go back to the precincts and go through the shrine gate.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16687\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a company office and a award office next to the approach, and I will accept it and return the approach.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16689\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;ll go through the torii and turn around and bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16691\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3><b>\u300e\u7d9a\u65e5\u672c\u5f8c\u7d00\uff08shoku nihon koki\uff09\u300f\u4ec1\u660e\u5929\u7687\u627f\u548c9\u5e74\uff08842\uff099\u6708\u306e\u6761 \u306b\u8a18\u3055\u308c\u308b\u4f1d\u627f<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">It is written that three shrines in Oki Province will be entrusted to the government office at the same time.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u7531\u826f\u6bd4\u58f2\u547d\u795e\uff08\u897f\u30ce\u5cf6\u306e\u7531\u826f\u6bd4\u5973\u795e\u793e\uff09\u30fb\u5b87\u53d7\u52a0\u547d\u795e\uff08\u4e2d\u30ce\u5cf6\u306e\u5b87\u53d7\u8cc0\u547d\u795e\u793e\uff09\u30fb\u6c34\u82e5\u9162\u547d\u795e\uff08\u5cf6\u5f8c\u306e\u6c34\u82e5\u9162\u795e\u793e\uff09<\/span><\/p>\n<blockquote><p><span style=\"font-weight: 400;\">\u300c \u96a0\u5c90\u56fd \u667a\u592b\u90e1 \u7531\u826f\u6bd4\u8ce3\u547d\u795e\uff08yurahime no mikoto no kami\uff09 <\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u6d77\u90e8\u90e1 \u5b87\u53d7\u52a0\u547d\u795e\uff08ukeka no mikoto no kami\uff09<\/span><\/p>\n<p><span style=\"font-weight: 400;\"> <\/span><b>\u7a4f\u5730\u90e1 \u6c34\u82e5\u9162\u547d\u795e\uff08minawakasu no mikoto no kami\uff09<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">\u4e26\u9810\u5b98\u793e \u300d<\/span><\/p><\/blockquote>\n<p><span style=\"font-weight: 400;\">[Reference] National Archives Digital Archives &#8220;Continued Nihongoki&#8221; (869) Sadakan 11 years completion Winner: Fujiwara Ryobo \/ School revision: Tateno Spring Festival Kanmoto Hiromasa 2007 [former brewer] Ministry of the Interior<br \/>\n  <\/span>https:\/\/www.digital.archives.go.jp\/DAS\/meta\/listPhoto?LANG=default&amp;BID=F1000000000000047680&amp;ID=&amp;TYPE=&amp;NO<span style=\"font-weight: 400;\">=<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16693\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-T-1-1-847x600.jpg\" alt=\"\" width=\"847\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-T-1-1-847x600.jpg 847w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-T-1-1-768x544.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-T-1-1.jpg 1024w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/><\/p>\n<p><b>\u6c34\u82e5\u9162\u795e\u793e\uff08mizuwakasu shrine\uff09\u306b\u300c\u62dd (hai)\u300d(90\u5ea6\u306e\u304a\u8f9e\u5100)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-16695\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"color: #0000ff; font-size: 120%;\"><b>There is another Ichinomiya in the Oki Islands<\/b><b><br \/>\n<\/b><b>\u5cf6\u524d\u306e\u4e00\u4e4b\u5bae\u300c<\/b><b>\u7531\u826f\u6bd4\u5973\u795e\u793e<\/b><b>\u300d\u306e\u8a18\u4e8b\u3082\u3054\u89a7\u304f\u3060\u3055\u3044<\/b><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong><\/strong><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.<\/p>\n","protected":false},"author":1,"featured_media":16624,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[316],"tags":[308,328],"class_list":["post-17685","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ichinomiya-all-over-japan","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.\" \/>\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\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/\" \/>\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=\"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-09-30T05:45:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-09-30T05:45:27+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.\" \/>\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\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#blogposting\",\"name\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09 - Shrine-heritager\",\"headline\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/s-1-3.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-09-30T14:45:27+09:00\",\"dateModified\":\"2020-09-30T14:45:27+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#webpage\"},\"articleSection\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09, \\u5ef6\\u559c\\u5f0f\\u795e\\u540d\\u5e33, \\u4e2d\\u56fd\\u5730\\u65b9, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"position\":2,\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#listItem\",\"name\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#listItem\",\"position\":3,\"name\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\\\/#listItem\",\"name\":\"\\u5168\\u56fd\\u3000\\u4e00\\u306e\\u5bae\\uff08\\\"Ichinomiya\\\" all over Japan\\uff09\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\",\"name\":\"Shrine-heritager Shrine-heritager\",\"description\":\"\\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage \\u5b9f\\u8df5\\u548c\\u5b78\\u3000Cultural Japan  heritage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/s-\\u30bf\\u30a4\\u30c8\\u30eb\\u306a\\u3057.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/\",\"name\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09 - Shrine-heritager\",\"description\":\"\\u6c34\\u82e5\\u9162\\u795e\\u793e\\uff08Mizuwakasu Shrine\\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \\u200b\\u200bJapan.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/s-1-3.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\\\/#mainImage\"},\"datePublished\":\"2020-09-30T14:45:27+09:00\",\"dateModified\":\"2020-09-30T14:45:27+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":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager","description":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#blogposting","name":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager","headline":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-1-3.jpg","width":1024,"height":682},"datePublished":"2020-09-30T14:45:27+09:00","dateModified":"2020-09-30T14:45:27+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#webpage"},"articleSection":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09, \u5ef6\u559c\u5f0f\u795e\u540d\u5e33, \u4e2d\u56fd\u5730\u65b9, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","position":2,"name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","item":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#listItem","name":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#listItem","position":3,"name":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/#listItem","name":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09"}}]},{"@type":"Organization","@id":"https:\/\/shrineheritager.com\/en\/#organization","name":"Shrine-heritager Shrine-heritager","description":"\u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage","url":"https:\/\/shrineheritager.com\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2024\/06\/s-\u30bf\u30a4\u30c8\u30eb\u306a\u3057.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/","name":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager","description":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-1-3.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/#mainImage"},"datePublished":"2020-09-30T14:45:27+09:00","dateModified":"2020-09-30T14:45:27+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":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager","og:description":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan.","og:url":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/","article:published_time":"2020-09-30T05:45:27+00:00","article:modified_time":"2020-09-30T05:45:27+00:00","twitter:card":"summary_large_image","twitter:title":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 - Shrine-heritager","twitter:description":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09 is located in the five districts of Okinoshima Town (Dogo) in Ichinomiya, Oki Province. It was founded in the era of the 10th Emperor Sujin, and is an old shrine with a beautiful precinct where old black pine trees grow. It is said that Mizuwakasu no mikoto, the god of rituals, was the god of land development in Oki Province and the protection of the Sea of \u200b\u200bJapan."},"aioseo_meta_data":{"post_id":"17685","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 10:19:55","updated":"2025-07-01 08:11:04","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/\" title=\"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\">\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u5168\u56fd\u3000\u4e00\u306e\u5bae\uff08\"Ichinomiya\" all over Japan\uff09","link":"https:\/\/shrineheritager.com\/en\/category\/%e5%85%a8%e5%9b%bd%e3%80%80%e4%b8%80%e3%81%ae%e5%ae%ae%ef%bc%88ichinomiya-all-over-japan%ef%bc%89\/"},{"label":"\u6c34\u82e5\u9162\u795e\u793e\uff08Mizuwakasu Shrine\uff09","link":"https:\/\/shrineheritager.com\/en\/%e6%b0%b4%e8%8b%a5%e9%85%a2%e7%a5%9e%e7%a4%be%ef%bc%88mizuwakasu-shrine%ef%bc%89\/"}],"views":1468,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/17685","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=17685"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/17685\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/16624"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=17685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=17685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=17685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}