body {
  /*フォントと背景*/
  font-family: sans-serif;
  font-size: 16px;
  background: #fcfaf2;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/*アイコンとタイトルの配置*/
#title {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

#icon {
  /*中央揃え*/
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  margin-bottom: 20px;
  /*アイコンっぽく装飾*/
  border: 1px solid #dddddd;
  border-radius: 24px;
  width: 114px;
  height: 114px;
}

h3 {
  /*タイトルの書式*/
  text-align: center;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #4c4c4c;
}

#title p {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin: 0;
}

/*コンテンツエリア*/
#content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.policy-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h4 {
  font-size: 28px;
  color: #4c4c4c;
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 3px solid #ffcc66;
  padding-bottom: 10px;
}

.date {
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
}

h5 {
  font-size: 20px;
  color: #4c4c4c;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #66ccff;
  padding-left: 12px;
}

p {
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 10px;
  color: #333;
}

strong {
  color: #4c4c4c;
}

.contact {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  color: #ffcc66;
  text-decoration: underline;
}

.links {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #eeeeee;
  text-align: center;
}

.links p {
  margin: 10px 0;
}

.links a {
  font-size: 18px;
  color: #4c4c4c;
  font-weight: bold;
}

.links a:hover {
  color: #66ccff;
}

/*レスポンシブ対応*/
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  #title {
    padding-top: 20px;
  }

  h3 {
    font-size: 28px;
  }

  .policy-section {
    padding: 20px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 18px;
  }
}
