<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>キッチンDIY | Party Kitchen</title>
	<atom:link href="https://partykitchen.jp/category/kitchenstyle/kitchen_diy/feed/" rel="self" type="application/rss+xml" />
	<link>https://partykitchen.jp</link>
	<description>料理を楽しくする動画メディア</description>
	<lastBuildDate>Thu, 15 Aug 2019 08:15:01 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.24</generator>
	<item>
		<title>キッチンの場所別：収納DIYアイデアまとめ</title>
		<link>https://partykitchen.jp/storage_diy_kitchen/</link>
				<comments>https://partykitchen.jp/storage_diy_kitchen/#respond</comments>
				<pubDate>Thu, 27 Sep 2018 03:10:53 +0000</pubDate>
		<dc:creator><![CDATA[PartyKitchen編集部]]></dc:creator>
				<category><![CDATA[キッチンDIY]]></category>

		<guid isPermaLink="false">https://partykitchen.jp/?p=3823</guid>
				<description><![CDATA[<p>&#160; 料理がお好きな方ほど調味料や調理道具が充実し、キッチンの片づけが大変になっていくのではないでしょうか。収納場所が多ければ良いのですが、お...</p>
<p>The post <a href="https://partykitchen.jp/storage_diy_kitchen/">キッチンの場所別：収納DIYアイデアまとめ</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></description>
								<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="font-weight: 400;">料理がお好きな方ほど調味料や調理道具が充実し、キッチンの片づけが大変になっていくのではないでしょうか。収納場所が多ければ良いのですが、お住まいの場所によっては少ないスペースに何とかものを収めなければいけません。収納方法を工夫することで、快適なキッチンを目指しましょう。今回は、キッチンの場所や片づけたいもの別の収納DIYアイデアをご紹介します。キッチンの整理整頓にお悩みの方は、ぜひ参考にしてみてください。</span></p>
<h4 class="style4a"><b>冷蔵庫の収納</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B072N4Q772" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B01B144S9C" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B072N4Q772-B01B144S9C-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">冷蔵庫の扉側にチューブ型の調味料を置いている方は、ぜひフック付きのピンチを使った収納を試してみてください。チューブをピンチではさんで扉にぶらさげるだけですが、調味料の取り出しやすさが格段に変わります。ピンチを取り外さなくても調味料の使用は可能なため、冷蔵庫に戻すときは再び扉へフックをかけるだけです。</span></p>
<p><span style="font-weight: 400;">冷蔵庫の中で、もっとも腐らせてしまうことが多い食材は野菜です。</span></p>
<p><span style="font-weight: 400;">冷蔵庫の種類にもよりますが、野菜の保存は引き出し式の野菜室で行っている方が多いのではないでしょうか。引き出しタイプの野菜室は便利ですが、奥にしまっておいた野菜に気づかず腐らせてしまうこともあります。せっかくの食材を無駄にしないよう、冷蔵庫内に何があるかひと目でわかるような収納を心がけましょう。野菜室には、紙袋で仕切りを作って立てておくことがおすすめです。仕切りを作ることでほかの野菜とぶつかり合って痛んでしまうのを防ぐ効果もあります。</span></p>
<h4 class="style4a"><b>壁面収納</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B000Y06HAI" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B01LYZ80CS" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B000Y06HAI-B01LYZ80CS-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">キッチンの限られたスペースをうまく活用するには、壁面収納を利用することをおすすめします。たとえば、お玉やキッチンバサミなどの調理道具は、手の届く場所にかけておくと便利です。キッチンの壁にワイヤーネットを設置してフックを取り付け、調理道具をかけられる壁面収納を作りましょう。ワイヤーネット以外では、すのこや有孔ボードも同じように使えます。</span></p>
<p><span style="font-weight: 400;">賃貸にお住まいの場合や壁に釘を打つことに抵抗のある方は、突っ張り棒を利用して壁面収納を固定しましょう。突っ張り棒にはプラスチック製のものもあれば丈夫なステンレス製、木材を利用したものもあります。プラスチック製のものがいちばんお手軽で、長さによっては100均でも手に入ります。突っ張り棒を複数本立て、結束バンドでワイヤーネットを固定しましょう。強度が気になる方は針金を巻いてみてください。木製の有孔ボードやすのこを使用する場合は、水に強くなるようにニスを上塗りしておくと安心です。</span></p>
<h4 class="style4a"><b>調味料の収納</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B074W3PBD4" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00QLVWMKS" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B074W3PBD4-B00QLVWMKS-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">キッチンはカラフルなパッケージの調味料が並んでいるため、雑然と見えてしまうことが多い場所です。すっきりと見せたい方は、調味料をシンプルな容器に移し替えてみましょう。調味料入れは100均やホームセンター、その他雑貨店で同じシリーズのものを買いそろえることをおすすめします。違うメーカーの容器ではサイズが異なり、収納時にデッドスペースが生まれてしまうことがあるためです。</span></p>
<p><span style="font-weight: 400;">調味料入れのデザインにこだわれば、カフェやレストランのような空間の演出もできるようになります。お好みの容器が見つからなければ、自分の手でリメイクするのも楽しそうです。ふたに色を塗ったり容器に貼るラベルを自作したりして、こだわりの調味料入れを作ってみてはいかがでしょうか。アレンジが難しいという方は、マスキングテープを有効活用しましょう。かわいい柄のマスキングテープを瓶に貼り、調味料の名前を書くだけでもおしゃれでオリジナリティのある容器になります。</span></p>
<h4 class="style4a"><b>食器の収納</b></h4>
<p><img class="alignnone wp-image-4711" src="http://partykitchen.jp/wp-content/uploads/2018/06/dish-shelf-1290426_960_720.jpg" alt="" width="400" height="400" /></p>
<p><span style="font-weight: 400;">食器はものによって大きさや形が異なるため、収納しにくいアイテムのひとつです。食器棚やシンクの下の引き出しなど、場所ごとに収納の工夫をしてみましょう。</span></p>
<p><span style="font-weight: 400;">小さいお皿やコースターなどをシンク下に収納するときは、種類ごとに重ねて置いておく方が多いのではないでしょうか。そうすると、引き出しの開閉時に積み上げたお皿が崩れてくることがあります。こまごましたものは、かごを用意してまとめて入れるのがおすすめです。</span></p>
<p><span style="font-weight: 400;">頻繁に使うカップやお皿は、思い切って見せる収納にしてしまうのも良いでしょう。マグカップのように取っ手が付いているものであれば、フックに吊り下げておくことも可能です。また、キッチンの出窓にあるデッドスペースを利用し、収納棚を設置しても良さそうです。100均にあるキューブ型の木箱に好きな色を塗り、いくつか接着剤でつなげれば完成です。棚の上にインテリア雑貨を置いて飾りつけを楽しむこともできるでしょう。</span></p>
<h3 class="style3a"><b>まとめ</b></h3>
<p><span style="font-weight: 400;">キッチンはものが多く、家の中でも収納が難しいスペースです。それに加えて、出窓や冷蔵庫と壁の隙間など、使っていないスペースが意外と存在します。キッチンの空間を上手に活用するためにDIYを取り入れ、収納場所を増やしましょう。必要な材料はホームセンターや100均で手軽に手に入るため、費用が安く済む点も魅力です。DIYは収納用品を購入するのと違って手間がかかりますが、自分好みのテイストのグッズを作り出すことが可能です。</span></p>
<ul>
<li><span style="font-weight: 400;">木のぬくもりを生かしたナチュラルなキッチン</span></li>
<li><span style="font-weight: 400;">カフェ風のおしゃれなキッチン</span></li>
<li><span style="font-weight: 400;">黒やシルバーを基調とした男前インテリアキッチン</span></li>
</ul>
<p><span style="font-weight: 400;">など、ご自分の好きな雰囲気の収納用品をDIYして、理想のキッチンへ近づけてみてください。</span></p><p>The post <a href="https://partykitchen.jp/storage_diy_kitchen/">キッチンの場所別：収納DIYアイデアまとめ</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></content:encoded>
							<wfw:commentRss>https://partykitchen.jp/storage_diy_kitchen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>100均グッズでできちゃう！キッチンDIYアイデア</title>
		<link>https://partykitchen.jp/100yen_diy/</link>
				<comments>https://partykitchen.jp/100yen_diy/#respond</comments>
				<pubDate>Thu, 06 Sep 2018 12:00:50 +0000</pubDate>
		<dc:creator><![CDATA[PartyKitchen編集部]]></dc:creator>
				<category><![CDATA[キッチンDIY]]></category>

		<guid isPermaLink="false">https://partykitchen.jp/?p=3825</guid>
				<description><![CDATA[<p>&#160; 調味料や食材のストック、調理道具、食器など、ものが増えていきがちなキッチン。ご自宅のつくりによっては、収納場所が足りないという悩みをお持...</p>
<p>The post <a href="https://partykitchen.jp/100yen_diy/">100均グッズでできちゃう！キッチンDIYアイデア</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></description>
								<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="font-weight: 400;">調味料や食材のストック、調理道具、食器など、ものが増えていきがちなキッチン。ご自宅のつくりによっては、収納場所が足りないという悩みをお持ちの方も多いのではないでしょうか。きれいに整理されたキッチンを手に入れたい方は、収納グッズをDIYすることがおすすめです。今回は、100均の素材を使った簡単なDIYアイデアをご紹介します。かごやトレー、ワイヤーラック、ファイルボックスなどの身近な素材にひと工夫を加え、便利な収納グッズを作りましょう。</span></p>
<h4 class="style4a"><b>かご・トレーを使ったDIYアイデア</b></h4>
<p><span style="font-weight: 400;">100均で買えるかごは、そのまま置くだけでも使える優秀な収納グッズです。プラスチック製のかごの場合は、表面にペイントすることでオリジナリティのあるケースを作ることができます。100均に販売しているステンシルシールを使えば、簡単にペイントすることができるでしょう。</span></p>
<p><span style="font-weight: 400;">小さなトレーは、引き出しの中の細かいものを仕切るときに役立ちます。引き出しの長さをはかり、適切なサイズのトレーを購入しましょう。また、トレーにお好みの柄の布を貼りつけ、カトラリーケースを自作することもできます。お気に入りのカトラリーケースを置いて食事をすれば、楽しく料理を味わえそうです。もちろん、カトラリーケースは来客時にも活躍します。食卓のインテリアと合わせたケースを作っておき、おしゃれなランチやディナーを演出しましょう。</span></p>
<h4 class="style4a"><b>ワイヤーラックを使ったDIYアイデア</b></h4>
<p><img class="alignnone wp-image-4689 size-medium" src="http://partykitchen.jp/wp-content/uploads/2018/06/kitchen-417637_960_720-225x300.jpg" alt="" width="225" height="300" /></p>
<p><span style="font-weight: 400;">ワイヤーを格子状に組んで作られたワイヤーラックは、DIYの強い味方です。そのまま置いて収納かごとして使うのはもちろん、ほかのグッズと組み合わせることによってさらに便利なキッチン収納をDIYすることができます。</span></p>
<p><span style="font-weight: 400;">ワイヤーラックと相性が良いのは、同じ素材でできたワイヤーネットです。ワイヤーネットを好きな場所に設置し、ワイヤーラックを結束バンドでくくりつけると収納棚ができあがります。ワイヤーネットと結束バンドは100均でも売っている店が多いため、材料を用意するのも簡単です。最近ではフックのついたワイヤーラックも販売されています。フックのついたタイプなら、結束バンドで固定しなくてもワイヤーラックを吊り下げておくことができるでしょう。</span></p>
<p><span style="font-weight: 400;">ワイヤーラックを使えば、机や棚に引き出しを作ることも可能です。机の天板や棚板にレールを取り付け、ワイヤーラックを差し込むだけで引き出しの完成です。このとき使うレールはホームセンターで本格的なものを購入しても良いですが、100均に売っている溝の付いたバーでも代用できます。</span></p>
<h4 class="style4a"><b>突っ張り棒を使ったDIYアイデア</b></h4>
<p><span style="font-weight: 400;">100均にはさまざまな長さの突っ張り棒が販売されています。短い突っ張り棒は、棚や引き出し内の仕切りとして役立ちます。たとえば、棚の中に突っ張り棒を何本か縦に設置すると、まな板やお盆などを立てかけておける仕切りができます。スペースを取りがちな大きい平皿も、このように立てかけておけばすっきりと収納できるでしょう。</span></p>
<p><span style="font-weight: 400;">また、背の高い醤油やサラダ油などのボトルを引き出しにしまっている方も多いのではないでしょうか。高さのあるものは、引き出しの開け閉めでひっくり返ってしまうことがあります。引き出しの中に突っ張り棒をいくつか取り付ければ品物が固定されるため、転倒することが少なくなるでしょう。</span></p>
<p><span style="font-weight: 400;">突っ張り棒は縦にして使うことで柱の役目も果たしてくれます。2本立てた突っ張り棒の間にワイヤーネットを取り付ければ、調理道具をかけられる壁面収納のできあがりです。ワイヤーネットにかごを設置し、調味料を入れても便利です。</span></p>
<h4 class="style4a"><b>ファイルボックスを使ったDIYアイデア</b></h4>
<p><img class="alignnone wp-image-4707" src="http://partykitchen.jp/wp-content/uploads/2018/06/file-folders-923523_960_720.jpg" alt="" width="450" height="300" /></p>
<p><span style="font-weight: 400;">ファイルボックスは、深い引き出しの中を整理するときに役立つアイテムです。通常、引き出し内に鍋やフライパンをしまうときは、積み重ねて収納するしかありません。積み重ね式の収納は、下のほうにあるものを取るときに不便です。鍋やフライパンは、ファイルボックスを引き出しに設置して仕切りを作り、立てて収納することがおすすめです。ほかにも、お皿や缶詰、調理道具など、さまざまな品物を立てて収納したいときにファイルボックスは役立ちます。</span></p>
<p><span style="font-weight: 400;">100均にあるファイルボックスは、おしゃれなデザインのものも多く販売されています。自分の好みに合う柄がなければ、ラッピングシートや壁紙などを貼ってリメイクしてみてください。同じ柄のボックスを使うことで統一感が生まれ、整った部屋の印象が生まれるでしょう。</span></p>
<h3 class="style3a"><b>まとめ</b></h3>
<p><span style="font-weight: 400;">100均では、キッチン収納が簡単に作れるDIY素材が豊富です。かごやトレー、ファイルボックスなどはそのままでも使用できますが、ひと工夫加えることでさらに便利なものに生まれ変わります。現在は多くのホームページで100均グッズを使ったDIYの実例が掲載されているので、興味のある方は検索してみることをおすすめします。</span></p>
<p><span style="font-weight: 400;">100均DIYの良さは、何といっても予算が少ないことです。失敗した時のリスクも大きくないため、DIYに慣れていない方でもトライしやすいのではないでしょうか。収納グッズが作れると、生活が便利になることはもちろん、ものを作り出す達成感も味わうことができます。まずは簡単な工作からスタートし、100均DIYの楽しさを感じてみてください。</span></p><p>The post <a href="https://partykitchen.jp/100yen_diy/">100均グッズでできちゃう！キッチンDIYアイデア</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></content:encoded>
							<wfw:commentRss>https://partykitchen.jp/100yen_diy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>憧れ！カフェ風キッチンカウンターDIYに挑戦</title>
		<link>https://partykitchen.jp/kitchencounter_diy/</link>
				<comments>https://partykitchen.jp/kitchencounter_diy/#respond</comments>
				<pubDate>Sun, 26 Aug 2018 06:00:07 +0000</pubDate>
		<dc:creator><![CDATA[PartyKitchen編集部]]></dc:creator>
				<category><![CDATA[キッチンDIY]]></category>

		<guid isPermaLink="false">https://partykitchen.jp/?p=3832</guid>
				<description><![CDATA[<p>&#160; 開放的でおしゃれなカフェ風のキッチンカウンター。「カフェが好きだけどなかなか行けない」「自宅をカフェのようなおしゃれな空間に模様替えした...</p>
<p>The post <a href="https://partykitchen.jp/kitchencounter_diy/">憧れ！カフェ風キッチンカウンターDIYに挑戦</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></description>
								<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="font-weight: 400;">開放的でおしゃれなカフェ風のキッチンカウンター。「カフェが好きだけどなかなか行けない」「自宅をカフェのようなおしゃれな空間に模様替えしたい」などのお悩みを持つ方は、DIYでキッチンカウンター作りに挑戦してみてはいかがでしょうか。今回は、ご自宅でできる簡単なキッチンカウンターのDIYアイデアをいくつかご紹介します。こだわりのキッチンカウンターを自作して、毎日の食事やホームパーティーなどをさらに楽しみましょう。</span></p>
<h4 class="style4a"><b>一度は夢見るカウンターキッチン</b></h4>
<p><span style="font-weight: 400;">台所にいながらリビングルームを見渡せるカウンターキッチンは、開放的な雰囲気が魅力です。カウンターキッチンであれば料理中も家族との会話が弾むほか、食器の持ち運びもスムーズになります。小さいお子さまのいる家庭なら、キッチンにいてもお子さまの様子を見守ることができるため安心です。ホームパーティーがお好きな方なら、来客時もゲストとの会話を楽しみながら食事を用意することができそうです。</span></p>
<p><span style="font-weight: 400;">魅力的なカウンターキッチンですが、オーダーメイドで設置しようとすると費用が高額になってしまうのも事実です。賃貸物件にお住まいの場合はリフォームすることも難しいでしょう。ただ、そういった方もあきらめる必要はありません。カウンターキッチンはご自分の手で簡単にDIYすることができるのです。以下にご紹介する方法で、ぜひ自作してみてください！</span></p>
<h4 class="style4a"><b>カラーボックスでDIY</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B000T4K65G" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00FE5E8V8" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B000T4K65G-B00FE5E8V8-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">カウンターキッチンをDIYする上でもっとも簡単なのがカラーボックスを用いた方法です。作り方は簡単で、適度な高さのカラーボックスを二つ用意し、天板を渡して固定するだけで済みます。カラーボックスにより収納場所も広がるため、設置すれば以前よりも便利にキッチンを使えるようになるでしょう。</span></p>
<p><span style="font-weight: 400;">天板は丈夫な板を使い、水に強いニスやワックスで塗装することをおすすめします。ニスやワックスで保護していなければ、せっかく作ったカウンターキッチンの劣化が早くなってしまいます。</span></p>
<p><span style="font-weight: 400;">カラーボックスで作るカウンターキッチンはさまざまなアレンジが可能です。カラーボックスの裏面を隠すように板を貼り、好きなように塗装します。アンティークの風合いがお好きな方は、「シャビー加工」がおすすめです。ペンキをひび割れさせる効果のある「クラック塗料」を使ったり、茶色の塗料でわざと汚れを作ったりしてみてください。</span></p>
<h4 class="style4a"><b>ディアウォールでDIY</b></h4>
<p><span style="font-weight: 400;">ディアウォールとは　2×4木材を突っ張り棒に変身させることができる商品です。ディアウォールを利用すれば天井まで届く大きな棚や部屋の間仕切りなども作れるようになります。壁に穴をあけることなく設置できるディアウォールは、賃貸でのDIYの強い味方です。</span></p>
<p><span style="font-weight: 400;">ディアウォールで2×4材の柱を数本立てて天井まで突っ張り、板を固定すればカウンターキッチンのできあがりです。天井から床まで柱が続いているため、好きな箇所に棚を作ることもできます。上のほうに扉を作って黒板シートを貼れば、カフェ風のキッチンに早変わりです。好きなイラストやメニューなどを手書きしてみましょう。</span></p>
<p><span style="font-weight: 400;">ディアウォールでカウンターキッチンを作る際は、説明書にある耐荷重をよく読んでおきましょう。ディアウォールが重みに耐えきれず、板が倒れてしまっては危険です。基本的に丈夫なディアウォールですが、メンテナンスは定期的に行ってください。</span></p>
<h4 class="style4a"><b>取り付けるだけ！折りたたみ式カウンターテーブルもある</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00YZMVFYY" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B00YZMVFYY-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">スペースの問題でカウンターキッチンが設置できないご家庭は、折りたたみできるカウンターテーブルがおすすめです。使わないときはたたんでおけるため、部屋を圧迫することもありません。主に用意するものは折りたたみ機能の付いた棚受け金具と天板です。テーブルを設置したい場所に金具をつけ、天板を固定すれば完成です。</span></p>
<p><span style="font-weight: 400;">カウンターテーブルは料理をする場所が足りないときや、来客時に机が足りないときなどに便利です。前述したディアウォールの柱に取り付けても良いでしょう。折りたたみ機能のついた金具で注意したい点は、手元確認せず開閉すると指をはさんでしまう可能性があることです。開閉時や取り付けの際、十分に注意して取り扱ってください。</span></p>
<h3 class="style3a"><b>まとめ</b></h3>
<p><span style="font-weight: 400;">あこがれのキッチンカウンターは、DIYで手に入れることが可能です。自作するのは一見すると難しそうにも見えますが、自分でしなければならない工程は意外と多くありません。</span></p>
<p><span style="font-weight: 400;">木材に関しては、カットサービスのあるお店で購入すれば、自分でノコギリを用意する必要もありません。工具を貸してくれるホームセンターを利用し、レンタルで工具をそろえてしまうことも可能です。塗装が面倒な場合は、すでに塗料が塗られている木材を買うことをおすすめします。ホームセンターやインターネット通販などで入手可能です。</span></p>
<p><span style="font-weight: 400;">DIYで作ったキッチンカウンターには愛着もわきやすく、料理や食事が現在よりも楽しくなるのではないでしょうか。ぜひDIYで世界にひとつしかないキッチンカウンターを作ってみてください。</span></p><p>The post <a href="https://partykitchen.jp/kitchencounter_diy/">憧れ！カフェ風キッチンカウンターDIYに挑戦</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></content:encoded>
							<wfw:commentRss>https://partykitchen.jp/kitchencounter_diy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>古いキッチン周りをおしゃれに変身！賃貸でもできるかんたんDIY</title>
		<link>https://partykitchen.jp/remake_diy/</link>
				<comments>https://partykitchen.jp/remake_diy/#respond</comments>
				<pubDate>Sun, 22 Jul 2018 03:21:26 +0000</pubDate>
		<dc:creator><![CDATA[PartyKitchen編集部]]></dc:creator>
				<category><![CDATA[キッチンDIY]]></category>

		<guid isPermaLink="false">https://partykitchen.jp/?p=3829</guid>
				<description><![CDATA[<p>&#160; キッチンが古い、長年にわたって染みついた汚れが取れないなど、キッチンの内装に関する悩みをお持ちの方も多いのではないでしょうか。キッチンが...</p>
<p>The post <a href="https://partykitchen.jp/remake_diy/">古いキッチン周りをおしゃれに変身！賃貸でもできるかんたんDIY</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></description>
								<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="font-weight: 400;">キッチンが古い、長年にわたって染みついた汚れが取れないなど、キッチンの内装に関する悩みをお持ちの方も多いのではないでしょうか。キッチンが汚いと料理に対する気持ちもなかなか前向きになりませんよね。そんなときは、簡単なDIYでキッチンの模様替えにチャレンジしてみましょう。賃貸物件であっても、工夫次第でDIYすることは可能です。今回は、お手頃な素材でできるキッチンDIYのアイデアや、賃貸物件でも原状回復可能な方法についてご紹介します。</span></p>
<h4 class="style4a"><b>長く過ごすキッチンだからこそ見た目にこだわる</b></h4>
<p><span style="font-weight: 400;">キッチンは毎日のように過ごす場所です。せっかくならキッチンの内装にこだわり、お気に入りの空間を作り上げてしまいましょう。</span></p>
<p><span style="font-weight: 400;">最近では、モザイクタイルを貼ってキッチンの雰囲気を変えるDIYが流行しています。モザイクタイルとは小さなタイルのことです。広い場所に貼るのに適したシートタイプと、小さなものに貼るのに適したバラのタイプが販売されています。キッチンの壁やシンクなどの広範囲にタイルを貼るときは、シートタイプのタイルを使いましょう。</span></p>
<p><span style="font-weight: 400;">賃貸にお住いの方は、引っ越すときのことを考えると、なかなかDIYに手を出せないという方も多いのではないでしょうか。原状回復を可能にするには、プラダンを敷いた上にタイルを貼ることがおすすめです。プラダンとは、プラスチック製の段ボールのことです。ホームセンターに行けば、かなり大きなサイズのものも販売しています。</span></p>
<p><span style="font-weight: 400;">タイルを貼る手順は簡単です。まずはタイルを貼りたい場所に接着剤を均一に塗ります。タイルをしっかりと押し付けるようにして貼り、接着剤が乾くまで待ちましょう。そのままでは目地が目立ってしまうため、目地材を塗り込んで仕上げに拭き取れば完成です。接着剤や目地材などで手が荒れてしまうことがあるため、手袋をご利用ください。</span></p>
<h4 class="style4a"><b>リメイクシートで即席衣替え</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00UV2EMF6" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B01KXTATQ2" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B00UV2EMF6-B01KXTATQ2-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">タイルを貼るよりもお手軽にキッチンの雰囲気を変えたい方には、リメイクシートの使用をおすすめします。現在は、100均でもさまざまな柄のリメイクシートを手に入れることができます。タイル地はもちろん、レンガ風の柄や木目調のシートなどもあるので、お好みによって選んでみてください。</span></p>
<p><span style="font-weight: 400;">キッチンの壁や戸棚の扉に貼ることはもちろん、棚の内側にリメイクシートを貼ることもできます。戸棚の内側と外側の両方にシートを貼ることで、より本格的なリメイクが楽しめるでしょう。</span></p>
<p><span style="font-weight: 400;">リメイクシートを貼る際は、壁紙や棚の素材に注意してみてください。素材によっては、リメイクシートをはがした際に糊の跡が残ってしまうことがあります。粘着力の弱いマスキングテープを使用していても、テープの劣化により糊が残ってしまうことがあるそうです。リメイクシートを貼る際は、家の素材に合ったテープや糊を用意しましょう。</span></p>
<h4 class="style4a"><b>ペイント板を扉に貼りつけて自分好みに</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B0091FTVM8" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00AJAR8JW" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B0091FTVM8-B00AJAR8JW-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">木の質感を大事にしたい方は、リメイクシートではなくご自分で加工した木材を貼りつけてみましょう。使用する板は100均のMDF材が手軽です。MDF材ならカッターで加工することも可能なほど薄いため、力の弱い方でも簡単に切断できます。</span></p>
<p><span style="font-weight: 400;">ペイント材にはペンキ、ステイン、ワックスなどさまざまな種類があります。木工用の塗料であれば、お好きなものを選んで問題ありません。気に入ったカラーがあれば、100均にある塗料を購入しても良いでしょう。</span></p>
<p><span style="font-weight: 400;">木材に塗料を塗ってじゅうぶんに乾かしたら、扉や棚に貼りつけていきます。取っ手のついた扉に貼るときは、いちど取っ手を外してから板を貼ります。キリやドリルなどで取っ手を通す穴をあけ、再度取りつけましょう。</span></p>
<h4 class="style4a"><b>黒板シートでカフェ風に</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B0757W28FH" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B071CL24WD" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B0757W28FH-B071CL24WD-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">カフェ風のキッチンにアレンジしたいときは、黒板シートを貼るのが手軽です。吊戸棚に黒板シートを貼ってチョークで好きなことばやメニューなどを書けばカフェらしいキッチンができあがります。シンク下の棚や壁の下側に黒板シートを貼れば、お子さまといっしょにイラストを描くこともできます。カラフルなチョークを用意して黒板をおしゃれに彩りましょう。</span></p>
<p><span style="font-weight: 400;">黒板シートは、キッチンをスタイリッシュな印象にしたいときにも役立ちます。たとえば、生活感の出やすい換気扇フードに黒板シートを貼れば、クールな印象に変わります。同じように、キッチンの雰囲気を左右しやすい冷蔵庫に黒板シートを貼ることもおすすめです。黒く底光りする冷蔵庫はシンプルでクールな印象を与えます。冷蔵庫の扉にそのまま文字が書けるため、メニューボード代わりにしたり、メモとして使ったりすることも可能です。</span></p>
<h3 class="style3a"><b>まとめ</b></h3>
<p><span style="font-weight: 400;">キッチンは長い時間を過ごす空間だからこそ、自分好みの部屋に仕立てていきたいものです。100均やホームセンター、ネット通販でも手に入る素材でご自宅のキッチンをDIYしましょう。貼りつけるだけで手軽に印象を変えられるリメイクシートや黒板シートはDIY初心者の方にもおすすめの素材です。どちらも100均で売っており、それほど費用がかからない点も魅力です。</span></p>
<p><span style="font-weight: 400;">少しだけ本格的なDIYに取り組みたい方は、タイルやペイントした木材をキッチンに貼りつけてみてください。タイルはシート状のものを使えば一気に貼ることができて便利です。木材をペイントする際は木のトゲでけがをしないよう、紙やすりで磨いておきましょう。</span></p>
<p><span style="font-weight: 400;">ご紹介した方法はどれもお手頃で素材が用意できます。キッチンの模様替えをお考えの方は、この機会にDIYにチャレンジしてみてはいかがでしょうか。</span></p><p>The post <a href="https://partykitchen.jp/remake_diy/">古いキッチン周りをおしゃれに変身！賃貸でもできるかんたんDIY</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></content:encoded>
							<wfw:commentRss>https://partykitchen.jp/remake_diy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>キッチンの収納力アップ！おてがる収納棚DIY術</title>
		<link>https://partykitchen.jp/storage_diy_02/</link>
				<comments>https://partykitchen.jp/storage_diy_02/#respond</comments>
				<pubDate>Thu, 12 Jul 2018 03:18:24 +0000</pubDate>
		<dc:creator><![CDATA[PartyKitchen編集部]]></dc:creator>
				<category><![CDATA[キッチンDIY]]></category>

		<guid isPermaLink="false">https://partykitchen.jp/?p=3827</guid>
				<description><![CDATA[<p>キッチンで必要な品物の量に対して収納場所が少ないと感じている方は多いのではないでしょうか。キッチンに収納する場所が少ない場合は、収納棚を増やしてみるこ...</p>
<p>The post <a href="https://partykitchen.jp/storage_diy_02/">キッチンの収納力アップ！おてがる収納棚DIY術</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></description>
								<content:encoded><![CDATA[<p><span style="font-weight: 400;">キッチンで必要な品物の量に対して収納場所が少ないと感じている方は多いのではないでしょうか。キッチンに収納する場所が少ない場合は、収納棚を増やしてみることがおすすめです。購入するとそれなりに値段のかかる収納棚ですが、自作することで費用を格段に浮かせることができます。ここでは、手軽にDIYできる収納棚や、すでにお使いの棚の収納力をアップさせる方法についてもご紹介しています。お好みの方法でカスタムした収納棚を増やし、使い勝手の良いキッチンを獲得しましょう。</span></p>
<h3 class="style3a"><b>キッチン収納はいくらあっても足りない</b></h3>
<p><span style="font-weight: 400;">料理に対してこだわりがある方ほど、キッチンに多くの品物を置く必要があります。</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">中華鍋や寸胴などの大型調理用具</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">炊飯器やホットプレート、電子レンジ、ミキサーなどの家電</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">どんぶり、平皿、ガラスプレートなどさまざまな種類の食器</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">スパイスや醤油、料理酒などのボトル</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">キッチンペーパーやスポンジなどの備品</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">冷蔵庫に入りきらないストックの食材</span></li>
</ul>
<p><span style="font-weight: 400;">など、このほかにも数えきれないほどのアイテムをお持ちの方もいるのではないでしょうか。いくらキッチンに大きな収納棚やシンク下収納があったとしても、ものが多ければ簡単に収納許容量を超えてしまいます。現在キッチンにものがあふれている方は、収納のやり方を工夫する必要があります。これからご紹介するアイデアを取り入れてみてはいかがでしょうか？</span></p>
<h4 class="style4a"><b>既存の棚の収納力をアップさせるアイデア</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B001U3YT80" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B07179BQK3" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B001U3YT80-B07179BQK3-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">キッチンが片づかないという方は、いま設置されている棚の収納力をアップさせてみましょう。たとえば、横に大きく広がっているお皿は、積み重ねて置いておくと棚の面積を圧迫してしまいます。本立てやファイルボックスなどを使って、お皿を立てて収納すれば食器棚のスペースが広がるでしょう。</span></p>
<p><span style="font-weight: 400;">キッチン下に収納がある場合、たいていは空間の上の部分にデッドスペースが生まれています。このような場合は突っ張り棒とワイヤーネットの出番です。収納上部の空間に、床と平行になるように突っ張り棒を二本渡し、ワイヤーネットを取り付けます。ワイヤーネットの上にアルミホイルやラップなどを置いておけるようになり、空間を有効活用することが可能です。</span></p>
<h4 class="style4a"><b>すのこを使ったキッチン収納DIY</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00KHHG1OU" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B01I18K9IU" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B00KHHG1OU-B01I18K9IU-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">100均やホームセンターで手に入るすのこは、加工しやすくDIYに向いた商品です。大きさが丁度良ければ、すのこを切らずに組み合わせるだけで収納棚を作ることもできます。木材を分解し、隙間収納可能な細身のラックを製作するのも可能です。</span></p>
<p><span style="font-weight: 400;">すのこはDIY素材として優秀で、さまざまなものに生まれ変わる可能性を秘めています。</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">すのこを箱型に組んでキャスターを付けたペットボトル収納ワゴン</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">ワイヤーラックと組み合わせて作ったキッチンワゴン</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">出窓に設置できる壁面収納</span></li>
</ul>
<p><span style="font-weight: 400;">など、すのこ収納のバリエーションは豊富です。軽量のものを乗せるだけなら、釘を打たずに接着剤をつけるだけで良い点も魅力でしょう。色塗りもしやすいため、ペンキやステインなど、ご自分の好きな塗料で仕上げるのも簡単です。</span></p>
<h4 class="style4a"><b>100均で作る調味料ラックDIY</b></h4>
<p><span style="font-weight: 400;">いつの間にか増えてしまう調味料は、専用の調味料ラックをDIYすることでひとまとめに片付けましょう。調味料ラックは、100均で販売している素材だけでも簡単に作ることができます。調味料はできるだけ料理する場所の近くに置いておくほうが便利です。そのため、調味料ラックは水や熱に強い素材を使ったほうが良いでしょう。おすすめはビニール素材でコーティングされているワイヤーラックやワイヤーネットです。大きめのワイヤーネットにワイヤーラックを固定すれば、簡単に調味料ラックができあがります。</span></p>
<p><span style="font-weight: 400;">さきほどご紹介したすのこでも、調味料ラックを作ることは可能です。木の風合いをいかしたキッチンにしたいときは、100均のすのこを利用してみてください。作り方は簡単で、すのこを切断したものを2枚用意して向かい合わせになるように立て、薄い板を渡して固定するだけです。薄い板も100均で売っているので、格安の値段でラックが完成するでしょう。</span></p>
<h4 class="style4a"><b>カラーボックスで作る食器棚DIY</b></h4>
<img src="https://ir-jp.amazon-adsystem.com/e/ir?t=edgeneer-22&l=alb&o=9&a=B00FE5E8V8" width="1px" height="1px" alt="" style="position: fixed !important; bottom: -1px !important; right: -1px !important; border:none !important; margin:0px !important;" /><!-- Ad Template with Carousel Layout-->
 <!--Section tag for iterating through the list of items-->
<div class="aalb-product-carousel-unit" id="aalb-B00FE5E8V8-JP-edgeneer-22-ProductCarousel">
  <h2 class="aalb-pc-ad-header">Products from Amazon.co.jp</h2> <!-- Title of the ad localized according to the marketplace picked from the AalbHeader tag-->
    <div class="aalb-pc-wrapper">
      <div class="aalb-pc-product-container">
        <ul class="aalb-pc-product-list">
                  </ul>
      </div>
    </div>
    <a href="javascript:void(0);" class="aalb-pc-btn-prev">‹</a>
    <a href="javascript:void(0);" class="aalb-pc-btn-next">›</a>
  </div>

<script>
  jQuery(document).ready(function() {

    var CONSTANTS = {
        productMinWidth : 185,
        productMargin   : 20
    };

    var $adUnits = jQuery('.aalb-product-carousel-unit');
    $adUnits.each(function() {
        var $adUnit           = jQuery(this),
            $wrapper          = $adUnit.find('.aalb-pc-wrapper'),
            $productContainer = $adUnit.find('.aalb-pc-product-container'),
            $btnNext          = $adUnit.find('.aalb-pc-btn-next'),
            $btnPrev          = $adUnit.find('.aalb-pc-btn-prev'),
            $productList      = $productContainer.find('.aalb-pc-product-list'),
            $products         = $productList.find('.aalb-pc-product'),
            productCount      = $products.length;

        if (!productCount) {
            return true;
        }

        var rows            = $adUnit.find('input[name=rows]').length && parseInt($adUnit.find('input[name=rows]').val(), 10);
        var columns         = $adUnit.find('input[name=columns]').length && parseInt($adUnit.find('input[name=columns]').val(), 10);

        if( columns ) {
            var productContainerMinWidth = columns * (CONSTANTS.productMinWidth + CONSTANTS.productMargin) + 'px';
            $adUnit.css( 'min-width', productContainerMinWidth );
            $productContainer.css( 'min-width', productContainerMinWidth );
            $products.filter( ':nth-child(' + columns + 'n + 1)' ).css( 'clear', 'both' );
        }

        if (rows && columns) {
            var cutOffIndex = (rows * columns) - 1;
            $products.filter(':gt(' + cutOffIndex + ')').remove();
        }

        function updateLayout() {
            var wrapperWidth = $wrapper.width();
            var possibleColumns = columns || parseInt( wrapperWidth / (CONSTANTS.productMinWidth + CONSTANTS.productMargin), 10 );
            var actualColumns = columns || possibleColumns < productCount ? possibleColumns : productCount;

            /**
             * The actual columns can be zero when the wraperwidth is less than sum of CONSTANTS.productMinWidth and
             * CONSTANTS.productMargin.The parseInt will use floor function and converts any value less than 1 to
             * zero.Therefore making actual columns 1 .
             **/
            if( actualColumns == 0 ) {
                actualColumns = 1;
            }

            var productWidth = parseInt( wrapperWidth / actualColumns, 10 ) - CONSTANTS.productMargin;

            $products.css( 'width', productWidth + 'px' );

            /**
             * Removing the Carousel navigation button when the number of products selected by admin is less
             * than the actual columns (the number of products) can be shown on screen
             **/
            if( productCount > actualColumns ) {
                $btnNext.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
                $btnPrev.css( 'visibility', 'visible' ).removeClass( 'disabled' ).unbind( 'click' );
            }
            $productContainer.jCarouselLite( {
                btnNext : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-next',
                btnPrev : '#' + $adUnit.attr( 'id' ) + ' .aalb-pc-btn-prev',
                visible : actualColumns,
                circular: false
            } );


        }

        updateLayout();
        jQuery(window).resize(updateLayout);
    });
});

/*!
 * jCarouselLite - v1.1 - 2014-09-28
 * http://www.gmarwaha.com/jquery/jcarousellite/
 * Copyright (c) 2014 Ganeshji Marwaha
 * Licensed MIT (https://github.com/ganeshmax/jcarousellite/blob/master/LICENSE)
*/

!function(a){a.jCarouselLite={version:"1.1"},a.fn.jCarouselLite=function(b){return b=a.extend({},a.fn.jCarouselLite.options,b||{}),this.each(function(){function c(a){return n||(clearTimeout(A),z=a,b.beforeStart&&b.beforeStart.call(this,i()),b.circular?j(a):k(a),m({start:function(){n=!0},done:function(){b.afterEnd&&b.afterEnd.call(this,i()),b.auto&&h(),n=!1}}),b.circular||l()),!1}function d(){if(n=!1,o=b.vertical?"top":"left",p=b.vertical?"height":"width",q=B.find(">ul"),r=q.find(">li"),x=r.size(),w=lt(x,b.visible)?x:b.visible,b.circular){var c=r.slice(x-w).clone(),d=r.slice(0,w).clone();q.prepend(c).append(d),b.start+=w}s=a("li",q),y=s.size(),z=b.start}function e(){B.css("visibility","visible"),s.css({overflow:"hidden","float":b.vertical?"none":"left"}),q.css({margin:"0",padding:"0",position:"relative","list-style":"none","z-index":"1"}),B.css({overflow:"hidden",position:"relative","z-index":"2",left:"0px"}),!b.circular&&b.btnPrev&&0==b.start&&a(b.btnPrev).addClass("disabled")}function f(){t=b.vertical?s.outerHeight(!0):s.outerWidth(!0),u=t*y,v=t*w,s.css({width:s.width(),height:s.height()}),q.css(p,u+"px").css(o,-(z*t)),B.css(p,v+"px")}function g(){b.btnPrev&&a(b.btnPrev).click(function(){return c(z-b.scroll)}),b.btnNext&&a(b.btnNext).click(function(){return c(z+b.scroll)}),b.btnGo&&a.each(b.btnGo,function(d,e){a(e).click(function(){return c(b.circular?w+d:d)})}),b.mouseWheel&&B.mousewheel&&B.mousewheel(function(a,d){return c(d>0?z-b.scroll:z+b.scroll)}),b.auto&&h()}function h(){A=setTimeout(function(){c(z+b.scroll)},b.auto)} function lt(a,b){return a<b;} function gt(a, b) { return a>b;} function i(){return s.slice(z).slice(0,w)}function j(a){var c;a<=b.start-w-1?(c=a+x+b.scroll,q.css(o,-(c*t)+"px"),z=c-b.scroll):a>=y-w+1&&(c=a-x-b.scroll,q.css(o,-(c*t)+"px"),z=c+b.scroll)}function k(a){0>a?z=0:a>y-w&&(z=y-w)}function l(){a(b.btnPrev+","+b.btnNext).removeClass("disabled"),a(z-lt(b.scroll,0)&&b.btnPrev||z+gt(b.scroll, y)-w&&b.btnNext||[]).addClass("disabled")}function m(c){n=!0,q.animate("left"==o?{left:-(z*t)}:{top:-(z*t)},a.extend({duration:b.speed,easing:b.easing},c))}var n,o,p,q,r,s,t,u,v,w,x,y,z,A,B=a(this);d(),e(),f(),g()})},a.fn.jCarouselLite.options={btnPrev:null,btnNext:null,btnGo:null,mouseWheel:!1,auto:null,speed:200,easing:null,vertical:!1,circular:!0,visible:3,start:0,scroll:1,beforeStart:null,afterEnd:null}}(jQuery);


</script>

<p><span style="font-weight: 400;">食器棚がない方、もしくは食器棚を増設したい方は、カラーボックスで食器棚をDIYしてみましょう。カラーボックスはお手頃で売られていることが多く、メーカーによっては、1000円以下で手に入るものもあります。</span></p>
<p><span style="font-weight: 400;">カラーボックスをそのまま使うと棚板が少なすぎる場合が多いため、DIYして棚板を増やすことがおすすめです。メーカーの出している棚板を追加購入して取り付けるか、お好きな板を探してきても良いでしょう。そのまま食器を収納するとほこりが気になるという方は、引き出しを作ることをおすすめします。カラーボックスの内側にレールを取り付け、サイズのぴったり合うかごを用意して引き出しがわりに使いましょう。最近はカラーボックス専用のレールも多数販売されているため、簡単に引き出しを作ることができるようになりました。</span></p>
<h3 class="style3a"><b>まとめ</b></h3>
<p><span style="font-weight: 400;">キッチン収納は限られたスペースをいかに生かすかが大切です。どうしても収納場所が足りない場合は、DIYして収納棚を増やしてしまいましょう。すのこやワイヤーネット、カラーボックスなど、身近な素材を使って簡単に作れます。これらの素材は、大掛かりな準備をしなくてもすぐにDIYをはじめられることが魅力です。最低限の用意として接着剤やカッターがあれば良いので、慣れていない方でも安心して作業に取り組めるでしょう。</span></p>
<p><span style="font-weight: 400;">ただ、カラーボックスを組み立てる際はドライバーが必要になることがあります。100均で売っているドライバーを使用しても良いですが、これから頻繁にDIYを行う予定の方は電動ドライバーを購入しても良いかもしれません。電動ドライバーは手でネジを回すよりも手早く作業を終わらせることができます。道具をうまく使いながら、気楽にDIYを楽しんでみてください。</span></p><p>The post <a href="https://partykitchen.jp/storage_diy_02/">キッチンの収納力アップ！おてがる収納棚DIY術</a> first appeared on <a href="https://partykitchen.jp">Party Kitchen</a>.</p>]]></content:encoded>
							<wfw:commentRss>https://partykitchen.jp/storage_diy_02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
