.site-header {
    height: 40vh;
}

.soft-table-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.soft-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  /*font-family: 'Noto Sans JP', sans-serif;*/
}

.soft-table thead {
  background-color: #e6f0fa;
  color: #333;
}

.soft-table th,
.soft-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.soft-table tbody tr:last-child td {
  border-bottom: none;
}

.soft-table tbody tr:hover {
  background-color: #f9fbfd;
  transition: background 0.3s ease;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .soft-table thead {
    display: none;
  }

  .soft-table tr {
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 10px;
    background: #fff;
  }

  .soft-table td {
    display: flex;
    justify-content: space-between;
    padding: 5px;s
    border: none;
    border-bottom: 1px solid #ccc;
  }

  .soft-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #55a;
  }

  .soft-table tbody tr:last-child td {
    border-bottom: none;
  }
}
