/* ================= RESET ================= */
body {
    margin: 0;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  
  /* セクション共通余白 */
  .menu-section,
  .menu-hero {
    padding: 120px 5%;
  }
  
  /* 中央幅固定 */
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ================= タイトル ================= */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-title {
    font-size: 34px;
    letter-spacing: 0.15em;
    font-weight: 400;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 18px auto;
    background: currentColor;
    opacity: 0.5;
  }
  
  .section-sub {
    font-size: 15px;
    letter-spacing: 0.2em;
    margin-top: 10px;
  }
  .menu-hero {
    background: #000;
    color: #fff;
  }
  
  .menu-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
  }
  

.menu-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.menu-hero__price {
  font-size: 26px;
  margin-bottom: 18px;
}

.menu-hero__note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
}

.menu-hero__desc {
  font-size: 15px;
  line-height: 2.1;
}

.menu-hero__small {
  font-size: 12px;
  color: #aaa;
  margin-top: 15px;
}

.menu-section--white {
    background: #fff;
    color: #222;
  }
  
  .menu-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
  }
  
  .menu-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .price {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .trial {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
  }
  .menu-section--beige {
    background: #f4efe8;
    color: #222;
  }
  
  .menu-section--beige .section-title::after {
    background: #999;
  }
  
  .menu-hero__inner { max-width: 1200px; margin: 0 auto; }
  .menu-hero__content { margin-left: 40px; }  /* ← これがズレ原因になりやすい */
  