



h1 {
  margin: 0;
  font-size: 2rem;
}

h2 {
  color: #007acc;
  border-bottom: 2px solid #007acc;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
}

section{
  padding: 1.5rem;
  max-width: 960px;
  margin: auto;
  background: white;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(47, 21, 242, 0.1);
  border-radius: 8px;
}

/* 見出しの上下余白をしっかりつける */
.merits h2,
.features h2 {
  margin: 2rem 0 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #004a99;
}

/* リストスタイルリセット & 内側余白 */
ul {
  padding-left: 1.8rem;
  line-height: 1.7;
}

/* 各リスト項目の間隔とフォントサイズ */
ul li {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  position: relative;
}

/* 太字部分の色と大きさを強調 */
ul li strong {
  color: #007acc;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
}

/* 記号はHTMLに直書きしているのでCSSで追加は不要です */


article {
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  background: #fff;
}

table, th, td {
  border: 1px solid #ccc;
}

th {
  background: #e6f2fa;
  font-weight: bold;
}

th, td {
  padding: 0.75rem;
  text-align: center;
}

p {
  line-height: 1.6;
  text-align: center;
}
/* 価格部分の強調 */
.price {
  color: #d9534f;
  font-weight: 700;
  font-size: 1.15rem;
}


