/* kit の最小スタイル。色はサイト側の変数（--elva-open / --elva-closed）を継承し、無ければ既定色。 */
.elva-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.elva-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.92em;
  line-height: 1.4;
  padding: 0.25em 0.8em;
  border-radius: 999px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.elva-badge::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: currentColor;
}
.elva-badge.is-open {
  color: var(--elva-open, #1b7f3b);
}
.elva-badge.is-closed {
  color: var(--elva-closed, #8a3b2e);
}
.elva-news {
  list-style: none;
  margin: 0;
  padding: 0;
}
.elva-news li {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  gap: 0.25em 1em;
  padding: 0.8em 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.elva-news time {
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}
.elva-news p {
  grid-column: 2;
  margin: 0.15em 0 0;
}
.elva-hours,
.elva-prices table {
  width: 100%;
  border-collapse: collapse;
}
.elva-hours th,
.elva-hours td,
.elva-prices th,
.elva-prices td {
  text-align: left;
  padding: 0.55em 0.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
  font-weight: inherit;
}
.elva-hours th {
  width: 6em;
  white-space: nowrap;
}
.elva-prices table {
  table-layout: fixed;
}
.elva-prices th[scope="row"] {
  width: 38%;
}
.elva-prices tr.group th {
  padding-top: 1.3em;
  font-size: 0.85em;
  font-weight: 700;
  border-bottom-width: 2px;
}
.elva-prices td.num {
  width: 7em;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 480px) {
  .elva-prices table {
    table-layout: auto;
  }
  .elva-prices th[scope="row"] {
    width: auto;
  }
}
.elva-form-msg {
  margin-top: 1em;
  padding: 1em;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
}
.elva-form-msg.is-error {
  background: #fff3f0;
}
.elva-print-sheet[hidden] {
  display: none;
}
@media (max-width: 480px) {
  .elva-news li {
    grid-template-columns: 1fr;
  }
  .elva-news p {
    grid-column: 1;
  }
}
