/* セクション全体のスタイル */
section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

/* 見出しのスタイル */
section h2 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

section h3 {
  font-size: 1.2em;
  color: #333;
  margin-top: 40px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd; /* 下線を引いてセクションの区切りを強調 */
  padding-bottom: 5px;
}

/* コンテンツ全体のスタイル */
section .content {
  line-height: 1.7;
  color: #555;
}


section #policy{
  padding:20px 0;
}

section #policy p{
  padding:0 1em;
}

/* オーダーリストのスタイル */
section ol {
  margin: 20px 0;
  padding-left: 20px; /* 左側にインデントを追加 */
}

section ol li {
  margin-bottom: 15px;
  font-size: 1em;
  color: #444;
}

/* アンオーダーリストのスタイル */
ul {
  padding-left: 40px; /* 左側にインデントを追加 */
  margin-top: 10px;
  margin-bottom: 20px;
}

section ul li{
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #666;
  list-style-type: disc; /* 点のスタイル */
}

section li strong{
	display: block;
}


p.right{
  text-align: right;
}