Outiref
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Yuki Onna – The Snow Woman | 百物語怪談会 Hyakumonogatari Kaidankai</title>
<link rel="pingback" href="https://hyakumonogatari.com/xmlrpc.php" />
<meta name='robots' content='max-image-preview:large' />
<meta name="google-site-verification" content="_IHLXg6PZ_soVFrzkPgwQrGZwuBFRepXOqjluBV79hA" />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=1312'
					+ '&is_singular=1';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9oeWFrdW1vbm9nYXRhcmkuY29t"
		+ "&wpcomid=14597045"
		+ "&time=1714148267";
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//widgets.wp.com' />
<link rel='dns-prefetch' href='//s.pubmine.com' />
<link rel='dns-prefetch' href='//x.bidswitch.net' />
<link rel='dns-prefetch' href='//static.criteo.net' />
<link rel='dns-prefetch' href='//ib.adnxs.com' />
<link rel='dns-prefetch' href='//aax.amazon-adsystem.com' />
<link rel='dns-prefetch' href='//bidder.criteo.com' />
<link rel='dns-prefetch' href='//cas.criteo.com' />
<link rel='dns-prefetch' href='//gum.criteo.com' />
<link rel='dns-prefetch' href='//ads.pubmatic.com' />
<link rel='dns-prefetch' href='//gads.pubmatic.com' />
<link rel='dns-prefetch' href='//tpc.googlesyndication.com' />
<link rel='dns-prefetch' href='//ad.doubleclick.net' />
<link rel='dns-prefetch' href='//googleads.g.doubleclick.net' />
<link rel='dns-prefetch' href='//www.googletagservices.com' />
<link rel='dns-prefetch' href='//cdn.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.g.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.swid.switchadhub.com' />
<link rel='dns-prefetch' href='//a.teads.tv' />
<link rel='dns-prefetch' href='//prebid.media.net' />
<link rel='dns-prefetch' href='//adserver-us.adtech.advertising.com' />
<link rel='dns-prefetch' href='//fastlane.rubiconproject.com' />
<link rel='dns-prefetch' href='//prebid-server.rubiconproject.com' />
<link rel='dns-prefetch' href='//hb-api.omnitagjs.com' />
<link rel='dns-prefetch' href='//mtrx.go.sonobi.com' />
<link rel='dns-prefetch' href='//apex.go.sonobi.com' />
<link rel='dns-prefetch' href='//u.openx.net' />
<link rel="alternate" type="application/rss+xml" title="百物語怪談会 Hyakumonogatari Kaidankai &raquo; Feed" href="https://hyakumonogatari.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="百物語怪談会 Hyakumonogatari Kaidankai &raquo; Comments Feed" href="https://hyakumonogatari.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="百物語怪談会 Hyakumonogatari Kaidankai &raquo; Yuki Onna – The Snow&nbsp;Woman Comments Feed" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1710334132i&ver=6.6-alpha-57987"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='https://s1.wp.com/_static/??-eJyFjlEKwjAQBS9kXK0U64d4lqRZa9pNNnQ3Fm+vFVFQqJ8D84YHUzYtJ8Wk4Ig7k6l0IQlMPHrrBTpiZ2ndiqzgnztwMNfqx43lbfao2bbDi0FKgsi+EAqMSFbRm8yiX7RUpDDgp/ukJT2kc0hBb6AXjI9hLm6+PU9O8bjdb+q62h2apr8DlC9oxw==&cssminify=yes' type='text/css' media='all' />
<style id='wp-emoji-styles-inline-css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='https://s2.wp.com/wp-content/plugins/gutenberg-core/v18.1.2/build/block-library/style.css?m=1713425039i&cssminify=yes' type='text/css' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
	text-align:justify;
}
.wp-block-cover__image-background.has-parallax {
	background-size: cover;
}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&cssminify=yes' type='text/css' media='all' />
<style id='jetpack-sharing-buttons-style-inline-css'>
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-6-1' href='https://s1.wp.com/_static/??-eJyVzDEOgCAMQNELiQU1Jg7Gs2AlDYpAaInx9ro5O/7hfbiywhTFRYEcKvnIQPXN1RVSa0h4MOxOssVDBXunKoqK34DlDq5F5gb+LIoVH4k/vpyzGYe+03oyw/4AcmU1KQ==&cssminify=yes' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='https://s2.wp.com/_static/??-eJx9jcEKg0AMRH+oaVhorR7Eb9E16IpZg8min2889FZ6GYbhPQYPgbhlo2zIBWQtU8qKcdvJd5be0AmmMfW0Ejv2jKoP/K0daZzIXNdvB6PzvyJ+A8MgO6mCJ6fCYLN/6e113IZXU9WfUL/DcgHSTkDo&cssminify=yes' type='text/css' media='all' />
<style id='global-styles-inline-css'>
:root{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){margin-left: auto !important;margin-right: auto !important;}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
:where(.wp-block-navigation a:where(:not(.wp-element-button))){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='https://s1.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/verbum-comments.css?m=1709133875i&cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='verbum-gutenberg-css-css' href='https://widgets.wp.com/verbum-block-editor/block-editor.css?ver=1705430309' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='https://s2.wp.com/_static/??/wp-content/themes/pub/koi/style.css,/wp-content/mu-plugins/jetpack-plugin/sun/modules/widgets/top-posts/style.css?m=1685115060j&cssminify=yes' type='text/css' media='all' />
<style id='jetpack_facebook_likebox-inline-css'>
.widget_facebook_likebox {
	overflow: hidden;
}

</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='https://s1.wp.com/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1k9PzdfNyU9OLMnMz0Ph6KblJGYW6SUXF+voY9dalJqUk58OZKbrA1UhcUGa7HNtDU1MLU1MLMwNTbIAmkQtqg==&cssminify=yes' type='text/css' media='all' />
<link crossorigin='anonymous' rel='stylesheet' id='print-css-15-1' href='https://s1.wp.com/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-18-1' href='https://s0.wp.com/_static/??-eJyNjcsKQjEMBX/ImlsQry7ET5GahrbXNCmmRfx7H7gRN+7OwGEGbs2hSifpUIdrPFIRg4V6C3j5MNgQqBoHk4HlcKUYYry/Z5G0RrMV/C06FUEwxRLYsSa1L/iR9Uz1mc0bSKznwK/DsR787Kd5P/ntbnkAuNBIYA==&cssminify=yes' type='text/css' media='all' />
<script type="text/javascript" id="jetpack_related-posts-js-extra">
/* <![CDATA[ */
var related_posts_js_options = {"post_heading":"h4"};
/* ]]> */
</script>
<script type="text/javascript" id="media-video-jwt-bridge-js-extra">
/* <![CDATA[ */
var videopressAjax = {"ajaxUrl":"https:\/\/hyakumonogatari.wordpress.com\/wp-admin\/admin-ajax.php","bridgeUrl":"\/wp-content\/mu-plugins\/jetpack-plugin\/sun\/jetpack_vendor\/automattic\/jetpack-videopress\/build\/lib\/token-bridge.js","post_id":"1312"};
/* ]]> */
</script>
<script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra">
/* <![CDATA[ */
var actionbardata = {"siteID":"14597045","postID":"1312","siteURL":"https:\/\/hyakumonogatari.com","xhrURL":"https:\/\/hyakumonogatari.com\/wp-admin\/admin-ajax.php","nonce":"3ff409e2ff","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","shortlink":"https:\/\/wp.me\/pZfmd-la","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar"}};
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/_static/??-eJyVjs1OAzEMhF8I10ArFQ6IR6nyY1beJnYUO9vy9mylVQW9cbJmNONv8NIgqTiJ42xYNXIhGEY9TKsHLF+6m+0Jf+XqgFbGxGI4k7eQzptGG4InloRxcMnYqQSnDE3N7a/aVZbHvyu/F4fW9fr9P+ZmnRaSrB3DcK3BndM9vHAmbZ3Mtm2FI7qeSSB2zhM9AmPR6Y68aM8hG6QSzMhuS1NtuLzeDpiPuNY/68fL8fn4vt8fDm/zD3MugPA='></script>
<script type="text/javascript" id="rlt-proxy-js-after">
/* <![CDATA[ */
	window.addEventListener( 'DOMContentLoaded', function() {
		rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
	} );
/* ]]> */
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://hyakumonogatari.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel="canonical" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" />
<link rel='shortlink' href='https://wp.me/pZfmd-la' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&amp;url=https%3A%2F%2Fhyakumonogatari.com%2F2013%2F12%2F18%2Fyuki-onna-the-snow-woman%2F&amp;for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&amp;url=https%3A%2F%2Fhyakumonogatari.com%2F2013%2F12%2F18%2Fyuki-onna-the-snow-woman%2F&amp;for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Yuki Onna – The Snow Woman" />
<meta property="og:url" content="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" />
<meta property="og:description" content="Translated and Sourced from Mizuki Shigeru’s Mujyara, Kaii Yokai Densho Database, Kwaidan, Japanese Wikipedia, and Other Sources The Yuki Onna is one of Japan’s most well-known and yet unknown yoka…" />
<meta property="article:published_time" content="2013-12-19T07:21:29+00:00" />
<meta property="article:modified_time" content="2013-12-19T07:21:29+00:00" />
<meta property="og:site_name" content="百物語怪談会 Hyakumonogatari Kaidankai" />
<meta property="og:image" content="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png" />
<meta property="og:image:width" content="535" />
<meta property="og:image:height" content="430" />
<meta property="og:image:alt" content="Mizuki_Shigeru_Yuki_Onna" />
<meta property="og:locale" content="en_US" />
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" />
<meta name="twitter:text:title" content="Yuki Onna – The Snow&nbsp;Woman" />
<meta name="twitter:image" content="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=640" />
<meta name="twitter:image:alt" content="Mizuki_Shigeru_Yuki_Onna" />
<meta name="twitter:card" content="summary_large_image" />

<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=32" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=32" sizes="16x16" />
<link rel="apple-touch-icon" href="https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=114" />
<link rel='openid.server' href='https://hyakumonogatari.com/?openidserver=1' />
<link rel='openid.delegate' href='https://hyakumonogatari.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://hyakumonogatari.com/osd.xml" title="百物語怪談会 Hyakumonogatari Kaidankai" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
		<style id="wpcom-hotfix-masterbar-style">
			@media screen and (min-width: 783px) {
				#wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img {
					margin-top: 5px;
				}
			}
		</style>
		<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<style type="text/css">
			.recentcomments a {
				display: inline !important;
				padding: 0 !important;
				margin: 0 !important;
			}

			table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
				border: 0px;
				margin: 0;
			}

			table.recentcommentsavatartop a, table.recentcommentsavatarend a {
				border: 0px !important;
				background-color: transparent !important;
			}

			td.recentcommentsavatarend, td.recentcommentsavatartop {
				padding: 0px 0px 1px 0px;
				margin: 0px;
			}

			td.recentcommentstextend {
				border: none !important;
				padding: 0px 0px 2px 10px;
			}

			.rtl td.recentcommentstextend {
				padding: 0px 10px 2px 0px;
			}

			td.recentcommentstexttop {
				border: none;
				padding: 0px 0px 0px 10px;
			}

			.rtl td.recentcommentstexttop {
				padding: 0px 10px 0px 0px;
			}
		</style>
		<meta name="application-name" content="百物語怪談会 Hyakumonogatari Kaidankai" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="Translated Japanese Ghost Stories and Tales of the Weird and the Strange" /><meta name="description" content="Translated and Sourced from Mizuki Shigeru’s Mujyara, Kaii Yokai Densho Database, Kwaidan, Japanese Wikipedia, and Other Sources The Yuki Onna is one of Japan’s most well-known and yet unknown yokai. There is no single story of the Yuki Onna. From dread snow vampire of the mountains to a loving bride and mother, she has played&hellip;" />
	<style type="text/css">
				#header #logo, #header #logo a, #header #description {
			color: #6c5c46;
		}
		</style>
<script type="text/javascript">
/* <![CDATA[ */
var wa_smart = { 'network_id': 3905, 'site_id': 474853, 'page_id': 1572546, 'blog_id': 14597045, 'post_id': 1312, 'theme': 'pub/koi', 'target': 'wp_blog_id=14597045;language=en;adflow=true', '_': { 'title': 'Advertisement', 'privacy_settings': 'Privacy Settings' }, 'inline': { 'format_id': 110354, 'max_slots': 20, 'max_blaze_slots': 20, 'enabled': true, 'adflow_enabled': true } }; wa_smart.cmd = [];
/* ]]> */
</script>
		<script type="text/javascript">
		function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
		var __ATA_PP = { 'pt': 1, 'ht': 0, 'tn': 'koi', 'uloggedin': 0, 'amp': false, 'consent': __ATA_CC(), 'gdpr_applies': true, 'ad': { 'label': { 'text': 'Advertisements' }, 'reportAd': { 'text': 'Report this ad' }, 'privacySettings': { 'text': 'Privacy', 'onClick': function() { window.__tcfapi && window.__tcfapi( 'showUi' ) } } }, 'disabled_slot_formats': [ 'IAD' ], 'siteid': 8982, 'blogid': 14597045, 'js_hint': 'tcf2_test', 'afp_ad_client': 'pub-8360754161014984' };
		var __ATA = __ATA || {};
		__ATA.cmd = __ATA.cmd || [];
		__ATA.criteo = __ATA.criteo || {};
		__ATA.criteo.cmd = __ATA.criteo.cmd || [];
		</script>
		<script type="text/javascript">
		(function(){var g=Date.now||function(){return+new Date};function h(a,b){a:{for(var c=a.length,d="string"==typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"==typeof a?a.charAt(b):a[b]};function k(a,b,c){c=null!=c?"="+encodeURIComponent(String(c)):"";if(b+=c){c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;a=a[0]+(a[1]?"?"+a[1]:"")+a[2]}return a};var l=0;function m(a,b){var c=document.createElement("script");c.src=a;c.onload=function(){b&&b(void 0)};c.onerror=function(){b&&b("error")};a=document.getElementsByTagName("head");var d;a&&0!==a.length?d=a[0]:d=document.documentElement;d.appendChild(c)}function n(a){var b=void 0===b?document.cookie:b;return(b=h(b.split("; "),function(c){return-1!=c.indexOf(a+"=")}))?b.split("=")[1]:""}function p(a){return"string"==typeof a&&0<a.length}
		function r(a,b,c){b=void 0===b?"":b;c=void 0===c?".":c;var d=[];Object.keys(a).forEach(function(e){var f=a[e],q=typeof f;"object"==q&&null!=f||"function"==q?d.push(r(f,b+e+c)):null!==f&&void 0!==f&&(e=encodeURIComponent(b+e),d.push(e+"="+encodeURIComponent(f)))});return d.filter(p).join("&")}function t(a,b){a||((window.__ATA||{}).config=b.c,m(b.url))}var u=Math.floor(1E13*Math.random()),v=window.__ATA||{};window.__ATA=v;window.__ATA.cmd=v.cmd||[];v.rid=u;v.createdAt=g();var w=window.__ATA||{},x="s.pubmine.com";
		w&&w.serverDomain&&(x=w.serverDomain);var y="//"+x+"/conf",z=window.top===window,A=window.__ATA_PP&&window.__ATA_PP.gdpr_applies,B="boolean"===typeof A?Number(A):null,C=window.__ATA_PP||null,D=z?document.referrer?document.referrer:null:null,E=z?window.location.href:document.referrer?document.referrer:null,F,G=n("__ATA_tuuid");F=G?G:null;var H=window.innerWidth+"x"+window.innerHeight,I=n("usprivacy"),J=r({gdpr:B,pp:C,rid:u,src:D,ref:E,tuuid:F,vp:H,us_privacy:I?I:null},"",".");
		(function(a){var b=void 0===b?"cb":b;l++;var c="callback__"+g().toString(36)+"_"+l.toString(36);a=k(a,b,c);window[c]=function(d){t(void 0,d)};m(a,function(d){d&&t(d)})})(y+"?"+J);}).call(this);
		</script>	<script>
		var sas_fallback = sas_fallback || [];
		sas_fallback.push(
			{ tag: "&lt;div id=&quot;atatags-26942-662bd3ab11c98&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-662bd3ab11c98\',location: 120,formFactor: \'001\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',onClick: function() { window.__tcfapi &amp;&amp; window.__tcfapi( \'showUi\' ); },}}});});&lt;/script&gt;", type: 'belowpost' },
			{ tag: "&lt;div id=&quot;atatags-26942-{{unique_id}}&quot;&gt;&lt;/div&gt;&lt;script&gt;__ATA.cmd.push(function() {__ATA.initDynamicSlot({id: \'atatags-26942-{{unique_id}}\',location: 310,formFactor: \'001\',label: {text: \'Advertisements\',},creative: {reportAd: {text: \'Report this ad\',},privacySettings: {text: \'Privacy\',onClick: function() { window.__tcfapi &amp;&amp; window.__tcfapi( \'showUi\' ); },}}});});&lt;/script&gt;", type: 'inline' }
		);
	</script>		<script type="text/javascript">

			window.doNotSellCallback = function() {

				var linkElements = [
					'a[href="https://wordpress.com/?ref=footer_blog"]',
					'a[href="https://wordpress.com/?ref=footer_website"]',
					'a[href="https://wordpress.com/?ref=vertical_footer"]',
					'a[href^="https://wordpress.com/?ref=footer_segment_"]',
				].join(',');

				var dnsLink = document.createElement( 'a' );
				dnsLink.href = 'https://wordpress.com/advertising-program-optout/';
				dnsLink.classList.add( 'do-not-sell-link' );
				dnsLink.rel = 'nofollow';
				dnsLink.style.marginLeft = '0.5em';
				dnsLink.textContent = 'Do Not Sell or Share My Personal Information';

				var creditLinks = document.querySelectorAll( linkElements );

				if ( 0 === creditLinks.length ) {
					return false;
				}

				Array.prototype.forEach.call( creditLinks, function( el ) {
					el.insertAdjacentElement( 'afterend', dnsLink );
				});

				return true;
			};

		</script>
		<script id="cmp-configuration" type="application/configuration">{"gvlVersion":"50","consentLanguage":"EN","locale":"en","vendorsAll":"BRJqv4__7a-t_y_e_T9ujzGr_v8ffdiGIML5Nn3AuZd635OC--wmZom_VtTBUyJAl27YJCBto5MaiaoULVECteYdjUizkCZpRPwMkQ5iL2zrAQvN82FsfyBTPN9f_u7vOyf_v7t_27ueWfKs9-7Xv_z-qxMTpXPlo_9_7aJzf35H_v_P3_F-n5v9Ym37yetv_r19ve_n3lv______v____f____g","vendorsLegInterest":"BRIAsw0KiAOsiQkINAwigQAqCsICKBAAAACQNEBACYMCnYGAS6wkQAgBQADBACAAFGQAIAABIAEIgAgAKBAABAIFAACAAAIBAAwMAAYALAQCAAEB0CFMCCBQLABIzIiFMCEKBIICWyoQSAIEFcIQizwIIBETBQAAAkAFYAAgLBYHEkgJWJBAlxBtAAAQAIBBCBUIpOzAEECZstVeKJtGVpAWj5wg","ajaxUrl":"\/wp-admin\/admin-ajax.php","ajaxNonce":"697c6f6c4e","modulePath":"https:\/\/s1.wp.com\/wp-content\/blog-plugins\/wordads-classes\/js\/cmp\/v2\/","gvlPath":"https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/14597045\/cmp\/v3\/vendors\/en\/","_":{"title":"Privacy & Cookies","intro":"We, WordPress.com, and our advertising partners store and\/or access information on your device and also process personal data, like unique identifiers, browsing activity, and other standard information sent by your device including your IP address. This information is collected over time and used for personalised ads, ad measurement, audience insights, and product development specific to our ads program. If this sounds good to you, select \"I Agree!\" below. Otherwise, you can get more information, customize your consent preferences for over 825 different ad vendors, or decline consent by selecting \"Learn More\". Note that your preferences apply to all websites in the <a href=\"https:\/\/automattic.com\/cookies\/#user-ads-consent\" target=\"_blank\">WordPress.com network<\/a>, and if you change your mind in the future you can update your preferences anytime by visiting the Privacy link displayed under each ad or by using the \"Privacy\" option in the Action Bar located at the bottom-right corner of the screen. One last thing, our partners may process some of your data based on legitimate interests instead of consent but you can object to that by choosing \"Learn More\" and then disabling the Legitimate Interests toggle under any listed Purpose or Partner.","config":"Learn More","accept":"I Agree!","viewPartners":"View Partners","error":"We're sorry but an unexpected error occurred. Please try again later."}}</script><script type="text/javascript">
	window.google_analytics_uacct = "UA-52447-2";
</script>

<script type="text/javascript">
	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-52447-2']);
	_gaq.push(['_gat._anonymizeIp']);
	_gaq.push(['_setDomainName', 'none']);
	_gaq.push(['_setAllowLinker', true]);
	_gaq.push(['_initData']);
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
	})();
</script>
</head>
<body class="post-template-default single single-post postid-1312 single-format-standard customizer-styles-applied jetpack-reblog-enabled">
<div class="top-image"></div>
<div id="wrapper">
<div id="header">
	<h1 id="logo"><a href="https://hyakumonogatari.com/">百物語怪談会 Hyakumonogatari Kaidankai</a></h1>
	<p id="description">Translated Japanese Ghost Stories and Tales of the Weird and the Strange</p>

	
	<div id="nav">
		<ul class="menu page-menu">
	<li class="page_item"><a href="https://hyakumonogatari.com/">Home</a></li>
	<li class="page_item page-item-2"><a href="https://hyakumonogatari.com/about/">About Me</a></li>
<li class="page_item page-item-1547"><a href="https://hyakumonogatari.com/book-store/">Book Store</a></li>
<li class="page_item page-item-28"><a href="https://hyakumonogatari.com/what-are-kaidan/">What are Kaidan?</a></li>
<li class="page_item page-item-25"><a href="https://hyakumonogatari.com/what-is-hyakumonogatari/">What is Hyakumonogatari?</a></li>
</ul>
	</div>

		<form method="get" id="searchform" action="https://hyakumonogatari.com/">
		<input type="text" placeholder="Search..." name="s" id="s" />
		<input type="submit" value="Search" id="searchsubmit" />
	</form></div>
<!--/header -->


	<div id="content">

	
		<div class="post-1312 post type-post status-publish format-standard hentry category-from-mizuki-shigeru category-yokai-stories tag-from-mizuki-shigeru tag-ghostly-wife tag-japanese-ghost-story tag-kaidan tag-snow-monsters tag-yokai-stories">
							<h2 class="post-title"><a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" rel="bookmark">Yuki Onna – The Snow&nbsp;Woman</a></h2>						<p class="post-date"><span class="day">18</span> <span class="month">Dec</span> <span class="year">2013</span> <span class="postcomment"><a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comments">36 Comments</a></span></p>
							<p class="post-data">
					<span class="postauthor">by <a class="url fn n" href="https://hyakumonogatari.com/author/japanreviewed/" title="View all posts by Zack Davisson">Zack Davisson</a></span>
					<span class="postcategory">in <a href="https://hyakumonogatari.com/tag/from-mizuki-shigeru/" rel="category tag">From Mizuki Shigeru</a>, <a href="https://hyakumonogatari.com/tag/yokai-stories/" rel="category tag">Yōkai Stories</a></span>
					<span class="posttag">Tags: <a href="https://hyakumonogatari.com/tag/from-mizuki-shigeru/" rel="tag">From Mizuki Shigeru</a>, <a href="https://hyakumonogatari.com/tag/ghostly-wife/" rel="tag">ghostly wife</a>, <a href="https://hyakumonogatari.com/tag/japanese-ghost-story/" rel="tag">Japanese ghost story</a>, <a href="https://hyakumonogatari.com/tag/kaidan/" rel="tag">kaidan</a>, <a href="https://hyakumonogatari.com/tag/snow-monsters/" rel="tag">Snow Monsters</a>, <a href="https://hyakumonogatari.com/tag/yokai-stories/" rel="tag">Yōkai Stories</a></span>
									</p>
						<div class="entry-content">
				<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png"><img data-attachment-id="1313" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/mizuki_shigeru_yuki_onna/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png" data-orig-size="578,465" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Mizuki_Shigeru_Yuki_Onna" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=300" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=535" class="aligncenter size-full wp-image-1313" alt="Mizuki_Shigeru_Yuki_Onna" src="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=535&#038;h=430" width="535" height="430" srcset="https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=535&amp;h=430 535w, https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=150&amp;h=121 150w, https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png?w=300&amp;h=241 300w, https://hyakumonogatari.files.wordpress.com/2013/12/mizuki_shigeru_yuki_onna.png 578w" sizes="(max-width: 535px) 100vw, 535px" /></a></p>
<p><em>Translated and Sourced from Mizuki Shigeru’s Mujyara, Kaii Yokai Densho Database, Kwaidan, Japanese Wikipedia, and Other Sources</em></p>
<p>The Yuki Onna is one of Japan’s most well-known and yet unknown yokai. There is no single story of the Yuki Onna. From dread snow vampire of the mountains to a loving bride and mother, she has played many roles over the centuries; worn many costumes. She is ephemeral as a windblown mist of snow, and as impossible to hold.</p>
<p><strong>What Does Yuki Onna Mean?</strong></p>
<p>The only easy thing about the Yuki Onna is her name. It is as straight-forward as her icy companion, the <a title="Tsurara Onna – The Icicle Woman" href="https://hyakumonogatari.com/2013/12/09/tsurara-onna-the-icicle-woman/" target="_blank">Tsurara Onna &#8211; The Icicle Woman</a>. Yuki Onna uses the kanji 雪 (yuki; snow) + 女 (onna; woman) to mean Snow Woman.</p>
<p>OK, I lied. Her name isn’t easy. Yuki Onna is only one of her names. Anywhere there is ice and snow in Japan you will find legends of the Yuki Onna, often called by some regional variation.</p>
<p>Here are a few of her many names:</p>
<ul>
<li>雪乳母 – Yuki Onba – Snow Nursing Mother</li>
<li>雪娘 – Yuki Musume – Snow Daughter</li>
<li>雪女子 – Yuki Onago – Snow Young Woman</li>
<li>雪女郎 – Yuki Joro – Snow Hooker</li>
<li>雪姉 – Yuki Anesa – Snow Older Sister</li>
<li>雪女房 – Yuki Nyobo – Snow Wife</li>
</ul>
<p>Basically, any variation of “Snow” + “Name used for a Woman” can be found in use somewhere. Some of these different names have different stories and characteristics, and it is often difficult to tell what is a unique yokai (Like the <a title="Yuki Onba and Yukinko – The Snow Mother and the Snow Child" href="https://hyakumonogatari.com/2013/12/17/yuki-onba-and-yukinko-the-snow-mother-and-the-snow-child/" target="_blank">Yuki Onba and Yukinko</a>) and what is just a variation of the Yuki Onna. Almost all tales of female snow monsters are also told as Yuki Onna stories.</p>
<p><strong>What Do Yuki Onna Look Like?</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg"><img data-attachment-id="1308" data-permalink="https://hyakumonogatari.com/2013/12/17/yuki-onba-and-yukinko-the-snow-mother-and-the-snow-child/suuhi_yuki-onna/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg" data-orig-size="492,560" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Suuhi_Yuki-onna" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg?w=264" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg?w=492" class="aligncenter size-full wp-image-1308" alt="Suuhi_Yuki-onna" src="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg 492w, https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg?w=132&amp;h=150 132w, https://hyakumonogatari.files.wordpress.com/2013/12/suuhi_yuki-onna.jpg?w=264&amp;h=300 264w" sizes="(max-width: 492px) 100vw, 492px" /></a></p>
<p>Whatever you call her, the Yuki Onna changes little in appearance. She resembles a classic yurei, with snow-white skin and a white kimono. The kimono is usually described as a thin, summer kimono that is far too light for the cold weather. In many stories, the kimono is pale enough to be translucent, with the garment exposing her white skin underneath.</p>
<p>The biggest variations in her appearance are her age and her hair. In most tales, the Yuki Onna is a preternaturally beautiful young woman, with dark black hair offsetting the whiteness of her skin and kimono. However in her first known appearance—in Sogi Shokoku Monogatari (宗祇諸国物語; Sogi’s Tales of Many Lands)—she is described as having white hair that matches the rest of her bone white appearance.</p>
<p>Other stories of the Yuki Onna further confuse her with yurei. She is said to leave no footprints when she treads on the snow, and this can lead to stories of a footless Yuki Onna, mimicking the <a title="Why do Japanese Ghosts Not Have Feet?" href="https://hyakumonogatari.com/2011/01/20/why-do-japanese-ghosts-not-have-feet/" target="_blank">footless yurei</a>.</p>
<p><strong>When and Where Do Yuki Onna Appear?</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg"><img data-attachment-id="1314" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/sekienyukionna/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg" data-orig-size="469,636" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="SekienYukionna" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg?w=221" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg?w=469" class="aligncenter size-full wp-image-1314" alt="SekienYukionna" src="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg 469w, https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg?w=111&amp;h=150 111w, https://hyakumonogatari.files.wordpress.com/2013/12/sekienyukionna.jpg?w=221&amp;h=300 221w" sizes="(max-width: 469px) 100vw, 469px" /></a></p>
<p>Not surprisingly, most Yuki Onna tales come from Tohoku, and Japan’s frozen north. They hail mostly from Aomori, Iwate, Miyagi, and Yamagata, as well as Nagano and Nigata. However, they are not restricted to those areas. Yuki Onna appear as far south as Ehime, Tottori, Fukui, Gifu, Nara, and Toyama prefectures. There are few prefectures in Japan without at least one Yuki Onna story—except maybe Okinawa (and, strangely enough, Hokkaido).</p>
<p>As to when they appear—there are different stories.</p>
<p>In Aomori and Iwate prefectures, Yuki Onna appear during Koshogatsu (小正月). Meaning “Little New Years,” Koshogatsu takes place on January 15th and was the traditional end of New Year’s festivities. Nishitsugaru District in Aomori prefecture is even more specific—the Yuki Onna arrives on New Year’s Day and leaves on the 1st of February.</p>
<p>The link between these dates and the Yuki Onna is obscure. Some say that in ancient times the Yuki Onna was worshiped as a Toshigami (歳神), a special deity that appeared on specific days and brought either good or bad fortune for the coming year. The link with February is interesting, corresponding with the Gaelic festival of Imbolc. She may have been Aomori’s Punxsutawney Phil, either ending winter or extending it with her presence. Some think she may have been a servant to the Mountain God (山神), playing the role of Miko or Shrine Maiden and bringing blessings of fertility and a good harvest.</p>
<p>Others say that the Yuki Onna appears only during full moons with new-fallen snow. Mothers in Ehime prefecture are warned not to let their children out to play on such nights. Still others say they arrive and disappear with blizzards. And at least one story says the Yuki Onna appears on the cusp of spring, to bid a temporary farewell to winter.</p>
<p><strong>Yuki Onna from Sogi Shokoku Monogatari – The First Yuki Onna</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg"><img data-attachment-id="1315" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/white-yuki-onna/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg" data-orig-size="720,1312" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="White Yuki Onna" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=165" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=535" loading="lazy" class="aligncenter size-full wp-image-1315" alt="White Yuki Onna" src="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=535&#038;h=974" width="535" height="974" srcset="https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=535&amp;h=974 535w, https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=82&amp;h=150 82w, https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg?w=165&amp;h=300 165w, https://hyakumonogatari.files.wordpress.com/2013/12/white-yuki-onna.jpg 720w" sizes="(max-width: 535px) 100vw, 535px" /></a></p>
<p>Although she is thought to be an ancient legend, the first known written account of the Yuki Onna comes from the Muromachi period (1333 – 1573). The monk Sogi wrote of his travels in Echigo province (modern day Nigata prefecture) and his encounter with a Yuki Onna.</p>
<p>Sogi writes that he went out of his house one snowy morning and saw a beautiful and unusual woman standing in his frozen garden. She was huge; almost 10 feet tall, with skin whiter than any human being. Although her face was young and beautiful, her hair was stark white and hung loosely about her shoulders. Her kimono was white to the point of being translucent, and was made of some magical gossamer fabric that clung to the woman’s body.</p>
<p>Sogi attempted to speak to her, but she vanished into the snow. Discussing the vision later with a friend native to the region, Sogi was told that she was the Spirit of Snow (雪の精霊; yuki no seirei) who normally appeared during heavy snowfall. It was rare for her to appear at the cusp of spring.</p>
<p><strong>Other Yuki Onna Tales</strong></p>
<p>There are more stories and variations of the Yuki Onna than it would be possible to tell—you could easily fill a book with them. Many are so different from each other it seems they are talking about completely different yokai. Some are different yokai. Tales of the Yuki Nyobo – The Snow Wife are identical to the Tsurara Onna – The Icicle Woman. The Yuki Onba and her child the Yukinko are different enough that I split them into their own entry. And there are more—thousands more.</p>
<p>Here are a few:</p>
<p><strong>Yuki Onna – The Water Beggar</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg"><img data-attachment-id="1316" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/yuki-joryo/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg" data-orig-size="396,435" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Yuki Joryo" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg?w=273" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg?w=396" loading="lazy" class="aligncenter size-full wp-image-1316" alt="Yuki Joryo" src="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg 396w, https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg?w=137&amp;h=150 137w, https://hyakumonogatari.files.wordpress.com/2013/12/yuki-joryo.jpg?w=273&amp;h=300 273w" sizes="(max-width: 396px) 100vw, 396px" /></a></p>
<p>From Tottori prefecture:</p>
<p>The Yuki Onna travels on the wind, and appears on days with a light snowfall. She walks through the town swinging a white Gohei wand, and shouting “Please give me water—hot or cold!” to anyone she meets. If you give the Yuki Onna cold water, she swells in size. If you give her hot water, she melts and disappears.</p>
<p><strong>Yuki Onna – The Moon Princess</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg"><img data-attachment-id="1317" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/yuki-onna-small/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg" data-orig-size="336,235" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Yuki Onna Small" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg?w=300" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg?w=336" loading="lazy" class="aligncenter size-full wp-image-1317" alt="Yuki Onna Small" src="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg 336w, https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg?w=150&amp;h=105 150w, https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-small.jpg?w=300&amp;h=210 300w" sizes="(max-width: 336px) 100vw, 336px" /></a></p>
<p>From Yamagata prefecture:</p>
<p>The Yuki Onna was once a princess of the lunar world, and lived on the Moon. Her life was full of luxury and indulgence—and extremely boring. She became fascinated looking at the world below, and so she snuck out one night and fell down to Earth, traveling on the snow. However, coming down was easier than going back up, and she became stuck on the Earth. On snowy nights of the full moon, she appears, pining for her old home.</p>
<p><strong>Yuki Onna – The Snow Vampire</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg"><img data-attachment-id="1318" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/yuki-onna-tall/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg" data-orig-size="222,680" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;12&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;MAMIYA ZD&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1144718219&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;200&quot;,&quot;shutter_speed&quot;:&quot;0.076923076923077&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Yuki Onna Tall" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg?w=98" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg?w=222" loading="lazy" class="aligncenter size-full wp-image-1318" alt="Yuki Onna Tall" src="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg 222w, https://hyakumonogatari.files.wordpress.com/2013/12/yuki-onna-tall.jpg?w=49&amp;h=150 49w" sizes="(max-width: 222px) 100vw, 222px" /></a></p>
<p>From Aomori, Nigata, and Miyagi prefectures:</p>
<p>The Yuki Onna is a terrible yokai, that haunts the snowy forests looking to feed. She lives by sucking seiki (精気), the vital energy of the human body. She extracts the seiki by first freezing her victims to death, then sucking their souls out through their mouths. This type of Yuki Onna is particularly nasty in Nigata, where it is said she particularly prefers the seiki of children.</p>
<p><strong>Yuki Onna – The Talking Snow Woman</strong></p>
<p>From Ibaraki, Fukushima, Akita, and Fukui prefectures:</p>
<p>This Yuki Onna has a peculiar trait—she needs to engage her victims in conversation in order to attack. When she meets someone on a dark and snowy night, she will call out to them. If the person answers her greeting, she attacks.</p>
<p>Unless you are from Fukushima or Ibaraki prefecture; in those case the Yuki Onna only attacks those who ignore her. And her method of killing is specific. Anyone who ignores her she grabs and throws into a nearby ravine. (A similar yokai in Fukui is called the Koshimusume (越娘), the Cross-Over Daughter.)</p>
<p><strong>The Five Battledores of the Yuki Onna – A Tale of Ghostly Revenge</strong></p>
<p style="text-align:center;"><a href="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg"><img data-attachment-id="1320" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/bunraku-yuki-onna/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg" data-orig-size="640,480" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Bunraku Yuki Onna" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=300" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=535" loading="lazy" class="aligncenter size-full wp-image-1320" alt="Bunraku Yuki Onna" src="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=535&#038;h=401" width="535" height="401" srcset="https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=535&amp;h=401 535w, https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=150&amp;h=113 150w, https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg?w=300&amp;h=225 300w, https://hyakumonogatari.files.wordpress.com/2013/12/bunraku-yuki-onna.jpg 640w" sizes="(max-width: 535px) 100vw, 535px" /></a>Picture found <a href="http://slowbiz.exblog.jp/9454209" target="_blank">here.</a></p>
<p>Some accounts say that the Yuki Onna is not a Spirit of Snow, but the ghost of a woman seeking revenge. This mainly comes from Chikamatsu Monzaemon’s bunraku puppet play Yuki Onna Gomai Hakoita (雪女五枚羽子板; The Five Battledores of the Yuki Onna). In Chikamatsu’s play, the Yuki Onna is the ghost of a woman who was deceived, lead into the forest, and murdered. She manifests as the Yuki Onna in order to get her revenge.</p>
<p>Variations of this theme—combining the bewitching beauty of the Yuki Onna with slaughter and revenge—can be found throughout Yuki Onna county, and have been confirmed in Aomori, Yamagata, Akita, Iwate, Fukushima, Nigata, Nagano, Wakayama, and Ehima prefectures.</p>
<p><strong>Lafcadio Hearn’s Yuki Onna (1905)</strong></p>
<p><a href="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg"><img data-attachment-id="1321" data-permalink="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/kwaidanposterjapanese/" data-orig-file="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg" data-orig-size="300,425" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Kwaidanposterjapanese" data-image-description="" data-image-caption="" data-medium-file="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg?w=212" data-large-file="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg?w=300" loading="lazy" class="aligncenter size-full wp-image-1321" alt="Kwaidanposterjapanese" src="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg?w=535"   srcset="https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg 300w, https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg?w=106&amp;h=150 106w, https://hyakumonogatari.files.wordpress.com/2013/12/kwaidanposterjapanese.jpg?w=212&amp;h=300 212w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>But the version of the Yuki Onna that most people know—either in Japan or elsewhere—comes from Lafcadio Hearn’s book Kwaidan. His kindler, gentler—and more romantic—Yuki Onna has become the template for Yuki Onna and superseded all others. Odds are in modern times if someone speaks of the Yuki Onna 99% of the time it will be Hearn’s version.</p>
<p style="text-align:center;"><strong>****</strong></p>
<p style="text-align:left;">Two woodcutters—a father and son—were trapped in the forest when a sudden blizzard arose. They took shelter in an abandoned cabin, huddling in their clothes to sleep next to a meager fire. In the middle of the night, the son awoke when the door banged open and an ethereally beautiful woman came in from the blizzard. The woman crept over the father and blew her breath on him, then sucked up his living essence. As she turned to do the same to the son, she paused. Captivated by his youth and beauty, the Yuki Onna said she would let him live, but only on the condition that he never speak of this night.</p>
<p>The following winter, the young man was standing in his doorway when a beautiful woman traveler came walking by. The man offered her refuge from the elements, and the woman accepted. They quickly fell in love, and the woman never made it to her destination. She stayed on, married the young man, and they lived happily for years. They even had several children.</p>
<p>One night, when the kids where happily playing, the man looked up at his wife and a memory surfaced that he hadn’t thought about in years. When his wife asked him what was the matter, he told her of his encounter with the snow spirit years ago, wondering if it had all been a dream. The smile fell from his wife’s face, as she revealed herself to be that very same Yuki Onna.</p>
<p>She was livid that her husband had broken her promise, and would have killed him there were it not for the children. As it was she left instantly, leaving the husband behind with regret and sorrow.</p>
<p style="text-align:center;">****</p>
<p style="text-align:left;">No one knows exactly where Hearn got this version of the Yuki Onna tale. People have searched for years to find the original, but without success. According the Hearn’s preface, it was taught to him by a local man. Researchers have tracked that down to a potential candidate, a father and daughter who worked as servants in Hearn’s house in Tokyo. The daughters name was Ohana, and the father was Shuya, and they came from the Oume district of Toyko. That area has some similar folktales, which make Ohana and Shuya good candidates.</p>
<p>However, it is almost certain Hearn embellished whatever tale he was told. Hearn almost never faithfully recorded stories, and always worked them into something he thought was better. So there is no way of knowing what portions are original, and what are additions.</p>
<p>It doesn’t really matter though—ever since Hearn published his version, it completely dominated all other versions of the Yuki Onna. No more Moon Princesses or Water Beggars. With Hearn’s story there was a marked shift to a different kind of Yuki Onna story, one that blended romance and loss and melancholy.</p>
<p><strong>Translator’s Note:</strong></p>
<p>Another snow monster for December! This is the big one. I have been wanting to do Yuki Onna for a long time now, but was always intimidated by the sheer amount of information and variations. Even as one of my longest articles I don’t think I did the subject justice. There are many more Yuki Onna stories that can be told; although to be fair, many of them are just variations of existing yokai stories re-cast with the Yuki Onna.</p>
<p>I’m especially fond of the Yuki Onna became my wife’s name is Miyuki, which translates as “Beautiful Snow.” For as long as I have known her I have teased her about being a Yuki Onna in disguise. Which doesn’t really work because she hates the cold and is completely a beach girl, not a snow bunny.</p>
<p>There is at least on attempt to make sense of the ubiquitous nature of the Yuki Onna in Japan. Some researchers have said that the Yuki Onna may have actually existed in the form of mental illness. The intense cold of winter combined with suffocating fever could lead people to stumble outside dressed in only light summer kimonos. People who stumbled upon their hapless wanderers invented stories, and over time these stories became legends.</p>
<p><strong>Further Reading:</strong></p>
<p>For more winter yokai stories, check out:</p>
<p><a title="Tsurara Onna – The Icicle Woman" href="https://hyakumonogatari.com/2013/12/09/tsurara-onna-the-icicle-woman/" target="_blank">Tsurara Onna –The Icicle Woman</a></p>
<p><a title="Yuki Onba and Yukinko – The Snow Mother and the Snow Child" href="https://hyakumonogatari.com/2013/12/17/yuki-onba-and-yukinko-the-snow-mother-and-the-snow-child/" target="_blank">Yuki Onba and Yukinko – The Snow Mother and Snow Child</a></p>
<p><a title="Yuki Warashi / Yukinbo – The Snow Babies" href="https://hyakumonogatari.com/2013/12/13/yuki-warashi-yukinbo-the-snow-babies/" target="_blank">Yuki Warashi / Yukinbo – The Snow Babies</a></p>
<p><a title="Yukinba/Yukifuriba – The Snow Hags" href="https://hyakumonogatari.com/2013/12/11/yukinbayukifuriba-the-snow-hags/" target="_blank">Yukinba / Yukifuriba – The Snow Hags</a></p>
<p><a title="Oshiroi Baba – The Face Powder Hag" href="https://hyakumonogatari.com/2013/12/05/oshiroi-baba-the-face-powder-hag/" target="_blank">Oshiroi Baba – The White Face Powder Hag</a></p>
<div id="atatags-370373-662bd3ab1b802">
		<script type="text/javascript">
			__ATA.cmd.push(function() {
				__ATA.initVideoSlot('atatags-370373-662bd3ab1b802', {
					sectionId: '370373',
					format: 'inread'
				});
			});
		</script>
	</div><span id="wordads-inline-marker" style="display: none;"></span>			<div id="atatags-26942-662bd3ab1b907"></div>
			
			<script>
				__ATA.cmd.push(function() {
					__ATA.initDynamicSlot({
						id: 'atatags-26942-662bd3ab1b907',
						location: 120,
						formFactor: '001',
						label: {
							text: 'Advertisements',
						},
						creative: {
							reportAd: {
								text: 'Report this ad',
							},
							privacySettings: {
								text: 'Privacy',
								onClick: function() { window.__tcfapi && window.__tcfapi( 'showUi' ); },
							}
						}
					});
				});
			</script><div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-email"><a rel="nofollow noopener noreferrer" data-shared="" class="share-email sd-button share-icon no-text" href="mailto:?subject=%5BShared%20Post%5D%20Yuki%20Onna%20%E2%80%93%20The%20Snow%20Woman&body=https%3A%2F%2Fhyakumonogatari.com%2F2013%2F12%2F18%2Fyuki-onna-the-snow-woman%2F&share=email" target="_blank" title="Click to email a link to a friend" data-email-share-error-title="Do you have email set up?" data-email-share-error-text="If you&#039;re having problems sharing via email, you might not have email set up for your browser. You may need to create a new email yourself." data-email-share-nonce="93cb8fae06" data-email-share-track-url="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?share=email"><span></span><span class="sharing-screen-reader-text">Click to email a link to a friend (Opens in new window)</span></a></li><li class="share-print"><a rel="nofollow noopener noreferrer" data-shared="" class="share-print sd-button share-icon no-text" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#print" target="_blank" title="Click to print" ><span></span><span class="sharing-screen-reader-text">Click to print (Opens in new window)</span></a></li><li class="share-reddit"><a rel="nofollow noopener noreferrer" data-shared="" class="share-reddit sd-button share-icon no-text" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?share=reddit" target="_blank" title="Click to share on Reddit" ><span></span><span class="sharing-screen-reader-text">Click to share on Reddit (Opens in new window)</span></a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-1312" class="share-facebook sd-button share-icon no-text" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?share=facebook" target="_blank" title="Click to share on Facebook" ><span></span><span class="sharing-screen-reader-text">Click to share on Facebook (Opens in new window)</span></a></li><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-1312" class="share-twitter sd-button share-icon no-text" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?share=twitter" target="_blank" title="Click to share on Twitter" ><span></span><span class="sharing-screen-reader-text">Click to share on Twitter (Opens in new window)</span></a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-14597045-1312-662bd3ab1cd43' data-src='//widgets.wp.com/likes/index.html?ver=20240426#blog_id=14597045&amp;post_id=1312&amp;origin=hyakumonogatari.wordpress.com&amp;obj_id=14597045-1312-662bd3ab1cd43&amp;domain=hyakumonogatari.com' data-name='like-post-frame-14597045-1312-662bd3ab1cd43' data-title='Like or Reblog'><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class='loading'>Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div>
<div id='jp-relatedposts' class='jp-relatedposts' >
	<h3 class="jp-relatedposts-headline"><em>Related</em></h3>
</div></div>							</div>

					</div>
		<!--/post -->

	<p class="post-nav"><span class="previous"><a href="https://hyakumonogatari.com/2013/12/17/yuki-onba-and-yukinko-the-snow-mother-and-the-snow-child/" rel="prev"><em>Previous</em> Yuki Onba and Yukinko – The Snow Mother and the Snow&nbsp;Child</a></span> <span class="next"><a href="https://hyakumonogatari.com/2013/12/20/yuki-jiji-the-old-man-of-the-snow/" rel="next"><em>Next</em> Yuki Jiji – The Old Man of the&nbsp;Snow</a></span></p>

	
<!-- You can start editing here. -->

<div id="comments">


	<h3>36 Comments <em>(<a href="#respond">+add yours?</a>)</em></h3>

	<div class="comment-nav">
		<span class="previous"></span>
		<span class="next"></span>
	</div>

	<ol class="commentlist">
		<li class="comment even thread-even depth-1" id="comment-6183">
		<p class="comment-author">
			<img alt='' src='https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/e6dc5f5f71f67984d549b6edffaf9058aac8d6644a3ddc180a7c310cf7e7b8c5?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="http://fantomdranzerx.tumblr.com" class="url" rel="ugc external nofollow">Fantomdranzerx</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-6183"><small><strong>Dec 19, 2013</strong> @ 00:30:52</a> </small>
		</p>
		<div class="commententry">
			
			<p>Been waiting for this article for some time. 🙂 </p>
<p>Yuki-Onna was one of the first yokai I read about when I started to become really interested in them (also about the same time I found your blog).  I remember first reading Rafe Martin&#8217;s retelling in &#8220;Mysterious Tales of Japan.&#8221;  Martin&#8217;s version was also described as having teeth like icicles, though Martin himself admits that he added that detail when rewriting.  I actually found out about Hearn through his notes at the end of the book, which also inevitably lead to me reading &#8220;Kwaidan&#8221; and seeing the film version immediately after.</p>
<p>On a side note, have you ever seen the movie &#8220;Tales From The Darkside?&#8221;  It came out sometime in the eighties, I believe.  It was an anthology of horror-themed stories, and one of them was actually based on Hearn&#8217;s version of Yuki-Onna, albeit set in modern America and featuring gargoyles instead of Yuki-Onna.</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=6183#respond' data-commentid="6183" data-postid="1312" data-belowelement="commententry-6183" data-respondelement="respond" data-replyto="Reply to Fantomdranzerx" aria-label='Reply to Fantomdranzerx'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="comment byuser comment-author-83n831 odd alt thread-odd thread-alt depth-1" id="comment-6193">
		<p class="comment-author">
			<img alt='' src='https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="http://sensei.rubberslug.com/gallery/home.asp" class="url" rel="ugc external nofollow">83n831</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-6193"><small><strong>Dec 19, 2013</strong> @ 08:25:10</a> </small>
		</p>
		<div class="commententry">
			
			<p>Another modern popular culture variation:  the manga team CLAMP&#8217;s &#8220;Shirahime&#8221; (白姫) or &#8220;white princess.&#8221;  I don&#8217;t know how closely linked their depiction is to tradition, but it sounds very much like an oral legend to me.  Briefly, a peasant on his way home meets an unfamiliar woman in the forest and warns her to come with him quickly and seek shelter.  It is twilight, snow is beginning to fall, and Shirahime will be out soon, he warns her.  She stubbornly refuses, saying she is waiting for something.  The man, concerned for her safety, remains by her side, warning her that if she waits any longer, something bad will happen.   </p>
<p>Then the woman turns to him and says, &#8220;You&#8217;re the one who should be home now.&#8221;  Suddenly she is surrounded by wolves, and with a shock, the man realizes that he is standing in front of the dreaded Shirahime herself.  (Though presented as totally unemotional in the manga, one notes that the snow princess spares the peasant&#8217;s life, perhaps in reward for his solicitude.) </p>
<p>The more traditional Yuki-Onna tale is briefly quoted (as a scary fireside tale) in Episode 64 of &#8220;Cardcaptor Sakura,&#8221; based on a popular manga by CLAMP.  This episode is a filler one, not in the manga, but in this case the script was written by CLAMP member Nanase Ohkawa, who also wrote the plot and dialogue for the manga.</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=6193#respond' data-commentid="6193" data-postid="1312" data-belowelement="commententry-6193" data-respondelement="respond" data-replyto="Reply to 83n831" aria-label='Reply to 83n831'>Reply</a>		</p>

	<ul class="children">
	<li class="comment byuser comment-author-83n831 even depth-2" id="comment-6194">
		<p class="comment-author">
			<img alt='' src='https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/fb12640aaa488f7f7fdfbb2b35e42ffb1755a1415bad9304a1682194689d2802?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="http://sensei.rubberslug.com/gallery/home.asp" class="url" rel="ugc external nofollow">83n831</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-6194"><small><strong>Dec 19, 2013</strong> @ 08:35:32</a> </small>
		</p>
		<div class="commententry">
			
			<p>I should have added that CLAMP&#8217;s &#8220;white princess&#8221; manga is available in English as &#8220;Shirahime-Syo: Snow Goddess Tales,&#8221; Los Angeles: Tokyopop, 2003.</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=6194#respond' data-commentid="6194" data-postid="1312" data-belowelement="commententry-6194" data-respondelement="respond" data-replyto="Reply to 83n831" aria-label='Reply to 83n831'>Reply</a>		</p>

	</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
	<li class="comment odd alt thread-even depth-1" id="comment-6260">
		<p class="comment-author">
			<img alt='' src='https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/85239b0f294563fbcbb48f2c6af3c3917c3e0e205dcb506f06ab447711aa430b?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite>Lin</cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-6260"><small><strong>Dec 23, 2013</strong> @ 21:51:55</a> </small>
		</p>
		<div class="commententry">
			
			<p>EEEE! My favorite youkai!  The Yuki-onna was one of the first I ever learned about, and I&#8217;ve loved her tales ever since. SO many of them, and I hadn&#8217;t heard some of the above ones before. ^^ I&#8217;m always pleased when she shows up in media&#8211;like in Nurarihyon no Mago, for example. Thank you for doing such a well-thought out analysis and article about her (and other types, considering the variations.)</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=6260#respond' data-commentid="6260" data-postid="1312" data-belowelement="commententry-6260" data-respondelement="respond" data-replyto="Reply to Lin" aria-label='Reply to Lin'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="comment even thread-odd thread-alt depth-1" id="comment-6461">
		<p class="comment-author">
			<img alt='' src='https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/4544ed7f5a0537ab368efe9b27b9df579d6c482d6e8d43171c669307187dd1cd?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite>Shelby</cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-6461"><small><strong>Jan 11, 2014</strong> @ 00:44:37</a> </small>
		</p>
		<div class="commententry">
			
			<p>I&#8217;m always amazed at how many versions there can be to the myths of any single youkai.  Yuki-onna was among the first youkai I heard legends of growing up, but the versions I always heard were variations on the vampire-like life draining snow maiden, or on Hearn&#8217;s version of the story.  That was enough to terrify me for much of my childhood, and further reinforced my dislike of being outside in the cold.  But I&#8217;ve only begun to find some of the other variations now, decades later.  I can only presume that might mean that those are the more popular versions of the myth?</p>
<p>Also, the anecdote about your wife was absolutely adorable!  My fiance often calls me a Yuki-onna as well, if only because I&#8217;m always cold and thus will grab him to leech away some extra heat, so it was extra amusing for me. ^_^</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=6461#respond' data-commentid="6461" data-postid="1312" data-belowelement="commententry-6461" data-respondelement="respond" data-replyto="Reply to Shelby" aria-label='Reply to Shelby'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://blogs.yis.ac.jp/es/2014/03/19/the-austrian-ballet/" class="url" rel="ugc external nofollow">The Austrian Ballet | Learning Hub ES</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://blogs.yis.ac.jp/blog/2014/03/19/the-austrian-ballet/" class="url" rel="ugc external nofollow">The Austrian Ballet | The Learning Hub</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://jakeareynolds.wordpress.com/2014/04/02/napowrimo-2014-2-yuki-onna/" class="url" rel="ugc external nofollow">NaPoWriMo 2014: 2. Yuki-onna | Jake Reynolds</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://hapon1112014.wordpress.com/2014/10/05/%e3%83%95%e3%82%a3%e3%83%aa%e3%83%94%e3%83%b3%e5%af%be%e6%97%a5%e6%9c%ac%e3%81%ae%e6%98%94%e8%a9%b1%ef%bc%9a%e6%80%aa%e8%ab%87/" class="url" rel="ugc external nofollow">フィリピン対日本の昔話:怪談 | 日本語で書こう!</a>	</li><!-- #comment-## -->
	<li class="comment odd alt thread-even depth-1" id="comment-25877">
		<p class="comment-author">
			<img alt='' src='https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/2590c0b7f7a6df5187ce64dc016a1dc6580ba528aee1adfea8228a13dd8abd8b?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite>Andron</cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-25877"><small><strong>Oct 12, 2014</strong> @ 01:55:31</a> </small>
		</p>
		<div class="commententry">
			
			<p>What&#8217;s the guy version of yuki-onna, yuki-onba, and yuki-musume?</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=25877#respond' data-commentid="25877" data-postid="1312" data-belowelement="commententry-25877" data-respondelement="respond" data-replyto="Reply to Andron" aria-label='Reply to Andron'>Reply</a>		</p>

	<ul class="children">
	<li class="comment byuser comment-author-japanreviewed bypostauthor even depth-2" id="comment-26323">
		<p class="comment-author">
			<img alt='' src='https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="https://hyakumonogatari.wordpress.com" class="url" rel="ugc external nofollow">Zack Davisson</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-26323"><small><strong>Oct 15, 2014</strong> @ 14:58:05</a> </small>
		</p>
		<div class="commententry">
			
			<p>There is the Yuki Jiji, which I did in the same series. And a few others. </p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=26323#respond' data-commentid="26323" data-postid="1312" data-belowelement="commententry-26323" data-respondelement="respond" data-replyto="Reply to Zack Davisson" aria-label='Reply to Zack Davisson'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="comment byuser comment-author-japanreviewed bypostauthor odd alt depth-2" id="comment-26324">
		<p class="comment-author">
			<img alt='' src='https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=48&#038;d=identicon&#038;r=G' srcset='https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=48&#038;d=identicon&#038;r=G 1x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=72&#038;d=identicon&#038;r=G 1.5x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=96&#038;d=identicon&#038;r=G 2x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=144&#038;d=identicon&#038;r=G 3x, https://0.gravatar.com/avatar/94759546a69963f3b04912c29ebed86124fdb9b9b2c802b40055c1ace30c5b0f?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="https://hyakumonogatari.wordpress.com" class="url" rel="ugc external nofollow">Zack Davisson</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-26324"><small><strong>Oct 15, 2014</strong> @ 14:58:33</a> </small>
		</p>
		<div class="commententry">
			
			<p>Check out this page:</p>
<blockquote class="wp-embedded-content" data-secret="mrr8ziAm4Z"><p><a href="https://hyakumonogatari.com/2014/01/08/7-types-of-yokai-japans-snow-monsters/">7 Types of Yokai – Japan’s Snow&nbsp;Monsters</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" title="&#8220;7 Types of Yokai – Japan’s Snow&nbsp;Monsters&#8221; &#8212; 百物語怪談会 Hyakumonogatari Kaidankai" src="https://hyakumonogatari.com/2014/01/08/7-types-of-yokai-japans-snow-monsters/embed/#?secret=91RyddA80k#?secret=mrr8ziAm4Z" data-secret="mrr8ziAm4Z" width="535" height="301" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=26324#respond' data-commentid="26324" data-postid="1312" data-belowelement="commententry-26324" data-respondelement="respond" data-replyto="Reply to Zack Davisson" aria-label='Reply to Zack Davisson'>Reply</a>		</p>

	</li><!-- #comment-## -->
</ul><!-- .children -->
</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://ankhentertainmentone.net/2014/12/2748/" class="url" rel="ugc external nofollow">Author, Educator and Historian Claire Youmans Talks Vol 1 of Toki-Girl and Sparrow-Boy</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://eyes4all.wordpress.com/2015/01/25/horror-haute-january-japanese-ghosts/" class="url" rel="ugc external nofollow">Horror Haute &#8211; January Japanese Ghosts | Eyes 4 All</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://visitcryptoville.com/2015/02/23/yuki-onna-the-japanese-snow-woman/" class="url" rel="ugc external nofollow">Yuki-onna, the Japanese Snow Woman | CryptoVille</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://lynnenkavitastoriesanddrawings.wordpress.com/2015/02/27/mythologische-wezens-deel-2/" class="url" rel="ugc external nofollow">Mythologische wezens, deel 2 | lynnenkavitastoriesanddrawings</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://saphime.wordpress.com/2015/03/31/what-in-the-world-are-yokai/" class="url" rel="ugc external nofollow">What in the world are Yokai? | Saph&#039;s FANime</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://schneekranich.wordpress.com/2015/06/04/yukionna-die-schneegottin/" class="url" rel="ugc external nofollow">Yukionna, die Schneegöttin | schneekranich</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://cultofnyarzir.wordpress.com/2015/07/24/the-sacred-text-of-ghost-dragon-kotodama-by-warlock-asylum-introduction-by-ashida-kim/" class="url" rel="ugc external nofollow">The Sacred Text of Ghost Dragon Kotodama by Warlock Asylum- Introduction by Ashida Kim | 竜神信仰 The Art of Ninzuwu 您祖巫</a>	</li><!-- #comment-## -->
	<li class="comment byuser comment-author-voronwearanwion even thread-odd thread-alt depth-1" id="comment-41852">
		<p class="comment-author">
			<img alt='' src='https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=48&#038;d=identicon&#038;r=G' srcset='https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=48&#038;d=identicon&#038;r=G 1x, https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=72&#038;d=identicon&#038;r=G 1.5x, https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=96&#038;d=identicon&#038;r=G 2x, https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=144&#038;d=identicon&#038;r=G 3x, https://1.gravatar.com/avatar/7eb8b71125cf32f7e25feac8cc50f95ec2337ae23ed7451a1e25f8fe2fbf4291?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="http://voronwearanwion.wordpress.com" class="url" rel="ugc external nofollow">voronwearanwion</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-41852"><small><strong>Dec 01, 2015</strong> @ 11:04:51</a> </small>
		</p>
		<div class="commententry">
			
			<p>Reblogged this on <a href="https://mariapapageorgiou30.wordpress.com/2015/12/01/yuki-onna-the-snow-woman/" rel="nofollow">Voronwe Aranwion</a>.</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=41852#respond' data-commentid="41852" data-postid="1312" data-belowelement="commententry-41852" data-respondelement="respond" data-replyto="Reply to voronwearanwion" aria-label='Reply to voronwearanwion'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://parttimemonster.com/2016/01/11/yuki-onna-the-snow-woman/" class="url" rel="ugc external nofollow">Yuki Onna: The Snow Woman | Part Time Monster</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://www.journaldujapon.com/2016/03/04/kaidan-les-mysterieux-contes-de-fantomes-japonais/" class="url" rel="ugc external nofollow">Kaidan : les mystérieux contes de fantômes japonais&#8230; - Journaldujapon</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://themonsterguys.com/yokai-podcast-13-yuki-onna-a-monster-guys-podcast-presentation/" class="url" rel="ugc external nofollow">The Monster Guys | Yokai Podcast 13: Yuki Onna &#8211; A Monster Guys Podcast Presentation</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://ninzuwu.com/2016/11/29/the-sacred-text-of-ghost-dragon-kotodama/" class="url" rel="ugc external nofollow">The Sacred Text of Ghost Dragon Kotodama &#8211; Ame-ukihashi-no-mikoto</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://www.10zap.com/10-japanese-demons-monsters-japanese-mythology/" class="url" rel="ugc external nofollow">10 Japanese Demons and Monsters from Japanese Mythology - 10 ZAP</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  The Kimono Collector &#8211; Sunrise Bridge Travel	</li><!-- #comment-## -->
	<li class="comment odd alt thread-even depth-1" id="comment-47032">
		<p class="comment-author">
			<img alt='' src='https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/bc41e6ca432fe26f6c245b5a78995f773f9231981e38a968b8278046507ae0db?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite><a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" class="url" rel="ugc">shizuma</a></cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-47032"><small><strong>Mar 20, 2018</strong> @ 13:39:11</a> </small>
		</p>
		<div class="commententry">
			
			<p>interesting</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=47032#respond' data-commentid="47032" data-postid="1312" data-belowelement="commententry-47032" data-respondelement="respond" data-replyto="Reply to shizuma" aria-label='Reply to shizuma'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="comment even thread-odd thread-alt depth-1" id="comment-48073">
		<p class="comment-author">
			<img alt='' src='https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=48&#038;d=identicon&#038;r=G' srcset='https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=48&#038;d=identicon&#038;r=G 1x, https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=72&#038;d=identicon&#038;r=G 1.5x, https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=96&#038;d=identicon&#038;r=G 2x, https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=144&#038;d=identicon&#038;r=G 3x, https://2.gravatar.com/avatar/82d34be44cfc9fb7b9db846bdfae3e39c143510e314282fc79eb01a4b579e1aa?s=192&#038;d=identicon&#038;r=G 4x' class='avatar avatar-48' height='48' width='48' loading='lazy' decoding='async' />			<cite>Taki</cite><br />
			<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-48073"><small><strong>Jul 13, 2018</strong> @ 20:14:32</a> </small>
		</p>
		<div class="commententry">
			
			<p>I have a friend who grew up in Hokkaido and she told me the first Yuki-Onna story I&#8217;d ever heard. She is also my favorite of all the Japanese yokai, because of the story my friend told me. As a mother I can sympathize with the woman and the yokai in this version of the story. It&#8217;s so sad and tragic. I believe there is an old Japanese movie with this same story, or very very similar, but I can&#8217;t remember the name of it!</p>
<p>There was a beautiful young woman who fell in love with a wonderful, perfect rich man. Once married, she found out that he was not the man he had pretended to be. He was poor and cruel, abusive in all ways and wanting only to have a trophy wife to brag to the other men in the villages. They lived deep in the woods and he would go out and chop wood, then sell it in the nearby villages, leaving her alone in their little shack with the children.</p>
<p>After their 3rd or 4th child, he started going out longer and longer, leaving her to fend for the little ones with barely any food and no money. In the coldest part of winter, they&#8217;d run out of food and so she had to leave the children to go find whatever she could in the cold, so she bundled them up and made the warmest fire she could and went out to forage whatever she could to fill the children&#8217;s hungry bellies. </p>
<p>When she returned, the door was open, the fire was out and her children were bundled in the bed where she had left them, frozen to death from the cold. In her grief she did not eat, or drink, only cried until the tears froze on her face and she also froze to death, holding her dead children. The legend, as my friend said, is that on cold winter nights, the mourning mother walks the forest, crying and looking for her children. She will take any child she sees, thinking he or she is one of her lost babies. Once she has the child, she takes them back to where her home was and despite her best efforts to care for them, they always freeze to death, and then her misery starts again, leaving her to wander the forest crying and looking for her dead children.</p>
		</div>

		<p class="reply">
		<a rel='nofollow' class='comment-reply-link' href='https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/?replytocom=48073#respond' data-commentid="48073" data-postid="1312" data-belowelement="commententry-48073" data-respondelement="respond" data-replyto="Reply to Taki" aria-label='Reply to Taki'>Reply</a>		</p>

	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://www.ancientpages.com/2019/03/07/yuki-onna-lady-of-the-snow-a-female-demon-and-symbol-of-death-in-japanese-mythology/" class="url" rel="ugc external nofollow">Yuki-Onna &#039;Lady Of The Snow&#039;: A Female Demon And Symbol Of Death In Japanese Mythology | Ancient Pages</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://undeadauthorsociety.com/2019/07/03/a-deep-cold-sleep/" class="url" rel="ugc external nofollow">A Deep, Cold Sleep | Undead Author Society</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://txtmagazine.com.br/materia-mukashi-banashi-os-contos-antigos-ou-contos-de-fada-do-japao/" class="url" rel="ugc external nofollow">MATÉRIA | Mukashi banashi, os contos antigos (ou contos de fada) do Japão &#8902; Tudo éX Texto | TXTmagazine</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://myinfokini.online/yuki-onna-hantu-wanita-salji-dalam-legenda-jepun/" class="url" rel="ugc external nofollow">Yuki Onna – Hantu Wanita Salji Dalam Legenda Jepun &#8211; My Info Kini</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="http://jmplumbley.com/2019/12/12/the-cold-never-bothered-me-anyway-yuki-onna/" class="url" rel="ugc external nofollow">The cold never bothered me anyway: Yuki Onna &#8211; J. M. PLUMBLEY</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://audenjohnson.com/2014/08/mythical-creature-yuki-onna.html" class="url" rel="ugc external nofollow">Mythical Creature: Yuki-Onna - Auden Johnson</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://kieranryderlewis.wordpress.com/2021/05/19/essay/" class="url" rel="ugc external nofollow">Essay &#8211; Kieran Ryder-Lewis</a>	</li><!-- #comment-## -->
	<li class="trackback">Trackback:  <a href="https://giappone.leggimee.it/cultura/neve-in-giapponese/" class="url" rel="ugc external nofollow">1000 Modi per dire &quot;Neve&quot; in giapponese - 雪 Yuki - Giappone di LeggiMee</a>	</li><!-- #comment-## -->
	</ol>

 

	<div id="respond" class="comment-respond">
		<h3 id="reply-title" class="comment-reply-title">Leave a comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2013/12/18/yuki-onna-the-snow-woman/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://hyakumonogatari.com/wp-comments-post.php" method="post" id="commentform" class="comment-form">


<div id="comment-form__verbum" class="transparent"></div><div class="verbum-form-meta"><input type='hidden' name='comment_post_ID' value='1312' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />

			<input type="hidden" name="highlander_comment_nonce" id="highlander_comment_nonce" value="ff5223556f" />
			<input type="hidden" name="verbum_show_subscription_modal" value="" /></div><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="e8b95b1fae" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>&#916;<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="170"/><script>document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form>	</div><!-- #respond -->
	

</div><!-- /comments -->
	
	</div>
	<!--/content -->

	<div id="sidebar">
	
	<div id="blog_subscription-3" class="widget widget_blog_subscription jetpack_subscription_widget"><h4 class="widgettitle"><label for="subscribe-field">Yokai Post</label></h4>

			<div class="wp-block-jetpack-subscriptions__container">
			<form
				action="https://subscribe.wordpress.com"
				method="post"
				accept-charset="utf-8"
				data-blog="14597045"
				data-post_access_level="everybody"
				id="subscribe-blog"
			>
				<p>Subscribe for Free! Just enter your email address, click I Love Kaidan and start getting translated Kaidan by mail!</p>
				<p id="subscribe-email">
					<label
						id="subscribe-field-label"
						for="subscribe-field"
						class="screen-reader-text"
					>
						Email Address:					</label>

					<input
							type="email"
							name="email"
							
							style="width: 95%; padding: 1px 10px"
							placeholder="Email Address"
							value=""
							id="subscribe-field"
							required
							/>				</p>

				<p id="subscribe-submit"
									>
					<input type="hidden" name="action" value="subscribe"/>
					<input type="hidden" name="blog_id" value="14597045"/>
					<input type="hidden" name="source" value="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/"/>
					<input type="hidden" name="sub-type" value="widget"/>
					<input type="hidden" name="redirect_fragment" value="subscribe-blog"/>
					<input type="hidden" id="_wpnonce" name="_wpnonce" value="24c799a6b1" />					<button type="submit"
													class="wp-block-button__link"
																	>
						I love Kaidan					</button>
				</p>
			</form>
							<div class="wp-block-jetpack-subscriptions__subscount">
					Join 1,766 other subscribers				</div>
						</div>
			
</div><div id="text-7" class="widget widget_text"><h4 class="widgettitle">Follow Me on Twitter!</h4>			<div class="textwidget"><a href="https://twitter.com/zackdavisson" class="twitter-follow-button" data-show-count="false" data-text-color="#453320" data-link-color="#000000">Follow @zackdavisson</a></div>
		</div><div id="facebook-likebox-3" class="widget widget_facebook_likebox"><h4 class="widgettitle"><a href="https://www.facebook.com/kaidankai">Yokai on Facebook!</a></h4>		<div id="fb-root"></div>
		<div class="fb-page" data-href="https://www.facebook.com/kaidankai" data-width="200"  data-height="130" data-hide-cover="false" data-show-facepile="false" data-tabs="false" data-hide-cta="false" data-small-header="false">
		<div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/kaidankai"><a href="https://www.facebook.com/kaidankai">Yokai on Facebook!</a></blockquote></div>
		</div>
		</div><div id="media_image-3" class="widget widget_media_image"><style>.widget.widget_media_image { overflow: hidden; }.widget.widget_media_image img { height: auto; max-width: 100%; }</style><img class="image aligncenter" src="http://letsjapan.files.wordpress.com/2009/10/aaa_hokusai_hyakumonogatari_o-iwa.jpg" alt="" width="200" height="250" /></div><div id="top-posts-2" class="widget widget_top-posts"><h4 class="widgettitle">Top Kaidan</h4><ul><li><a href="https://hyakumonogatari.com/2012/01/25/kappa-to-shirikodama-kappa-and-the-small-anus-ball/" class="bump-view" data-bump-view="tp">Kappa to Shirikodama – Kappa and the Small Anus Ball</a></li><li><a href="https://hyakumonogatari.com/2013/08/30/tanuki-no-kintama-tanukis-giant-balls/" class="bump-view" data-bump-view="tp">Tanuki no Kintama – Tanuki’s Giant Balls</a></li><li><a href="https://hyakumonogatari.com/2011/09/22/what-is-the-triangle-headband-japanese-ghosts-wear/" class="bump-view" data-bump-view="tp">What is the Triangle Headband Japanese Ghosts Wear?</a></li><li><a href="https://hyakumonogatari.com/2014/01/08/7-types-of-yokai-japans-snow-monsters/" class="bump-view" data-bump-view="tp">7 Types of Yokai – Japan’s Snow Monsters</a></li><li><a href="https://hyakumonogatari.com/2012/02/21/umi-bozu-the-sea-monk/" class="bump-view" data-bump-view="tp">Umibōzu – The Sea Monk</a></li><li><a href="https://hyakumonogatari.com/2012/08/05/kodama-the-tree-spirit/" class="bump-view" data-bump-view="tp">Kodama – The Tree Spirit</a></li><li><a href="https://hyakumonogatari.com/2013/05/10/bakekujira-and-japans-whale-cults/" class="bump-view" data-bump-view="tp">Bakekujira and Japan’s Whale Cults</a></li><li><a href="https://hyakumonogatari.com/2012/02/15/nure-onna-the-soaked-woman/" class="bump-view" data-bump-view="tp">Nure Onago – The Soaked Woman</a></li><li><a href="https://hyakumonogatari.com/2013/07/19/kitsune-no-yomeiri-the-fox-wedding/" class="bump-view" data-bump-view="tp">Kitsune no Yomeiri – The Fox Wedding</a></li><li><a href="https://hyakumonogatari.com/2012/08/19/shirime-eyeball-butt/" class="bump-view" data-bump-view="tp">Shirime - Eyeball Butt</a></li></ul></div><div id="recent-comments-3" class="widget widget_recent_comments"><h4 class="widgettitle">Recent Comments</h4>				<ul id="recentcomments">
											<li class="recentcomments">
							<a href="https://cpuking.sbs/2023/03/12/supernatural-visual-novel-paranormasight-out-today/" class="url" rel="ugc external nofollow">Supernatural visual novel Paranormasight out today &#8211; IRON MOUNTAIN | IT</a> on <a href="https://hyakumonogatari.com/2012/01/02/the-seven-wonders-of-honjo/#comment-88668">The Seven Wonders of&nbsp;Honjo</a>						</li>

												<li class="recentcomments">
							<a href="https://giappone.leggimee.it/cultura/neve-in-giapponese/" class="url" rel="ugc external nofollow">1000 Modi per dire &quot;Neve&quot; in giapponese - 雪 Yuki - Giappone di LeggiMee</a> on <a href="https://hyakumonogatari.com/2013/12/09/tsurara-onna-the-icicle-woman/#comment-78548">Tsurara Onna – The Icicle&nbsp;Woman</a>						</li>

												<li class="recentcomments">
							<a href="https://giappone.leggimee.it/cultura/neve-in-giapponese/" class="url" rel="ugc external nofollow">1000 Modi per dire &quot;Neve&quot; in giapponese - 雪 Yuki - Giappone di LeggiMee</a> on <a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comment-78547">Yuki Onna – The Snow&nbsp;Woman</a>						</li>

												<li class="recentcomments">
							<a href="https://lorethrill.com/kodama-tree-dwelling-spirits/" class="url" rel="ugc external nofollow">Kodama: The Ancient, Tree-Dwelling Spirits Of Japanese Folklore – LoreThrill</a> on <a href="https://hyakumonogatari.com/2012/08/05/kodama-the-tree-spirit/#comment-78051">Kodama – The Tree&nbsp;Spirit</a>						</li>

												<li class="recentcomments">
							<a href="https://giappone.leggimee.it/mito/matrimonio-volpi/" class="url" rel="ugc external nofollow">Il matrimonio delle volpi di Kudamatsu | Festival giapponesi | LeggiMee</a> on <a href="https://hyakumonogatari.com/2013/07/19/kitsune-no-yomeiri-the-fox-wedding/#comment-78023">Kitsune no Yomeiri – The Fox&nbsp;Wedding</a>						</li>

												<li class="recentcomments">
							Epicpants on <a href="https://hyakumonogatari.com/2013/06/25/sazae-oni-the-turban-shell-demon/#comment-78005">Sazae Oni – The Turban Shell&nbsp;Demon</a>						</li>

												<li class="recentcomments">
							Anonymous on <a href="https://hyakumonogatari.com/2013/02/05/a-brief-history-of-yokai/#comment-77990">A Brief History of&nbsp;Yokai</a>						</li>

												<li class="recentcomments">
							<a href="https://mucheap.com/animal-crossing-fart-jokes-stay-misplaced-in-translation-as-kappn-returns-in-new-horizons/" class="url" rel="ugc external nofollow">Animal Crossing Fart Jokes Stay Misplaced In Translation As Kapp’n Returns In New Horizons | Mucheap</a> on <a href="https://hyakumonogatari.com/2012/01/25/kappa-to-shirikodama-kappa-and-the-small-anus-ball/#comment-77989">Kappa to Shirikodama – Kappa and the Small Anus&nbsp;Ball</a>						</li>

												<li class="recentcomments">
							<a href="https://pyramidempire.com/animal-crossing-fart-jokes-remain-lost-in-translation-as-kappn-returns-in-new-horizons/" class="url" rel="ugc external nofollow">Animal Crossing Fart Jokes Remain Lost In Translation As Kapp’n Returns In New Horizons - Pyramid Empire</a> on <a href="https://hyakumonogatari.com/2012/01/25/kappa-to-shirikodama-kappa-and-the-small-anus-ball/#comment-77986">Kappa to Shirikodama – Kappa and the Small Anus&nbsp;Ball</a>						</li>

												<li class="recentcomments">
							<a href="https://gaming.shwetkanthak.ind.in/animal-crossing-fart-jokes-remain-lost-in-translation-as-kappn-returns-in-new-horizons/" class="url" rel="ugc external nofollow">Animal Crossing Fart Jokes Remain Lost In Translation As Kapp’n Returns In New Horizons - IGaming House</a> on <a href="https://hyakumonogatari.com/2012/01/25/kappa-to-shirikodama-kappa-and-the-small-anus-ball/#comment-77985">Kappa to Shirikodama – Kappa and the Small Anus&nbsp;Ball</a>						</li>

										</ul>
				</div>
		<div id="recent-posts-3" class="widget widget_recent_entries">
		<h4 class="widgettitle">Recent Kaidan</h4>
		<ul>
											<li>
					<a href="https://hyakumonogatari.com/2020/07/02/guhin-the-dog-guest/">Guhin &#8211; The Dog&nbsp;Guest</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2020/04/03/amabie-the-healing-mermaid/">Amabie &#8211; The Healing&nbsp;Mermaid</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2016/02/18/ghost-taxis-of-japan/">History of Ghost Taxis of&nbsp;Japan</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/12/11/big-sale-on-yurei-the-japanese-ghost/">Big Sale on Yurei: The Japanese Ghost&nbsp;!!!</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/12/01/message-from-mizuki-shigerus-family/">Message from Mizuki Shigeru&#8217;s&nbsp;Family</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/11/30/otsukare-sensei-goodbye-to-mizuki-shigeru/">Otsukare, Sensei—Goodbye to Mizuki&nbsp;Shigeru</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/09/24/two-tales-of-mermaid-meat/">Two Tales of Mermaid&nbsp;Meat</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/09/01/japan-and-yokai/">Japan and Yokai</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/07/09/kurobozu-the-black-monk/">Kurobozu – The Black&nbsp;Monk</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/06/16/shigeru-mizukis-pre-war-notes-an-age-of-buried-humanity/">Shigeru Mizuki’s Pre-War Notes: An Age of Buried&nbsp;Humanity</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/05/11/shigeru-mizuki-ends-watashi-no-hibi-my-everyday/">Shigeru Mizuki Ends Watashi no Hibi (My&nbsp;Everyday)</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/05/01/cruel-attack-at-a-inari-shrine-four-statues-broken-at-kego-shrine-in-tenjin-fukuoka/">Cruel Attack at a Inari Shrine—Four Statues Broken at Kego Shrine in Tenjin,&nbsp;Fukuoka</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/04/27/ashinonai-yurei-%e8%b6%b3%e3%81%ae%e3%81%aa%e3%81%84%e5%b9%bd%e9%9c%8a-the-footless-yurei/">Ashinonai Yūrei (足のない幽霊) – The Footless&nbsp;Yūrei</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/03/08/happy-93rd-birthday-mizuki-shigeru/">Happy 93rd Birthday Mizuki&nbsp;Shigeru!!!</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2015/02/26/goshiki-fudo-the-five-fudo-temples-of-tokyo/">Goshiki Fudo – The Five Fudo Temples of&nbsp;Tokyo</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/12/10/update-on-yurei-the-japanese-ghost/">Update on Yūrei: The Japanese&nbsp;Ghost</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/11/17/nurarihyon-the-slippery-gourd/">Nurarihyon – The Slippery&nbsp;Gourd</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/07/18/three-tales-of-okiku/">Three Tales of&nbsp;Okiku</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/06/27/kosodate-yurei-the-child-raising-yurei/">Kosodate Yūrei  – The Child-Raising&nbsp;Yūrei</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/06/09/utsuro-bune-the-hollow-ship/">Utsuro Bune – The Hollow&nbsp;Ship</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/06/02/the-kabuki-ghost-of-kohada-koheiji/">The Kabuki Ghost of Kohada&nbsp;Koheiji</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/05/30/countdown-to-showa-1939-1944-a-history-of-japan/">Countdown to Showa 1939 – 1944 A History of&nbsp;Japan</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/05/01/shigeru-mizukis-the-dunwich-horror/">Shigeru Mizuki’s The Dunwich&nbsp;Horror</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/03/19/todomeki-the-hundreds-of-eyes-demon/">Todomeki – The Hundreds-of-Eyes Demon</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/03/11/jakotsu-baba-the-old-snake-bone-woman/">Jakotsu Baba – The Old Snake-Bone&nbsp;Woman</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/03/07/happy-92nd-birthday-shigeru-mizuki/">Happy 92nd Birthday Shigeru&nbsp;Mizuki!!!</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/03/04/yurei-the-japanese-ghost/">Yūrei: The Japanese&nbsp;Ghost</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/02/25/on-cutting-a-spiders-leg-during-a-game-of-hyakumonogatari-kaidankai/">On Cutting a Spider’s Leg During a Game of Hyakumonogatari&nbsp;Kaidankai</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/02/23/yurei-faq-five-facts-about-japanese-ghosts/">Yurei FAQ – Five Facts About Japanese&nbsp;Ghosts</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/01/28/mizuki-shigeru-and-american-horror-comics/">Mizuki Shigeru and American Horror&nbsp;Comics</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/01/16/two-tales-from-the-konjaku-monogatari/">Two Tales From the Konjaku&nbsp;Monogatari</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2014/01/08/7-types-of-yokai-japans-snow-monsters/">7 Types of Yokai – Japan’s Snow&nbsp;Monsters</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/20/yuki-jiji-the-old-man-of-the-snow/">Yuki Jiji – The Old Man of the&nbsp;Snow</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" aria-current="page">Yuki Onna – The Snow&nbsp;Woman</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/17/yuki-onba-and-yukinko-the-snow-mother-and-the-snow-child/">Yuki Onba and Yukinko – The Snow Mother and the Snow&nbsp;Child</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/13/yuki-warashi-yukinbo-the-snow-babies/">Yuki Warashi / Yukinbo – The Snow&nbsp;Babies</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/11/yukinbayukifuriba-the-snow-hags/">Yukinba/Yukifuriba – The Snow&nbsp;Hags</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/09/tsurara-onna-the-icicle-woman/">Tsurara Onna – The Icicle&nbsp;Woman</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/05/oshiroi-baba-the-face-powder-hag/">Oshiroi Baba – The Face Powder&nbsp;Hag</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/12/05/when-food-attacks-6-food-monsters-from-japan/">When Food Attacks – 6 Types of Food Yokai From&nbsp;Japan</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/29/nebutori-the-sleeping-fatty/">Nebutori – The Sleeping&nbsp;Fatty</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/27/suppon-on-onryo-the-vengeful-ghosts-of-the-turtles/">Suppon on Onryo – The Vengeful Ghosts of the&nbsp;Turtles</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/24/suppon-no-yurei-the-turtle-ghost/">Suppon no Yurei – The Turtle&nbsp;Ghost</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/21/shio-no-choji-salty-choji/">Shio no Choji – Salty&nbsp;Choji</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/18/oseichu-the-mimicking-roundworm/">Oseichu – The Mimicking&nbsp;Roundworm</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/15/whats-the-difference-between-yurei-and-yokai/">What’s the Difference Between Yurei and&nbsp;Yokai?</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/04/6-japanese-yokai-from-showa/">6 Types of Japanese Yokai From&nbsp;Showa</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/11/04/countdown-to-mizuki-shigerus-showa-1926-1939-a-history-of-japan/">Countdown to Mizuki Shigeru’s Showa 1926-1939: A History of&nbsp;Japan</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/10/31/katabira-no-tsuji-the-crossroad-of-corpses/">Katabira no Tsuji &#8211; The Crossroad of&nbsp;Corpses</a>
									</li>
											<li>
					<a href="https://hyakumonogatari.com/2013/10/27/garei-the-picture-ghost/">Garei – The Picture&nbsp;Ghost</a>
									</li>
					</ul>

		</div><div id="archives-3" class="widget widget_archive"><h4 class="widgettitle">Archives</h4>
			<ul>
					<li><a href='https://hyakumonogatari.com/2020/07/'>July 2020</a></li>
	<li><a href='https://hyakumonogatari.com/2020/04/'>April 2020</a></li>
	<li><a href='https://hyakumonogatari.com/2016/02/'>February 2016</a></li>
	<li><a href='https://hyakumonogatari.com/2015/12/'>December 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/11/'>November 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/09/'>September 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/07/'>July 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/06/'>June 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/05/'>May 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/04/'>April 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/03/'>March 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2015/02/'>February 2015</a></li>
	<li><a href='https://hyakumonogatari.com/2014/12/'>December 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/11/'>November 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/07/'>July 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/06/'>June 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/05/'>May 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/03/'>March 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/02/'>February 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2014/01/'>January 2014</a></li>
	<li><a href='https://hyakumonogatari.com/2013/12/'>December 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/11/'>November 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/10/'>October 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/09/'>September 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/08/'>August 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/07/'>July 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/06/'>June 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/05/'>May 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/04/'>April 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/03/'>March 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/02/'>February 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2013/01/'>January 2013</a></li>
	<li><a href='https://hyakumonogatari.com/2012/11/'>November 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/10/'>October 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/09/'>September 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/08/'>August 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/07/'>July 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/06/'>June 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/04/'>April 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/03/'>March 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/02/'>February 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2012/01/'>January 2012</a></li>
	<li><a href='https://hyakumonogatari.com/2011/12/'>December 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/11/'>November 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/10/'>October 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/09/'>September 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/07/'>July 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/06/'>June 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/05/'>May 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/04/'>April 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/03/'>March 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2011/01/'>January 2011</a></li>
	<li><a href='https://hyakumonogatari.com/2010/12/'>December 2010</a></li>
	<li><a href='https://hyakumonogatari.com/2010/11/'>November 2010</a></li>
	<li><a href='https://hyakumonogatari.com/2010/10/'>October 2010</a></li>
	<li><a href='https://hyakumonogatari.com/2010/09/'>September 2010</a></li>
	<li><a href='https://hyakumonogatari.com/2010/08/'>August 2010</a></li>
	<li><a href='https://hyakumonogatari.com/2010/07/'>July 2010</a></li>
			</ul>

			</div><div id="wp_tag_cloud-2" class="widget wp_widget_tag_cloud"><h4 class="widgettitle">Kaidan Themes</h4><a href="https://hyakumonogatari.com/tag/body-parts/" class="tag-cloud-link tag-link-230486 tag-link-position-1" style="font-size: 15.04347826087pt;" aria-label="body parts (12 items)">body parts</a>
<a href="https://hyakumonogatari.com/tag/buddhist-morals/" class="tag-cloud-link tag-link-40875796 tag-link-position-2" style="font-size: 13.217391304348pt;" aria-label="Buddhist Morals (7 items)">Buddhist Morals</a>
<a href="https://hyakumonogatari.com/tag/cursed-houses/" class="tag-cloud-link tag-link-46252123 tag-link-position-3" style="font-size: 13.217391304348pt;" aria-label="Cursed Houses (7 items)">Cursed Houses</a>
<a href="https://hyakumonogatari.com/tag/cursed-stories/" class="tag-cloud-link tag-link-47975107 tag-link-position-4" style="font-size: 11.478260869565pt;" aria-label="Cursed stories (4 items)">Cursed stories</a>
<a href="https://hyakumonogatari.com/tag/folk-song/" class="tag-cloud-link tag-link-216732 tag-link-position-5" style="font-size: 9.5652173913043pt;" aria-label="Folk Song (2 items)">Folk Song</a>
<a href="https://hyakumonogatari.com/tag/from-mizuki-shigeru/" class="tag-cloud-link tag-link-44996365 tag-link-position-6" style="font-size: 22pt;" aria-label="From Mizuki Shigeru (81 items)">From Mizuki Shigeru</a>
<a href="https://hyakumonogatari.com/tag/funa-yurei/" class="tag-cloud-link tag-link-45004353 tag-link-position-7" style="font-size: 11.478260869565pt;" aria-label="Funa Yurei (4 items)">Funa Yurei</a>
<a href="https://hyakumonogatari.com/tag/ghostly-children/" class="tag-cloud-link tag-link-39505569 tag-link-position-8" style="font-size: 14.086956521739pt;" aria-label="ghostly children (9 items)">ghostly children</a>
<a href="https://hyakumonogatari.com/tag/ghostly-husband/" class="tag-cloud-link tag-link-44521989 tag-link-position-9" style="font-size: 8pt;" aria-label="Ghostly husband (1 item)">Ghostly husband</a>
<a href="https://hyakumonogatari.com/tag/ghostly-vehicles/" class="tag-cloud-link tag-link-42118285 tag-link-position-10" style="font-size: 8pt;" aria-label="ghostly vehicles (1 item)">ghostly vehicles</a>
<a href="https://hyakumonogatari.com/tag/ghostly-wife/" class="tag-cloud-link tag-link-42419476 tag-link-position-11" style="font-size: 17.04347826087pt;" aria-label="ghostly wife (21 items)">ghostly wife</a>
<a href="https://hyakumonogatari.com/tag/haunted-forest/" class="tag-cloud-link tag-link-2039529 tag-link-position-12" style="font-size: 15.04347826087pt;" aria-label="haunted forest (12 items)">haunted forest</a>
<a href="https://hyakumonogatari.com/tag/heaven/" class="tag-cloud-link tag-link-91914 tag-link-position-13" style="font-size: 12.782608695652pt;" aria-label="Heaven (6 items)">Heaven</a>
<a href="https://hyakumonogatari.com/tag/japanese-ghost-story/" class="tag-cloud-link tag-link-22058978 tag-link-position-14" style="font-size: 20.95652173913pt;" aria-label="Japanese ghost story (61 items)">Japanese ghost story</a>
<a href="https://hyakumonogatari.com/tag/kaidan/" class="tag-cloud-link tag-link-630605 tag-link-position-15" style="font-size: 22pt;" aria-label="kaidan (80 items)">kaidan</a>
<a href="https://hyakumonogatari.com/tag/kappa-2/" class="tag-cloud-link tag-link-25143191 tag-link-position-16" style="font-size: 12.173913043478pt;" aria-label="kappa (5 items)">kappa</a>
<a href="https://hyakumonogatari.com/tag/lanterns/" class="tag-cloud-link tag-link-392017 tag-link-position-17" style="font-size: 12.173913043478pt;" aria-label="lanterns (5 items)">lanterns</a>
<a href="https://hyakumonogatari.com/tag/magical-dolls/" class="tag-cloud-link tag-link-47367909 tag-link-position-18" style="font-size: 10.608695652174pt;" aria-label="Magical Dolls (3 items)">Magical Dolls</a>
<a href="https://hyakumonogatari.com/tag/mysterious-animals/" class="tag-cloud-link tag-link-42212218 tag-link-position-19" style="font-size: 18pt;" aria-label="mysterious animals (27 items)">mysterious animals</a>
<a href="https://hyakumonogatari.com/tag/mysterious-trees/" class="tag-cloud-link tag-link-59816224 tag-link-position-20" style="font-size: 13.217391304348pt;" aria-label="Mysterious Trees (7 items)">Mysterious Trees</a>
<a href="https://hyakumonogatari.com/tag/severed-heads/" class="tag-cloud-link tag-link-736504 tag-link-position-21" style="font-size: 9.5652173913043pt;" aria-label="severed heads (2 items)">severed heads</a>
<a href="https://hyakumonogatari.com/tag/snow-monsters/" class="tag-cloud-link tag-link-699027 tag-link-position-22" style="font-size: 12.173913043478pt;" aria-label="Snow Monsters (5 items)">Snow Monsters</a>
<a href="https://hyakumonogatari.com/tag/tanuki-2/" class="tag-cloud-link tag-link-40875921 tag-link-position-23" style="font-size: 13.652173913043pt;" aria-label="tanuki (8 items)">tanuki</a>
<a href="https://hyakumonogatari.com/tag/tengu/" class="tag-cloud-link tag-link-710483 tag-link-position-24" style="font-size: 8pt;" aria-label="Tengu (1 item)">Tengu</a>
<a href="https://hyakumonogatari.com/tag/tono-monogatari/" class="tag-cloud-link tag-link-22395008 tag-link-position-25" style="font-size: 9.5652173913043pt;" aria-label="Tono Monogatari (2 items)">Tono Monogatari</a>
<a href="https://hyakumonogatari.com/tag/ubume/" class="tag-cloud-link tag-link-16968015 tag-link-position-26" style="font-size: 10.608695652174pt;" aria-label="Ubume (3 items)">Ubume</a>
<a href="https://hyakumonogatari.com/tag/water-monsters/" class="tag-cloud-link tag-link-32310798 tag-link-position-27" style="font-size: 11.478260869565pt;" aria-label="Water Monsters (4 items)">Water Monsters</a>
<a href="https://hyakumonogatari.com/tag/weird-rocks/" class="tag-cloud-link tag-link-42212219 tag-link-position-28" style="font-size: 9.5652173913043pt;" aria-label="weird rocks (2 items)">weird rocks</a>
<a href="https://hyakumonogatari.com/tag/yokai-stories/" class="tag-cloud-link tag-link-44996123 tag-link-position-29" style="font-size: 21.217391304348pt;" aria-label="Yōkai Stories (65 items)">Yōkai Stories</a>
<a href="https://hyakumonogatari.com/tag/yurei-stories/" class="tag-cloud-link tag-link-44996138 tag-link-position-30" style="font-size: 20.347826086957pt;" aria-label="Yūrei Stories (51 items)">Yūrei Stories</a>
<a href="https://hyakumonogatari.com/tag/zashiki-warashi/" class="tag-cloud-link tag-link-3278660 tag-link-position-31" style="font-size: 9.5652173913043pt;" aria-label="Zashiki-warashi (2 items)">Zashiki-warashi</a></div><div id="categories-3" class="widget widget_categories"><h4 class="widgettitle">Kaidan Categories</h4>
			<ul>
					<li class="cat-item cat-item-40875796"><a href="https://hyakumonogatari.com/category/buddhist-morals/">Buddhist Morals</a> (8)
</li>
	<li class="cat-item cat-item-46252123"><a href="https://hyakumonogatari.com/category/cursed-houses/">Cursed Houses</a> (7)
</li>
	<li class="cat-item cat-item-18999404"><a href="https://hyakumonogatari.com/category/death-customs/">Death Customs</a> (9)
</li>
	<li class="cat-item cat-item-44996396"><a href="https://hyakumonogatari.com/category/essays-on-kaidan/">Essays on Kaidan</a> (25)
</li>
	<li class="cat-item cat-item-44996365"><a href="https://hyakumonogatari.com/category/from-mizuki-shigeru/">From Mizuki Shigeru</a> (79)
</li>
	<li class="cat-item cat-item-32479944"><a href="https://hyakumonogatari.com/category/japanese-afterlife/">Japanese Afterlife</a> (15)
</li>
	<li class="cat-item cat-item-44996116"><a href="https://hyakumonogatari.com/category/kappa-stories/">Kappa Stories</a> (5)
</li>
	<li class="cat-item cat-item-44996317"><a href="https://hyakumonogatari.com/category/magical-animal-stories/">Magical Animal Stories</a> (25)
</li>
	<li class="cat-item cat-item-47367909"><a href="https://hyakumonogatari.com/category/magical-dolls/">Magical Dolls</a> (3)
</li>
	<li class="cat-item cat-item-44996301"><a href="https://hyakumonogatari.com/category/magical-rock-stories/">Magical Rock Stories</a> (3)
</li>
	<li class="cat-item cat-item-94637543"><a href="https://hyakumonogatari.com/category/magical-tree-stories/">Magical Tree Stories</a> (5)
</li>
	<li class="cat-item cat-item-44996346"><a href="https://hyakumonogatari.com/category/tanuki-stories/">Tanuki Stories</a> (8)
</li>
	<li class="cat-item cat-item-1"><a href="https://hyakumonogatari.com/category/uncategorized/">Uncategorized</a> (22)
</li>
	<li class="cat-item cat-item-44996123"><a href="https://hyakumonogatari.com/category/yokai-stories/">Yōkai Stories</a> (60)
</li>
	<li class="cat-item cat-item-44996138"><a href="https://hyakumonogatari.com/category/yurei-stories/">Yūrei Stories</a> (54)
</li>
	<li class="cat-item cat-item-3278660"><a href="https://hyakumonogatari.com/category/zashiki-warashi/">Zashiki-warashi</a> (2)
</li>
			</ul>

			</div><div id="media_image-4" class="widget widget_media_image"><style>.widget.widget_media_image { overflow: hidden; }.widget.widget_media_image img { height: auto; max-width: 100%; }</style><img class="image aligncenter" src="http://www.monstropedia.org/images/6/6b/Oyuki.jpg" alt="" width="159" height="601" /></div>			<div id="atatags-286348-662bd3ab386b3"></div>
			
			<script>
				__ATA.cmd.push(function() {
					__ATA.initDynamicSlot({
						id: 'atatags-286348-662bd3ab386b3',
						location: 140,
						formFactor: '003',
						label: {
							text: 'Advertisements',
						},
						creative: {
							reportAd: {
								text: 'Report this ad',
							},
							privacySettings: {
								text: 'Privacy',
								onClick: function() { window.__tcfapi && window.__tcfapi( 'showUi' ); },
							}
						}
					});
				});
			</script>
	</div>
	<!--/sidebar -->
	<div id="secondary">

		<div id="footer1" class="widget-container">
							<div id="text-4" class="widget widget_text"><h4 class="widgettitle">Copyright notification</h4>			<div class="textwidget"><p>All translations and other writing on this website were created by <b>Zack Davisson</b> and are copyright to him.</p>
</div>
		</div>					</div>

		<div id="footer2" class="widget-container">
							<div id="text-5" class="widget widget_text"><h4 class="widgettitle">Copyright notification</h4>			<div class="textwidget"><p>In accessing these web pages, you agree that any downloading of content is for personal, non-commercial reference only. </p>
<p>No part of this web site may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording or otherwise, without prior permission of Zack Davisson.</p>
</div>
		</div>					</div>

		<div id="footer3" class="widget-container">
							<div id="text-6" class="widget widget_text"><h4 class="widgettitle">Copyright notification</h4>			<div class="textwidget"><p>For rights clearance please contact Zack at:</p>
<p> <b>zack.davisson (at) gmail.com</b></p>
<p>Thank you.</p>
</div>
		</div>					</div>

	</div>

	<div id="footer">

		<p class="credits"><a href="https://wordpress.com/?ref=footer_blog" rel="nofollow">Blog at WordPress.com.</a> <span>&bull;</span> </p>

	</div>
	<!--/footer -->

</div>
<!--/wrapper -->
<!--  -->
<script type="text/javascript" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=2024174d47d929f88574eb4a47e5b1778b683b87e7f6078bb6a33f34c1178752e83406" id="grofiles-cards-js"></script>
<script type="text/javascript" id="wpgroho-js-extra">
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile': 'Edit your profile',
							'View profile': 'View profile',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Sorry, we are unable to load this Gravatar profile. Please check your internet connection.': 'Sorry, we are unable to load this Gravatar profile. Please check your internet connection.',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	<div class="grofile-hash-map-579136297d64b6acd80447bc5b19c6af">
	</div>
	<div class="grofile-hash-map-316dbed497d56a3d011c7dc998b3ac76">
	</div>
	<div class="grofile-hash-map-c35ebf6220521ea70f5d018a2b09ba48">
	</div>
	<div class="grofile-hash-map-fb89a00c87bfde864a798078ab584a5b">
	</div>
	<div class="grofile-hash-map-a339795987e72e483910da3dbafaefb2">
	</div>
	<div class="grofile-hash-map-5e248306a198f02bf14019a7a1dd3e05">
	</div>
	<div class="grofile-hash-map-9d1fda989b4291e71ceee2fe0cd1f194">
	</div>
	<div class="grofile-hash-map-6a7be886e6fc2185cd03e2f61abee8b6">
	</div>
	<div class="grofile-hash-map-96e148334e32ca976a2249542733e429">
	</div>
	</div>
		<script type="text/javascript">
		( function() {
			function init() {
				document.body.addEventListener( 'is.post-load', function() {
					if ( typeof __ATA.insertInlineAds === 'function' ) {
						__ATA.insertInlineAds();
					}
				} );
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
		</script>		<!-- CCPA [start] -->
		<script type="text/javascript">
			( function () {

				var setupPrivacy = function() {

					// Minimal Mozilla Cookie library
					// https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie/Simple_document.cookie_framework
					var cookieLib = window.cookieLib = {getItem:function(e){return e&&decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*"+encodeURIComponent(e).replace(/[\-\.\+\*]/g,"\\$&")+"\\s*\\=\\s*([^;]*).*$)|^.*$"),"$1"))||null},setItem:function(e,o,n,t,r,i){if(!e||/^(?:expires|max\-age|path|domain|secure)$/i.test(e))return!1;var c="";if(n)switch(n.constructor){case Number:c=n===1/0?"; expires=Fri, 31 Dec 9999 23:59:59 GMT":"; max-age="+n;break;case String:c="; expires="+n;break;case Date:c="; expires="+n.toUTCString()}return"rootDomain"!==r&&".rootDomain"!==r||(r=(".rootDomain"===r?".":"")+document.location.hostname.split(".").slice(-2).join(".")),document.cookie=encodeURIComponent(e)+"="+encodeURIComponent(o)+c+(r?"; domain="+r:"")+(t?"; path="+t:"")+(i?"; secure":""),!0}};

					// Implement IAB USP API.
					window.__uspapi = function( command, version, callback ) {

						// Validate callback.
						if ( typeof callback !== 'function' ) {
							return;
						}

						// Validate the given command.
						if ( command !== 'getUSPData' || version !== 1 ) {
							callback( null, false );
							return;
						}

						// Check for GPC. If set, override any stored cookie.
						if ( navigator.globalPrivacyControl ) {
							callback( { version: 1, uspString: '1YYN' }, true );
							return;
						}

						// Check for cookie.
						var consent = cookieLib.getItem( 'usprivacy' );

						// Invalid cookie.
						if ( null === consent ) {
							callback( null, false );
							return;
						}

						// Everything checks out. Fire the provided callback with the consent data.
						callback( { version: 1, uspString: consent }, true );
					};

					// Initialization.
					document.addEventListener( 'DOMContentLoaded', function() {

						// Internal functions.
						var setDefaultOptInCookie = function() {
							var value = '1YNN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 365 * 24 * 60 * 60, '/', domain );
						};

						var setDefaultOptOutCookie = function() {
							var value = '1YYN';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setDefaultNotApplicableCookie = function() {
							var value = '1---';
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'usprivacy', value, 24 * 60 * 60, '/', domain );
						};

						var setCcpaAppliesCookie = function( applies ) {
							var domain = '.wordpress.com' === location.hostname.slice( -14 ) ? '.rootDomain' : location.hostname;
							cookieLib.setItem( 'ccpa_applies', applies, 24 * 60 * 60, '/', domain );
						}

						var maybeCallDoNotSellCallback = function() {
							if ( 'function' === typeof window.doNotSellCallback ) {
								return window.doNotSellCallback();
							}

							return false;
						}

						// Look for usprivacy cookie first.
						var usprivacyCookie = cookieLib.getItem( 'usprivacy' );

						// Found a usprivacy cookie.
						if ( null !== usprivacyCookie ) {

							// If the cookie indicates that CCPA does not apply, then bail.
							if ( '1---' === usprivacyCookie ) {
								return;
							}

							// CCPA applies, so call our callback to add Do Not Sell link to the page.
							maybeCallDoNotSellCallback();

							// We're all done, no more processing needed.
							return;
						}

						// We don't have a usprivacy cookie, so check to see if we have a CCPA applies cookie.
						var ccpaCookie = cookieLib.getItem( 'ccpa_applies' );

						// No CCPA applies cookie found, so we'll need to geolocate if this visitor is from California.
						// This needs to happen client side because we do not have region geo data in our $SERVER headers,
						// only country data -- therefore we can't vary cache on the region.
						if ( null === ccpaCookie ) {

							var request = new XMLHttpRequest();
							request.open( 'GET', 'https://public-api.wordpress.com/geo/', true );

							request.onreadystatechange = function () {
								if ( 4 === this.readyState ) {
									if ( 200 === this.status ) {

										// Got a geo response. Parse out the region data.
										var data = JSON.parse( this.response );
										var region      = data.region ? data.region.toLowerCase() : '';
										var ccpa_applies = ['california', 'colorado', 'connecticut', 'delaware', 'indiana', 'iowa', 'montana', 'new jersey', 'oregon', 'tennessee', 'texas', 'utah', 'virginia'].indexOf( region ) > -1;
										// Set CCPA applies cookie. This keeps us from having to make a geo request too frequently.
										setCcpaAppliesCookie( ccpa_applies );

										// Check if CCPA applies to set the proper usprivacy cookie.
										if ( ccpa_applies ) {
											if ( maybeCallDoNotSellCallback() ) {
												// Do Not Sell link added, so set default opt-in.
												setDefaultOptInCookie();
											} else {
												// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
												setDefaultOptOutCookie();
											}
										} else {
											// CCPA does not apply.
											setDefaultNotApplicableCookie();
										}
									} else {
										// Could not geo, so let's assume for now that CCPA applies to be safe.
										setCcpaAppliesCookie( true );
										if ( maybeCallDoNotSellCallback() ) {
											// Do Not Sell link added, so set default opt-in.
											setDefaultOptInCookie();
										} else {
											// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
											setDefaultOptOutCookie();
										}
									}
								}
							};

							// Send the geo request.
							request.send();
						} else {
							// We found a CCPA applies cookie.
							if ( ccpaCookie === 'true' ) {
								if ( maybeCallDoNotSellCallback() ) {
									// Do Not Sell link added, so set default opt-in.
									setDefaultOptInCookie();
								} else {
									// Failed showing Do Not Sell link as required, so default to opt-OUT just to be safe.
									setDefaultOptOutCookie();
								}
							} else {
								// CCPA does not apply.
								setDefaultNotApplicableCookie();
							}
						}
					} );
				};

				// Kickoff initialization.
				if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) {
					defQueue.items.push( setupPrivacy );
				} else {
					setupPrivacy();
				}

			} )();
		</script>

		<!-- CCPA [end] -->
			<div id="actionbar" style="display: none;"
			class="actnbr-pub-koi actnbr-has-follow">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
						<a class="actnbr-action actnbr-actn-comment" href="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/#comments">
							<svg class="gridicon gridicons-comment" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M12 16l-5 5v-5H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v9c0 1.1-.9 2-2 2h-7z"/></g></svg>							<span>Comment						</span>
						</a>
					</li>
									<li class="actnbr-btn actnbr-hidden">
						<a class="actnbr-action actnbr-actn-reblog" href="">
							<svg class="gridicon gridicons-reblog" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M22.086 9.914L20 7.828V18c0 1.105-.895 2-2 2h-7v-2h7V7.828l-2.086 2.086L14.5 8.5 19 4l4.5 4.5-1.414 1.414zM6 16.172V6h7V4H6c-1.105 0-2 .895-2 2v10.172l-2.086-2.086L.5 15.5 5 20l4.5-4.5-1.414-1.414L6 16.172z"/></g></svg><span>Reblog</span>
						</a>
					</li>
									<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://hyakumonogatari.com">
				<img alt='' src='https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				百物語怪談会 Hyakumonogatari Kaidankai			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 1,766 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="14597045" />
										<input type="hidden" name="source" value="https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="24c799a6b1" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fhyakumonogatari.com%252F2013%252F12%252F18%252Fyuki-onna-the-snow-woman%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
									<li class="actnbr-btn actnbr-hidden no-display" onclick="javascript:__tcfapi( 'showUi' );">
						<a class="actnbr-action actnbr-actn-privacy" href="#">
							<svg class="gridicon gridicons-info-outline" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"/></g></svg>							<span>Privacy						</span>
						</a>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
									<li class="actnbr-sitename">
			<a href="https://hyakumonogatari.com">
				<img alt='' src='https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png' srcset='https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=50&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=75&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 1.5x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=100&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 2x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=150&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 3x, https://secure.gravatar.com/blavatar/9e80a45fd168c13c394c5ed9324558c431fd63c835a5f02b35aaaef1c3c33f09?s=200&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Flogo%2Fwpcom-gray-white.png 4x' class='avatar avatar-50' height='50' width='50' />				百物語怪談会 Hyakumonogatari Kaidankai			</a>
		</li>
								<li class="actnbr-folded-customize">
								<a href="https://hyakumonogatari.wordpress.com/wp-admin/customize.php?url=https%3A%2F%2Fhyakumonogatari.wordpress.com%2F2013%2F12%2F18%2Fyuki-onna-the-snow-woman%2F">
									<svg class="gridicon gridicons-customize" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><g><path d="M2 6c0-1.505.78-3.08 2-4 0 .845.69 2 2 2 1.657 0 3 1.343 3 3 0 .386-.08.752-.212 1.09.74.594 1.476 1.19 2.19 1.81L8.9 11.98c-.62-.716-1.214-1.454-1.807-2.192C6.753 9.92 6.387 10 6 10c-2.21 0-4-1.79-4-4zm12.152 6.848l1.34-1.34c.607.304 1.283.492 2.008.492 2.485 0 4.5-2.015 4.5-4.5 0-.725-.188-1.4-.493-2.007L18 9l-2-2 3.507-3.507C18.9 3.188 18.225 3 17.5 3 15.015 3 13 5.015 13 7.5c0 .725.188 1.4.493 2.007L3 20l2 2 6.848-6.848c1.885 1.928 3.874 3.753 5.977 5.45l1.425 1.148 1.5-1.5-1.15-1.425c-1.695-2.103-3.52-4.092-5.448-5.977z"/></g></svg>									<span>Customize</span>
								</a>
							</li>
																<li class="actnbr-folded-follow">
												<a class="actnbr-action actnbr-actn-follow" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
										</li>
																	<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
									<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fhyakumonogatari.com%252F2013%252F12%252F18%252Fyuki-onna-the-snow-woman%252F">Log in</a></li>
																	<li class="actnbr-shortlink"><a href="https://wp.me/pZfmd-la">Copy shortlink</a></li>
																	<li class="flb-report">
										<a href="https://wordpress.com/abuse/?report_url=https://hyakumonogatari.com/2013/12/18/yuki-onna-the-snow-woman/" target="_blank" rel="noopener noreferrer">
											Report this content										</a>
									</li>
																	<li class="actnbr-reader">
										<a href="https://wordpress.com/read/blogs/14597045/posts/1312">
											View post in Reader										</a>
									</li>
																	<li class="actnbr-subs">
										<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
									</li>
																		<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
															</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "load", function( event ) {
	var link = document.createElement( "link" );
	link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20240115";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20231122";
	script.defer = true;
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading">&nbsp;</span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskunits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskunits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskunits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner">&nbsp;</span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewbox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskunits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<script type="text/javascript">
		window.WPCOM_sharing_counts = {"https:\/\/hyakumonogatari.com\/2013\/12\/18\/yuki-onna-the-snow-woman\/":1312};
	</script>
				<script type="text/javascript" src="https://platform.twitter.com/widgets.js?ver=20111117" id="twitter-widgets-js"></script>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-2' href='https://s2.wp.com/_static/??-eJydjEEKgCAQAD+UrR6KLtFbTJfQdJXWxe9HUB/oOMMw0KtyhRpSgyyqJjkCMURs1brzZWAhyMVLQgZnryKMCbiHipfahXzC0TEP8H/2NZ94fltezbxMxkx61vEGx+U/hQ==&cssminify=yes' type='text/css' media='all' />
<script type="text/javascript" id="jetpack-facebook-embed-js-extra">
/* <![CDATA[ */
var jpfbembed = {"appid":"249643311490","locale":"en_US"};
/* ]]> */
</script>
<script type="text/javascript" id="jetpack-carousel-js-extra">
/* <![CDATA[ */
var jetpackSwiperLibraryPath = {"url":"https:\/\/s2.wp.com\/wp-content\/mu-plugins\/jetpack-plugin\/sun\/_inc\/build\/carousel\/swiper-bundle.min.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/hyakumonogatari.com\/wp-admin\/admin-ajax.php","nonce":"51b5ecdba7","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"0","login_url":"https:\/\/hyakumonogatari.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fhyakumonogatari.com%2F2013%2F12%2F18%2Fyuki-onna-the-snow-woman%2F","blog_id":"14597045","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=14597045&v=wpcom&tz=-7&user_id=0&subd=hyakumonogatari","is_public":"1"};
/* ]]> */
</script>
<script type="text/javascript" id="sharing-js-js-extra">
/* <![CDATA[ */
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
/* ]]> */
</script>
<script type="text/javascript" id="verbum-settings-js-before">
/* <![CDATA[ */
window.VerbumComments = {"Log in or provide your name and email to leave a reply.":"Log in or provide your name and email to leave a reply.","Log in or provide your name and email to leave a comment.":"Log in or provide your name and email to leave a comment.","Receive web and mobile notifications for posts on this site.":"Receive web and mobile notifications for posts on this site.","Name":"Name","Email (address never made public)":"Email (address never made public)","Website (optional)":"Website (optional)","Leave a reply. (log in optional)":"Leave a reply. (log in optional)","Leave a comment. (log in optional)":"Leave a comment. (log in optional)","Log in to leave a reply.":"Log in to leave a reply.","Log in to leave a comment.":"Log in to leave a comment.","Logged in via %s":"Logged in via %s","Log out":"Log out","Email":"Email","(Address never made public)":"(Address never made public)","Instantly":"Instantly","Daily":"Daily","Reply":"Reply","Comment":"Comment","WordPress":"WordPress","Weekly":"Weekly","Notify me of new posts":"Notify me of new posts","Email me new posts":"Email me new posts","Email me new comments":"Email me new comments","Cancel":"Cancel","Write a comment...":"Write a comment...","Write a reply...":"Write a reply...","Website":"Website","Optional":"Optional","We'll keep you in the loop!":"We'll keep you in the loop!","Loading your comment...":"Loading your comment...","Discover more from":"Discover more from \u767e\u7269\u8a9e\u602a\u8ac7\u4f1a Hyakumonogatari Kaidankai","Subscribe now to keep reading and get access to the full archive.":"Subscribe now to keep reading and get access to the full archive.","Continue reading":"Continue reading","Never miss a beat!":"Never miss a beat!","Interested in getting blog post updates? Simply click the button below to stay in the loop!":"Interested in getting blog post updates? Simply click the button below to stay in the loop!","Enter your email address":"Enter your email address","Subscribe":"Subscribe","Comment sent successfully":"Comment sent successfully","Save my name, email, and website in this browser for the next time I comment.":"Save my name, email, and website in this browser for the next time I comment.","siteId":14597045,"postId":1312,"mustLogIn":false,"requireNameEmail":false,"commentRegistration":false,"connectURL":"https:\/\/hyakumonogatari.wordpress.com\/public.api\/connect\/?action=request&domain=hyakumonogatari.com","logoutURL":"https:\/\/hyakumonogatari.wordpress.com\/wp-login.php?action=logout&_wpnonce=7756831afa","homeURL":"https:\/\/hyakumonogatari.com\/","subscribeToBlog":true,"subscribeToComment":true,"isJetpackCommentsLoggedIn":false,"jetpackUsername":"","jetpackUserId":0,"jetpackSignature":"","jetpackAvatar":"https:\/\/0.gravatar.com\/avatar\/?s=96&amp;d=identicon&amp;r=G","enableBlocks":true,"enableSubscriptionModal":true,"currentLocale":"en","isJetpackComments":false,"allowedBlocks":["core\/paragraph","core\/list","core\/code","core\/list-item","core\/quote","core\/image","core\/embed","core\/quote","core\/code"],"embedNonce":"b8b145a87c","verbumBundleUrl":"https:\/\/s2.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/sun\/vendor\/automattic\/jetpack-mu-wpcom\/src\/features\/verbum-comments\/dist\/index.js","isRTL":false,"vbeCacheBuster":1705430309}
/* ]]> */
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s0.wp.com/_static/??-eJydUe1uwyAMfKERt92m9s+0R5kMuCkJHxmGRnn7kSbpslXqpv4CH2f77oC+Eyr4RD6BtKEWnc218Qx9iBo1C2WRmRiaAmGyVcNPsOpx+dphTVt4n5kyndBrS/EOuaHUoWpFgfpOBTc/AGcPZ/I6RMCcgsOUjLphA0cFMhurCznK7MoK58oKhlFtOfTg0RklbED9LcR4ZbOe3MwdIlJnh8oZ/w+1K5EfZRYcUZEMoRXkJOnfA/7KU7kOzrvxqGQeA3tAwRSCwhgyk73SFmDta22+lJPk+76xNewoiedqM61bgGO8kG8sr3oXCfOP/SwfdsonjFSC1MPlanw9W3h3b9v99mWzPxx2r80XHFUQeg=='></script>
<script type="text/javascript" id="sharing-js-js-after">
/* <![CDATA[ */
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-facebook' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-facebook' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
						return false;
					}
				} );
			} )();
var windowOpen;
			( function () {
				function matches( el, sel ) {
					return !! (
						el.matches && el.matches( sel ) ||
						el.msMatchesSelector && el.msMatchesSelector( sel )
					);
				}

				document.body.addEventListener( 'click', function ( event ) {
					if ( ! event.target ) {
						return;
					}

					var el;
					if ( matches( event.target, 'a.share-twitter' ) ) {
						el = event.target;
					} else if ( event.target.parentNode && matches( event.target.parentNode, 'a.share-twitter' ) ) {
						el = event.target.parentNode;
					}

					if ( el ) {
						event.preventDefault();

						// If there's another sharing window open, close it.
						if ( typeof windowOpen !== 'undefined' ) {
							windowOpen.close();
						}
						windowOpen = window.open( el.getAttribute( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
						return false;
					}
				} );
			} )();
/* ]]> */
</script>

	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script type="text/javascript">
// <![CDATA[
(function() {
try{
  if ( window.external &&'msIsSiteMode' in window.external) {
    if (window.external.msIsSiteMode()) {
      var jl = document.createElement('script');
      jl.type='text/javascript';
      jl.async=true;
      jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(jl, s);
    }
  }
}catch(e){}
})();
// ]]>
</script>	<iframe src='https://widgets.wp.com/likes/master.html?ver=20240426#ver=20240426&amp;origin=https://hyakumonogatari.com' scrolling='no' id='likes-master' name='likes-master' style='display:none;'></iframe>
	<div id='likes-other-gravatars' class='wpl-new-layout' role="dialog" aria-hidden="true" tabindex="-1">
		<div class="likes-text">
			<span>%d</span>		</div>
		<ul class="wpl-avatars sd-like-gravatars"></ul>
	</div>

		<script src="//stats.wp.com/w.js?67" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'14597045','blog_tz':'-7','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'14597045','v':'wpcom','tz':'-7','user_id':'0','post':'1312','subd':'hyakumonogatari'}]);
		_stq.push(['extra', {'crypt':'UE5XaGUuOTlwaD85flAmcm1mcmZsaDhkV11YdWtpP0NsWnVkPS9sL0ViLndld3AyMWJHeXJoeTksLndZeV1Mc2Q2bz05WU9KcmQlN3REc1pfJXlbdURaOEE/ckFWaSstcX5tJU1vRG5XbT9tQXFuZnZXc1ZYW041Vk9vc0k9L0tLZ2c4fEdxZkZkeDZpfjhzZlptVFdQUTZueWpTWF9xeWZyOV9iRS9FUUV1SmZSaV9VNDlkOHNVLEpvUVd2TGRqamlTXXVXJl9ZYVNIbm0sMkRBQXZIPUVEWWlZczdMVSUxN19CQ0lJOUJmMk1sSXBdK1gvby1rW0MzN1ZyRD1yMCUxMU9nbXxfbF9lYk9iQmowaFZwSG5RY2xmK0xbN2pNQmgzJWhSbVpWSkVHRXRyYkt8NkNFRDF1Y2Nza3ZNLTIta0YuQlRVRiViVEI3RmxGbEVPU2oweVhueFJhPXR3WkQsR08='}]);
_stq.push([ 'clickTrackerInit', '14597045', '1312' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<script defer id="bilmur" data-customproperties="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/koi&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="simple"  src="/wp-content/js/bilmur.min.js?i=11&m=202417"></script><script>
if ( 'object' === typeof wpcom_mobile_user_agent_info ) {

	wpcom_mobile_user_agent_info.init();
	var mobileStatsQueryString = "";
	
	if( false !== wpcom_mobile_user_agent_info.matchedPlatformName )
		mobileStatsQueryString += "&x_" + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
	
	if( false !== wpcom_mobile_user_agent_info.matchedUserAgentName )
		mobileStatsQueryString += "&x_" + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
	
	if( wpcom_mobile_user_agent_info.isIPad() )
		mobileStatsQueryString += "&x_" + 'ipad_views' + '=' + 'views';

	if( "" != mobileStatsQueryString ) {
		new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
	}
	
}
</script>
<script>
(function() {
	'use strict';

	const fetches = {};
	const promises = {};
	const urls = {
		'verbum': 'https://s2.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/vendor/automattic/jetpack-mu-wpcom/src/build/verbum-comments/verbum-comments.js?m=1712608771i&minify=false&ver=b21a1891b3d26e8bea5e'
	};
	const loaders = {
		'verbum': () => {
			fetchExternalScript('verbum');
			promises['verbum'] = promises['verbum'] || loadWPScript('verbum');
			return promises['verbum'];
		},
		
	};
	const scriptExtras = {
		
	};

	window.WP_Enqueue_Dynamic_Script = {
		loadScript: (handle) => {
			if (!loaders[handle]) {
				console.error('WP_Enqueue_Dynamic_Script: unregistered script `' + handle + '`.');
			}
			return loaders[handle]();
		}
	};

	function fetchExternalScript(handle) {
		if (!urls[handle]) {
			return Promise.resolve();
		}

		fetches[handle] = fetches[handle] || fetch(urls[handle], { mode: 'no-cors' });
		return fetches[handle];
	}

	function runExtraScript(handle, type, index) {
		const id = 'wp-enqueue-dynamic-script:' + handle + ':' + type + ':' + (index + 1);
		const template = document.getElementById(id);
		if (!template) {
			return Promise.reject();
		}

		const script = document.createElement( 'script' );
		script.innerHTML = template.innerHTML;
		document.body.appendChild( script );
		return Promise.resolve();
	}

	function loadExternalScript(handle) {
		if (!urls[handle]) {
			return Promise.resolve();
		}

		return fetches[handle].then(() => {
			return new Promise((resolve, reject) => {
				const script = document.createElement('script');
				script.onload = () => resolve();
				script.onerror = (e) => reject(e);
				script.src = urls[handle];
				document.body.appendChild(script);
			});
		});
	}

	function loadExtra(handle, pos) {
		const count = (scriptExtras[handle] && scriptExtras[handle][pos]) || 0;
		let promise = Promise.resolve();

		for (let i = 0; i < count; i++) {
			promise = promise.then(() => runExtraScript(handle, pos, i));
		}

		return promise;
	}

	function loadWPScript(handle) {
		return loadExtra(handle, 'before')
			.then(() => loadExternalScript(handle))
			.then(() => loadExtra(handle, 'after'));
	}
} )();
</script>
</body>
</html>