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


/* 全体コンテナ */
.legal-notice {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ページタイトル全体のコンテナ（カード風） */
.page-header {
  max-width: 800px;
  margin: 40px auto 20px; /* 下のコンテンツとの間隔 */
  background-color: #fff;
  border-radius: 8px; /* 角丸 */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 軽い影で浮かせます */
  padding: 40px 20px 0; /* 下のパディングは0にして線を引き立たせる */
  text-align: center;
}

/* メインタイトル */
.main-title {
  color: #000000; /* 画像に近い青色 */
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 8px 0;
  letter-spacing: 0.1em;
}

/* サブタイトル */
.sub-title {
  color: #666;
  font-size: 1rem;
  margin: 0 0 20px 0;
}

/* 下線 */
.title-line {
  border: none;
  height: 4px;
  background-color: #000000; /* タイトルと同じ色 */
  width: 90%; /* 両端に少し余白を作る */
  margin: 0 auto;
}

/* 追加：イントロセクションのスタイル */
.intro-section {
  max-width: 800px;
  margin: 40px auto; /* 上下にゆとりを持たせる */
  padding: 0 20px;
  text-align: left; /* 文章は左寄せが読みやすいです */
}

/* 導入の文章 */
.intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px; /* 小見出しとの間隔 */
}

/* 小見出し（基本情報など） */
.section-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  border-left: 5px solid #4D4D4D; /* アクセントに縦線を推奨 */
  padding-left: 15px;
  margin-bottom: 30px;
}

/* --- スマホ版の微調整 --- */
@media screen and (max-width: 768px) {
  .intro-section {
    margin: 30px auto;
  }
  
  .intro-text {
    font-size: 0.95rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
}

/* フッター (変更なし) */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.8rem;
    color: #888;
}

/* --- スマホ版の調整 --- */
@media screen and (max-width: 768px) {
  .page-header {
    margin: 20px 15px;
    padding: 30px 15px 0;
  }
  
  .main-title {
    font-size: 1.5rem;
  }
  
  .sub-title {
    font-size: 0.85rem;
  }
}

/* 各セクションの余白 */
.item-group {
  margin-bottom: 32px;
}

/* 見出しのデザイン */
.title {
  font-size: 1.25rem; /* 20px相当 */
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: none; /* 画像に合わせシンプルに。必要なら下線を。 */
}

/* 本文のデザイン */
.content {
  font-size: 1rem; /* 16px */
  margin-left: 0;
  padding-left: 4px;
}

.content p {
  margin-bottom: 8px;
}

/* 注釈（※の部分） */
.note {
  font-size: 0.9rem;
  color: #555;
}

/* リンク */
.content a {
  color: #0066cc;
  text-decoration: underline;
}

/* --- スマートフォン版の調整 --- */
@media screen and (max-width: 768px) {
  .legal-notice {
    margin: 20px auto;
  }

  .title {
    font-size: 1.1rem; /* スマホでは少し小さく */
    margin-bottom: 8px;
  }

  .content {
    font-size: 0.95rem;
  }
}