.menu-wrapper{
  display: none;
}

@media (max-width: 991px){
  
/* ==================== ヘッダー ==================== */  

  .head_left,.head_right{
    display: none;
  }

  .menu-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFF7;
    z-index: 50;
    margin: 0;
  }
  .menu-icon {
    width: 40px;
    height: 30px;
    position: fixed; /* ← fixedにして常に左上固定 */
    top: 10px;
    right: 20px;
    cursor: pointer;
    z-index: 300;
    display: inline-block;
  }

  .menu-icon span {
    display: block;
    height: 4px;
    margin: 6px 0;
    background: #333;
    border-radius: 2px;
    transition: 0.4s;
  }

  /* ハンバーガーがXに変形 */
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* オーバーレイ背景 */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 100;
  }

  #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* メニュー本体（左から出す） */
  .menu {
    position: fixed;
    top: 0;
    left: -250px; /* ← 初期位置を左へ */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.4s ease;
    z-index: 200;
  }

  #menu-toggle:checked ~ .menu {
    left: 0; /* ← 開いたときは左0へ */
  }

  .menu ul {
    list-style: none;
    padding: 60px 20px;
  }

  .menu li {
    margin: 20px 0;
  }

  .menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .menu li a{
    border-right: 0px;
  }
  .menu a:hover {
    color: #999;
  }  
  .menu ul li a::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: solid 2px #333;
      border-right: solid 2px #333;
      transform: rotate(45deg);
      position: absolute;
      right: 30px;
  }  
  
  .menu-wrapper h1 {
    padding: 10px;
  }
  .head_search02{
    display: none;
  }
  .search{
    margin-top: 10px;
    background-color: #ffd966;
    width: 100%;
    padding:10px;
    background-position: center;
  }
/* ==================== ヘッダー ==================== */  
  
/* ==================== トップページ ==================== */  
  
  .topics-box .topics-list {
    display: block;
  }
  .topics-box .topics-list dt{
    max-width: 100%;
  }

/* ==================== トップページ ==================== */  
  
/* ==================== 新着情報 ==================== */

.blog-previous_post_link{
  text-align: center;
  margin-bottom: 10px;
}
.blog-next_post_link{
  text-align: center;
}
  
/* ==================== 新着情報 ==================== */

/* ==================== 会社案内 ==================== */  
  
.company {
  border-top: 10px solid #5BA84A;
  padding:10px;
}
  
.campany-table,
.campany-table tr,
.campany-table td,
.campany-table th {display:grid; width:100%}
.campany-table th {width:auto;border-bottom: 0px;padding-bottom: 0px;}

  /* ==================== 会社案内 ==================== */  
  
/* ==================== お役立ち情報 ==================== */  
  .recipe-tab > label {
  font-size: 1em;
}
  
  
.recipe-tab-recipe .recipe-tab-recipe-list .recipe-tab-recipe-list-ingredients .list dt{
  width: 40%;
}
.recipe-tab-recipe .recipe-tab-recipe-list .recipe-tab-recipe-list-ingredients .list dd{
  width: 60%;
}
  
.recipe-tab-recipe .recipe-tab-recipe-list .recipe-tab-recipe-list-ingredients .iconimg{
  width: 120px;
}

.meat_nav li{
  display: inline-grid;
}
  
.about_nav li{
  display: inline-grid;
}
/* ==================== お役立ち情報 ==================== */  

  
/* ==================== フッター ==================== */  
  #page-top a{
    display: none;
  }
  .foot_nav{
    display: none;
  } 
/* ==================== フッター ==================== */  
}
@media (max-width: 576px){
  .recipe-tab-recipe .recipe-tab-recipe-list .recipe-tab-recipe-list-ingredients .iconimg {
    display: none;
  }
}