 .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
    }

    /* 3列レイアウト設定 */
    .menu-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(3, 1fr);
    }

    /* タブレット・スマホ環境（画面幅768px以下）は1列 */
    @media (max-width: 768px) {
      .menu-grid {
        grid-template-columns: 1fr;
      }
    }

    /* 囲み枠のスタイル */
    .menu-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }
    .menu-item:hover {
      transform: translateY(-5px);
    }

    /* 写真の上に配置するタイトルのスタイル */
    .menu-title-header {
      padding: 10px 20px; /* タイトル部分の余白 */
      background-color: #fff; /* 背景色 */
    }
    .menu-title {
    font-size: 1.3em;
    color: #222;
    border-left: 3px solid #2f6e1b;	/*左の線の幅、線種、色*/
    padding-left: 20px;	/*線とテキストとの距離*/
    line-height: 1.3em;
    }

    /* 写真のスタイル */
    .menu-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    }

    /* 写真の下（説明文・価格）のスタイル */
    .menu-content {
      padding: 20px;
    }
    .menu-text {
    font-size: 0.95rem;
    color: #666;
    margin-left: -25px;
    margin-right: -25px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 5.3rem;
    }
    .menu-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2f6e1b;
    margin-bottom: -18px;
    margin-left: -18px;
    }
    .menu-koji {
      font-size: 1.1rem;
	  margin-bottom: -14px;    
      margin-left: -18px;
		    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
     
    }
