/*
 * ec-table.css
 * 旧 edai.html / daig.html の本文中にあった <style> をそのまま移植。
 * （永代供養・水子供養の料金表）
 */
.bgc{
  background-color: rgb(246, 246, 246) !important;
}
.ec-table-container {
  max-width: 100%;
  margin: 2em auto;
  border-radius: 8px;
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400;
  font-style: normal;
  margin-top: 3%;
  margin-bottom: 0.2%;
}

.ec-table {
  width: 100%;
  border-collapse: collapse;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ec-cell {
  padding: 1em;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fff;
  text-align: left;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .ec-table {
    grid-template-columns: 1fr;
  }
}
