/* page.css — 下層ページ（メニュー / 個室・空間）共通部品。パターン非依存で横展開可 */

.section {
  padding: 66px 0;
}
.section--cream {
  background: var(--cream);
}
.section--paper {
  background: var(--paper);
}
.section__lead {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 2;
}

/* ---- メニュー詳細 ---- */
.menu-cat {
  margin-top: 54px;
}
.menu-cat + .menu-cat {
  margin-top: 64px;
}
.menu-cat__head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
}
.menu-cat:nth-child(even) .menu-cat__head {
  grid-template-columns: 1fr 300px;
}
.menu-cat:nth-child(even) .menu-cat__figure {
  order: 2;
}
.menu-cat__figure {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  background: #ded6c9;
}
.menu-cat__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-cat__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.menu-cat__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-top: 14px;
}
.menu-cat__desc {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.95;
}
.menu-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.menu-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
}
.menu-list__name {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 600;
}
.menu-list__name small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.menu-list__price {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
  white-space: nowrap;
}
.menu-list__price small {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ---- 個室・空間ギャラリー ---- */
.space-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.space-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.space-item__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ded6c9;
}
.space-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-item__body {
  padding: 18px 20px 22px;
}
.space-item__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.space-item__desc {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.space-badges {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.space-badge {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.space-badge .ico {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

.center {
  text-align: center;
}
.mt-48 {
  margin-top: 48px;
}

@media (max-width: 900px) {
  .menu-cat__head,
  .menu-cat:nth-child(even) .menu-cat__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .menu-cat:nth-child(even) .menu-cat__figure {
    order: 0;
  }
  .menu-cat__figure {
    max-width: 420px;
  }
  .space-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .space-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }
}
