/* TOPセクション */
.top-section {
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
  margin-top: 60px; /* ナビゲーションバーに被らないように上にマージンを追加 */
  overflow: hidden; /* 画像がセクションからはみ出さないようにする */
}
.top-image {
  width: 100%;
  height: 200px; /* PCで縦幅25% */
  overflow: hidden;
  position: relative;
}
.top-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像の縦横比を維持しつつ、上下中央を基準にトリミング */
}
.top-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-icon {
  width: 30%; /* PC表示で横幅30% */
  height: auto;
  margin-bottom: 10px;
}
.top-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap; /* 改行を防ぐ */
}
@media (max-width: 768px) {
  .top-image {
    height: 200px; /* モバイルで縦幅40% */
  }
  .top-icon {
    width: 50%; /* モバイル表示で横幅50% */
  }
}

/* プライバシーポリシーページ用CSS */
.privacy-policy {
  padding: 60px 0;
}
.privacy-policy h1 {
  font-family: 'Noto Serif Japanese', serif;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
.privacy-policy h2 {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
.privacy-policy h3 {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}
.privacy-policy p {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.privacy-policy ul, .privacy-policy ol {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  padding-left: 30px;
}
.privacy-policy li {
  margin-bottom: 10px;
}
.privacy-policy .section-divider {
  border-top: 1px dashed #ccc;
  margin: 40px 0;
}
.privacy-policy .contact-info {
  background-color: #e9ecef;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 1px;
  padding-bottom: 30px;
  border-radius: 5px;
  margin-top: 20px;
}
.privacy-policy .contact-info h3 {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.privacy-policy .contact-info p {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .privacy-policy h1 {
    font-size: 24px;
  }
  .privacy-policy h2 {
    font-size: 20px;
  }
  .privacy-policy p, .privacy-policy ul, .privacy-policy ol {
    font-size: 14px;
  }
}