/* ============================================================
   お品書き（/menu）専用スタイル
   common.css → subpage.css → menu.css の順で読み込む
   ============================================================ */

/* セクション見出しの下に置く一言 */
.section__lead {
  font-size: 13px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 22px;
}

/* ------------------------------------------------------------
   お料理（コース）
   ------------------------------------------------------------ */
.course {
  text-align: center;
}

.course__name {
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.34em;
  /* letter-spacing の分だけ右にずれるので、その半分を戻して中央に見せる */
  text-indent: 0.34em;
}

.course__en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 13px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

/* 英字の両脇に細い罫線 */
.course__en::before,
.course__en::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}

.course__list {
  list-style: none;
  margin-top: 24px;
}

.dish {
  padding: 20px 0;
}

.dish + .dish {
  border-top: 1px solid var(--line);
}

.dish:last-child {
  padding-bottom: 4px;
}

.dish__no {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--accent);
}

.dish__name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* 元メニューで2行目以降だった補足説明 */
.dish__desc {
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------
   お飲み物
   ------------------------------------------------------------ */
.free-badge {
  display: inline-block;
  margin: -6px 0 14px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 15px;
}

.dcard__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.dcard__title::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.dcard__en {
  margin: 3px 0 18px 24px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* 銘柄・飲み方（元メニューの「（ ）」の中身）は名前の下に小さく敷く */
.drinks {
  list-style: none;
}

.drinks li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.drinks li:first-child {
  border-top: 1px solid var(--line);
}

.drinks__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.drinks__note + .drinks__note {
  margin-top: 1px;
}

.drinks__note {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* 品数の多いもの（カクテル・ソフトドリンク）は四角いチップで並べる */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chips li {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  border: 1px solid var(--line);
  padding: 6px 11px;
}
