    <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":81339,"date":"2023-03-30T12:00:45","date_gmt":"2023-03-30T03:00:45","guid":{"rendered":"https:\/\/shrineheritager.com\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/"},"modified":"2023-02-19T01:30:03","modified_gmt":"2023-02-18T16:30:03","slug":"mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine","status":"publish","type":"post","link":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/","title":{"rendered":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine"},"content":{"rendered":"<p align=\"justify\"><span dir=\"LTR\"><b>World Cultural Heritage &#8220;Fujisan, sacred place and source of artistic inspiration&#8221;<\/b><\/span><span dir=\"LTR\"><b>Criteria<\/b><\/span><span dir=\"LTR\"><b>\uff08iii\uff09of the World Cultural Heritage &#8220;Mt. Fuji has continued to inspire a tradition of mountain worship from ancient times to the present day. Through ascending to the summit and making pilgrimages to sacred places at the foot of the mountain, pilgrims have hoped to immerse themselves in the spiritual powers of the gods and Buddha who call it their home.<\/b><\/span><\/p>\n<div id=\"attachment_81197\" style=\"width: 1010px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-81197\" class=\"size-full wp-image-81196\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2023\/12\/s-5-4.jpg\" alt=\"\" width=\"1000\" height=\"675\" \/><p id=\"caption-attachment-81197\" class=\"wp-caption-text\">Please do not reproduce without prior permission.<\/p><\/div>\n<p align=\"justify\"><\/p>\n<h2 align=\"justify\"><span dir=\"LTR\"><b>Mt. Fuji World Cultural Heritage<\/b><\/span><b> <\/b> <span dir=\"LTR\"><b>Assets\u300825 items\u3009<\/b><\/span><\/h2>\n<p align=\"justify\"><strong>World Cultural Heritage &#8220;Fujisan, sacred place and source of artistic inspiration&#8221; (Fuji-san-Shinkou no Taish\u014d to Geijutsu Gensen -In this article, we will look at the relationship between the Sengen Shrine at the entrance to the mountain, which is a significant part of the beliefs of Mt.<\/strong><\/p>\n<h2 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>1 Fujisan Mountain Area<\/b><\/span><\/h2>\n<h3 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-1 Mountaintop worship sites<\/b><\/span><\/h3>\n<p align=\"justify\"><strong>Fuji, including the Okumiya Shrine and the torii gate of the Mt.<\/strong><br \/>\n<strong>Fuji was an &#8220;object of faith&#8221; and a place of ascetic practices.<\/strong><\/p>\n<p><a href=\"https:\/\/shrineheritager.com\/?p=80339\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb\u3008<\/b><\/span><\/span><b style=\"color: #0000ff;\">\u5bcc\u58eb\u5c71\u9802\u4e0a <\/b><span dir=\"LTR\" style=\"color: #0000ff;\"><b>\u5965\u5bae\u3009\u5bcc\u58eb\u5c71\u9802\u4e0a \u6d45\u9593\u5927\u793e \u5965\u5bae \uff06 \u5bcc\u58eb\u5c71\u9802\u4e0a \u4e45\u9808\u5fd7\u795e\u793e<\/b><\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span>\u00a0<\/span><\/p>\n<h3 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-2 Omiya-Murayama Ascending Route (present Fujinomiya Ascending Route)<\/b><\/span><\/h3>\n<p><strong><span dir=\"LTR\">The Omiya-Murayama-guchi trail is an old trail that starts at the <a href=\"https:\/\/shrineheritager.com\/?p=33392\"><b>Mt. Fuji Hongu Sengen Taisha Shrine<\/b><\/a>, passes through the <a href=\"https:\/\/shrineheritager.com\/?p=80686\"><b>Murayama Sengen Shrine<\/b><\/a>, and ends at the south side of the summit.<br \/>\nThe asset range of the trail corresponds to the current Fujinomiya-guchi trail above the sixth station.<\/span><\/strong><\/p>\n<p><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<a style=\"color: #0000ff;\" href=\"https:\/\/shrineheritager.com\/?p=33392\">Mt. Fuji Hongu Sengen Taisha Shrine (Miyamachi, Fujinomiya City) Ichinomiya in Suruga Province<\/a><\/b><\/span> <\/span><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<p align=\"left\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fbMurayama <a style=\"color: #0000ff;\" href=\"https:\/\/shrineheritager.com\/?p=80686\">Sengen Shrine (Murayama, Fujinomiya City)<\/a><\/b><\/span> <\/span><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h3 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-3 Suyama Ascending Route (present Gotemba Ascending Route)<\/b><\/span><\/h3>\n<p align=\"justify\"><strong>The Suyama-guchi trail starts from<a href=\"https:\/\/shrineheritager.com\/?p=81171\"> Suyama Sengen Shrine<\/a> and leads to the southeastern part of the summit. The area of the trail&#8217;s assets is above the 2,050-meter elevation of the current Gotemba-guchi trail and the area around &#8220;Suyama Otainai,&#8221; which has long been the object of worship as a god of safe childbirth.<\/strong><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https:\/\/shrineheritager.com\/?p=81171\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><\/a><\/span><span dir=\"LTR\"><b>Suyama Sengen Shrine<\/b><\/span><span dir=\"LTR\"><b>(<\/b><\/span><span dir=\"LTR\"><b>Suyama, Susono City<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h3 align=\"justify\"><b><\/b><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-4 Subashiri Ascending Route<\/b><\/span><\/h3>\n<p align=\"justify\"><strong>The Susuriguchi trail starts at <a href=\"https:\/\/shrineheritager.com\/?p=80688\">Fuji Sengen Shrine (Susuri Sengen Shrine)<\/a> and joins the Yoshida-guchi trail at the 8th station to reach the eastern part of the summit.<\/strong><br \/>\n<strong>The trail joins the Yoshida-guchi trail at the 8th station and leads to the eastern part of the summit. Of these, the asset range is above the fifth station.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=80688\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><\/span><span dir=\"LTR\"><b>Subashiri<\/b><\/span>Sengen Shrine<span dir=\"LTR\"><b>\u3008<\/b><\/span><span dir=\"LTR\"><b>Higashiguchi Hongu Fuji Sengen Shrine<\/b><\/span><span dir=\"LTR\"><b>\u3009 (<\/b><\/span><span dir=\"LTR\"><b>Subashiri, Oyama-cho, Sunto-gun<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h3 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-5 Yoshida Ascending Route<\/b><\/span><\/h3>\n<p align=\"justify\"><strong>The Yoshida-guchi trail starts at the<a href=\"https:\/\/shrineheritager.com\/?p=81173\"><span dir=\"LTR\"><b>Kitaguchi Hongu Fuji Sengen-jinja Shrine<\/b><\/span><\/a>and continues to the east side of the summit.<\/strong><br \/>\n<strong>The asset range of the trail is the entire section of the trail.<\/strong><\/p>\n<h3 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81173\"><span dir=\"LTR\" style=\"color: #ff00ff;\"><b>1-6 Kitaguchi Hongu Fuji Sengen-jinja Shrine<\/b><\/span><\/a><\/h3>\n<p><strong><a href=\"https:\/\/shrineheritager.com\/?p=81173\"><span dir=\"LTR\"><b>Kitaguchi Hongu Fuji Sengen-jinja Shrine<\/b><\/span><\/a>is located in the city of Fujiyoshida and is said to have its origins in a shrine dedicated to the great god Sengen.<\/strong><br \/>\n<strong>The shrine was founded by Yamatotakeru no Mikoto, a legendary hero of ancient Japan, to worship the divine spirit of Mt.<\/strong><br \/>\n<strong>Yohai&#8221; means to worship at a holy place from a distant place.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81173\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>Kitaguchi Hongu Fuji Sengen Shrine<\/b><\/span><\/span><span dir=\"LTR\"><b>(<\/b><\/span><span dir=\"LTR\"><b>Kamiyoshida, Fujiyoshida City<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h3 align=\"justify\"><span style=\"color: #ff00ff;\"><span dir=\"LTR\"><b>1-7 <\/b><\/span>Lake Saiko <b><\/b><\/span><\/h3>\n<p align=\"justify\"><strong>Lake Saiko is located in Fujikawaguchiko Town and is one of the five lakes of Fuji.<\/strong><br \/>\n<strong>Until the mid-9th century, it was a huge lake called Seno-Umi.<\/strong><br \/>\n<strong>Fuji erupted in 864, and lava flows filled most of the lake, forming the current Lake Saiko.<\/strong><\/p>\n<h3 align=\"justify\"><b><\/b><span style=\"color: #ff00ff;\"><span dir=\"LTR\"><b>1-8 Lake<\/b><\/span> <span dir=\"LTR\"><b>Shojiko <\/b><\/span><\/span><\/h3>\n<p align=\"justify\"><strong>Lake Shojiko is known as the smallest of the Fuji Five Lakes.<\/strong><br \/>\n<strong>Like Saiko (Lake Saiko), Shojiko was the site of the &#8220;Uchihachikai Tour,&#8221; a tour of eight lakes and marshes around Mt. Fuji, conducted by many Fuji worshippers. Fuji, and the lakes are closely associated with the belief in Mt.<\/strong><\/p>\n<h3 align=\"justify\"><span style=\"color: #ff00ff;\"><span dir=\"LTR\"><b>1-9Lake <\/b><\/span> <span dir=\"LTR\"><b>Motosuko<\/b><\/span><\/span><\/h3>\n<p align=\"justify\"><strong>Lake Motosuko is the deepest of the Fuji Five Lakes.<\/strong><br \/>\n<strong>Along with Saiko and Shojinko, Lake Motosuko was the site of the &#8220;Uchihachikai Tour,&#8221; a tour of the eight lakes and marshes around Mt. Fuji, and is deeply connected with the belief in Mt.<\/strong><\/p>\n<h2 align=\"justify\"><b><\/b><a href=\"https:\/\/shrineheritager.com\/?p=33392\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>2 <\/b><\/span><span dir=\"LTR\"><b>Fujisan Hongu Sengen Taisha Shrine<\/b><\/span><\/span><\/a><\/h2>\n<p><strong><a href=\"https:\/\/shrineheritager.com\/?p=33392\"><span dir=\"LTR\"><b>Fujisan Hongu Sengen Taisha Shrine<\/b><\/span><\/a> is the head shrine of all &#8220;Sengen Shrines&#8221; in Japan, which worship Asama no Okami, the deity of Mt.<\/strong><br \/>\n<strong>Fuji, and is enshrined as the center of the Fuji faith.<\/strong><br \/>\n<strong>Fuji. In the precincts of the shrine, there is a spring called &#8220;Waku-tama-ike&#8221; where climbers used to perform mizugoriri (purification with water) before climbing Mt.<\/strong><\/p>\n<p>.<a href=\"https:\/\/shrineheritager.com\/?p=33392\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fbMt. Fuji Hongu Sengen Taisha Shrine (Miyamachi, Fujinomiya City) Ichinomiya in Suruga Province<\/b><\/span> <\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=33455\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>3 <\/b><\/span><span dir=\"LTR\"><b>Yamamiya Sengen-jinja Shrine<\/b><\/span><\/span><\/a><\/h2>\n<p align=\"justify\"><strong><span dir=\"LTR\"><a href=\"https:\/\/shrineheritager.com\/?p=33455\">Yamamiya Sengen-jinja Shrine<\/a><\/span> is the original shrine of the <span dir=\"LTR\"><b> <a href=\"https:\/\/shrineheritager.com\/?p=33392\">Mt. Fuji Hongu Sengen Taisha Shrine<\/a><\/b><\/span>.<\/strong><br \/>\n<strong>The shrine is said to have been founded by Yamatotakeru no Mikoto (Prince of Japan) and boasts a history of over 1,900 years. It is considered the oldest of all the Sengen shrines in Japan.<\/strong><br \/>\n<strong>Fuji as its deity, the shrine is a far-off place of worship &lt;hangai is a method of worshipping the sacred place from a distance&gt;, and there is no shrine pavilion, thus preserving the old form of Fuji worship.<\/strong><\/p>\n<p><a href=\"https:\/\/shrineheritager.com\/?p=33455\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb\u3008Motomiya\u3009Yamamiya Sengen Shrine (Yamamiya, Fujinomiya)<\/b><\/span> <\/span><\/a><\/p>\n<p align=\"justify\"><span dir=\"LTR\" style=\"color: #0000ff;\"><b><\/b><\/span><\/p>\n<h2 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=80686\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>4 <\/b><\/span><span dir=\"LTR\"><b>Murayama Sengen-jinja Shrine<\/b><\/span><\/span><\/a><\/h2>\n<p align=\"justify\"><strong><span dir=\"LTR\"><b><a href=\"https:\/\/shrineheritager.com\/?p=80686\">Murayama Sengen-jinja Shrine<\/a><\/b><\/span> was once the starting point of the Murayama Mountain Trail.<\/strong><br \/>\n<strong>Fuji Kohoji, and was once a place of ascetic practice for ascetic practitioners who believed in Mt. Even today, the temple&#8217;s Dainichido is enshrined within the precincts of the temple, along with Sengen Shrine, as part of the Shinto\/Buddhist syncretism practice. Fuji Shugendo, and the history of the faith is handed down to the present day.<\/strong><\/p>\n<p align=\"left\"><span style=\"color: #0000ff;\"><a href=\"https:\/\/shrineheritager.com\/?p=80686\"><span dir=\"LTR\"><b>\u30fbMurayama Sengen Shrine (Murayama, Fujinomiya City)<\/b><\/span><\/a> <\/span><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81171\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>5 <\/b><\/span><span dir=\"LTR\"><b>Suyama Sengen-jinja Shrine<\/b><\/span><\/span><\/a><\/h2>\n<p><strong><a href=\"https:\/\/shrineheritager.com\/?p=81171\"><span style=\"color: #0000ff;\"><span dir=\"LTR\">\u30fb<\/span><span dir=\"LTR\">Suyama Sengen-jinja Shrine<\/span><\/span><\/a> is the starting point of the Suyama-muchi trail.<\/strong><br \/>\n<strong>According to shrine legend, the shrine was founded by Yamatotakeru no Mikoto, a deity of the mountain, and those seeking to reach the summit from the Suyama-muchi trail would purify their minds and bodies and pray for the safety of their ascent.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81171\"><span style=\"color: #0000ff;\"><strong><span dir=\"LTR\">\u30fb<\/span><\/strong><span dir=\"LTR\"><strong>Suyama Sengen-jinja Shrine<\/strong><span dir=\"LTR\"><b>(<\/b><\/span><span dir=\"LTR\"><b>Suyama, Susono City<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/span> <\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=80688\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>6 <\/b><\/span><span dir=\"LTR\"><b>Fuji Sengen-jinja Shrine (Subashiri Sengen-jinja Shrine)<\/b><\/span><\/span><\/a><\/h2>\n<p align=\"justify\"><strong><a href=\"https:\/\/shrineheritager.com\/?p=80688\">Fuji Sengen-jinja Shrine<\/a> is the starting point of the Subashiri trail.<\/strong><br \/>\n<strong>Fuji erupted in the 21st year of Enryaku (802 AD), and the shrine was built (807 AD) on the site where a fire ceremony was held to quell the eruption. This is believed to be the origin of the shrine. During the Edo period (1603-1867), many followers visited the shrine during the period when the Fuji-ko religion was active.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=80688\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<strong>Fuji Sengen-jinja Shrine<\/strong><\/b><\/span><\/span><span dir=\"LTR\"><b>\u3008<\/b><\/span><span dir=\"LTR\"><b>Higashiguchi Hongu Fuji Sengen Shrine<\/b><\/span><span dir=\"LTR\"><b>\u3009 (<\/b><\/span><span dir=\"LTR\"><b>Subashiri, Oyama-cho, Sunto-gun<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><b><\/b><a href=\"https:\/\/shrineheritager.com\/kawaguchi-asama-shrine\/\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>7 <\/b><\/span><b><\/b><b><\/b><b><\/b> <span class=\"affff5\" dir=\"LTR\"><b><u><\/u><\/b>Kawaguchi Asama-jinja Shrine<\/span><\/span><\/a><b><\/b><\/h2>\n<p><strong><span dir=\"LTR\"><b><a href=\"https:\/\/shrineheritager.com\/kawaguchi-asama-shrine\/\">Kawaguchi Asama-jinja Shrine<\/a> <\/b><\/span> is located at the northern foot of Mt.<\/strong><br \/>\n<strong>In 864 A.D., lava filled the Se-no-Umi, which was a huge lake, to form Lake Saiko and Lake Shojiko, giving rise to the Aokigahara Jukai (Aokigahara Sea of Trees). The Jogan eruption was the first time that Asama no Okami was enshrined at the northern foot of the mountain, and the shrine was founded in the 7th year of Jogan (865 AD).<\/strong><br \/>\n<strong>The approach to the shrine and its grounds are lined with large, ancient cedar trees that inspire awe in the hearts of all who visit.<\/strong><\/p>\n<p><a href=\"https:\/\/shrineheritager.com\/kawaguchi-asama-shrine\/\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fbKawaguchi Asama-jinja Shrine (Fujikawaguchiko Town) <\/b><\/span> <\/span><\/a><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><b><\/b><a href=\"https:\/\/shrineheritager.com\/?p=81175\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>8 <\/b><\/span><span dir=\"LTR\"><b>Fuji Omuro Sengen-jinja Shrine<\/b><\/span><\/span><\/a><\/h2>\n<p><strong><span dir=\"LTR\"><b><a href=\"https:\/\/shrineheritager.com\/?p=81175\">Fuji Omuro Sengen-jinja Shrine<\/a><\/b><\/span> located along the Yoshida-guchi trail.<\/strong><br \/>\n<strong>Fuji, and has functioned as an important center of Mt. Fuji worship, with the main shrine (Motomiya), located at the second station of Mt. Fuji, and the satomiya, a local deity of production, functioning as a single entity. This is an extremely unique shrine.<\/strong><br \/>\n<strong>The Motomiya is said to have been dedicated in 699 A.D. at the second station of Mt. Fuji, and the shrine was built in 807. In 958 A.D., Emperor Murakami built the Satomiya on the southern shore of Kawaguchi Lake.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81175\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Fuji Omuro Sengen-jinja Shrine<\/b><\/span><b> <\/b><span dir=\"LTR\"><b>Hongu<\/b><\/span><b> <\/b><span dir=\"LTR\"><b>Satomiya<\/b><\/span><\/span><\/a><span dir=\"LTR\"><b>(<\/b><\/span><span dir=\"LTR\"><b>Katsuyama, Fujikawaguchiko<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/p>\n<p align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 align=\"justify\"><b><\/b><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>9 <\/b><\/span><span dir=\"LTR\"><b>.<\/b><\/span> <span dir=\"LTR\"><b>10\u201cOshi\u201d Lodging House (<\/b><\/span><span dir=\"LTR\"><b>Former<\/b><\/span> <span dir=\"LTR\"><b><\/b> House of the Togawa Family)<span dir=\"LTR\"><b>,<\/b><\/span> <span dir=\"LTR\"><b> (House of the Osano Family)<\/b><\/span><\/span><\/span><\/h2>\n<p align=\"justify\"><strong>The (Former House of the Togawa Family and (House of the Osano Family were the homes of people called &#8220;onshi,&#8221; or &#8220;masters.<\/strong><br \/>\n<strong>Onshi were professionals who provided lodging and meals for Fuji worshippers when they climbed the mountain, and also engaged in missionary activities and prayers for the faith of Mt.<\/strong><\/p>\n<h2 align=\"justify\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>11 <\/b><\/span>Lake Yamanakako <b><\/b><\/span><\/h2>\n<p><span dir=\"LTR\"><b>Lake Yamanakako is located in the northeast at the foot of Mt. Fuji. It is the largest of the Fuji Five Lakes and the closest to Mt.<br \/>\nFuji. In the old days, many Fuji worshippers used to make the &#8220;Uchihachikai Tour&#8221; to visit the eight lakes and marshes around Mt.<\/b><\/span><\/p>\n<h2 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>12 Lake Kawaguchiko<\/b><\/span><\/h2>\n<div id=\"attachment_81227\" style=\"width: 1010px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-81227\" class=\"size-full wp-image-81226\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2023\/03\/s-%E6%B2%B3%E5%8F%A3%E6%B9%96-1.jpg\" alt=\"\" width=\"1000\" height=\"666\" \/><p id=\"caption-attachment-81227\" class=\"wp-caption-text\">Please do not reproduce without prior permission.<\/p><\/div>\n<p align=\"justify\"><strong>Lake Kawaguchiko is located in the northeast at the foot of Mt. Kawaguchiko, like Yamanakako, was once the site of the &#8220;Uchihachikai Tour,&#8221; a tour of the eight lakes and marshes around Mt. Fuji, and the lake is closely associated with the belief in Mt.<\/strong><\/p>\n<h2 align=\"justify\"><span style=\"color: #ff6600;\"><span dir=\"LTR\"><b>13~20 <\/b><\/span>Oshino Hakkai springs<b><\/b><span dir=\"LTR\"><b><br \/>\n<\/b><\/span><span dir=\"LTR\"><b>\u3008\u30fb<\/b><\/span><span dir=\"LTR\"><b>Deguchiike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Okamaike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Sokonashiike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Choshiike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Wakuike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Nigoriike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Kagamiike Pond<\/b><\/span><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Shobuike Pond<\/b><\/span><span dir=\"LTR\"><b>\u3009<\/b><\/span><\/span><\/h2>\n<p align=\"justify\"><strong>Oshinohakkai are eight spring-fed ponds fed by subterranean water from Mt.<\/strong><br \/>\n<strong>Fuji, and was chanted as &#8220;Fuji-san nemoto hakko&#8221; (eight lakes of Mt. Fuji) in reference to the ascetic practices of Hasegawa Kakugyo at Fuji Hakkai Shugyo. It is said to be a sacred site of the ancient site.\u3000Fuji, and was rebuilt in 1843 by the followers of Fuji Ko.\u3000The eight lakes are each enshrined with eight great dragon kings, and as a place of pilgrimage related to Fuji worship, ascetic ascetics purify their bodies and souls with this water.<\/strong><\/p>\n<h2 align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81177\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>21 Funatsu lava tree molds<\/b><\/span><\/a><\/h2>\n<p align=\"justify\"><strong>It is said that Hasegawa Kakugyo, the founder of Fuji-ko, discovered Funatsu lava tree molds when he climbed Mt.<\/strong><br \/>\n<strong>lava tree molds is so called because the interior of the lava jyutata resembles the interior of a human womb, and is the object of worship. People have come to perform a religious act called &#8220;tainai-meguri,&#8221; in which they walk through the interior of the tree.<\/strong><br \/>\n<strong>Among these, Funatsu lava tree molds and Yoshida lava tree molds were especially emphasized by many followers of Fuji Ko, and are regarded as sacred sites.<\/strong><\/p>\n<p align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81177\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><span dir=\"LTR\"><b>Mudomuro Sengen Shrine \u3008Funatsu Utanai Shrine\u3009 (Fujikawaguchiko Town)<\/b><\/span><\/span><\/a><\/p>\n<p align=\"justify\"><b style=\"color: #0000ff;\"><\/b><\/p>\n<h2 align=\"justify\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>22 Yoshida lava tree molds<\/b><\/span><\/h2>\n<p><strong>Yoshida lava tree molds, along with Funatsu lava tree molds, is a place that is considered sacred by many Fuji worshippers.<\/strong><br \/>\n<strong>Fuji erupted in 937 A.D. and was formed by the lava that flowed out of the mountain. Fuji erupted in 937 A.D. Approximately 60lava tree molds are distributed in the surrounding area.<\/strong><\/p>\n<p><strong>The interior of the Yoshida Tainai Shape is closed to the public. The interior of the Yoshida Tainai Archetype is not open to the public, but can be seen once a year during the festival held on April 29.<\/strong><\/p>\n<h2 style=\"text-align: left;\" align=\"justify\"><b><\/b><a href=\"https:\/\/shrineheritager.com\/?p=81179\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>23 Hitoana Fuji-ko Iseki<\/b><\/span><\/a><\/h2>\n<p><strong>The remains of the Fuji-ko Ruins are located in the precincts of the <a href=\"https:\/\/shrineheritager.com\/?p=81179\"><span dir=\"LTR\"><b>Hitoana Sengen Shrine<\/b><\/span><\/a>.<\/strong><br \/>\n<strong>It is said that Hasegawa Kakugyo, the founder of Fuji-ko, entered into ascetic practice at this cave and died there.<\/strong><br \/>\n<strong>This man cave (lava cave) was said to be &#8220;the place where Sengendai Bosatsu (Great Bodhisattva Asama) resided. It is a lava cave with a total length of 83 meters. It is believed to have been created by lava that flowed out of the cave during the eruption (about 7,000 years ago) of Mt.Fuji<\/strong><\/p>\n<p style=\"text-align: left;\" align=\"justify\"><a href=\"https:\/\/shrineheritager.com\/?p=81179\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b>\u30fb<\/b><\/span><\/span><span dir=\"LTR\"><b>Hitoana Sengen Shrine<\/b><\/span><span dir=\"LTR\"><b>(<\/b><\/span><span dir=\"LTR\"><b>Fujinomiya City Hitoana<\/b><\/span><span dir=\"LTR\"><b>)<\/b><\/span><\/a><\/p>\n<p style=\"text-align: left;\" align=\"justify\"><span style=\"color: #0000ff;\"><span dir=\"LTR\"><b><\/b><\/span> <\/span><\/p>\n<h2 style=\"text-align: left;\" align=\"justify\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>24 Shiraito no Taki waterfalls<\/b><\/span><\/h2>\n<p style=\"text-align: left;\" align=\"justify\"><strong>Shiraito no Taki waterfalls is a beautiful and gentle waterfall that looks like many silk threads falling from the underground water of Mt. Fuji, which is 20 meters high and 150 meters wide.<\/strong><br \/>\n<strong>This is the place where Hasegawa Kakugyo, the founder of Fuji-ko, did his ascetic training. It became a place of pilgrimage and ascetic practice for the Fuji-ko and others.<\/strong><\/p>\n<h2 style=\"text-align: left;\" align=\"justify\"><span dir=\"LTR\" style=\"color: #ff6600;\"><b>25 Mihonomatsubara pine tree grove<\/b><\/span><\/h2>\n<div id=\"attachment_81221\" style=\"width: 1010px\" class=\"wp-caption alignnone\"><img decoding=\"async\" aria-describedby=\"caption-attachment-81221\" class=\"size-full wp-image-81220\" src=\"https:\/\/shrineheritager.com\/wp-content\/uploads\/2023\/03\/s-10-18.jpg\" alt=\"\" width=\"1000\" height=\"687\" \/><p id=\"caption-attachment-81221\" class=\"wp-caption-text\">Please do not reproduce without prior permission.<\/p><\/div>\n<p style=\"text-align: left;\"><strong>Mihonomatsubara pine tree grove is a pine forest with about 30,000 pine trees growing along the coastline. Because of the beauty of its scenery, it has long been considered a sacred place overlooking Mt.<\/strong><br \/>\n<strong>This place was beautifully told by the legend of a heavenly maiden, and was familiar to people and famous throughout the country for a long time. Located about 45 km southwest of the summit of Mt. Fuji, it is the most distant of the World Heritage sites.<\/strong><\/p>\n<p style=\"text-align: left;\"><a href=\"https:\/\/shrineheritager.com\/?p=42946\"><strong><span style=\"color: #0000ff;\"><span dir=\"LTR\">\u3008Reference\u3009<\/span><\/span><\/strong><strong><span style=\"color: #0000ff;\">\u30fbMiho <span dir=\"LTR\">Shrine (Miho, Shimizu-ku, Shizuoka City)<\/span><\/span><\/strong><\/a><\/p>\n<p align=\"justify\"><span dir=\"LTR\" style=\"color: #0000ff;\"><b><\/b><\/span><\/p>\n<h2><span dir=\"LTR\"><b>\u4e16\u754c\u6587\u5316\u907a\u7523\u300c\u5bcc\u58eb\u5c71\uff0d\u4fe1\u4ef0\u306e\u5bfe\u8c61\u3068\u82b8\u8853\u306e\u6e90\u6cc9\u300d\u6982\u8981<\/b><\/span><\/h2>\n<p><span dir=\"LTR\"><b>\u00a0\u51fa\u5178:\u8fb2\u6797\u6c34\u7523\u7701Web\u30b5\u30a4\u30c8<\/b><\/span><span dir=\"LTR\"><b>\u3000<\/b><\/span><span dir=\"LTR\"><b>\u68ee\u6797\u6574\u5099\u90e8\u68ee\u6797\u5229\u7528\u8ab2<\/b><\/span><span dir=\"LTR\"><b>\u3088\u308a<br \/>\n<\/b><\/span><span dir=\"LTR\"><b>https:\/\/www.rinya.maff.go.jp\/j\/sin_riyou\/sekaiisan\/fujisan.html#:~:text=%E3%82%AF%E3%83%A9%E3%82%A4%E3%83%86%E3%83%AA%E3%82%A2%EF%BC%88iii%EF%BC%89%E7%8B%AC%E7%AB%8B%E6%88%90%E5%B1%A4%E7%81%AB%E5%B1%B1,%E5%90%B9%E3%81%8D%E8%BE%BC%E3%82%80%E3%81%93%E3%81%A8%E3%82%92%E9%A1%98%E3%81%A3%E3%81%9F%E3%80%82<\/b><\/span><\/p>\n<div align=\"center\">\n<table style=\"border-collapse: separate; padding: 2.25pt 2.25pt 2.25pt 2.25pt;\" cellspacing=\"15\">\n<tbody>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u540d\u79f0<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\"><b>\u300c\u5bcc\u58eb\u5c71\uff0d\u4fe1\u4ef0\u306e\u5bfe\u8c61\u3068\u82b8\u8853\u306e\u6e90\u6cc9\u300d\u00a0 Fujisan, sacred place and source of artistic inspiration<\/b><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u6240\u5728\u5730<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\"><b>\u5c71\u68a8\u770c\u30fb\u9759\u5ca1\u770c<\/b><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u9762\u7a4d<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\"><b>\u69cb\u6210\u8cc7\u7523\u9762\u7a4d\uff1a20,702.1ha\u3001\u7de9\u885d\u5730\u5e2f\u9762\u7a4d\uff1a49,627.7ha<\/b><\/span><span dir=\"LTR\"><b><br \/>\n<\/b><\/span><span dir=\"LTR\"><b>\u69cb\u6210\u8cc7\u7523\u9762\u7a4d\u306e\u7d049\u5272\u304c\u68ee\u6797\u3067\u3042\u308a\u3001\u305d\u306e\u3046\u3061\u7d044\u5272\u304c\u56fd\u6709\u6797\u91ce\u3002<\/b><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u69cb\u6210\u8cc7\u7523\u306e<\/b><\/span><span dir=\"LTR\"><b><br \/>\n<\/b><\/span><span dir=\"LTR\"><b>\u4fdd\u8b77\u63aa\u7f6e<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\"><b>\u6587\u5316\u8ca1\u4fdd\u8b77\u6cd5\u3001\u81ea\u7136\u516c\u5712\u6cd5\u53ca\u3073\u56fd\u6709\u6797\u91ce\u306e\u7ba1\u7406\u7d4c\u55b6\u306b\u95a2\u3059\u308b\u6cd5\u5f8b<\/b><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u767b\u9332\u57fa\u6e96\u3078\u306e\u9069\u5408<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\" style=\"color: #0000ff;\"><b>\u30af\u30e9\u30a4\u30c6\u30ea\u30a2\uff08iii\uff09\u72ec\u7acb\u6210\u5c64\u706b\u5c71\u3068\u3057\u3066\u306e\u8358\u53b3\u306a\u5bcc\u58eb\u5c71\u306e\u5f62\u59ff\u306f\u3001\u9593\u6b20\u7684\u306b\u7e70\u308a\u8fd4\u3059\u706b\u5c71\u6d3b\u52d5\u306b\u3088\u308a\u5f62\u6210\u3055\u308c\u305f\u3082\u306e\u3067\u3042\u308a\u3001\u53e4\u4ee3\u304b\u3089\u4eca\u65e5\u306b\u81f3\u308b\u307e\u3067\u5c71\u5cb3\u4fe1\u4ef0\u306e\u4f1d\u7d71\u3092\u9f13\u821e\u3057\u7d9a\u3051\u3066\u304d\u305f\u3002\u9802\u4e0a\u3078\u306e\u767b\u62dd\u3068\u5c71\u9e93\u306e\u970a\u5730\u3078\u306e\u5de1\u793c\u3092\u901a\u3058\u3066\u3001\u5de1\u793c\u8005\u306f\u305d\u3053\u3092\u5c45\u51e6\u3068\u3059\u308b\u795e\u4ecf\u306e\u970a\u80fd\u3092\u6211\u304c\u8eab\u306b\u5439\u304d\u8fbc\u3080\u3053\u3068\u3092\u9858\u3063\u305f\u3002\u3053\u308c\u3089\u306e\u5b97\u6559\u7684\u95a2\u9023\u6027\u306f\u3001\u305d\u306e\u5b8c\u5168\u306a\u5f62\u59ff\u3068\u3057\u3066\u306e\u5c55\u671b\u3092\u63cf\u3044\u305f\u7121\u6570\u306e\u82b8\u8853\u4f5c\u54c1\u3092\u751f\u307f\u51fa\u3059\u304d\u3063\u304b\u3051\u3068\u306a\u3063\u305f\u5bcc\u58eb\u5c71\u3078\u306e\u6df1\u3044\u61a7\u61ac\u3001\u305d\u306e\u7f8e\u3057\u3055\u3078\u306e\u611f\u8b1d\u3001\u81ea\u7136\u74b0\u5883\u3068\u306e\u5171\u751f\u3092\u91cd\u8996\u3059\u308b\u4f1d\u7d71\u3068\u7d50\u3073\u4ed8\u3044\u305f\u3002\u4e00\u7fa4\u306e\u69cb\u6210\u8cc7\u7523\u306f\u3001\u5bcc\u58eb\u5c71\u3068\u305d\u306e\u307b\u3068\u3093\u3069\u5b8c\u5168\u306a\u5f62\u59ff\u306b\u5bfe\u3059\u308b\u5d07\u656c\u3092\u57fa\u8ef8\u3068\u3059\u308b\u751f\u304d\u305f\u6587\u5316\u7684\u4f1d\u7d71\u306e\u985e\u3044\u5e0c\u306a\u308b\u8a3c\u62e0\u3067\u3042\u308b\u3002<\/b><\/span><span dir=\"LTR\"><b><br \/>\n<\/b><\/span><span dir=\"LTR\"><b><br \/>\n<\/b><\/span><span dir=\"LTR\"><b>\u30af\u30e9\u30a4\u30c6\u30ea\u30a2\uff08vi\uff09\u6e56\u6cbc\u53ca\u3073\u6d77\u304b\u3089\u7acb\u3061\u4e0a\u304c\u308b\u72ec\u7acb\u6210\u5c64\u706b\u5c71\u3068\u3057\u3066\u306e\u5bcc\u58eb\u5c71\u306e\u56f3\u50cf\u306f\u3001\u53e4\u6765\u3001\u8a69\u30fb\u6563\u6587\u305d\u306e\u4ed6\u306e\u82b8\u8853\u4f5c\u54c1\u306b\u3068\u3063\u3066\u3001\u5275\u9020\u7684\u611f\u6027\u306e\u6e90\u6cc9\u3067\u3042\u308a\u7d9a\u3051\u305f\u3002\u3068\u308a\u308f\u305119\u4e16\u7d00\u521d\u671f\u306e\u845b\u98fe\u5317\u658e\u53ca\u3073\u6b4c\u5ddd\u5e83\u91cd\u306b\u3088\u308a\u6d6e\u4e16\u7d75\u306b\u63cf\u304b\u308c\u305f\u5bcc\u58eb\u5c71\u306e\u56f3\u50cf\u306f\u3001\u897f\u6d0b\u306e\u82b8\u8853\u306e\u767a\u5c55\u306b\u9855\u8457\u306a\u5f71\u97ff\u3092\u3082\u305f\u3089\u3057\u3001\u4eca\u306a\u304a\u9ad8\u304f\u8a55\u4fa1\u3055\u308c\u3066\u3044\u308b\u5bcc\u58eb\u5c71\u306e\u8358\u53b3\u306a\u5f62\u59ff\u3092\u4e16\u754c\u4e2d\u306b\u77e5\u3089\u3057\u3081\u305f\u3002<\/b><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 23.5273mm; padding: 0pt 0pt 0pt 0pt;\" width=\"23.5273mm\"><span dir=\"LTR\"><b>\u69cb\u6210\u8cc7\u7523<\/b><\/span><\/td>\n<td style=\"width: 204.762mm; padding: 0pt 0pt 0pt 0pt;\" width=\"204.762mm\"><span dir=\"LTR\"><b>1 \u5bcc\u58eb\u5c71\u57df<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-1 \u5c71\u9802\u306e\u4fe1\u4ef0\u907a\u8de1\u7fa4<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-2 \u5927\u5bae\u30fb\u6751\u5c71\u53e3\u767b\u5c71\u9053\uff08\u73fe\u5bcc\u58eb\u5bae\u53e3\u767b\u5c71\u9053\uff09<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-3\u00a0\u9808\u5c71\u53e3\u767b\u5c71\u9053\uff08\u73fe\u5fa1\u6bbf\u5834\u53e3\u767b\u5c71\u9053\uff09<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-4 \u9808\u8d70\u53e3\u767b\u5c71\u9053<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-5 \u5409\u7530\u53e3\u767b\u5c71\u9053<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-6 \u5317\u53e3\u672c\u5bae\u51a8\u58eb\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-7 \u897f\u6e56<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-8 \u7cbe\u9032\u6e56<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>\u00a0 1-9 \u672c\u6816\u6e56<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>2 \u5bcc\u58eb\u5c71\u672c\u5bae\u6d45\u9593\u5927\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>3 \u5c71\u5bae\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>4 \u6751\u5c71\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>5 \u9808\u5c71\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>6 \u51a8\u58eb\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>7 \u6cb3\u53e3\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>8 \u51a8\u58eb\u5fa1\u5ba4\u6d45\u9593\u795e\u793e<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>9 \u5fa1\u5e2b\u4f4f\u5b85\uff08\u65e7\u5916\u5ddd\u5bb6\u4f4f\u5b85\uff09<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>10 \u5fa1\u5e2b\u4f4f\u5b85\uff08\u5c0f\u4f50\u91ce\u5bb6\u4f4f\u5b85\uff09<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>11 \u5c71\u4e2d\u6e56<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>12 \u6cb3\u53e3\u6e56<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>13\uff5e20 \u5fcd\u91ce\u516b\u6d77<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>21 \u8239\u6d25\u80ce\u5185\u6a39\u578b<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>22 \u5409\u7530\u80ce\u5185\u6a39\u578b<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>23 \u4eba\u7a74\u5bcc\u58eb\u8b1b\u907a\u8de1<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>24 \u767d\u7cf8\u30ce\u6edd<\/b><\/span><\/p>\n<p><span dir=\"LTR\"><b>25 \u4e09\u4fdd\u677e\u539f<\/b><\/span><\/p>\n<p>&nbsp;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>As a criterion (iii) of the World Cultural Heritage &#8220;Mt. Fuji &#8211; Object of Worship and Source of Art&#8221;, it is written that &#8220;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&#8221;<\/p>\n","protected":false},"author":1,"featured_media":81190,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[409],"tags":[322,410,411],"class_list":["post-81339","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-world-cultural-heritage","tag--en","tag-yamanashi","tag-mt-fuji-world-cultural-heritage-constituent-assets"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"As a criterion (iii) of the World Cultural Heritage &quot;Mt. Fuji - Object of Worship and Source of Art&quot;, it is written that &quot;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&quot;\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"shrine-heritager\"\/>\n\t<meta name=\"google-site-verification\" content=\"390JL8dFBfHY-q9uqg2yokTMRSCUKGcp876l9iqPyCE\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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=\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager\" \/>\n\t\t<meta property=\"og:description\" content=\"As a criterion (iii) of the World Cultural Heritage &quot;Mt. Fuji - Object of Worship and Source of Art&quot;, it is written that &quot;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&quot;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-03-30T03:00:45+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-02-18T16:30:03+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager\" \/>\n\t\t<meta name=\"twitter:description\" content=\"As a criterion (iii) of the World Cultural Heritage &quot;Mt. Fuji - Object of Worship and Source of Art&quot;, it is written that &quot;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&quot;\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#blogposting\",\"name\":\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager\",\"headline\":\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen 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\\\/2023\\\/12\\\/s-1-6.jpg\",\"width\":1000,\"height\":666},\"datePublished\":\"2023-03-30T12:00:45+09:00\",\"dateModified\":\"2023-02-19T01:30:03+09:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#webpage\"},\"articleSection\":\"World Cultural Heritage, \\u4e2d\\u90e8\\u5730\\u65b9, Yamanashi, Mt. Fuji World Cultural Heritage Constituent assets, Optional\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\\\/world-cultural-heritage\\\/#listItem\",\"name\":\"World Cultural Heritage\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/world-cultural-heritage\\\/#listItem\",\"position\":2,\"name\":\"World Cultural Heritage\",\"item\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/world-cultural-heritage\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#listItem\",\"name\":\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#listItem\",\"name\":\"\\u5bb6\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#listItem\",\"position\":3,\"name\":\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/category\\\/world-cultural-heritage\\\/#listItem\",\"name\":\"World Cultural Heritage\"}}]},{\"@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\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#organizationLogo\",\"width\":956,\"height\":1024,\"caption\":\"Please do not reproduce without prior permission.\"},\"image\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#webpage\",\"url\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/\",\"name\":\"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager\",\"description\":\"As a criterion (iii) of the World Cultural Heritage \\\"Mt. Fuji - Object of Worship and Source of Art\\\", it is written that \\\"Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.\\\"\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\\\/2023\\\/12\\\/s-1-6.jpg\",\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#mainImage\",\"width\":1000,\"height\":666},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shrineheritager.com\\\/en\\\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\\\/#mainImage\"},\"datePublished\":\"2023-03-30T12:00:45+09:00\",\"dateModified\":\"2023-02-19T01:30:03+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":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager","description":"As a criterion (iii) of the World Cultural Heritage \"Mt. Fuji - Object of Worship and Source of Art\", it is written that \"Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.\"","canonical_url":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#blogposting","name":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager","headline":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen 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\/2023\/12\/s-1-6.jpg","width":1000,"height":666},"datePublished":"2023-03-30T12:00:45+09:00","dateModified":"2023-02-19T01:30:03+09:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#webpage"},"isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#webpage"},"articleSection":"World Cultural Heritage, \u4e2d\u90e8\u5730\u65b9, Yamanashi, Mt. Fuji World Cultural Heritage Constituent assets, Optional"},{"@type":"BreadcrumbList","@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\/world-cultural-heritage\/#listItem","name":"World Cultural Heritage"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/world-cultural-heritage\/#listItem","position":2,"name":"World Cultural Heritage","item":"https:\/\/shrineheritager.com\/en\/category\/world-cultural-heritage\/","nextItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#listItem","name":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine"},"previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/#listItem","name":"\u5bb6"}},{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#listItem","position":3,"name":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine","previousItem":{"@type":"ListItem","@id":"https:\/\/shrineheritager.com\/en\/category\/world-cultural-heritage\/#listItem","name":"World Cultural Heritage"}}]},{"@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\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#organizationLogo","width":956,"height":1024,"caption":"Please do not reproduce without prior permission."},"image":{"@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#webpage","url":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/","name":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager","description":"As a criterion (iii) of the World Cultural Heritage \"Mt. Fuji - Object of Worship and Source of Art\", it is written that \"Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.\"","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/shrineheritager.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-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\/2023\/12\/s-1-6.jpg","@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#mainImage","width":1000,"height":666},"primaryImageOfPage":{"@id":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/#mainImage"},"datePublished":"2023-03-30T12:00:45+09:00","dateModified":"2023-02-19T01:30:03+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":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager","og:description":"As a criterion (iii) of the World Cultural Heritage &quot;Mt. Fuji - Object of Worship and Source of Art&quot;, it is written that &quot;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&quot;","og:url":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/","article:published_time":"2023-03-30T03:00:45+00:00","article:modified_time":"2023-02-18T16:30:03+00:00","twitter:card":"summary_large_image","twitter:title":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine - Shrine-heritager","twitter:description":"As a criterion (iii) of the World Cultural Heritage &quot;Mt. Fuji - Object of Worship and Source of Art&quot;, it is written that &quot;Through the ascent to the summit and pilgrimage to the sacred place at the foot of the mountain, which has inspired the tradition of mountain worship from ancient times to the present day, pilgrims wished to imbue themselves with the spiritual power of the gods and Buddhas who live there.&quot;"},"aioseo_meta_data":{"post_id":"81339","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-06-04 10:19:55","updated":"2025-07-01 11:48:49","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\/world-cultural-heritage\/\" title=\"World Cultural Heritage\">World Cultural Heritage<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u5bb6","link":"https:\/\/shrineheritager.com\/en\/"},{"label":"World Cultural Heritage","link":"https:\/\/shrineheritager.com\/en\/category\/world-cultural-heritage\/"},{"label":"Mt. Fuji World Cultural Heritage Component Assets and More about Sengen Shrine","link":"https:\/\/shrineheritager.com\/en\/mt-fuji-world-cultural-heritage-component-assets-and-more-about-sengen-shrine\/"}],"views":473,"_links":{"self":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/81339","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=81339"}],"version-history":[{"count":0,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/posts\/81339\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media\/81190"}],"wp:attachment":[{"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/media?parent=81339"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/categories?post=81339"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shrineheritager.com\/en\/wp-json\/wp\/v2\/tags?post=81339"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}