    <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":20246,"date":"2020-10-31T01:07:42","date_gmt":"2020-10-30T16:07:42","guid":{"rendered":"https:\/\/shrineheritager.com\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/"},"modified":"2020-10-31T01:07:42","modified_gmt":"2020-10-30T16:07:42","slug":"%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/","title":{"rendered":"\u9e7f\u5cf6\u795e\u793e(kashima shrine)"},"content":{"rendered":"<p><strong>Kashima Shrine is said to have been built in the Tengyo era (938-947). It is now a dead tree, but there was a zelkova tree with a trunk circumference of about 10 m, which was once considered a sacred tree, and it is said that sacred water was springing up at the base of the large tree. A communal bath was set up at this well, and it is said that Eiichi Shibusawa&#8217;s mother, Sakae, took it and shed the back of a leprosy patient. In the hall of worship, a flat frame written by Eiichi Shibusawa is displayed, and it is an old shrine related to Eiichi Shibusawa.<\/strong><\/p>\n\n<h2><b>1.\u3054\u7d39\u4ecb\uff08Introduction\uff09<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">The official name of this shrine and how to be called The present address and map I will introduce the history of the god and the shrine enshrined.<\/span><\/p>\n<h3><b>\u3010\u795e\u793e\u540d(shrine name\uff09\u3011<\/b><\/h3>\n<p> <span style=\"font-size: 130%;\"><b> <\/b> <b>\u9e7f\u5cf6\u795e\u793e(kashima shrine)<br \/>\n<\/b><\/span><b> (<\/b><b>\u304b\u3057\u307e\u3058\u3093\u3058\u3083<\/b><b>)<\/b><\/p>\n<h3><b>[\u901a\u79f0\u540d(Common name)]<\/b><\/h3>\n<h3><b> <\/b><b>\u3010\u93ae\u5ea7\u5730 (location) \u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">1145 Shimotebaka, Fukaya City, Saitama 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\/%E6%B7%B1%E8%B0%B7\/%E3%80%92366-0002+%E5%9F%BC%E7%8E%89%E7%9C%8C%E6%B7%B1%E8%B0%B7%E5%B8%82%E4%B8%8B%E6%89%8B%E8%A8%88%EF%BC%91%EF%BC%91%EF%BC%94%EF%BC%95+%E9%B9%BF%E5%B3%B6%E7%A5%9E%E7%A4%BE(%E6%B7%B1%E8%B0%B7%E5%B8%82%E4%B8%8B%E6%89%8B%E8%A8%88)\/@36.2164832,139.2629216,14.12z\/data=!4m14!4m13!1m5!1m1!1s0x601edbd772ad931d\" data-lkc-id=\"229\" 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\">\u6df1\u8c37\u5e02 to \u9e7f\u5cf6\u795e\u793e(\u6df1\u8c37\u5e02\u4e0b\u624b\u8a08)<\/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%25E6%25B7%25B1%25E8%25B0%25B7%2F%25E3%2580%2592366-0002%2B%25E5%259F%25BC%25E7%258E%2589%25E7%259C%258C%25E6%25B7%25B1%25E8%25B0%25B7%25E5%25B8%2582%25E4%25B8%258B%25E6%2589%258B%25E8%25A8%2588%25EF%25BC%2591%25EF%25BC%2591%25EF%25BC%2594%25EF%25BC%2595%2B%25E9%25B9%25BF%25E5%25B3%25B6%25E7%25A5%259E%25E7%25A4%25BE%28%25E6%25B7%25B1%25E8%25B0%25B7%25E5%25B8%2582%25E4%25B8%258B%25E6%2589%258B%25E8%25A8%2588%29%2F%4036.2164832%2C139.2629216%2C14.12z%2Fdata%3D%214m14%214m13%211m5%211m1%211s0x601edbd772ad931d?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u6df1\u8c37\u5e02 to \u9e7f\u5cf6\u795e\u793e(\u6df1\u8c37\u5e02\u4e0b\u624b\u8a08)<\/div><div class=\"lkc-url\" title=\"https:\/\/www.google.com\/maps\/dir\/%E6%B7%B1%E8%B0%B7\/%E3%80%92366-0002+%E5%9F%BC%E7%8E%89%E7%9C%8C%E6%B7%B1%E8%B0%B7%E5%B8%82%E4%B8%8B%E6%89%8B%E8%A8%88%EF%BC%91%EF%BC%91%EF%BC%94%EF%BC%95+%E9%B9%BF%E5%B3%B6%E7%A5%9E%E7%A4%BE(%E6%B7%B1%E8%B0%B7%E5%B8%82%E4%B8%8B%E6%89%8B%E8%A8%88)\/@36.2164832,139.2629216,14.12z\/data=!4m14!4m13!1m5!1m1!1s0x601edbd772ad931d\">https:\/\/www.google.com\/maps\/dir\/\u6df1\u8c37\/\u3012366-0002+\u57fc\u7389\u770c\u6df1\u8c37\u5e02\u4e0b\u624b\u8a08\uff11\uff11\uff14\uff15+\u9e7f\u5cf6\u795e\u793e(\u6df1\u8c37\u5e02\u4e0b\u624b\u8a08)\/@36.2164832,139.2629216,14.12z\/data=!4m14!4m13!1m5!1m1!1s0x601edbd772ad931d<\/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\u6b66\u7515\u69cc\u5c0a(takemikazuchi no mikoto)<\/b><\/span><\/p>\n<h3><b>\u3010\u5fa1\u795e\u683c (God&#8217;s great power)\u3011<\/b><\/h3>\n<p><b>\u30fb<\/b><span style=\"font-weight: 400;\">\u6b66\u9580\u306e\u5b88\u8b77 Guardian of the warrior<\/span><\/p>\n<h3><b>\u3010\u683c \u5f0f (Rules of dignity) \u3011<\/b><\/h3>\n<h3><b>\u3010\u5275 \u5efa (Beginning of history)\u3011<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Founded in the Tengyo era (938-947)<\/span><\/p>\n<blockquote><p><b>\u9e7f\u5cf6\u795e\u793e(kashima shrine)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The founding date is unknown<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is said that &#8220;Taro Takebori&#8221;, a vassal of Minamoto no Tsunemoto, was enshrined in this area during the revenge of Taira no Masakado in the 10th century.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Since then, it has been regarded as a guardian of warriors, and it is said that God helped the Takehoro battle during the Genpei era.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">15th century, 7,000 horsemen such as Noriyoshi Uesugi (Mr. Uesugi Fukaya) took a prayer to our company from the area around Takise Mokusai.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The deity is \u6b66\u7515\u69cc\u547dTakemikazuchi.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The main shrine was built in 1810<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The hall of worship is in the 14th year of the Meiji era.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Keyaki in the precincts is hollow and has a well at the bottom, and was designated as a natural monument, but it is now dead.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">A monument to honor the great achievements of Atsutada Odaka was erected in the precincts of 1891.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">March 1985 Fukaya Uesugi Awards (No. 22)<\/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-17488\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-2-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h3><b>\u3010\u7531 \u7dd2 (history)\u3011<\/b><\/h3>\n<blockquote><p><span style=\"font-weight: 400;\">It is a guardian shrine of Shimotebaka, and a monument to honor the achievements of Ranka Odaka, the teacher of Eiichi Shibusawa, is erected in the precincts. The amount of this monument is based on the text of Tokugawa Yoshinobu and Dr. Takeshi Mishima (No., Nakasu). <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Although it is now Kutsuki, it is still a sacred tree with a soul of wood, and a powerful bark bump rises from the trunk to the root.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">A communal bath was set up with the sacred water that springs up at the base, and Eiichi&#8217;s mother, Sakae, took it and shed the back of the leprosy patient.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">From the Saitama Shrine Office website<\/span><\/p><\/blockquote>\n<h3><b>\u3010\u5883\u5185\u793e (Other deities within the precincts)\u3011<\/b><\/h3>\n<p><b> <\/b><span style=\"font-weight: 400;\">Parallel to the right toward the main shrine<\/span><\/p>\n<p><b>\u30fb<\/b><b>\u516b\u5742\u795e\u793e(yasaka shrine)<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u7d20\u76de\u55da\u5c0a\uff08susanowonomikoto\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><img decoding=\"async\" class=\"alignnone size-large wp-image-17490\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-3-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The back of Yasaka Shrine<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><b>\u30fb<\/b><b>\u624b\u8a08\u4e0d\u52d5\u5c0a(tebaka fudoson)<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u4e0d\u52d5\u660e\u738b\uff08fudo myoo\uff09<\/span><b><br \/>\n<\/b><img decoding=\"async\" class=\"alignnone size-large wp-image-17492\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-4-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-17494\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-5-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Behind the main shrine<\/span><\/p>\n<p><b>\u30fb\u9999\u53d6\u795e\u793e\uff08katori shrine)<\/b><b><br \/>\n<\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u7d4c\u6d25\u4e3b\u547d\uff08futsunushinomikoto\uff09<\/span><\/p>\n<p><b>\u30fb<\/b><b>\u4e09\u5cf0\u795e\u793e(mitsumine shrine)<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u4f0a\u5f09\u8afe\u795e\uff08izanagi no kami\uff09<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">\u4f0a\u5f09\u5189\u795e\uff08izanami no kami\uff09<\/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<blockquote><p><span style=\"font-weight: 400;\">Kashima Shrine, which sits in the Shimotebaka area, is located in the southwestern direction of Nakase Shrine and is the guardian shrine of Shimotebaka.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">About the founding of our company. There are two possible reasons.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">First of all, the land of Nakase, which is adjacent to this area, faces the Tone River, and there was a ferry port that once corresponded to the passage of the Hokuetsu Kaido, which is the Kamakura Kodo, and there was a riverbank related to the Tone River&#8217;s shipping. It can be seen from this that it was a key point. Against this background, it is theorized that the villagers involved in the Tone River&#8217;s boating devoted themselves to the god of Kashima Jingu in Ichinomiya, Hitachi Province, which they usually worship as the god of voyage safety.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The second is &#8220;Kashimasha&#8221; in villages such as Shimotebaka, Oki, Tomori, Uchigashima, and Tanaka (small letters in Ise), which are said to have been the territory of Kashimadai Shrine, which was once enshrined in the neighboring village of Otsukajima. Is enshrined. From this, it is the theory that our company received a spirit from this Kashimadai Shrine in the past.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In any case, since the textbook of Mr. Ashikaga Motouji, Kant\u014d Kub\u014d, states that in 1363, the ruins of the Shinano Irido territory and the land of Shimotebaka will be given to Naokuni Iwamatsu, the village has already been divided up and down at this time. It turns out that it was, and the construction of the shrine dates back to this era.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">&#8220;Saitama Shrine&#8221; From Saitama Prefecture Shrine Office website<\/span><\/p><\/blockquote>\n<h2><b>\u3010\u30aa\u30bf\u30c3\u30ad\u30fc\u30dd\u30a4\u30f3\u30c8\u3011\uff08Points selected by Japanese Otaku\uff09<\/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 monument to honor the achievements of Ranka Odaka, the teacher of Eiichi Shibusawa<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">\u5c3e\u9ad8 \u60c7\u5fe0\uff08Odaka Atsutada (Junchu)\uff09<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\uff081830\u5e749\u670813\u65e5\uff5e \u660e\u6cbb34\u5e74\uff081901\u5e74\uff091\u67082\u65e5\uff09<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Japanese businessman<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">First manager of Tomioka Silk Mill Served as manager of Daiichi National Bank Sendai Branch<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The popular name is Shingoro. Aika is a fashionable name.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Born in Shimotebaka Village, Hanzawa District, Musashi Province (currently Shimotebaka, Fukaya City, Saitama Prefecture) as a child of the village head, Katsugoro Odaka. Odaka Atsutada (Junchu) has been an excellent scholar since he was a child, and opened a private school, Odaka Juku, at his home, and gathered his children from his hometown from the age of 17 to the end of the Tokugawa shogunate to teach scholarship such as Chinese books.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">At the end of the Tokugawa shogunate, while the momentum of Sonno Joi thought increased, in 1863 he attacked Takasaki Castle with Eiichi and others to steal weapons (conspiracy to take over Takasaki Castle), burned down the Yokohama Foreign Settlement, and then cooperated with Choshu. I made a plan to defeat the Shogunate.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Eiichi Shibusawa was one of the people who was taught by Odaka Atsutada (Junchu). Odaka Atsutada (Junchu)&#8217;s mother, Yahe, was Eiichi&#8217;s father, Motoji Shibusawa&#8217;s older sister, and Odaka Atsutada (Junchu) and Eiichi were cousins. Later, Chiyo, the younger sister of Odaka Atsutada (Junchu), became Eiichi&#8217;s first wife.<\/span><\/p>\n<blockquote><p><b>\u85cd\u9999\u5c3e\u9ad8\u7fc1\u980c\u5fb3\u7891\u306b\u3064\u3044\u3066<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The unveiling ceremony of this monument, which was built by volunteers who admire Odaka Atsutada, was held on April 18, 1909.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">That day, it was the day when the cherry blossoms were in full bloom. Many celebrities who are construction sponsors, such as Eiichi Shibusawa, Hozumi Nobushige, Yoshio Sakatani, and Governor of Saitama Prefecture Shimada, were present. At that time, Odaka Atsutada&#8217;s biography &#8220;Aika Oden&#8221; was distributed to all the attendees.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The height of the monument is about 4.5 meters and the width is about 1.9 meters, which is exactly one of the famous monuments in the northern Kanto region. The title at the top of the stone monument is by Yoshinobu Tokugawa, the last shogun whom Eiichi Shibusawa respects most. The inscription was Takeshi Mishima, the calligraphy was by Tosaku Kusakabe, and the work of engraving the inscription was by the mason of Tokyo, Huangyun Yoshikawa.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Let&#8217;s cherish this monument, which is a treasure of the local area, remember the virtues of Aika and other ancestors, and renew our excitement together. October 2005<\/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-17496\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-10-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306b\u304a\u8a63\u308a(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 6.2km north from Fukaya Station via Prefectural Road 14 About 20 minutes by car<br \/>\n<\/span><span style=\"font-weight: 400;\">The birthplace of the Meiji entrepreneur &#8220;Shibusawa Eiichi&#8221; on &#8220;Chiaraijima&#8221; is just east.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17498\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-11-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The place name &#8220;\u4e0b\u624b\u8a08Shimotebaka&#8221; is a rare reading and is read as &#8220;Shimotebaka&#8221;.<br \/>\n<\/span><span style=\"font-weight: 400;\">According to the tradition, the place where the warlord cut his hand and washed his blood was called Chiaraijima, and the grave where his hand was buried was called &#8220;hand grave&#8221;.<\/span><span style=\"font-weight: 400;\">Corrupt\u300c<\/span><span style=\"font-weight: 400;\">\u624b\u8a08\u300d\u3068\u4f1d\u308f\u308a\u307e\u3059<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Turn left (turn west) at the Shimotebaka intersection, and on the right side you will see the Kashima Shrine company name and the stone lantern approach.<\/span><\/p>\n<p><b>Arrive at Kashima shrine<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17500\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-12-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">After giving a bow, go through the torii gate and you will reach the spacious precincts. As you can see in retrospect, the approach to the shrine extends straight southward from the shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17502\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-13-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">On the right hand side, the &#8220;snout of the big tree of the sea&#8221; which once sprang up of the divine water is surrounded by a wire mesh and protected by a roof.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17504\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-14-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">There is a shrine in front of the approach.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17506\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-15-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>The shrine is filled with the amount of volatilization of Eiichi Shibusawa.<\/b><\/p>\n<p><strong>\u300c\u9e7f\u5cf6\u795e\u793e \u5f93\u4e09\u4f4d \u52f2\u4e00\u7b49\u7537\u7235 \u6f81\u6fa4\u69ae\u4e00\u8b39\u66f8\u300d<\/strong><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17508\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-10-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-10-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-10-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-16-10.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The amount of volatilization of Mr. Otaka Jiro (Han scholar and banker) who is the son of Mr. Otaka and the husband of Eiichi Shibusawa&#8217;s bastard &#8220;Bunko&#8221; is called &#8220;Katsumi Restoration&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17510\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-17-8.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-17512\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-18-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The main hall is in the undercering.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17514\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-19-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In the precincts of this shrine, &#8220;Kagura-den&#8221; is lying on the right side toward the main shrine, followed by a torii gate, and the left side of the &#8220;Yasaka Shrine&#8221; precinct is &#8220;Kashima Shrine&#8221;.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17516\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-9-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-9-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-9-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-20-9.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Kagura-den is big and splendid.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17518\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-1-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-1-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-1-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-1-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">A torii gate is built in the center of the precincts, and Yasaka shrine (yasaka shrine) is built right next to Kagura-den, so you get the illusion that it looks like the precincts of Yasaka Shrine.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17520\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-2-1-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-2-1-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-2-1-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-21-2-1.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;m going to visit the precincts and shrines in order.<\/span><b><br \/>\n<\/b><b>\u516b\u5742\u795e\u793e(yasaka shrine)<\/b><b><br \/>\n<\/b><b> <\/b><span style=\"font-weight: 400;\">\u300a\u4e3b\u300b\u7d20\u76de\u55da\u5c0a\uff08susanowonomikoto\uff09<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17522\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-22-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><b>I will go to the hall of worship<\/b><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is a mikoshi in the shrine hall of Yasaka Shrine, and it is likely to be put out at the time of Yasaka festival.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17524\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-23-8.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-17526\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-8-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-8-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-8-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-24-8.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The shrine hall of Kashima Shrine is built just to the left.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17528\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-7-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-7-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-7-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-25-7.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The west sun shines in the precincts, and it is a beautiful silhouette.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17530\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-26-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-17532\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-27-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">I&#8217;ll go back down the approach, go through the torii gate, turn around and bow.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17534\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-28-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h2><b>\u795e\u793e\u306e\u4f1d\u627f(Old tales handed down to shrines)<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">I introduce the thing related to this shrine and the literature described.<\/span><\/p>\n<h3><b>About the well which is said to have sprung up from the cavity of a large tree of the persimmon which is said that eiichi Shibusawa&#8217;s mother &#8220;Ei&#8221; draws the divine water and sheds the back of the patient<\/b><\/h3>\n<p><b>In the precincts, on the right hand side of the approach, there is a snout of a large tree.<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17536\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-4-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-4-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-4-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-30-4.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">It used to be a huge tree with a trunk circumference of more than 10 meters, and it has been revered as a god tree for a long time.<br \/>\nEven now, when compared to the big trees and temizusha around, the thickness of the snout is clearly thick.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17538\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-31-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h3><b>The good luck of the shrine is about this big tree.<\/b><\/h3>\n<p>At the end of the Heian period <span style=\"font-weight: 400;\">(794-1192),<br \/>\n<\/span>Genji was told by a related god tree planted by a shrine man of The Hei family to pray for the reunity of the Hei family, and the kamiki that was the substitute for the god of Kashima became a huge tree, there was a cavity, and there was spring water from the root, and it was designated as a god water with the benefit which became like a well  (designated as a natural<span style=\"font-weight: 400;\">monument)<\/span><\/p>\n<h3><b>According to the tradition of the shrine<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">Kansei-year (1789-1801) When this kamiki rang and examined, there was a well buried in the cave of Kamiki with dust serpents \u86fbser&#8217;s shell), which was cleansed by divine thought and made kamii.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Around this time, among the neighboring villagers, the water of Kamii was divine water with the protection of God, and those suffering from disease received it, or when they cleansed themses themses with the divine water and prayed to God, there was a belief that there was a spiritual test.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For this reason, it is said that if you set up a bath bath house in the precincts and invite visitors to take a bath in Kamimizu, you will not be suspicious if you take away people&#8217;s morals and pray with sincerity.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Eiichi Shibusawa&#8217;s mother, Ei, is said to have pumped this divine water and shed the back of a sick patient.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In The 40th year of Meiji, some of the trees died and were cut down from the middle of the trunk.<\/span><\/p>\n<blockquote><p><b>\u9e7f\u5cf6\u795e\u793e(kashima shrine)<\/b><\/p>\n<p><span style=\"font-weight: 400;\">It is a shrine of the poor meter, and the flat amount of &#8220;Kashima Shrine&#8221; which becomes Shibusawa Eiichi volatilization is put up in the worship hall.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">In the precincts, a monument to honor the achievements of Eiichi&#8217;s teacher, Ranko Oha, is built.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">The ten amount of this monument is based on the texts of Tokugawa Keiki (Yoshinobu) and Dr. Mishima&#8217;s Literature (No. Nakasu).<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">It is now a kuchiki, but a commune bath was set up in Kamimizu, which was boiled at the base of the great mountain. Eiichi&#8217;s mother, Ei, is reported to have taken this in and shed the back of a patient with Leprosy.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">There is a tachibana (Tachibana) planted by Eiichi hand-planted lauren tree and eldest daughter Hozumi Utako, and there is a monument that tells its origin. Fukaya City Board of Education<\/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-17540\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-3-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-3-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-3-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-32-3.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<h3><strong>The &#8220;Musashikuni-no-Shimomura Kashima Shrine Namai Bathing House Figure&#8221; distributed to generals during the Edo period was re-published in April 1868.<\/strong><\/h3>\n<p><span style=\"font-weight: 400;\">The position of the present snout site The majesty of the giant tree of the samurai is drawn in front of the shrine hall.<\/span><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17542\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-3-800x600.jpg\" alt=\"\" width=\"800\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-3-800x600.jpg 800w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-3-768x576.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-33-3.jpg 1024w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><b>&#8220;Rai&#8221; at Kashima Shrine (90-degree bow)<\/b><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-17544\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-5-901x600.jpg\" alt=\"\" width=\"901\" height=\"600\" srcset=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-5-901x600.jpg 901w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-5-768x512.jpg 768w, https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-34-5.jpg 1024w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi&#8217;s teacher, Ranka Odana, has been built.<\/p>\n","protected":false},"author":1,"featured_media":17486,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[326],"tags":[327],"class_list":["post-20246","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-326","tag--en"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi&#039;s teacher, Ranka Odana, has been built.\" \/>\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\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Shrine-heritager - \u5b9f\u8df5\u548c\u5b78\u3000Cultural Japan  heritage\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi&#039;s teacher, Ranka Odana, has been built.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-10-30T16:07:42+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-10-30T16:07:42+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi&#039;s teacher, Ranka Odana, has been built.\" \/>\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\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#blogposting\",\"name\":\"\\u9e7f\\u5cf6\\u795e\\u793e(kashima shrine) - Shrine-heritager\",\"headline\":\"\\u9e7f\\u5cf6\\u795e\\u793e(kashima shrine)\",\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/s-1-2-1.jpg\",\"width\":1024,\"height\":682},\"datePublished\":\"2020-10-31T01:07:42+09:00\",\"dateModified\":\"2020-10-31T01:07:42+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#webpage\"},\"articleSection\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e, \\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\\uff08Other old shrine\\uff09, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"\\u5bb6\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\\\/#listItem\",\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\\\/#listItem\",\"position\":2,\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#listItem\",\"name\":\"\\u9e7f\\u5cf6\\u795e\\u793e(kashima shrine)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#listItem\",\"position\":3,\"name\":\"\\u9e7f\\u5cf6\\u795e\\u793e(kashima shrine)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\\\/#listItem\",\"name\":\"\\u305d\\u306e\\u4ed6\\u306e\\u53e4\\u793e\"}}]},{\"@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\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/\",\"name\":\"shrine-heritager\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g\",\"width\":96,\"height\":96,\"caption\":\"shrine-heritager\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/\",\"name\":\"\\u9e7f\\u5cf6\\u795e\\u793e(kashima shrine) - Shrine-heritager\",\"description\":\"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi's teacher, Ranka Odana, has been built.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/author\\\/tonbo\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/s-1-2-1.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#mainImage\",\"width\":1024,\"height\":682},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\\\/#mainImage\"},\"datePublished\":\"2020-10-31T01:07:42+09:00\",\"dateModified\":\"2020-10-31T01:07:42+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":"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager","description":"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi's teacher, Ranka Odana, has been built.","canonical_url":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#blogposting","name":"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager","headline":"\u9e7f\u5cf6\u795e\u793e(kashima shrine)","author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"publisher":{"@id":"https:\/\/shrineheritager.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-1-2-1.jpg","width":1024,"height":682},"datePublished":"2020-10-31T01:07:42+09:00","dateModified":"2020-10-31T01:07:42+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#webpage"},"articleSection":"\u305d\u306e\u4ed6\u306e\u53e4\u793e, \u305d\u306e\u4ed6\u306e\u53e4\u793e\uff08Other old shrine\uff09, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","position":1,"name":"\u5bb6","item":"https:\/\/shrineheritager.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/#listItem","name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/#listItem","position":2,"name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e","item":"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#listItem","name":"\u9e7f\u5cf6\u795e\u793e(kashima shrine)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#listItem","position":3,"name":"\u9e7f\u5cf6\u795e\u793e(kashima shrine)","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/#listItem","name":"\u305d\u306e\u4ed6\u306e\u53e4\u793e"}}]},{"@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\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author","url":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/","name":"shrine-heritager","image":{"@type":"ImageObject","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/753495b896c6b98c7e39ae374576f59155ab2a5b30a0f44245c3f9987f5b11d8?s=96&r=g","width":96,"height":96,"caption":"shrine-heritager"}},{"@type":"WebPage","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/","name":"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager","description":"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi's teacher, Ranka Odana, has been built.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#breadcrumblist"},"author":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"creator":{"@id":"https:\/\/shrineheritager.com\/en\/author\/tonbo\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/shrineheritager.com\/wp-content\/uploads\/2020\/09\/s-1-2-1.jpg","@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#mainImage","width":1024,"height":682},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/#mainImage"},"datePublished":"2020-10-31T01:07:42+09:00","dateModified":"2020-10-31T01:07:42+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":"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager","og:description":"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi's teacher, Ranka Odana, has been built.","og:url":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/","article:published_time":"2020-10-30T16:07:42+00:00","article:modified_time":"2020-10-30T16:07:42+00:00","twitter:card":"summary_large_image","twitter:title":"\u9e7f\u5cf6\u795e\u793e(kashima shrine) - Shrine-heritager","twitter:description":"Kashima Shrine is said to have been founded in the Tianqing period (938-947), but now it is a dead tree, but there is a large shrine with a trunk circumference of more than 10 meters that was once a god tree, and a joint bath was set up at the base of the big tree. In the precincts, a monument to honor the achievements of Eiichi's teacher, Ranka Odana, has been built."},"aioseo_meta_data":{"post_id":"20246","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:57","updated":"2025-07-01 08:21:28","seo_analyzer_scan_date":null,"focus_keyword":null,"truseo":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/\" title=\"\u5bb6\">\u5bb6<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/\" title=\"\u305d\u306e\u4ed6\u306e\u53e4\u793e\">\u305d\u306e\u4ed6\u306e\u53e4\u793e<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t\u9e7f\u5cf6\u795e\u793e(kashima shrine)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"\u305d\u306e\u4ed6\u306e\u53e4\u793e","link":"https:\/\/shrineheritager.com\/en\/category\/%e3%81%9d%e3%81%ae%e4%bb%96%e3%81%ae%e5%8f%a4%e7%a4%be\/"},{"label":"\u9e7f\u5cf6\u795e\u793e(kashima shrine)","link":"https:\/\/shrineheritager.com\/en\/%e9%b9%bf%e5%b3%b6%e7%a5%9e%e7%a4%bekashima-shrine\/"}],"views":1211,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/20246","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=20246"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/20246\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/17486"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=20246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=20246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=20246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}