<?xml version="1.0"?>
<oembed><version>1.0</version><provider_name>&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30FB;&#x30B8;&#x30E3;&#x30D1;&#x30F3; &#x30DE;&#x30AC;&#x30B8;&#x30F3;</provider_name><provider_url>https://outlet-mall.jp/magazine</provider_url><author_name>&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30B8;&#x30E3;&#x30D1;&#x30F3;&#x7DE8;&#x96C6;&#x90E8;</author_name><author_url>https://outlet-mall.jp/magazine/author/outletjapan-editor/</author_url><title>&#x3010;2023&#x5E74;&#x7248;&#x3011;&#x7CF8;&#x6E80;&#x30FB;&#x8C4A;&#x898B;&#x57CE;&#x30A8;&#x30EA;&#x30A2;&#x300C;&#x6C96;&#x7E04;&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30E2;&#x30FC;&#x30EB;&#x3042;&#x3057;&#x3073;&#x306A;&#x30FC;&#x300D;&#x5E74;&#x9593;&#x30BB;&#x30FC;&#x30EB;&#x60C5;&#x5831; - &#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30FB;&#x30B8;&#x30E3;&#x30D1;&#x30F3; &#x30DE;&#x30AC;&#x30B8;&#x30F3;</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="RwQcWRhkDf"&gt;&lt;a href="https://outlet-mall.jp/magazine/2079/"&gt;&#x3010;2023&#x5E74;&#x7248;&#x3011;&#x7CF8;&#x6E80;&#x30FB;&#x8C4A;&#x898B;&#x57CE;&#x30A8;&#x30EA;&#x30A2;&#x300C;&#x6C96;&#x7E04;&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30E2;&#x30FC;&#x30EB;&#x3042;&#x3057;&#x3073;&#x306A;&#x30FC;&#x300D;&#x5E74;&#x9593;&#x30BB;&#x30FC;&#x30EB;&#x60C5;&#x5831;&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://outlet-mall.jp/magazine/2079/embed/#?secret=RwQcWRhkDf" width="600" height="338" title="&#x201C;&#x3010;2023&#x5E74;&#x7248;&#x3011;&#x7CF8;&#x6E80;&#x30FB;&#x8C4A;&#x898B;&#x57CE;&#x30A8;&#x30EA;&#x30A2;&#x300C;&#x6C96;&#x7E04;&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30E2;&#x30FC;&#x30EB;&#x3042;&#x3057;&#x3073;&#x306A;&#x30FC;&#x300D;&#x5E74;&#x9593;&#x30BB;&#x30FC;&#x30EB;&#x60C5;&#x5831;&#x201D; &#x2014; &#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30FB;&#x30B8;&#x30E3;&#x30D1;&#x30F3; &#x30DE;&#x30AC;&#x30B8;&#x30F3;" data-secret="RwQcWRhkDf" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script type="text/javascript"&gt;
/* &lt;![CDATA[ */
/**
 * WordPress inline HTML embed
 *
 * @since 4.4.0
 * @output wp-includes/js/wp-embed.js
 *
 * Single line comments should not be used since they will break
 * the script when inlined in get_post_embed_html(), specifically
 * when the comments are not stripped out due to SCRIPT_DEBUG
 * being turned on.
 */
(function ( window, document ) {
	'use strict';

	/* Abort for ancient browsers. */
	if ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {
		return;
	}

	/** @namespace wp */
	window.wp = window.wp || {};

	/* Abort if script was already executed. */
	if ( !! window.wp.receiveEmbedMessage ) {
		return;
	}

	/**
	 * Receive embed message.
	 *
	 * @param {MessageEvent} e
	 */
	window.wp.receiveEmbedMessage = function( e ) {
		var data = e.data;

		/* Verify shape of message. */
		if (
			! ( data || data.secret || data.message || data.value ) ||
			/[^a-zA-Z0-9]/.test( data.secret )
		) {
			return;
		}

		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
			allowedProtocols = new RegExp( '^https?:$', 'i' ),
			i, source, height, sourceURL, targetURL;

		for ( i = 0; i &lt; blockquotes.length; i++ ) {
			blockquotes[ i ].style.display = 'none';
		}

		for ( i = 0; i &lt; iframes.length; i++ ) {
			source = iframes[ i ];

			if ( e.source !== source.contentWindow ) {
				continue;
			}

			source.removeAttribute( 'style' );

			if ( 'height' === data.message ) {
				/* Resize the iframe on request. */
				height = parseInt( data.value, 10 );
				if ( height &gt; 1000 ) {
					height = 1000;
				} else if ( ~~height &lt; 200 ) {
					height = 200;
				}

				source.height = height;
			} else if ( 'link' === data.message ) {
				/* Link to a specific URL on request. */
				sourceURL = new URL( source.getAttribute( 'src' ) );
				targetURL = new URL( data.value );

				if (
					allowedProtocols.test( targetURL.protocol ) &amp;&amp;
					targetURL.host === sourceURL.host &amp;&amp;
					document.activeElement === source
				) {
					window.top.location.href = data.value;
				}
			}
		}
	};

	function onLoad() {
		var iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),
			i, source, secret;

		for ( i = 0; i &lt; iframes.length; i++ ) {
			/** @var {IframeElement} */
			source = iframes[ i ];

			secret = source.getAttribute( 'data-secret' );
			if ( ! secret ) {
				/* Add secret to iframe */
				secret = Math.random().toString( 36 ).substring( 2, 12 );
				source.src += '#?secret=' + secret;
				source.setAttribute( 'data-secret', secret );
			}

			/*
			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe
			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the
			 * window will then (re-)send the height message right away.
			 */
			source.contentWindow.postMessage( {
				message: 'ready',
				secret: secret
			}, '*' );
		}
	}

	window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );
	document.addEventListener( 'DOMContentLoaded', onLoad, false );
})( window, document );

/* ]]&gt; */
&lt;/script&gt;
</html><thumbnail_url>https://outlet-mall.jp/magazine/wp-content/uploads/2020/12/04124702/%E5%B9%B4%E9%96%93%E3%82%BB%E3%83%BC%E3%83%AB%E6%83%85%E5%A0%B1.png</thumbnail_url><thumbnail_width>710</thumbnail_width><thumbnail_height>404</thumbnail_height><description>&#x7CF8;&#x6E80;&#x30FB;&#x8C4A;&#x898B;&#x57CE;&#x30A8;&#x30EA;&#x30A2;&#x306B;&#x51FA;&#x304B;&#x3051;&#x308B;&#x306A;&#x3089;&#x3001;&#x6C96;&#x7E04;&#x30A2;&#x30A6;&#x30C8;&#x30EC;&#x30C3;&#x30C8;&#x30E2;&#x30FC;&#x30EB;&#x3042;&#x3057;&#x3073;&#x306A;&#x30FC;&#x306F;&#x5916;&#x305B;&#x307E;&#x305B;&#x3093;&#x3002;&#x6D77;&#x5916;&#x306E;&#x9AD8;&#x7D1A;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x304B;&#x3089;&#x30AB;&#x30B8;&#x30E5;&#x30A2;&#x30EB;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x307E;&#x3067;&#x3001;&#x307E;&#x305F;&#x30BF;&#x30A6;&#x30F3;&#x30E6;&#x30FC;&#x30B9;&#x3082;&#x3067;&#x304D;&#x308B;&#x304A;&#x3057;&#x3083;&#x308C;&#x306A;&#x30B9;&#x30DD;&#x30FC;&#x30C4;&#x30D6;&#x30E9;&#x30F3;&#x30C9;&#x3082;&#x8981;&#x30C1;&#x30A7;&#x30C3;&#x30AF;&#x3067;&#x3059;&#x3002;&#x30BB;&#x30FC;&#x30EB;&#x60C5;&#x5831;&#x3092;&#x78BA;&#x8A8D;&#x3057;&#x3066;&#x304B;&#x3089;&#x51FA;&#x304B;&#x3051;&#x307E;&#x3057;&#x3087;&#x3046;&#x3002;</description></oembed>
