.section-title {
  font-size: 1.4em;
  margin: 2em 0 0.5em;
  border-left: 6px solid #4CAF50;
  padding-left: 10px;
  color: #333;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5em 1em;
}

.checklist li {
  position: relative;
  padding-left: 1.6em;
  background: #f9fdf9;
  border: 1px solid #cce5cc;
  border-radius: 6px;
  padding: 8px 12px 8px 2em;
  font-size: 12px;
  line-height: 1.5;
  color: #2e4e2e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .checklist {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1em;
}

.property-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  font-size: 15px;
  color: #333;
}

.property-table th,
.property-table td {
  border: 1px solid #ccc;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.property-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  min-width: 120px;
  white-space: nowrap;
}

.property-table td {
  background-color: #fff;
}

.property-table .price {
  color: #c00;
  font-weight: bold;
  font-size: 1.1em;
}

.property-table .section-title {
  background-color: #e0eaff;
  font-size: 1.1em;
  color: #003366;
  text-align: left;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .property-table th,
  .property-table td {
    font-size: 14px;
    padding: 8px;
  }

  .property-table {
    font-size: 14px;
    overflow-x: scroll;
  }
}
