@charset "UTF-8";
/* CSS Document */

/* 全体のレイアウトと文字設定 */
.body {
  max-width: 800px; /* 読みやすいように幅を制限 */
  margin: 0 auto; /* 中央揃え */
  padding: 40px 20px;
  color: #333;
  line-height: 1.8; 
	text-align: left;
}

/* 大見出し（個人情報の取扱について） */
.body h1 {
  font-size: 24px;
  
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ccc;
	text-align: center;
}

/* 最初のリード文の余白 */
.body > p:first-of-type {
  margin-bottom: 40px;
}

/* 各項目の見出し（h2） */
.body h2 {
  font-size: 18px;
  color: #0056b3; /* テーマカラーに合わせる（適宜変更してください） */
  margin-top: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid #0056b3; /* 左にアクセントの線 */
}

/* 各項目の本文 */
.body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
}
.body span{
	font-size: 2rem;
}

/* --- お問い合わせエリアの特別装飾 --- */
/* 「個人情報に関するお問い合わせ」の見出し */
.body h2:last-of-type {
  margin-top: 60px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
  border-left: none; /* 左の線を消す */
  padding-left: 0;
  text-align: center; /* 中央揃え */
  color: #333;
}

/* お問い合わせ内容の段落 */
.body h2:last-of-type + p {
  text-align: center;
  background-color: #f5f6f6; /* 薄いグレーの背景 */
  padding: 20px;
  border-radius: 8px; /* 角丸 */
  font-weight: bold;
}