main h1 {
  font-size: 1.9em;
  font-weight: bold;
  margin: 1.2em 0 0.8em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #999;
  line-height: 1.4;
  color: #333;
}

/* h2：セクション見出し */
.section > h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 1.5em 0 0.6em;
  color: #444;
  border-left: 6px solid #666;
  padding-left: 0.5em;
  line-height: 1.4;
}

/* レスポンシブ調整 */
@media screen and (max-width: 768px) {
  main h1 {
    font-size: 1.5em;
  }

  .section > h2 {
    font-size: 1.3em;
  }
}

/* 比較表スタイル */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

@media screen and (max-width: 768px) {
  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 1em;
    border-bottom: 2px solid #ddd;
  }

  .comparison-table td {
    text-align: left;
    padding-left: 50%;
    position: relative;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 12px;
    font-weight: bold;
    white-space: nowrap;
  }
}

.faq-item {
  margin: 1em 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.8em 1em;
  background: #f9f9f9;
  transition: background-color 0.3s ease;
}

.faq-item summary {
  font-weight: bold;
  cursor: pointer;
  outline: none;
}

.faq-item[open] {
  background: #f1f1f1;
}

.faq-item p {
  margin-top: 0.5em;
  line-height: 1.6;
}
/*# sourceMappingURL=how-to-deliver.css.map */
