/*
Theme Name:hamberger_code
Description:ハンバーガーのコードです
Version:1.0
Author:ハンバーグ師匠
*/


/* 調整用スタイル */
body {
  margin: 0;
  padding: 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  color: #333;
  line-height: 2.0;
  letter-spacing: 0.1em;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
 }
h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  vertical-align: bottom;
}
figure {
  margin: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul,li,dl,dt,dd {
  margin:0;
  padding:0;
  list-style: none;
}
a { 
  /* color: #fff; */
  text-decoration: none; 
  transition: all .6s ease;
}
a:hover { 
  transition: all .6s ease;
}
h2{
  color: #fff;
  font-size: 2rem;
}





/* ヘッダー */

.header {
  width: 100%;
  height: 67px;
  border-bottom:3px solid #e14a71;
  position: fixed;
  background: #fff;
  z-index: 999;
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  
}
.header_inner {
  width: 90%;
  height: 60px;
  background-color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header_inner img{
  width: 40px;
  padding-top: 3px;
} 
.logo-pc{
  display: none;
}
.logoname-pc{
  display: none;
}
.header_inner .logoname{
  width: 60%;
  max-width: 300px;
}


/* ハンバーガーメニュー */

/* pcの時のメニュー */
.nav-pc-menu{
  display: -webkit-flex;
  display: flex ;
  display: none;

}
/* #nav-drawer {
  display:block;
}
.nav-pc-menu{
  display: none;
} */
.nav-pc-menu li{
  font-size:14px;
  padding-right: 15px;
}
#nav-drawer {
  position: relative;
  display: none;
  display:block;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 5px;/*線の太さ*/
  width: 32px;/*長さ*/
  border-radius: 3px;
  background: #e14a71;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -11px;
}
#nav-open span:after {
  bottom: -22px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 92%;
  max-width: 550px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.nav-ham-items{
  text-align: center;
  position: absolute;
  top:15%;
  left:50%;
  transform: translateX(-50%);
}
.nav-items_item{
  padding-bottom: 20px;
}
.nav-items_item a{
  color: #000;
}


/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
 position: absolute;
 top:10px;
 right:15px;
}



/* トップページ */

/* ヒーローイメージ */
.hero {
  background-image: url(images/mobile/top-hero-mobile2.jpg);
  /* background:center; */
  background-size: cover;
  background-position: center;
  height: 60vh;
  margin: auto;
  position: relative;
}
.h2-ttl{
  line-height: 20px;
  margin-bottom: 15px;
}
/* イチゴ狩りのfixed */
.ichigogari-fixed-all{
  width: 50%;
  background: #e14a71;
  text-align: center;
  position: absolute;
  bottom:0;
  position: fixed;
  z-index: 50;
  line-height: 3.0;
}
.ichigogari-fixed{
  color: #fff;
  font-size: 16px;
}
.ichigogari-fixed-pc{
  display: none;
}
.ichigo-icon{
  width: 18px;
  padding-bottom: 15px;
}
/* オンラインショップのfixed */
.onlineshop-fixed-all{
  display: block;
  width: 50%;
  background: #F9EBDF;
  text-align: center;
  position: absolute;
  bottom:0;
  right: 0;
  position: fixed;
  z-index: 50;
  line-height: 3.0;
}

.onlineshop-fixed{
  color: #e14a71;
  font-size: 14px;
}
.ichigogari-fixed-all-pc{
  display: none;
}
.cart-icon{
  width: 18px;
  padding-bottom: 15px;
}
.onlineshop-fixed-all-pc{
  display: none;
}
.text-contents{
  background-color: #E2849C;
  width: 100%;
}
.text-contents h2{
  font-size: 16px;
  padding: 10px 0 5px 0;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.text-contents h3{
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  padding-bottom:15px ;
  width: 90%;
  margin: 0 auto;
}

/* news */
.container-news{
  text-align: center;
  padding-bottom: 50px;
}
.news-ttl{
  color: #e14a71;
  font-size: 20px;
  padding: 50px 0 50px 0;
}
.news-txt-all{
  padding-bottom: 40px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}
.news-txt-all a{
  color: #000;
}
.news-txt{
  font-size: 16px;
  line-height: 28px;
 
  }

.news-syousai{
  color: #fff;
  font-size: 16px;
  background: #e14a71;
  border-radius: 20px;
  padding: 5px 10px; 
  
  }


/* top-ichigogari */
.container-top-ichigogari{
  text-align: center;
  padding-bottom: 80px;
}
.effect-fade {
  opacity: 0;
  transform: translate(0, 100px); /* フェードインで動く高さを指定 */
  transition: all 2000ms; /* フェードインにかかる時間を指定 */
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.top-ichigogari-hero{
  background-image: url(images/mobile/top-ichigogari-mobile.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 60vh;
  margin: auto;
  position: relative;
}
.top-ichigogari-hero-txt{
  font-size: 14px;
  line-height: 18px;
  background: #fff;
  width: 80%;
  max-width: 450px;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  top:63%;
  left: 50%;
  transform: translateX(-50%);

}
.top-ichigogari-point-all{
  padding: 30px 0 70px 0;
}
.top-ichigogari-point{
  text-align: center;
}
.top-ichigogari-point img{
  width: 80%;
}
.top-ichigogari-point-ttl{
  color: #e14a71;
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
  padding-bottom: 15px;
}

.top-ichigogari-point-txt{
  font-size: 14px;
  line-height: 20px;
}

.ichigogari-yoyaku{
  color: #fff;
  font-size: 18px;
  background: #e14a71;
  border-radius: 20px;
  padding: 5px 10px; 
}
.white-logo-icon{
  width: 20px;
  padding-bottom: 9px;
}


/* instagram */
.container-top-instagram{
  text-align: center;
  padding-bottom: 50px;
}
.container-top-instagram .insta-koushiki{
  width: 90%;
}
.instagram-ttl-all{
  padding-bottom: 20px;
}
.instagram-ttl{
  color: #000;
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.instagram-logo{
  width: 20px;
  padding-bottom: 9px;
}


/* line */
.container-top-line{
  background-image: url(images/mobile/line-otomodaci-mobile.jpg);background-size: cover;
  background-position: center;
  width: 100%;
  height: 65vh;
  position: relative;
}

.line-txt{
  font-size: 14px;
  line-height: 18px;
  background: #fff;
  width: 80%;
  max-width: 450px;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  top:56%;
  left: 50%;
  transform: translateX(-50%);
}
.line-yoyaku{
  color: #fff;
  font-size: 18px;
  width: 250px;
  text-align: center;
  background: #e14a71;
  border-radius: 20px;
  padding: 5px 10px; 
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}
.white-logo-icon-line{
  width: 20px;
  padding-bottom: 9px;
}

/* access */
.access-top{
  background-image: url(images/mobile/access_mobile2.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 65vh;
  position: relative;
  text-align: center;
}
.access-ttl{
  color: #000;
  font-size: 22px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
  position: absolute;
  top:45%;
  left:50%;
  transform: translateX(-50%);
}
.access-txt-all{
  color: #000;
  width: 80%;
  max-width: 450px;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px; 
  position: absolute;
  top:57%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
}
.access-txt-ttl{
  font-size: 16px;
}
.access-txt{
  font-size: 14px;
  padding-bottom: 15px;
  line-height: 14px;
}

/* map */
.map-top{
  width: 80%;
  margin: 30px auto ;
  text-align: center;
}

.map-top img{
  max-width: 550px;
}
.map-txt{
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  padding: 40px 0;
}
.googlemap{
  font-size: 14px;
  color: #000;
  width: 130px;
  display: block;
  background: #f3f3f3;
  border-radius: 20px;
  padding: 5px 10px; 
  margin: 10px auto;
}
.otoiawase{
  color: #fff ;
  font-size: 18px;
  display: block;
  width: 180px;
  background: #e14a71;
  border-radius:20px;
  padding: 10px; 
  margin: 90px auto;
}

/* footer */
footer{
  font-size: 12px;
  color: #fff;
  background-color: #e14a71;
  width: 100%;
  text-align: center;
  height: 80px;
  z-index: 999;
  position: relative;
}
/* .footer { */
  /* background-color: #f6f6f6; */
  /* height: 200px; */
  /* display: flex; */
/* } */

footer p{
  width: 100%;
  /* margin: 0 auto; */
  position: absolute;
  top:50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); 
}






/* イチゴ狩りについて */
/* PCのimageを表示しない */
.page-top-ichigogari-pc{
  display:none;
}
.ichigogari-text-contents{
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-top: 20px;
}
/* (キッチンカーページと共通) */
.page-ichigogari-point-all,.page-kitchencar-point-all{
  padding-bottom: 70px;
}
.page-ichigogari-point,.page-kitchencar-point{
  text-align: center;
  padding-bottom: 80px;
}
.page-ichigogari-point,.page-kitchencar-point　img{
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}
.page-ichigogari-point-ttl,.page-kitchencar-point-ttl{
  color: #e14a71;
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
  padding-bottom: 15px;
}
.page-ichigogari-point-txt{
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
}
.point-sub{
  width: 80%;
  margin: 50px auto 10px;
}
.hinsyu-syousai{
  color: #fff ;
  font-size: 14px;
  display: block;
  width: 180px;
  background: #e14a71;
  border-radius: 20px;
  padding: 0px ; 
  margin: 90px auto 0 auto;
}
.point-sub2-ttl{
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.point-sub2-txt{
  font-size: 14px;
  line-height: 18px;
  text-align: left;
}
.touen-syousai{
  color: #fff ;
  font-size: 14px;
  display: block;
  width: 180px;
  background: #e14a71;
  border-radius: 20px;
  padding: 0 10px ; 
  margin: 60px auto 0 auto;
}
.page-ichigogari-yoyaku{
  display: block;
  color: #e14a71;   
  font-size: 18px;
  text-align: center;
  width: 250px;
  background: #fff;
  border-radius: 20px;
  border:solid 3px#e14a71;
  padding: 0 5px ; 
  margin: 90px auto 0px auto;
}
.red-logo-icon{
    width: 20px;
    padding-bottom: 10px;
  }







/* フルーミングについて */
/* PCのimageを表示しない */
.page-top-about-pc{
  display:none;
}
.about-text-contents{
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

.about-mokuji{
  font-size: 12px;
  margin: 50px auto;
  text-align: center;
}
.about-mokuji a{
  color: #000;
}

/* こだわり  */
.kodawari {
  color: #000;
  font-size: 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.kodawari-ttl {
  padding-bottom: 20px;
}
.kodawari-txt{
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0 50px;
}

/* ごあいさつ */
.goaisatsu{
  color: #000;
  font-size: 20px;
  text-align: center;
  padding-bottom: 50px;
  width: 80%;
  margin: 0 auto;
}
.goaisatsu-ttl{
  padding-bottom: 20px;
}
.goaisatsu-txt{
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0 20px;
}
.goaisatsu-map-wrap{
  text-align: center;
}
.goaisatsu-map{
  width: 80%;
  padding: 50px 0;
}
.kodawari-hero-ans{
  width: 100%;
}



/* 商品紹介ページ */
.about-syoukai-contents{
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
/* PCのimageを表示しない */
.page-top-syoukai-pc{
  display: none;
}

/* 品種紹介 */
.hinsyu-syoukai,.syouhin-syoukai{
  color: #000;
  font-size: 20px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 100px;
}
.hinsyu-ttl,.syouhin-ttl{
  padding-bottom: 20px;
}
.hinsyu-syoukai-txt,.syouhin-syoukai-txt{
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0 50px;
}
.hinsyu-kobetsu{
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  padding: 30px 0;
}
.hinsyu-kobetsu-contents{
  padding-top: 10%;
}
.kisuu{
  flex-direction: row;
}
.gusuu{
  flex-direction: row-reverse;
}
.hinsyu-kobetsu-img{
  width: 45%;
}
.hinsyu-kobetsu-ttl{
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.hinsyu-kobetsu-txt{
  font-size: 14px;
  line-height: 22px;
}


/* 商品紹介 */
/* (.syouhin-syoukai,.syouhin-ttl,.syouhin-syoukai-txtは品種紹介と共通) */

.shyouhin-txt{
  font-size: 14px;
  line-height: 19px;
  text-align: left;
}
.shyouhin-price{
  font-size: 16px;
  padding: 20px 0 70px 0;
}
/* .syouhin-online{
  display: block;
  color: #e14a71;   
  font-size: 18px;
  text-align: center;
  /* width: 250px; */
  /* background: #fff; */
  /* border-radius: 20px; */
  /* border:solid 3px#e14a71; */
  /* padding: 0 5px ;  */
  /* margin: 90px auto 0px auto; */



/* キッチンカー */
.container-kitchencar{
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
.page-top-kitchencar-pc{
  display: none;
}
.kitchencar-subttl{
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0 50px;
}
.kitchencar-kodawari{
  color: #000;
  font-size: 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.kitchencar-kodawari-ttl{
  padding: 0;
}
/* (page-kitchencar-point-all,page-kitchencar-point,page-kitchencar-point-ttlはイチゴ狩りのポイントと共通) */
.page-kitchencar-point{
  padding-bottom: 50px;
}
.page-kitchencar-point-txt{
  width: 100%;
  font-size: 14px;
}
.kitchencar-point-sub{
  width: 80%;
  margin: 50px auto 10px;
}
/* (共通クラス) */
.menu,.kouritokunsei,.lineshopcard{
  color: #e14a71 ;
  font-size: 18px;
  display: block;
  width: 60%;
  border:solid 3px #e14a71;
  border-radius: 20px;
  padding: 5px ; 
  margin: 0 auto;
}
.kouritokunsei{
  width: 80%;
}
.lineshopcard{
  font-size: 16px;
  width: 80%;
}

/* メニュー */
.menu-img,.eigyoubi-img{
  padding: 30px 0;
}
.menu-txt-all{
  text-align: left;
  padding-bottom: 80px;
}
.menu-txt{
  font-size: 14px;
  text-align: center;  
}


/* ブレイクポイント タブレット */  
@media screen and (min-width: 490px) {
  .hero {
    height: 600px;
    background-image: url(images/pc/top-hero-pc5.jpg);
  }
  .h2-ttl-none{
    display: none;
  }
  /* スティッキーいちご狩り */
  .ichigogari-fixed-all{
    display: none;
  }
  .ichigogari-fixed-all-pc{
    display: block;
  }
  .ichigogari-icon-pc{
    display: block;
    width: 120px;
    right: 20px;
    top:400px;
    position: fixed;
    z-index: 50;
    animation:25s linear infinite rotation1;
  }
    @keyframes rotation1{
      0%{ transform:rotate(0);}
      100%{ transform:rotate(360deg); }
    }
  
  .ichigogari-icon-img-pc{
    display: block!important;
    width: 80px;
    /* position: absolute; */
    right: 40px;
    top:420px;
    position: fixed;
    z-index: 50;
  }
  .ichigogari-fixed-pc{
    display: block;
    width: 70px;
  }

  /* スティッキーオンラインショップ */
  .onlineshop-fixed-all{
    display: none;
  }
  .onlineshop-fixed-all-pc{
    display: block;
    position: fixed;
    z-index: 50;
  }
  .online-icon-pc{
    display: block;
    width: 120px;
    right: 20px;
    top:500px;
    position: fixed;
    z-index: 50;
    animation:25s linear infinite rotation1;
  }
    @keyframes rotation1{
      0%{ transform:rotate(0);}
      100%{ transform:rotate(360deg); }
    }
  
  .online-icon-img-pc{
    display: block!important;
    width: 80px;
    right: 37px;
    top:518px;
    position: fixed;
    z-index: 50;
  }
    
  .onlineshop-fixed-pc{
    display: block;
    width: 70px;
    /* top:30%; */
  }

  .text-contents h2 {
    font-size: 20px;
  }
  .text-contents h3{
    font-size: 14px;
  } 
  .news-txt-all{
    width: 70%;
  }
  .top-ichigogari-hero-txt { 
    top:70%
  } 
  .container-top-line{
    background-image: url(images/pc/line-otomodachi-pc-2.jpg);
  }
  .top-ichigogari-hero{
    background-image: url(images/pc/top-ichigogari-pc-2.jpg);
  }
  .line-txt{
    top:63%;
  }
  .top-ichigogari-point img{
    width: 80%;
    max-width: 380px;
  }
  /* .line-yoyaku{
    bottom: 7%;
  } */
  .access-top{
    background-image: url(images/pc/access-pc-2.jpg);
  }
  .access-ttl{
    font-size: 18px;
    top:50%;
  }
  /* .container-top-line{ */
    /* height: 85vh; */
  /* } */
  /* .insta_line{
    display: flex;
  } */
  
  /* ハンバーガーメニュー */
     /* #nav-drawer {
      display:block;
    }
    .nav-pc-menu{
      display: none;
    } 
     .nav-pc-menu .nav-pc-menu-item a{
      color: #000 !important;
    } 
     .menu-item-name{
      color: #000 !important; */
    
  /* .hero{
    height: 60vh;
  }  */
  .hero h2{
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  .hero-h2-br{
    display: block;
  }
  .sub-title{
    font-size: 12px;;
    top:60%;
  } 
  .container-top-instagram .insta-koushiki{
    width: 70%; 
  }
  .map-top{
    padding-top: 80px;
  }
  
  /* イチゴ狩りについて */
/* PCのimageを表示させてmobileのimageを表示させないようにする */
  .page-top-ichigogari{
    display: none;
  }
  .page-top-ichigogari-pc{
    display: block;
  }

  /* フルーミングについて */
  /* PCのimageを表示させてmobileのimageを表示させないようにする */
  .page-top-about-mobile{
    display: none;
  }
  .page-top-about-pc{
    display: block;
  }

  /* 商品紹介 */
  /* PCのimageを表示させてmobileのimageを表示させないようにする */
  .page-top-syoukai-mobile{
    display: none;
  }
  .page-top-syoukai-pc{
    display: block;
  }


/* ブレイクポイント タブレット */  
@media screen and (min-width: 720px) {
/* ブレイクポイント タブレット ipadmini */ 

  /* イチゴ狩りについて */
  .page-ichigogari-point{
    display: flex;
    width: 90%;
    max-width: none;
  }
  .page-ichigogari-point-main{
    width: 45%;
  }
  .point-sub{
    padding-top: 60px;
    margin: auto;
    margin-left: 40px;
    width: 45%;
  }


  /* フルーミングについて */
  .kodawari{
    width: 90%;
  }
  .about-kodawari-all{
    display: flex;
  }
  .about-kodawari{
    padding: 0 5px;
  }
  .goaisatsu{
    width: 90%;
  }
  .goaisatsu-1{
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
  .goaisatsu-txt-1{
    padding-top: 30%;
  }
  .goaisatsu-2{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    margin: 0 auto;
  }
  .kodawari-hero-ans{
    width: 50%;
  }
  .goaisatsu-txt-2{
    padding-left: 20px;
    padding-top: 10%;
  }


  /* 商品・品種紹介 */
  .hinsyu-syoukai-txt{
    text-align: center;
  }
  /* 奇数(kisuu)と偶数(gusuu)のdisplayを初期値に戻す */
  .kisuu{
    display: inline;
  }
  .gusuu{
    display: inline;
  }
  /* タブレットサイズ時の上段グループ */
  .jyoudan{
    display: flex;
    width: 68%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .hinsyu-kobetsu{
    padding: 0 10px;
  }
  /* タブレットサイズの時の下段グループ */
  .gedan{
    display: flex;
  }

  /* 商品紹介 */
  .syouhin-syoukai-txt{
    text-align: center;
  }
  /* タブレットサイズの時の上段であるパック商品と贈答用 */
  .pack_zoutou{
    display: flex;
  }
  .syouhin-kobetsu{
    padding: 0 10px;
  }
  /* タブレットサイズの時の下段であるふぞろいイチゴと冷凍イチゴ */
  .huzoroi_reitou{
    display: flex;
  }

  /* キッチンカー */
  .page-top-kitchencar-mobile{
    display: none;
  }
  .page-top-kitchencar-pc{
    display: block;
  }
  .kitchencar-text-contents-br{
    display: none;
  }
  .kitchencar-subttl{
    width:80%;
  }
  .kitchencar-img{
    width: 70%;
  }
  .page-kitchencar-point-all{
    display: flex;
    margin: 0 auto;
  }
  .page-kitchencar-point{
    width: 33%;
    padding: 0 10px;
  }
  .menu-img{
    width: 70%;
  }
  .eigyoubi-img{
    width: 70%;
  }
  .menu-txt-all{
    width: 100%;
    margin: 0 auto;
    text-align: center!important;
  }
}



@media screen and (min-width: 950px) {
  .header_inner .logo-mobile{
    display: none;
  }
  .header_inner .logo-pc{
    display: block;
    width: 300px;
    padding-top: 3px;
  }
  .header_inner .logoname{
    display: none;1
  }
  /* ハンバーガーメニュー */
    #nav-drawer {
      display:none;
    }
    .nav-pc-menu{
      display: block;
      display: flex;
    } 
     .nav-pc-menu .nav-pc-menu-item a{
      color: #000 !important;
      font-size: 12px;
    } 
     .menu-item-name{
      color: #000 !important; 
    }  
    .top-ichigogari-hero-txt{
      top:75%;
    }
    .top-ichigogari-point-all{
      display: flex;
      justify-content: space-around;
      /* width: 100%; */
      /* margin: 0 auto; */
    }
    .top-ichigogari-point img{
    width: 100%;
    }
  .hero {
    height: 750px;
  }
  .news-txt-all{
    width: 40%;
  }
}
}