body {
  margin: 0;
  padding-top: 120px; /* ← title_groupの高さ分に調整 */
}

.title {
  font-size: 3rem;
  text-align: center;
}

.title_group_spacing {
  height: 200px;
  width: 100vw;
  background-color: aliceblue;
}

.title_group {
  display: flex;
  justify-content: center; /* ← 中央寄せ */
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  width: 100vw;
  z-index: 1000;
}

.information_group {
  position: absolute; /* ← fixedやめる */
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.image {
  width: 50vw;
}

.information_image_container {
  display: flex;
}

.discription_container {
  width: 45vw;
  justify-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-radius: 20px;
}

.information_item {
}

.discription {
  padding: 20px;
  font-size: 1.2rem;
}

h2 {
  margin-left: 40px;
  font-size: 2rem;
}

.privacy_container {
  height: 300px;
  width: 85vw;
  border: 2px solid;
  border-radius: 20px;
  justify-self: center;
  overflow-y: auto; /* ← はみ出たら縦スクロール */
  overflow-x: hidden; /* ← 横は出ないように */

  justify-self: center;
  padding: 16px; /* ← 中身が枠にくっつかないように（好み） */
  box-sizing: border-box; /* ← padding分で幅がはみ出さない */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .title_group {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
  }

  /* 右固定をやめて、普通に表示 */
  .information_group {
    position: static;
    transform: none;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* メールが長いので折り返し許可 */
  .information_item {
    margin: 0;
    word-break: break-word; /* 長い文字列でも折り返す */
  }

  /* タイトルも少し小さく */
  .title {
    margin: 0;
    font-size: 2rem;
  }

  /* fixedヘッダーの分、本文を下げる（必要なら調整） */
  body {
    padding-top: 150px;
  }

  .information_image_container {
    flex-direction: column; /* 横並び→縦並び */
    gap: 16px;
    padding: 0 12px;
  }

  .image {
    width: 100%; /* 画面いっぱい */
    max-width: 420px; /* 大きすぎ防止 */
    margin: 0 auto;
    display: block;
  }

  .discription_container {
    width: 100%;
  }

  h2 {
    margin-left: 12px;
  }

  .privacy_container {
    width: calc(100% - 24px);
    height: 320px; /* 好みで */
    margin: 0 12px 24px 12px;
  }
}
