/*======================================
-------------フッターifarme-------------
======================================*/
/*.iframeWrap5 {
    padding-bottom: 52%;
}*/
@media screen and (max-width: 1024px) {
    .iframeWrap5 {
        padding-bottom: 100%;
    }   
}

/*======================================
---------------レイアウト---------------
======================================*/

/*10pxアキのグリッドレイアウトにする*/
.grd_gp10 {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
/*20pxアキのグリッドレイアウトにする*/
.grd_gp20 {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
/*均等2分割*/
.grd_col_2fr{
    grid-template-columns: 1fr 1fr;
}
/*均等3分割*/
.grd_col_3fr{
    grid-template-columns: 1fr 1fr 1fr;
}
/*均等4分割*/
.grd_col_4fr{
    grid-template-columns: 1fr 1fr 1fr 1fr; 
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_3_2_l {
    grid-template-columns: 3fr 2fr;
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_2_3_l {
    grid-template-columns: 2fr 3fr;
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_3_2_r {
    grid-template-columns: 3fr 2fr;
    grid-template-areas:
    "areaA areaB";
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_2_3_r {
    grid-template-columns: 2fr 3fr;
    grid-template-areas:
    "areaA areaB";
}
.grd_itm1{
    grid-area:areaA;
}
.grd_itm2{
    grid-area:areaB;
}
/*均等3分割SNS用*/
.grd_sns{
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}
/*sns内の画像サイズを40%に*/
.grd_sns img{
    width:40%;
}

@media (max-width: 767px){
/*スマホ表示の際、分割せず縦並び*/
    .grd_sp1fr{
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
/*スマホ表示の際、均等2分割横並び*/
    .grd_sp2fr{
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
/*スマホ表示の際、右の要素を上に表示*/
    .grd_col_3_2_r, .grd_col_2_3_r {
        grid-template-areas:
        "areaB"
        "areaA";
    }
  .grd_sns{
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    .grd_sns img{
        width:60%;
    }
}

/*----------下アキ----------*/
.row_bottom{
	margin-bottom:15px;
}
.row_bottom30{
	margin-bottom:30px;
}
.row_bottom50{
	margin-bottom:40px;
}
.row_bottom80{
	margin-bottom:80px;
}
.row_top50{
    margin-top:40px;
}

/*----------セクション背景----------*/

.lead-bg00 {
  background-color: #fff;
  /*margin-bottom: 50px;*/
}





.lead_ttl{
    display:block;
    margin:0 auto;
    padding-top:7vh;
}
.lead_ttl img{
    width:60%;
}
@media (max-width: 767px){
    .lead_ttl{
        padding-top:50px;
    }
    .lead_ttl img{
        width:85%;
    }
}

/*----------PC・スマホ調整----------*/
@media only screen and (min-width : 320px) {
	.pc_h{
		display:none;
	}
	.smp_h{
		display:inline;
	}
}

@media only screen and (min-width : 992px) {
	.pc_h{
		display:inline;
	}
	.smp_h{
		display:none;
	}
}

@media only screen and (min-width : 1200px) {
	.pc_h{
		display:inline;
	}
	.smp_h{
		display:none;
	}
}

/*======================================
-----------------パーツ-----------------
======================================*/

/*=============
MENU
=============*/

.menu_box {
  background-color: #f3f3f3;
  padding: 0px 0px 20px 0px;
  text-align: center;
  width: 40%;
}

.menu_box h001 {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  color: #444;
  margin: 20px 0px 50px 0px;
  font-weight: bold;
}

.menu_box ul {
  display: block;
  text-align: center;
  margin: 50px 0px 20px 0px;
  font-weight: bold;
}

.menu_box li {
  text-align: center;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 150%;
}

@media screen and (max-width: 640px) {
  .menu_box {
    /*padding: 0px 0px 10px 0px;*/
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .menu_box {
    /*padding: 30px 20px 20px 20px;*/
    width: 70%;
  }

  .menu_box h001 {
    font-size: 25px;
    margin: 20px 0px 50px 0px;
    font-weight: bold;
  }

  .menu_box li {
    font-size: 15px;
    font-weight: bold;
  }
}

/*----------ポイント5倍表示----------*/
.content{
	width: 100%;
	z-index: 2500;
}
.p-coupon {
    text-align: center;
    background-color: rgb(231, 64, 64);
    font-size: 1.2em;
    font-weight: bold;
    color:#fff;
}
.blinking {
    -webkit-animation: blink 1s ease-in-out infinite alternate;
            animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 2;
    }
}
@keyframes blink {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 2;
    }
}
.p-coupon_ttl {
    color: #fff;
}
.p-coupon_tmr {
    font-size: 1.2em;
    text-align: center;
}

/*----------大見出し----------*/
.layer{
    position: relative;
    margin: 0 auto;
    text-align: center;
    display:table;
    width:100%;
}
.layer-bg{
    background: url(img/12_02banner_image.jpg) no-repeat 0 0;
    background-size: 100%;
    background-position: center;
    margin-bottom: 60px;
}
.layer-bg01{
    background: url(img/12_03banner_image.jpg) no-repeat 0 0;
    background-size: 100%;
    background-position: center;
} 

.layer-bg02{
    background: url(img/12banner_image.jpg) no-repeat 0 0;
    background-size: 100%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bg03{
    background: url(img/10banner_image.jpg) no-repeat 0 0;
    background-size: 100%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bg04{
    background: url(img/12_01banner_image.jpg) no-repeat 0 0;
    background-size: 100%;
    background-position: center;
    margin-bottom: 60px;
}


.layer-bg05{
    background: url(img/2402_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgcooking{
    background: url(img/2403_banner01_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgsuvingold{
    background: url(img/2403_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgsakura{
    background: url(img/sakura_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    /*margin-bottom: 60px;*/
}

.layer-bgstrawberry{
    background: url(img/strawberry_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    /*margin-bottom: 60px;*/
}

.layer-bgmacha{
    background: url(img/macha_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    /*margin-bottom: 60px;*/
}

.layer-bgseason{
    background: url(img/2403_banner02_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    /*margin-bottom: 60px;*/
}

.layer-bgblueberry{
    background: url(img/2404_banner03_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgapril{
    background: url(img/2404_banner01_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgapril01{
    background: url(img/2404_banner02_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgjune{
    background: url(img/2406_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgjune01{
    background: url(img/2406_banner01_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-bgjuly{
    background: url(img/2407_banner01_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;
    margin-bottom: 60px;
}

.layer-in_catch{
    display:table-cell;
    vertical-align: middle;
}
.layer-txt_catch{
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    color: #fff;
    letter-spacing: 5px;
    font-family: serif;
}
  
@media screen and (max-width: 600px) {
    .layer-bg, .layer-bg01{
        height: 200px;
    }
    .layer-bg, .layer-bg02{
        height: 200px;
    }
    .layer-bg, .layer-bg03{
        height: 200px;
    }
    .layer-bg, .layer-bg04{
        height: 200px;
    }
    .layer-bg, .layer-bg05{
        height: 200px;
    }
    .layer-bg, .layer-bgcooking{
        height: 200px;
    }
    .layer-bg, .layer-bgsuvingold{
        height: 200px;
    }
    .layer-bg, .layer-bgblueberry{
        height: 200px;
    }
    .layer-bg, .layer-bgstrawberry{
        height: 200px;
    }
    .layer-bg, .layer-bgmacha{
        height: 200px;
    }
    .layer-bg, .layer-bgseason{
        height: 200px;
    }
    .layer-bg, .layer-bgsayaki{
        height: 200px;
    }
    .layer-bg, .layer-bgapril{
        height: 200px;
    }
    .layer-bg, .layer-bgapril01{
        height: 200px;
    }

    .layer-bg, .layer-bgjune{
        height: 200px;
    }

    .layer-bg, .layer-bgjune01{
        height: 200px;
    }

    .layer-bg, .layer-bgjuly{
        height: 200px;
    }
	
    .layer-in{
        width: 100px;
        height: 70px;
    }
    .layer-txt_catch{
        font-size: 30px;
        font-weight: bold;
        text-shadow: 3px 3px 8px rgb(0 0 0 / 90%);
     }
     .layer-txt_catch span{
        font-size: 20px;
     }
}
  
@media screen and (min-width: 601px) {
    .layer-bg, .layer-bg01{
        height: 650px;
    }
    .layer-bg, .layer-bg02{
        height: 650px;
    }
    .layer-bg, .layer-bg03{
        height: 650px;
    }
    .layer-bg, .layer-bg04{
        height: 650px;
    }
    .layer-bg, .layer-bg05{
        height: 650px;
    }
    .layer-bg, .layer-bgcooking{
        height: 650px;
    }
    .layer-bg, .layer-bgsuvingold{
        height: 650px;
    }
    .layer-bg, .layer-bgsakura{
        height: 650px;
    }
    .layer-bg, .layer-bgstrawberry{
        height: 650px;
    }
    .layer-bg, .layer-bgmacha{
        height: 650px;
    }
    .layer-bg, .layer-bgseason{
        height: 650px;
    }
    .layer-bg, .layer-bgblueberry{
        height: 650px;
    }
    .layer-bg, .layer-bgapril{
        height: 650px;
    }
    .layer-bg, .layer-bgapril01{
        height: 650px;
    }

    .layer-bg, .layer-bgjune{
        height: 650px;
    }

    .layer-bg, .layer-bgjune01{
        height: 650px;
    }

    .layer-bg, .layer-bgjuly{
        height: 650px;
    }

    .layer-in{
        width: 800px;
        height: 100px;
    }
    .layer-txt_catch{
        font-size: 70px;
        font-weight: bold;
    }
    .layer-txt_catch span{
        font-size: 40px;
    }
}

/*----------小見出し----------*/
.section-sub-ttl {
    margin-bottom: 0px;
    /*margin-top: 100px;*/
    text-align: center;
}
.section-sub-ttl__eng {
    font-size: 2.2rem;
    color: #e88a19;
    font-family: serif;
    font-weight: bold;
}
.section-sub-ttl__engsmall {
    font-size: 1.0rem;
    color: #361900;
    font-family: serif;
    letter-spacing: 0.4em;
}
.section-sub-ttl__jpn {
    font-weight: bold;
    color: #000000;
    font-size: 1.5rem;
    font-family: serif;
}
.section-sub-ttl__jpn span{
    font-weight: bold;
    color: #005633;
    font-size: 1.3rem;
    font-family: serif;
}
.section-sub-ttl_border {
    width: 140px;
    height: 4px;
    background-color: #1d1d1d;
    margin: 7px auto 10px;
    border-radius: 2px;
    box-shadow: 1px 1px 1px #e7ecec;
}
.section-sub-ttl_sub {
    font-weight: bold;
    color: #000000;
    font-size: 1.2rem;
}
.section-sub-ttl__txt {
    max-width: 600px;
    margin: 0 auto 100px;
    text-align: center;
}

/*----------リード文----------*/
.box_memo{
    margin:0 auto;
}
  
.box_memo p {
    margin-left: 0px;
    color: #333;
    line-height: 2.0rem;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
  }

.box_memo p_01 {
   /* margin-left: 0px;*/
    color: #333;
    line-height: 1.5rem;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
  }
  
.box_memo h2 {
    margin: 0px;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-align: left;
    letter-spacing: 2px;
    text-align: center;
    font-family: serif;
}


/*===　ペアリング ==-*/
.pairing h1{
    font-size: 35px;
    font-weight: bold;
    color: #222;
    text-align: center;
    font-family: serif;	
    /*font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';*/
/*     margin-bottom: 15px;*/
/*    margin: 0 0;
      margin-bottom: 0px;*/
     padding-top: 0px;
/*   margin-bottom: -10px;    */
}
@media screen and (max-width: 640px) {
.pairing h1{
    font-size: 25px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
/*    margin: 0 0;
      margin-bottom: -50px; */
    padding-top: x0px;
/*    margin-bottom: -15px;    */
}
.box_memo p_01 {
    margin-left: 0px;
    color: #333;
    line-height: 1.5rem;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
  }


.box_memo p {
    margin-left: 0px;
    color: #333;
    line-height: 2.0rem;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
  }

}


/*----------商品・レシピまわり文字----------*/
.recipe_text{
    margin: 10px 0px 15px 0px;
}
@media screen and (max-width: 640px) {
    .recipe_text{
        /*margin: 35px 0px 10px 0px;*/
    }
}
.recipe_text h2{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 18px;
    font-weight: bold;
    color: #222;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 0px;
   line-height: 1.5em;
}

.recipe_text h3{
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.recipe_text h4{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 15px;
    font-weight: bold;
    margin: 5px 0 10px auto;
    line-height: 1.5em;
	color: #222;
}

.recipe_text h5{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 0px;
    padding: 0px 20px
}

.recipe_text h6{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 13px;
    font-weight: bold;
    margin: 5px 0 10px auto;
    padding: 0px 20px
}

.recipe_text h7{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 20px;
    color: #a00202;
    font-weight: bold;
    margin: 5px 0 10px auto;
    padding: 0px 20px
}

.recipe_common-txt {
  margin-bottom: 10px;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
    .recipe_common-txt {
        margin-top: 15px;
        margin-bottom: 5px;
        padding-bottom: 10px;
        font-size: 12px;
        line-height: 1.9;
    }
}

@media screen and (max-width: 768px) {
.recipe_text h2{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 0px;
   line-height: 2.0em;
}
}
.item_common-ttl01 {
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 10px auto;
}
.item_common-txt {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 13px;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
line-height: 1.5rem;
}

.item_common-ttl02 {
    margin: 0 auto 10px;
    padding: 10px 0px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 768px) { 
    .item_common-ttl01 {
        font-size: 13px;
        line-height: 1.3em;
        margin-bottom: 5px;
    }
    .item_common-txt {
        margin-top: 15px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 12px;
        line-height: 1.9;
    font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }
.item_common-ttl02 {
    padding: 20px 0px;
    }
}
.item_lnk{
    border-bottom:#999 1px dotted; 
    margin:0; 
    padding:5px 0;
}
.item_lnk a{
    text-decoration: underline;
}
.item_lnk_ttl{
    display:inline-block;
    font-size: 19px;
    border-bottom: #db88b4 2px dashed;
    margin-bottom: 5px;
    font-weight:bold;
}


/*----------カテゴリリンク----------*/
.i-anc_inner {
    width: 90%;
    margin: 0 auto 30px;
}
@media screen and (max-width: 768px){
    .i-anc {
            padding: 10px 0;
    }
}
@media screen and (max-width: 480px)  {
    .i-anc_inner {
            width: 94%;
            margin: 0 auto 30px;
    }
}
.i-anc-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 45px;
    padding: 0px;
}
.i-anc-item {
    width: calc(94% / 3);
    position: relative;
    border: 2px solid #fd9e9e;
    margin-bottom: 2%;
    background-color: #fff;
}

.i-anc-item:not(:nth-child(4n))::after {
    display: block;
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
}
 .i-anc-item a {
    display: block;
    font-weight: bold;
    position: relative;
    padding: 0.4em 0 1.5em;
    height: 60px;
    box-sizing: border-box;
}
.i-anc-item .i-anc-name {
    line-height: 3;
}
.i-anc-item .i-anc-name__2 {
    line-height: 1.4;
    font-size: 1em;
    color: #fd9e9e;
    text-align: center;
}
.i-anc-item a::after {
    display: block;
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 3.5px 0 3.5px;
    border-color: #fd9e9e transparent transparent transparent;
}
.i-anc .l-btn2 {
    margin-top: 70px;
}

@media screen and (max-width: 480px)  {
    .i-anc-item {
        width: calc(96%);
        position: relative;
        border: 2px solid #fd9e9e;
        margin-bottom: 2%;
    }
}

/*----------リンクボタン----------*/
a.btn_04 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50px;
    position: relative;
    /*background: #f1f1f1;*/
    border: 1px solid #000;
    box-sizing: border-box;
    padding: 0 25px 0 40px;
    color: #000;
    font-size: 14px;
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif';
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin-bottom:20px;
    border-radius:55px;
}
a.btn_04:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
}
a.btn_04:hover {
    background: #fff;
    color: #656565;
}
a.btn_04:hover:before {
    border-top: 2px solid #23524f;
    border-right: 2px solid #23524f;
} 
@media screen and (max-width: 768px) {
    a.btn_04 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 40px;
        position: relative;
         /*background: #f1f1f1;*/
        border: 1px solid #000;
        box-sizing: border-box;
        padding: 0 10px 0 20px;
        color: #000;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.3;
        text-align: left;
        text-decoration: none;
        transition-duration: 0.3s;
        margin-bottom:20px;
        border-radius:55px;
    }

a.btn_04:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -4px;
}
a.btn_04:hover {
    background: #fff;
    color: #656565;
}
a.btn_04:hover:before {
    border-top: 2px solid #23524f;
    border-right: 2px solid #23524f;
}

}

/*=============
ボタン　a.btn_05
=============*/
a.btn_05 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 50px;
  position: relative;
  background: #765f4b;
  border: 1px solid #765f4b;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_05:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_05:hover {
  background: #fff;
  color: #765f4b;
}
a.btn_05:hover:before {
  border-top: 2px solid #765f4b;
  border-right: 2px solid #765f4b;
}


@media screen and (max-width: 768px) {
a.btn_05 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 40px;
  position: relative;
  background: #765f4b;
  border: 1px solid #765f4b;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-bottom:20px;
}

	}

/*=============
ボタン　a.btn_06
=============*/
a.btn_06 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 50px;
  position: relative;
  background: #2f523e;
  border: 1px solid #2f523e;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_06:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_06:hover {
  background: #fff;
  color: #2f523e;
}
a.btn_06:hover:before {
  border-top: 2px solid #2f523e;
  border-right: 2px solid #2f523e;
}


@media screen and (max-width: 768px) {
a.btn_06 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 40px;
  position: relative;
  background: #2f523e;
  border: 1px solid #2f523e;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-bottom:20px;
}
	}


/*=============
ボタン　a.btn_07
=============*/
a.btn_07 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 50px;
  position: relative;
  background: #ffc7f3;
  border: 1px solid #ffc7f3;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_07:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_07:hover {
  background: #fff;
  color: #ffc7f3;
}
a.btn_07:hover:before {
  border-top: 2px solid #ffc7f3;
  border-right: 2px solid #ffc7f3;
}


@media screen and (max-width: 768px) {
a.btn_07 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 40px;
  position: relative;
  background: #ffc7f3;
  border: 1px solid #ffc7f3;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-bottom:20px;
}

	}
/*============================================*/
/* 【t-box】背景色+文字設定 */
/*============================================*/
.t-box{
    background-color: #b68f54;
    padding: 20px 30px;
    /*border-radius: 8px;*/
/*    box-shadow: 0px 0px 7px -3px #aaa;*/
}
.t-box00{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.t-box01{
    display: inline-block;
    width: 49%;
    padding: 0px 10px;
    text-align: left;
    border-right: solid 1px #fff;
}
.t-box01:last-child{
    border: none;
}
.t-box h1{
    font-family: serif;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0px;
    line-height: 1.8em;
}
.t-box h2{
    font-family: serif;
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}
.t-box p{
    font-size: 15px;
    color: #fff;
}
@media screen and (max-width: 768px) {
.t-box{ padding: 20px 15px;}
.t-box00{display: block;}
.t-box01{
    width: 100%;
    border: none;
    padding: 0px;
}
.t-box h1{
    font-size: 23px;
    letter-spacing: -0.3px;
}
.t-box h2{font-size: 19px;}
.t-box p{font-size: 13px;}
}

/*今回のテーマ*/
.s1 {
  color: #FFF;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.s1:before,
.s1:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  border-top: 1px dashed #fff;
  display: block;
}

.s1:before {
  margin-right: 3em;
}

.s1:after {
  margin-left: 3em;
}



/*写真のコーナー処理*/

.frame {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* 不要部分を消す */
  padding: 6px;
  /* 6px だけは写真からはみ出す */
  margin-bottom: 15px;

}

.frame img {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.frame:before,
.frame:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 97px;
  height: 50px;
  background: #e5e5e5;
  /* 背景色 */
  transform: rotate(-30deg);
}

/* 左上 */
.frame:before {
  box-shadow: 0 10px 8px -12px rgba(0, 0, 0, 0.8);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;

}

/* 右下 */
.frame:after {
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.7);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}


/* リンクを付けるテキストフレームとコピーフォント部分 */

.link_frame {
  padding: 0.5em 0.2em;
  background-color: #7b3f1a;
  margin-bottom: 30px;
}

.link_frame p {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.link_frame_copy {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
._blue {
  color: #1476a3;
}
._orange {
  color: #7b3f1a;
}

/* ↓コラム用以外 ============================================*/

/*背景指定*/
.lead-yomimono {
  width: 100%;
  background-color: #e5e5e5;
  padding: 0 0 60px;
  margin-bottom: 80px;
}
/*ど真ん中指定用*/
.centerframe {
  text-align: center;
}
/*人画像*/
.staff_pict {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  vertical-align: middle;
}

/*テキスト幅指定*/
.yomimono_txtarea {
  width: 95%;
  margin: 0 auto;
}

/*文字指定*/
.text_staff {
  columns: 2;
  column-gap: 0;
  margin: 0;
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 25px;
}
.staffprof_txt {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.staffprof_txt span {
  font-weight: 900;
  font-size: large;
}
.title_yomimono {
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
.text_yomimono_title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.8;
  text-align: left;
  font-feature-settings: "palt";
}
.text_yomimono01 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 13px;
  line-height: 2.0;
  /*font-feature-settings: "palt";*/
  line-break: strict;
  /*border-bottom: 1px dashed #000;*/
}
.text_yomimono span {
  font-size: 12px;
  text-align: center;
  color: #666;
}
@media screen and (max-width: 768px) {
  /*人画像*/
  .staff_pict {
    width: 130px;
    height: 130px;
    border-radius: 50%;
  }
  .text_staff {
    margin-bottom: 30px;
  }
  .lead-yomimono {
    margin-bottom: 60px;
  }
  .staffprof_txt {
    padding: 0 10px 0 10px;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .title_yomimono {
    font-size: 25px;
    text-align: center;
     !important
  }
  .text_yomimono_title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.8;
    text-align: center;
  }
  .text_yomimono {
    padding: 0 15px 0 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 1px;
    word-break: break-all;
    line-break: strict;
    font-feature-settings: "palt";
    border-bottom: 1px dashed #fff;
  }
  .yomimono_txtarea {
    width: 90%;
    margin: 0 auto;
  }

/*今回のテーマ*/
.s1 {
  color: #FFF;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.s1:before,
.s1:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  border-top: 1px dashed #fff;
  display: block;
}
.s1:before {
  margin-right: 3em;
}
.s1:after {
  margin-left: 3em;
}

/*写真のコーナー処理*/
.frame01 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* 不要部分を消す */
  padding: 6px;
  /* 6px だけは写真からはみ出す */
  margin-bottom: 15px;
}

.frame01 img {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.frame01:before,
.frame01:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 97px;
  height: 50px;
  background: #ffffff;
  /* 背景色 */
  transform: rotate(-30deg);
}

.frame01:before,
.frame01:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 97px;
  height: 50px;
  background: #ffffff;
  /* 背景色 */
  transform: rotate(-30deg);
}


/* 左上 */
.frame01:before {
  box-shadow: 0 10px 8px -12px rgba(0, 0, 0, 0.8);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;

}

/* 右下 */
.frame01:after {
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.7);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}


}


/*=============
MENU
=============*/


.menu_box {
  background-color: #f3f3f3;
  padding: 0px 0px 20px 0px;
  text-align: center;
  width: 40%;
}

.menu_box h001 {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  color: #444;
  margin: 20px 0px 50px 0px;
  font-weight: bold;
}

.menu_box ul {
  display: block;
  text-align: center;
  margin: 50px 0px 20px 0px;
  font-weight: bold;
}

.menu_box li {
  text-align: center;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
  line-height: 150%;
}

@media screen and (max-width: 640px) {
  .menu_box {
    /*padding: 0px 0px 10px 0px;*/
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .menu_box {
    /*padding: 30px 20px 20px 20px;*/
    width: 70%;
  }

  .menu_box h001 {
    font-size: 25px;
    margin: 20px 0px 50px 0px;
    font-weight: bold;
  }

  .menu_box li {
    font-size: 15px;
    font-weight: bold;
  }
}


/*=============
期間表示のテキストフレーム
=============*/

.date_frame {
  padding: 0.5em 1em;
  margin: 1em 0;
  font-weight: bold;
  border: solid 2px #797979;
}

.date_frame p {
  text-align: center;
  margin: 0;
  padding: 0;
  color: #797979;
}


.date_framebeta {
  padding: 0.5em 1em;
  margin: 1em 0;
  font-weight: bold;
  background-color:#c2041a;
  border: solid 2px #fff;
}

.date_framebeta p {
  text-align: center;
  margin: 0;
  padding: 0;
  color: #fff;
}





.recipe h5 {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}

.box_memo p span {
  font-weight: bold;
}

/*=============
期間表示のテキストフレーム01
=============*/

.date_frame01 {
  padding: 0.5em 1em;
  margin: 1em 0;
  font-weight: bold;
  border: solid 2px #001dcd;
}

.date_frame01 p {
  text-align: center;
  margin: 0;
  padding: 0;
  color: #001dcd;
}

  .ttl_img03 {
    width: 170px;
 display: inline-block;
 vertical-align: middle;
    margin: 5px 0 10px auto;
    padding: 0px 10px 
  }

}

/*----------デザイン----------*/
.kadomaru {
    border-radius: 10px;
}
.c-responsive-img {
    max-width: 100%;
}




/*新麦解禁表組*/

.c-text-table3 thead th {

    background: #80c6e5;
    color: #ffffff;
    padding: 7px;
    border: 1px solid #ffffff;

}

.c-text-table3 {
  width: 100%;
  background: #ffffff;
}

.c-text-table4 th, .c-text-table3 td {
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
}
.c-text-table3 td {
  border: 1px solid #f1f1f1;
  border-top: none;
}





/*----------リンクボタン----------*/
a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    box-sizing: border-box;
    padding: 0 25px 0 40px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    margin-bottom:20px;
    border-radius:5px;
}
a.btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
}
a.btn:hover {
    background: #fff;
}
a.btn_c01{
    background: #c9c9c9;
    border: 1px solid #c9c9c9;
}
a.btn_c01:hover{
    color: #989049;
}
a.btn_c01:hover:before{
    border-top: 2px solid #9c9c9c;
    border-right: 2px solid #9c9c9c;
}
a.btn_c02{
    background: #dc884b;
    border: 1px solid #dc884b;
}
a.btn_c02:hover{
    color: #dc884b;
}
a.btn_c02:hover:before{
    border-top: 2px solid #dc884b;
    border-right: 2px solid #dc884b;
}
a.btn_c03{
    background: #937055;
    border: 1px solid #937055;
}
a.btn_c03:hover{
    color: #937055;
}
a.btn_c03:hover:before{
    border-top: 2px solid #937055;
    border-right: 2px solid #937055;
}
@media screen and (max-width: 768px) {
    a.btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        position: relative;
        box-sizing: border-box;
        padding: 0 25px 0 40px;
        color: #fff;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.3;
        text-align: left;
        text-decoration: none;
        transition-duration: 0.3s;
        margin-bottom:20px;
        border-radius:5px;
    }
}


/*----------デザイン----------*/
.kadomaru {
    border-radius: 10px;
}
.c-responsive-img {
    max-width: 100%;
}



/*----------小見出し----------*/
.section-sub-ttl01 {
    margin-bottom: 0px;
    /*margin-top: 100px;*/
    text-align: center; 
}
.section-sub-ttl01__eng {
    font-size: 2.5rem;
    color: #fff;
    font-family: serif;
}
.section-sub-ttl01__engsmall {
    font-size: 1.0rem;
    color: #fff;
    font-family: serif;
    letter-spacing: 0.4em;
}
.section-sub-ttl01__jpn {
    font-weight: bold;
    color: #fff;
    font-size: 2.0rem;
    font-family: serif;
} 
.section-sub-ttl01__jpn span{
    font-weight: bold;
    color: #005633;
    font-size: 1.3rem;
    font-family: serif;
}
.section-sub-ttl01_border {
    width: 140px;
    height: 4px;
    background-color: #ffb81f;
    margin: 7px auto 10px;
    border-radius: 2px;
    box-shadow: 1px 1px 1px #e7ecec;
}
.section-sub-ttl01_sub {
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
}
.section-sub-ttl01__txt {
    max-width: 600px;
    margin: 0 auto 100px;
    text-align: center;
}


/* 背景 ============================================*/




.lead-bg {
  background-color: #fff;
padding: 4% 0;
}



.lead-bg01 {
  background-color: #e4e4e4;
padding: 4% 0;
}

.lead-bg02 {
  background-color: #f4feff;
padding: 4% 0;
}

.lead-bg03 {
  background-color: #a83b20;
}


.lead-bg04 {
  background-color: #4d8551;
}

.lead-bg05 {
  background-color: #ebdd96;
}

.lead-bg06 {
  background-color: #f2f2f2;
}

.guideline_ex {
    margin: 2em 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    max-width: 100%;
    text-align: left;
}
@media screen and (max-width: 640px) {
.guideline_ex {
    /*max-width: 85%;*/
    display: inline-block;
}
}
.guideline_ex .box-title {
    font-size: 20px;
    background: #f1f1f1;
    padding: 7px;
    text-align: center;
    color: #595655;
	line-height: 1.5em;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 15px 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
}

.guideline_ex p {
    padding: 20px 20px;
    line-height: 2.0rem;
	font-size: 15px;
　　 font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 768px) {
.guideline_ex p {
    padding: 10px 10px;
    line-height: 2.0rem;
	font-size: 13px;
}

.guideline_ex .box-title {
    font-size: 16px;
line-height: 1.5em;
}

}

/* 見出し ============================================*/

.head_test {
    margin:  0;                 /* デフォルトCSS打ち消し */
    font-size:  20px;           /* 文字サイズ指定 */
    position:  relative;        /* 位置調整 */
    font-weight:  normal;       /* 文字の太さ調整 */
    display:  inline-block;     /* インラインブロックにする */
    padding-top: 40px;          /* 余白指定 */
    padding-left: 40px;         /* 余白指定 */
    padding-bottom: 20px;       /* 余白指定 */
}

.pairing h1 {
    font-size: 35px;
    font-weight: bold;
    color: #222;
    text-align: center;
    font-family: serif;
    /* font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic', 'sans-serif'; */
    /* margin-bottom: 15px; */
    padding-top: 30px;
    font-size:  27px;           /* 文字サイズ指定 */
    /* margin-bottom: -10px;

p {
    margin:  0;                 /* デフォルトCSS打ち消し */
    line-height: 2;             /* 行間調整 */
    padding-left: 40px;         /* 余白指定 */
}
.head_test:before {
    content:  '';               /* 空白の要素を作る */
    background-color: #ffeaac;  /* 背景色指定 */
    display:  block;            /* ブロック要素にする */
    position:  absolute;        /* 位置調整 */
    left:  0;                   /* 位置調整 */
    height: 90px;               /* 高さ指定 */
    width: 90px;                /* 幅指定 */
    border-radius:  50%;        /* 丸くする */
    top: 0;                     /* 位置調整 */
    z-index:  -1;               /* 重なり調整 */

}






/* 見出し ============================================*/

.head_01 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 10px;    /* 周りの余白指定 */
    font-size: 18px;        /* 文字サイズ指定 */
    text-align:  center;    /* 文字位置指定 */
}
.head_02 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 15px;    /* 周りの余白指定 */
    font-size: 17px;        /* 文字サイズ指定 */
    text-align: left;    /* 文字位置指定 */
    text-align: center;     /*文字位置指定 */
}

.head_03 {
    margin:  5;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 15px;    /* 周りの余白指定 */
    font-size: 35px;        /* 文字サイズ指定 */
    text-align: left;    /* 文字位置指定 */
    color: #000;
    text-align: center;     /*文字位置指定 */
}

.head_04 {
    margin:  5;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 0px;    /* 周りの余白指定 */
    font-size: 30px;        /* 文字サイズ指定 */
    text-align: left;    /* 文字位置指定 */
    color: #000;
}

.head_05 {
    margin:  5;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    /*font-family: Arial Black;*/
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 15px;    /* 周りの余白指定 */
    font-size: 14px;        /* 文字サイズ指定 */
    text-align: center;    /* 文字位置指定 */
    color: #000;
   line-height: 1.5em;
}


.head_06 {
    margin:  5;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    /*font-family: Arial Black;*/
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 10px;    /* 周りの余白指定 */
    font-size: 18px;        /* 文字サイズ指定 */
    text-align: left;    /* 文字位置指定 */
    color: #000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

p {
    margin:  0;             /* デフォルトCSS打ち消し */
    line-height: 2;         /* 行間調整 */
}
p01 {
    margin:  15;             /* デフォルトCSS打ち消し */
    line-height: 2;         /* 行間調整 */
}
.head_02-point {
    display:  block;        /* ブロック要素にする */
    font-size:  14px;       /* 文字サイズ指定 */
    margin-top:  10px;      /* 周りの余白指定 */
    position:  relative;    /* 位置調整 */
    width: 140px;           /* 幅指定 */
    margin: 10px auto 0;    /* 周りの余白指定 */
    /*background-color:  #fff;/* 背景色指定 */
}

.head_02-point:before {
    content: '';            /* 空の要素を作る */
    height:  1px;           /* 高さ指定 */
    background-color:  #000;/* 背景色指定 */
    /*position:  absolute;    /* 位置調整 */
    /*top: 0;                 /* 位置調整 */
    /*bottom:  0;             /* 位置調整 */
    margin:  auto;          /* 位置調整 */
    z-index: -1;            /* 重なり調整 */
    width: 200px;           /* 幅指定 */
    left:  -30px;           /* 位置調整 */
}


@media screen and (max-width: 768px) {
.head_02 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 0px;    /* 周りの余白指定 */
    font-size: 15px;        /* 文字サイズ指定 */
    text-align:center;    /* 文字位置指定 */
    margin-bottom: 10px;    /* 周りの余白指定 */
}

.head_03 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 10px;    /* 周りの余白指定 */
    font-size: 28px;        /* 文字サイズ指定 */
    text-align:center;    /* 文字位置指定 */
}

.head_04 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: serif;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 0px;    /* 周りの余白指定 */
    font-size: 23px;        /* 文字サイズ指定 */
    text-align:left;    /* 文字位置指定 */
}


.head_06 {
    margin:  0;             /* デフォルトCSS打ち消し */
    position:  relative;    /* 位置調整 */
    font-family: Arial Black;
    font-weight: bold;   /* 文字の太さ調整 */
    margin-bottom: 10px;    /* 周りの余白指定 */
    font-size: 11px;        /* 文字サイズ指定 */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
}


/*============================================*/
/* グレー背景+文字指定 */
/*============================================*/
.bg-gray{
    /*background-color: #e5e3da;
    padding: 30px 40px;*/
}

.bg-gray01{
    background-color: ##F5F2E9;
    padding: 40px 15px;
}

@media screen and (max-width: 768px) {
.bg-gray{
    padding: 0px 10px;
}
}
.bg-gray h3{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-align: left;
    text-shadow: none;
    vertical-align: bottom;
    margin: 0px 30px 20px 0px;
	color: #222;
}

.bg-gray h4{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-align: left;
    text-shadow: none;
    vertical-align: bottom;
    margin: 0px 30px 20px 0px;
	color: #222;
}

.bg-gray span{
    font-size: 13px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    letter-spacing: 1.8px;
    /*margin-left: 20px;
    border-left: solid 1px #333;*/
    padding-left: 20px;
}

.text p {
    font-size: 15px;
  line-height: 2.0em;
  text-align: justify;
  font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*font-weight: bold;*/
}

.text p01 {
    font-size: 13px;
  line-height: 2.0em;
  text-align: justify;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
        margin-bottom: 10px;
}

.text p02 {
    font-size: 15px;
  line-height: 2.0em;
  text-align: left;
  font-family: 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*font-weight: bold;*/
}




.bg-gray01 h3{
    font-family: "Arial";
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-align: left;
    text-shadow: none;
    vertical-align: bottom;
    margin: 0px 30px 20px 0px;
}
.bg-gray01 span{
    font-size: 13px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    letter-spacing: 1.8px;
    margin-left: 20px;
    border-left: solid 1px #333;
    padding-left: 20px;
}



.container h6 {
  font-size: 18px;
  /*text-shadow: 1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    1px -1px 0 #ffffff;*/
  margin: 0 0;
  padding-top: 20px;
  margin-bottom: 0px;
    font-weight: bold;
  font-family:"游明朝", YuMincho, "ＭＳ 明朝", serif;
}


.container h5 {
  font-size: 15px;
  /*text-shadow: 1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    1px -1px 0 #ffffff;*/
  margin: 0 0;
  padding-top: 10px;
  /*margin-bottom: 30px;*/
    font-weight: bold;
  font-family:"游明朝", YuMincho, "ＭＳ 明朝", serif;
}

@media screen and (max-width: 768px) {


.container h5 {
  font-size: 12px;
  /*text-shadow: 1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    1px -1px 0 #ffffff;*/
  margin: 0 0;
  padding-top: 10px;
  /*margin-bottom: 30px;*/
    font-weight: bold;
  font-family:"游明朝", YuMincho, "ＭＳ 明朝", serif;
}


.text p {
    font-size: 12px;
  line-height: 2.3em;
  text-align: left;
  /*font-weight: bold;*/
}

.text p02 {
    font-size: 12px;
  line-height: 2.3em;
  text-align: left;
  /*font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;*/
}


.bg-gray h4{
    font-family: '游ゴシック', 'Meiryo, Osaka', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 2.5px;
    text-align: left;
    text-shadow: none;
    vertical-align: bottom;
    margin: 0px 30px 20px 0px;
	color: #222;
}

}


/*============================================*/
/* スライダー */
/*============================================*/
.swiper-container-pro {
    margin-inline: auto;
    max-width: 850px;
    position: relative;
}
@media screen and (max-width: 850px) {
.swiper-container-pro{
    max-width: 500px;
}
}
@media screen and (max-width: 500px) {
.swiper-container-pro{
    max-width: 280px;
}
}
.swiper {
  width: min(100%, 900px);
  height: 280px;
}
@media screen and (max-width: 850px) {
.swiper {
  width: min(100%, 500px);
  height: 150px;
}
}
@media screen and (max-width: 500px) {
.swiper {
  width: min(100%, 280px);
  height: 130px;
}
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}
.swiper-button-prev {
    left: -50px;
    bottom: 130px;
}
.swiper-button-next {
  right: -50px;
    bottom: 130px;
}
@media screen and (max-width: 850px) {
.swiper-button-prev {
    left: -40px;
    bottom: 70px;
}
.swiper-button-next {
    right: -40px;
    bottom: 70px;
}
}
@media screen and (max-width: 500px) {
.swiper-button-prev {
    left: -30px;
    bottom: 50px;
}
.swiper-button-next {
    right: -30px;
    bottom: 50px;
}
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: ""; /*ここでデフォルトの矢印を上書き*/
  width: 18px;
  height: 18px;
  border: 0;
  border-top: solid 1.5px #666;
  border-right: solid 1.5px #666;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.swiper-button-prev:before {
  border-bottom: 20px solid transparent;
  border-right: 30px solid #ff4500;
  border-top: 20px solid transparent;
}
.swiper-button-prev:after {
  transform: rotate(-135deg);
}
.swiper-button-next:before {
  border-bottom: 20px solid transparent;
  border-left: 30px solid #ff4500;
  border-top: 20px solid transparent;
}
.swiper-button-next:after {
  transform: rotate(45deg);
}

/*============================================*/
/* メニューボタン */
/*============================================*/
.menu-btn{
    text-align: center;
    margin: 20px 0px;
    display: flex;
    justify-content: center;
}
.menu-btn ul{
    width: 80%;
    display: flex;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    background-color: #634831;
    border-radius: 3px;
    justify-content: space-between;
}
.menu-btn li{
    display: table-cell;
/*    background-color: #5eb7e0;*/
    font-size: 13px;
    letter-spacing: 1px;
    width: 33%;
    padding: 15px 15px;
/*    border-radius: 3px;*/
}
@media screen and (max-width: 640px) {
.menu-btn li{
    flex-shrink:1;
    flex-basis: 100%;
    padding: 10px;
}
}
.menu-btn li:hover{
    background-color: #2a3263;
}
.menu-btn a{
    color: #fff;
}
/*============================================*/
/* カードタイプ */
/*============================================*/
.card-type{
    display: flex;
    align-items: stretch;
	flex-wrap: wrap;
	gap: 30px 50px;
}
.card-type-img {
   /* border-radius: 8px;*/
    padding: 0px;
    box-shadow: 0px 3px 8px 0px #ccc;
    background-color:#fff;
}
.card-type-text {
   /* border-radius: 8px;*/
    padding: 30px 15px 20px 15px;;
    box-shadow: 0px 3px 8px 0px #ccc;
}
.card-type-img:before,.card-type-text:before {
    content: “”;
    display: block;
    padding-top: 100%;
}
@media screen and (max-width: 640px) {
.card-type-img, .card-type-text {
    margin: 0px 10px;
}
}
/*============================================*/
/* センターよせ用 */
/*============================================*/
.on-center{
    text-align: center;
}
/*背景指定*/
.lead-bg_suvingold {
  background-color: #162244;
  padding: 60px 0px;
}
/*背景指定*/
.lead-bg_sakura {
  background-color: #fff1fd;
  padding: 60px 0px;
}
/*背景指定*/
.lead-bg_macha {
  background-color: #e0f1db;
  padding: 60px 0px;
}
/*背景指定*/
.lead-bg_strawberry {
  background-color: #ffd8e8;
  padding: 60px 0px;
}
}
/*  ============================================*/




/* 020 */
.button020 a {
  background: #ffbcd7;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 440px;
  padding: 30px 45px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button020 a:hover {
  background: #ff84b5;
}

.button020 a:before,
.button020 a:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
}

.button020 a:before {
  width: 1.4rem;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}

.button020 a:after {
  opacity: 0;
  width: 0;
  height: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button020 a:hover:before {
  width: 1.5rem;
}

.button020 a:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
}


/*============================================*/
/* 画像on文字ボタン */
/*============================================*/
.on-text{
    position: relative;
    background-color: #000;
    display: inline-block;
}

.on-text-center h4{
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    margin: 0px;
    padding: 0px;
    text-shadow: none;
/*    text-shadow: 0px 0px 5px #000000;*/
}
@media screen and (max-width: 768px) {
.on-text-center h4{
    font-size: 13px;
}
}
.on-text-center h6{
    font-size: 15px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #fff;
    margin: 0px;
    padding: 0px;
    text-shadow: none;
/*    text-shadow: 0px 0px 5px #000000;*/
}
@media screen and (max-width: 850px) {
.on-text-center h6{
    font-size: 11px;
    letter-spacing: -1px;
    text-align: center;
}
}
.on-text img{
    display: block;
    opacity: 0.6;
}
.on-text a{
    text-decoration: none;
}
/*button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}*/
.buttonOutline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-align: center;
    overflow-wrap: anywhere;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 0px;
    padding: 15px;
}
@media screen and (max-width: 850px) {
.buttonOutline {
    padding: 5px 8px;
    width: 70%;
    border: 1px solid #fff;
    /*border-radius: 8px;*/
}
}
@media (any-hover: hover) {
  .buttonOutline {
    transition: background-color 0.2s;
  }
  .buttonOutline:hover {
    background-color: #e8e8e8;
    border: none;
  }
}
/*
.on-text-center h3:hover{
    font-weight: bold;
}
.on-text-center h4:hover{
    font-weight: bold;
}
*/



/*============================================*/
/*クリップボードで画像 */
/*============================================*/
/* コピーボタン */
.copy_btn {
  width:80%!important;
  padding: 4px 15px;
  margin-left:15px;
  margin-top: 30px;
  margin-bottom: 10px;
  color:#ffffff;
  font-weight:bold;
  background:#005a91;
  border: solid 2px #005a91;
  border-radius: 20px;
  transition: .4s;
  text-align: center;
}
 
.copy_btn:hover {
  background: #ffffff;
  color: #005a91;
}
.copy_btn:hover {
	cursor: pointer;
}


/*============================================*/
/*SNS */
/*============================================*/
.sns{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.sns-box00{
    display: block;
    width: 20%;
    text-align: left;
    border-right: solid 1px #333;
}
.sns-box01{
    display: inline-block;
    width: 15%;
    padding: 10px;
    text-align: center;
}
.sns img{width: 40%;}
.sns h2{
    font-family: serif;
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0px;
    text-align: center;
}
.sns h2::before{content: none;}
.sns h4{
    font-family: serif;
	font-weight: bold;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0px;
    text-shadow: none;
    margin-bottom: 20px;
}
.sns a{color: #333;}
@media screen and (max-width: 640px) {
.sns img{width: 80%;}
.sns h2{
    font-size: 20px;
    margin: 10px 0px;
}
.sns-box00{width: 25%;}
.sns-box01{width: 18%;}
.sns h4{font-size: 11px;}
}
/* ======================================*/
/* 〇〇とは？ */
/* ======================================*/
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: solid 2px #5e823f;
    padding: 25px 15px;
}
.question-box01{
    display: inline-block;
    width: 21%;
    text-align: center;
}
.question-box01 img{
    width: 80%;
}
.question-box02{
    display: inline-block;
    width: 77%;
}
@media screen and (max-width: 640px) {
.question{display: inline-block;}
.question-box01,.question-box02{
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
}
.question h2{
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 0px 0px 20px 0px;
}
.question h2::before,.question h2::after{
    content: "||";
    margin: 0px 2px;
    color: #5e823f;
}
.question p{
    font-size: 15px;
    letter-spacing: 0.5px;
    margin: 0px;
    padding: 0px;
}




/* ======================================*/
/* タイトル文字設定 */
/* ======================================*/
.title_font h1{
    font-family: "Zen Antique Soft", serif;
    font-size: 35px;
    font-weight: bold;
    margin: 30px 0px;
    padding: 1rem 2rem;
	text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color:#000;
}
.title_font h1 span{
    font-family: "Shippori Mincho B1", serif;
    font-size: 15px;
    font-weight: normal;
    margin-left: 20px;
}
.title_font h2{
    font-family: "EB Garamond", serif;
    font-size: 30px;
    font-weight: normal;
    margin: 30px 0px;
    padding: 1rem 2rem;
  border-bottom: 2px solid #000;
}

.title_font h4{
    font-family: "Shippori Mincho B1", serif;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.8em;
}
@media screen and (max-width: 640px) {
.title_font h1{
    font-size: 35px;
    padding: 1rem 1rem;
	line-height: 150%;
}
.title_font h2{font-size: 20px;}
.title_font h1 span{
    font-size: 20px;
    margin-left: 0px;
}
.title_font h3{font-size: 13px;}
.title_font h4{font-size: 18px;}
}
/* サブタイトル文字設定 */
.sub_title{
    display: inline-block;
    text-align: left;
    border: solid 1px #333;
    padding: 10px 30px;
}
.sub_title_01{
    display: inline-block;
    text-align: left;
    padding: 10px 30px;
}
.sub_title h1{
    display: inline-block;
    text-align: left;
    border: solid 1px #333;
    padding: 0px 30px;
}
.sub_title h1 span{
    font-size: 14px;
    font-weight: normal;
}
.sub_title h2{
    font-size: 20px;
    font-weight: bold;
}
.sub_title h2 span{
    font-size: 14px;
    font-weight: normal;
}
.sub_title h1 span::before{content: " / ";}
.sub_title h2 span::before{content: " / ";}
@media screen and (max-width: 640px) {
.sub_title{
    display: block;
    padding: 10px 15px;
}
.sub_title h2{font-size: 15px;}
.sub_title h2 span{font-size: 11px;}
}

/* ======================================*/
/* レシピ・アイテム-グリッド設定 */
/* ======================================*/
.ch-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid-w{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid-w-set{display: inline-block;}
.ch-grid_5-2,.ch-grid_5-1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(185px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid_4-1,.ch-grid_4-2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid_3-2,.ch-grid_3-1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 40px;
    margin-bottom: 30px;
}
.ch-grid_2-1,.ch-grid_2-2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
    grid-gap: 40px;
    margin-bottom: 30px;
}
.ch-grid-set{
    display: inline-block;
/*    background-color: #fff;
    border-radius: 5px;
    padding: 15px;*/
}
.ch-grid-set h1,.ch-grid-w-set h1{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    color: #b6d6cf;
    font-weight: normal;
    text-align: left;
    letter-spacing: 8px;
    margin: 0px 0px 30px 0px;
}
.ch-grid-set h2,.ch-grid-w-set h2{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 5px 0px 30px 0px;
}
.ch-grid-set h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin: 10px 0px;
}
.ch-grid-set h4,.ch-grid-w-set h4{
    background-color: #b22c2c;
    border: solid 1px #b22c2c;
    margin: 0px;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.ch-grid-set p,.ch-grid-w-set p{
    font-size: 15px;
    line-height: 1.8em;
    margin: 5px 0px 20px 0px;
	letter-spacing: 1.5px;
}
@media screen and (max-width: 640px) {
/*.ch-grid-set{
    border-bottom: solid 1px #ccc;
    padding: 10px;
}*/
.ch-grid-set h1,.ch-grid-w-set h1{font-size: 30px;}
.ch-grid-set h2,.ch-grid-set h2{
    font-size: 13px;
    letter-spacing: -0.5px;
}
.ch-grid-set h3{
    font-size: 10px;
    letter-spacing: -0.5px;
}
.ch-grid-set h4{font-size: 11px;}
.ch-grid-set p,.ch-grid-set p{font-size: 10px;line-height: 1.4rem;}
.ch-grid_4-1,.ch-grid_3-1,.ch-grid_2-1{
    grid-template-columns: repeat(1,minmax(150px,1fr));
    grid-gap: 30px 5px;
}
.ch-grid_4-2,.ch-grid_3-2,.ch-grid_2-2{
    grid-template-columns: repeat(2,minmax(150px,1fr));
    grid-gap: 10px 10px;
}
.ch-grid_5-2{
    grid-template-columns: repeat(3,minmax(80px,1fr));
    grid-gap: 10px 10px;
}
}

/* ======================================*/
/* ボーダー */
/* ======================================*/
.border{
    border-bottom: solid 2px #b6d6cf;
    margin: 30px 0px;
}


/* ======================================*/
/* レシピ・アイテム-グリッド設定 */
/* ======================================*/
.ch-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid-w{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid-w-set{display: inline-block;}
.ch-grid_5-2,.ch-grid_5-1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(185px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid_4-1,.ch-grid_4-2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    grid-gap: 20px 15px;
    margin-bottom: 30px;
}
.ch-grid_3-2,.ch-grid_3-1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 40px;
    margin-bottom: 30px;
}
.ch-grid_2-1,.ch-grid_2-2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(450px,1fr));
    grid-gap: 40px;
    margin-bottom: 30px;
}
.ch-grid-set{
    display: inline-block;
/*    background-color: #fff;
    border-radius: 5px;
    padding: 15px;*/
}
.ch-grid-set h1,.ch-grid-w-set h1{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    color: #b6d6cf;
    font-weight: normal;
    text-align: left;
    letter-spacing: 8px;
    margin: 0px 0px 30px 0px;
}
.ch-grid-set h2,.ch-grid-w-set h2{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 5px 0px 30px 0px;
}
.ch-grid-set h3{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin: 10px 0px;
}
.ch-grid-set h4,.ch-grid-w-set h4{
    background-color: #b22c2c;
    border: solid 1px #b22c2c;
    margin: 0px;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.ch-grid-set p,.ch-grid-w-set p{
    font-size: 15px;
    line-height: 1.8em;
    margin: 5px 0px 20px 0px;
	letter-spacing: 1.5px;
}
@media screen and (max-width: 640px) {
/*.ch-grid-set{
    border-bottom: solid 1px #ccc;
    padding: 10px;
}*/
.ch-grid-set h1,.ch-grid-w-set h1{font-size: 30px;}
.ch-grid-set h2,.ch-grid-set h2{
    font-size: 13px;
    letter-spacing: -0.5px;
}
.ch-grid-set h3{
    font-size: 10px;
    letter-spacing: -0.5px;
}
.ch-grid-set h4{font-size: 11px;}
.ch-grid-set p,.ch-grid-set p{font-size: 10px;line-height: 1.4rem;}
.ch-grid_4-1,.ch-grid_3-1,.ch-grid_2-1{
    grid-template-columns: repeat(1,minmax(150px,1fr));
    grid-gap: 30px 5px;
}
.ch-grid_4-2,.ch-grid_3-2,.ch-grid_2-2{
    grid-template-columns: repeat(2,minmax(150px,1fr));
    grid-gap: 10px 10px;
}
.ch-grid_5-2{
    grid-template-columns: repeat(3,minmax(80px,1fr));
    grid-gap: 10px 10px;
}
}


/*----------大見出し----------*/
.layer{
    position: relative;
    margin: 0 auto;
    text-align: center;
    display:table;
    width:100%;
} 




.layer-bgray{
    background: url(img/ray_banner_image.jpg) no-repeat 0 0;
    background-size: 115%;
    background-position: center;	
    /*margin-bottom: 60px;*/
}

.layer-in_catch{
    display:table-cell;
    vertical-align: middle;
}  
.layer-txt_catch{
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    color: #fff;
    letter-spacing: 5px;
    font-family: serif;
}  
  
@media screen and (max-width: 600px) {
    .layer-bg, .layer-bgray{
        height: 200px;
    }    

	
    .layer-in{
        width: 100px;
        height: 70px;
    }
    .layer-txt_catch{
        font-size: 30px;
        font-weight: bold;
        text-shadow: 3px 3px 8px rgb(0 0 0 / 90%);
     }
     .layer-txt_catch span{
        font-size: 20px;
     }
}
  
@media screen and (min-width: 601px) {
    .layer-bg, .layer-bgray{
        height: 650px;
    } 

		
    .layer-in{
        width: 800px;
        height: 100px;
    }
    .layer-txt_catch{
        font-size: 70px;
        font-weight: bold;
    }
    .layer-txt_catch span{
        font-size: 40px;
    }	
}

.img-r {
    border-top-right-radius: 15%;
    border-bottom-left-radius: 15%;
	
	
/*============================================*/
/* 文字関連 */
/*============================================*/
.philosphy{font-family: "Zen Kaku Gothic New", sans-serif;text-align:center;}
.philosphy h1{ font-size:45px; margin:2% 0 5% 0;}
.philosphy h2{ font-size:35px; margin:5% 0 0 0;}
.philosphy h3{ font-size:60px; line-height:64px; margin:2% 0 5% 0;}
.philosphy h3 span{ font-size:24px;}

.subtitle_eng{ font-size:20px; margin:6% 0 0 0; color:#1d7844;}

.title_txt{font-family: "Zen Kaku Gothic New", sans-serif;text-align:center;}
.title_txt p{font-size:40px; margin:4% 0 1% 0; color:#9ec3ad;}
.title_txt h2{font-size:24px;margin:0 0 5% 0;}


.group_title{ font-size:1.8em; font-family:"Zen Kaku Gothic New", sans-serif;text-align:center;margin:0 0 4% 0;}
.group_p{ font-family: "Noto Sans JP", sans-serif; font-size:11px; margin:2% 0; line-height:1.2em;}



.report_txt{font-family: "Zen Kaku Gothic New", sans-serif;text-align:center;}
.report_txt p{font-size:16px; margin:2% 0 1% 0; line-height:1.4em;}

.txt{font-family:  font-family: "Noto Sans JP", sans-serif;  font-feature-settings: "pkna";}
.txt p{ font-size:18px; font-weight:300; margin:0 0 5% 0; letter-spacing:1px;}

.item{font-family: "Zen Kaku Gothic New", sans-serif;text-align:center;}
.item h1{ font-size:28px;font-weight:bold;margin:2% 0 2% 0;}
.item h2{ font-size:20px;font-weight:bold;margin:4% 0 2% 0; line-height:1.3em;}
.item h3{ font-size:14px;margin:4% 0 0 0;border: solid 2px #fff; padding:3%; background-color:#cdb287; color:#FFF;}



.lineup_txt{position: relative; font-family: "Noto Sans JP", sans-serif;}
.lineup_txt h2{color:#443c39;font-weight:bold;margin-bottom:3%;margin-top:2%;font-size:1.3rem; text-align:center;}
/*.lineup_txt h2::before{content: url(img/linrup_icon.svg);transform: scale(0.7) ; position: absolute;top:-66px; margin: 50px auto 0px;}*/
.lineup_txt p{ font-size:16px;text-align:center; margin:0 0 6% 0;}


.item_p{ font-size:19px;}
.btn_txt{ padding:1% 5% 5% 5%;}

@media screen and (max-width: 640px) {
.philosphy h1{ font-size:33px; margin:1% 2% 5% 2%;}
.philosphy h2{ font-size:20px; margin:5% 0 2% 0;}
.philosphy h3{ font-size:42px; line-height:48px; margin:2% 0 10% 0;}
.philosphy h3 span{ font-size:18px; top:-5%;}

.subtitle_eng{ font-size:18px; margin:6% 0 0 0;}


.title_txt h2{font-size:24px;margin:4% 0 8% 0; line-height:32px;}
.title_txt p{font-size:26px; margin:2% 0 1% 0;}

.txt p{ font-size:16px; margin:0 2% 8% 2%; letter-spacing:0.5px; line-height:32px; text-align:justify;}

.group_title{ font-size:1.8em; margin:0 0 6% 0;}


.item h1{ font-size:26px;font-weight:bold;margin:5% 0 5% 0; text-align:center; line-height:36px;}
.item h2{ font-size:16px;font-weight:bold;margin:4% 0 2% 0; line-height:1.3em;}
.item h3{ font-size:13px;margin:4% 0 1% 0;border: solid 2px #fff; padding:4%; background-color:#cdb287; color:#FFF;}

.report_txt p{font-size:16px; margin:2% 0 4% 0; line-height:1.4em;}

.lineup_txt h2{color:#443c39;font-weight:bold;margin-bottom:5%;margin-left:60px;margin-top:8%;font-size:20px; text-align:left;}
.lineup_txt h2::before{content: url(img/linrup_icon.svg);transform: scale(0.7) ; position: absolute;top: -23px;left: -10px;z-index:-1;}
.lineup_txt p{ font-size:14px; line-height:28px; margin:0 2% 4% 2%; text-align:left;}

.item_p{ font-size:16px;}
.btn_txt{ padding:1% 10% 1% 10%;}
}

img.ttl01 {display: block;max-width: 180px;margin: 50px auto 0px;}
