@charset "UTF-8";
body {
  background: #eef;
  font-family: sans-serif;
  padding: 1em;
  max-width: 600px;
  margin: auto;
}

h1 {
  color: #333;
  text-align: center;
}

label,
select,
button {
  display: block;
  margin: 1em 0;
  width: 100%;
  font-size: 16px;
  color: #000;
}

select {
  background: #fff;
}

button {
  padding: 1em;
  font-size: 1rem;
}

table {
  width: 100%;
  margin-bottom: 1em;
}

.btn {
  border: none;
  border-radius: 6px;
  background: #aaa;
}

.checkout {
  background: #6b92fb;
  color: #fff;
}

.miss {
  background: #ffb700;
  color: #000;
}

.exm {
  margin-top: 1em;
}

.customerBlock {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
#itemTable {
  font-size: 16px;
}
#itemTable .nameCell {
  border-bottom: 1px solid #000;
  display: flex;
  gap: 1em;
  align-items: center;
}
#itemTable .nameCell__price {
  margin-left: auto;
  /* 右寄せ */
}

td {
  margin-bottom: 0.5em;
}
td input[type=number] {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.5em;
  /* ← パディング・ボーダー込みで100%に */
}

td:nth-child(2) {
  width: 20%;
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

#popup-content {
  background: white;
  padding: 2em;
  max-width: 90%;
  border-radius: 10px;
}

#popup-summary {
  white-space: pre-line;
}

#log {
  margin-top: 2em;
  white-space: pre-wrap;
  font-size: 0.9em;
  background: #f9f9f9;
  padding: 1em;
}

#grazie {
  display: none;
}

:root {
  /* --brand-color: orange; */
  --brand-color: skyblue;
}

.devArea__ttl {
  text-align: center;
}