@charset "utf-8";

/* =========================
   ページタイトル
========================= */
.title {
  height: 310px;
  background-image: url(../images/menu/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4B2c14;
}

.title h1 {
  font-family: 'Yusei Magic', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

/* =========================
   メニュー一覧
========================= */
.item-list {
  width: 930px;
  max-width: 90%;
  margin: 75px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
}

.item-list li {
  background: #ffffff;
  padding: 16px;
  box-sizing: border-box;
}

/* 画像（使わない場合はHTML側で削除OK） */
.item-list img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* テキスト */
.item-list dl {
  margin-top: 16px;
}

.item-list dt {
  font-size: 16px;
  font-weight: bold;
}

.item-list dd {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

/* 価格 */
.item-list .price {
  font-size: 15px;
  font-weight: bold;
  margin-top: 12px;
}

/* 英字ラベル（縦回転なし・安全仕様） */
.item-list .item-label {
  font-size: 11px;
  color: #777;
  margin-top: 6px;
}

/* =========================
   注意書き
========================= */
.menu-note {
  font-size: 13px;
  color: #555;
  max-width: 800px;
  margin: 40px auto 0;
  line-height: 1.6;
  text-align: center;
}

/* =========================
   フッター余白
========================= */
.footer {
  margin-top: 100px;
}

/* =========================
   スマホ対応
========================= */
@media (max-width: 800px) {
  .item-list {
    margin-top: 45px;
    gap: 24px;
  }

  .item-list img {
    height: 150px;
  }

  .menu-note {
    margin-top: 24px;
    padding: 0 12px;
  }
}
