<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									ヘッダーメニュー下と記事の余白調整方法 - CSSカスタマイズ相談				            </title>
            <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/</link>
            <description>Cocoon ディスカッション掲示板</description>
            <language>ja</language>
            <lastBuildDate>Sun, 06 Sep 2026 02:29:52 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62513</link>
                        <pubDate>Wed, 08 Jun 2022 14:44:50 +0000</pubDate>
                        <description><![CDATA[@chu-ya さん

アイキャッチの上に投稿タイトルを重ねたくないのでは？

おっしゃるとおりです。アイキャッチに文字入れしているため、重ねないためのCSSを調べて入れていました。それを思う通りカスタムできていなかったようです。
一つ目の方法で希望のとおり納まりました。コーディングエラーまで教えていただき、どうも有難うございました！]]></description>
                        <content:encoded><![CDATA[<p>@chu-ya さん</p>
<blockquote>
<p>アイキャッチの上に投稿タイトルを重ねたくないのでは？</p>
</blockquote>
<p>おっしゃるとおりです。<br />アイキャッチに文字入れしているため、重ねないためのCSSを調べて入れていました。<br />それを思う通りカスタムできていなかったようです。</p>
<p>一つ目の方法で希望のとおり納まりました。<br />コーディングエラーまで教えていただき、どうも有難うございました！</p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>Mellow Ordinary</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62513</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62512</link>
                        <pubDate>Wed, 08 Jun 2022 14:24:45 +0000</pubDate>
                        <description><![CDATA[別の案として以下があります。
●別案
スキンのデザイン、アイキャッチ画像を投稿タイトルと重ねるのを止め、投稿タイトル下に表示させる。この為、既に本文中にアイキャッチとして追加している、タイトル下の画像は不要となります。
以下は削除
.article-header .eye-catch-wrap {
  position: absolute;
}
.article-...]]></description>
                        <content:encoded><![CDATA[<p>別の案として以下があります。</p>
<p><br /><strong>●別案</strong></p>
<p>スキンのデザイン、アイキャッチ画像を投稿タイトルと重ねるのを止め、投稿タイトル下に表示させる。<br />この為、既に本文中にアイキャッチとして追加している、タイトル下の<span style="color: #ff0000">画像は不要</span>となります。</p>
<p>以下は削除</p>
<pre contenteditable="false">.article-header .eye-catch-wrap {
  position: absolute;
}
.article-header .eye-catch img {
  display: none;
}
.article-header .eye-catch {
  overflow: visible;
}</pre>
<p>以下を追加(.article h1は置き換え)</p>
<pre contenteditable="false">.article-header .eye-catch img {
  filter: none;
  height: 100%!important;
  opacity: 1;
  transform: unset;
  width: 100%;
}

.article h1 {
  left: 0;
  margin-top: 0;
  padding-top: 20px;
  position: relative;
  top: 0;
}</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62512</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62510</link>
                        <pubDate>Wed, 08 Jun 2022 13:34:50 +0000</pubDate>
                        <description><![CDATA[●親テーマのスキン「ホワイトラーメン」について
アイキャッチを半透明で必ず表示し、その上に投稿タイトルを重ねるようになっています。
●要件
たぶん、子CSSを見ると以下が書かれており。アイキャッチの上に投稿タイトルを重ねたくないのでは？
.article-header .eye-catch-wrap {
  position: absolute;
}
.artic...]]></description>
                        <content:encoded><![CDATA[<p><strong>●親テーマのスキン「ホワイトラーメン」について</strong></p>
<p>アイキャッチを<span style="color: #ff0000">半透明で必ず表示し</span>、その上に<span style="color: #ff0000">投稿タイトルを重ねる</span>ようになっています。</p>
<p><strong>●要件</strong></p>
<p>たぶん、子CSSを見ると以下が書かれており。<br />アイキャッチの上に投稿タイトルを重ねたくないのでは？</p>
<pre contenteditable="false">.article-header .eye-catch-wrap {
  position: absolute;
}
.article-header .eye-catch img {
  display: none;
}
.article-header .eye-catch {
  overflow: visible;
}</pre>
<p>このコードを<span style="color: #ff0000">削除</span>し、以下を<span style="color: #ff0000">追加</span>して下さい。</p>
<pre contenteditable="false">.article-header &gt; .eye-catch-wrap {
  display:none!important;
}
</pre>
<p>投稿タイトルを通常の位置に表示させる為、<br />元ある.article h1を以下に<span style="color: #ff0000">置き換え</span>て下さい。</p>
<pre contenteditable="false">.article h1 {
  left: 0;
  margin-top: 0;
  position: relative;
  top: 0;
}
</pre>
<p>位置調整の為に、投稿に追加してある、<span style="color: #ff0000">スペーサを削除</span>を忘れずに。</p>
<p><strong>●コーディングエラー</strong></p>
<p>78行目<br />margin-bottom:<span style="color: #ff0000">3</span>;←単位がない</p>
<p>141行目<br />font-size:25px;の前に半角スペース以外の文字コードがある。</p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62510</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62505</link>
                        <pubDate>Wed, 08 Jun 2022 12:30:48 +0000</pubDate>
                        <description><![CDATA[@chu-ya さん
すみません、記事のほうが解消していなかったです。テスト記事以外はスペーサーで取り急ぎしのいでいたことを失念しておりました。
3枚目の画像のまま変化がないのですが、別の問題でしょうか？]]></description>
                        <content:encoded><![CDATA[<p>@chu-ya さん</p>
<p>すみません、記事のほうが解消していなかったです。<br />テスト記事以外はスペーサーで取り急ぎしのいでいたことを失念しておりました。</p>
<p>3枚目の画像のまま変化がないのですが、別の問題でしょうか？</p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>Mellow Ordinary</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62505</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62503</link>
                        <pubDate>Wed, 08 Jun 2022 12:12:09 +0000</pubDate>
                        <description><![CDATA[@chu-ya さん
教えていただいた定義を入力したところうまく調整できました！！今回も丁寧にチェックしていただいて、どうもありがとうございました。おかげですこしずつ整っていくことが嬉しいのと、勉強になります ?]]></description>
                        <content:encoded><![CDATA[<p>@chu-ya さん</p>
<p>教えていただいた定義を入力したところうまく調整できました！！<br />今回も丁寧にチェックしていただいて、どうもありがとうございました。<br />おかげですこしずつ整っていくことが嬉しいのと、勉強になります ? </p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>Mellow Ordinary</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62503</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62501</link>
                        <pubDate>Wed, 08 Jun 2022 11:12:46 +0000</pubDate>
                        <description><![CDATA[@mellow-ordinary さん
見間違えていました。→→「本文余白」の設定に応じ、見出しも自動で余白が設定されており。
余白が大きいので、子テーマCSSに見出し余白の定義を追加して下さい。以下は例ですが、margin-bottomも必要に応じに追加して下さい。
.article h2, .article h3, .article h4,...]]></description>
                        <content:encoded><![CDATA[<p>@mellow-ordinary さん</p>
<p>見間違えていました。<br />→→「本文余白」の設定に応じ、見出しも自動で余白が設定されており。</p>
<p>余白が大きいので、<span style="color: #ff0000">子テーマCSSに見出し余白の定義</span>を追加して下さい。<br />以下は例ですが、margin-bottomも必要に応じに追加して下さい。</p>
<pre contenteditable="false">.article h2, .article h3, .article h4, .article h5, .article h6 {
  margin-top: 0;
}</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62501</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62497</link>
                        <pubDate>Wed, 08 Jun 2022 10:48:10 +0000</pubDate>
                        <description><![CDATA[@chu-yaまたまたご指導いただきありがとうございます。まず、モバイルのほうは無事解消いたしました。
お恥ずかしながら、以下の余白を設定しているコードがどこに埋まっているか探すことができませんでした。先日教えていただいたCSS検証サービスではヒットしたのですが、どのスタイルシートを指しているか解らず。構成が理解できていないからなのですが、これはどこのスタイルシートを指すので...]]></description>
                        <content:encoded><![CDATA[<p>@chu-ya<br />またまたご指導いただきありがとうございます。<br />まず、モバイルのほうは無事解消いたしました。</p>
<p>お恥ずかしながら、以下の余白を設定しているコードがどこに埋まっているか探すことができませんでした。<br />先日教えていただいたCSS検証サービスではヒットしたのですが、どのスタイルシートを指しているか解らず。<br />構成が理解できていないからなのですが、これはどこのスタイルシートを指すのでしょうか ? </p>
<pre contenteditable="false">.article h2, .article h3, .article h4, .article h5, .article h6 {
  margin-top: 2.4em;
}
</pre>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>Mellow Ordinary</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62497</guid>
                    </item>
				                    <item>
                        <title>RE: ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62496</link>
                        <pubDate>Wed, 08 Jun 2022 09:47:26 +0000</pubDate>
                        <description><![CDATA[●PC時の「当サイト」の上の余白
margin-top:2.4emが定義されています。この為、余白が入ります。余白を調整して下さい。
.article h2, .article h3, .article h4, .article h5, .article h6 {
  margin-top: 2.4em;
}

●モバイル時の「当サイト」の上の余白
以下のように不...]]></description>
                        <content:encoded><![CDATA[<p><strong>●PC時の「当サイト」の上の余白</strong></p>
<p><span style="color: #ff0000">margin-top:2.4em</span>が定義されています。<br />この為、余白が入ります。余白を調整して下さい。</p>
<pre contenteditable="false">.article h2, .article h3, .article h4, .article h5, .article h6 {
  margin-top: 2.4em;
}
</pre>
<p><strong>●モバイル時の「当サイト」の上の余白</strong></p>
<p>以下のように不要な高さ<span style="color: #ff0000">360px</span>が定義されています。<br />削除して下さい。</p>
<pre contenteditable="false">@media screen and (max-width: 834px) {
  .article-header.entry-header {
    height: 360px;
  }
}</pre>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>大門未知子</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62496</guid>
                    </item>
				                    <item>
                        <title>ヘッダーメニュー下と記事の余白調整方法</title>
                        <link>https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62495</link>
                        <pubDate>Wed, 08 Jun 2022 09:25:09 +0000</pubDate>
                        <description><![CDATA[CSS知識が浅いためご教示願います。
ヘッダーメニュー下のコンテンツ上部に余白があります。（”当サイトについて”の上部）このせいでモバイルでも同様に大きな余白があります。こちらを狭くしたいのですが、何が原因でどこを修正すれば良いか調べても分かりませんでした。


また記事の上部も余白がおかしい（こちらは必要な余白がない？）ようなのですが関連があるでしょうか？タイトルより...]]></description>
                        <content:encoded><![CDATA[<p>CSS知識が浅いためご教示願います。</p>
<p>ヘッダーメニュー下のコンテンツ上部に余白があります。（”当サイトについて”の上部）<br />このせいでモバイルでも同様に大きな余白があります。<br />こちらを狭くしたいのですが、何が原因でどこを修正すれば良いか調べても分かりませんでした。</p>
<p><img src="https://baby-doubleline.com/wp-content/uploads/2022/06/Top.png" /></p>
<p><img src="https://baby-doubleline.com/wp-content/uploads/2022/06/Mobile.png" /></p>
<p><br /><br />また記事の上部も余白がおかしい（こちらは必要な余白がない？）ようなのですが関連があるでしょうか？<br />タイトルよりも本文が上に表示されてしまいます。画像はアイキャッチで挿入しています。</p>
<p><img src="https://baby-doubleline.com/wp-content/uploads/2022/06/Write.png" /></p>
<p> </p>
<p>----------------------------------------------<br />サイト名：Double Line<br />サイトURL：https://baby-doubleline.com<br />ホームURL：https://baby-doubleline.com<br />コンテンツURL：/wp-content<br />インクルードURL：/wp-includes/<br />テンプレートURL：/wp-content/themes/cocoon-master<br />スタイルシートURL：/wp-content/themes/cocoon-child-master<br />親テーマスタイル：/wp-content/themes/cocoon-master/style.css<br />子テーマスタイル：/wp-content/themes/cocoon-child-master/style.css<br />スキン：/wp-content/themes/cocoon-master/skins/bizarre-foods-whiteramen/style.css<br />WordPressバージョン：6.0<br />PHPバージョン：7.4.29<br />ブラウザ：Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36<br />サーバーソフト：Apache<br />サーバープロトコル：HTTP/1.1<br />エンコーディング：gzip, deflate, br<br />言語：ja,en-US;q=0.9,en;q=0.8<br />----------------------------------------------<br />テーマ名：Cocoon<br />バージョン：2.4.5.4<br />カテゴリ数：5<br />タグ数：7<br />ユーザー数：1<br />----------------------------------------------<br />子テーマ名：Cocoon Child<br />バージョン：1.1.3<br />style.cssサイズ：3826バイト<br />functions.phpサイズ：206バイト<br />----------------------------------------------<br />Gutenberg：1<br />AMP：1<br />PWA：0<br />Font Awesome：5<br />Auto Post Thumbnail：0<br />Retina：0<br />ホームイメージ：/wp-content/uploads/2022/05/Logo-Circle-DL.png<br />----------------------------------------------<br />ブラウザキャッシュ有効化：0<br />HTML縮小化：0<br />CSS縮小化：0<br />JavaScript縮小化：0<br />Lazy Load：0<br />WEBフォントLazy Load：0<br />----------------------------------------------<br />利用中のプラグイン：<br />Akismet Anti-Spam 4.2.4<br />BackWPup 3.10.0<br />Contact Form 7 5.5.6.1<br />Easy Google Fonts 2.0.4<br />Site Kit by Google 1.75.0<br />----------------------------------------------</p>]]></content:encoded>
						                            <category domain="https://wp-cocoon.com/community/customs/">CSSカスタマイズ相談</category>                        <dc:creator>Mellow Ordinary</dc:creator>
                        <guid isPermaLink="true">https://wp-cocoon.com/community/customs/%e3%83%98%e3%83%83%e3%83%80%e3%83%bc%e3%83%a1%e3%83%8b%e3%83%a5%e3%83%bc%e4%b8%8b%e3%81%a8%e8%a8%98%e4%ba%8b%e3%81%ae%e4%bd%99%e7%99%bd%e8%aa%bf%e6%95%b4%e6%96%b9%e6%b3%95/#post-62495</guid>
                    </item>
							        </channel>
        </rss>
		