/* ===== PRIVACY POLICY PAGE ===== */

/* ===== ページタイトル（長いタイトル対応） ===== */
@media (max-width: 700px) {
  .page-hero__tit { width: fit-content; min-width: 70%; }
}
@media (max-width: 500px) {
  .page-hero__tit { width: fit-content; min-width: 80%; }
}

/* ===== コンテンツラッパー ===== */
.pp-content {
  background: var(--bg);
  padding: 80px 0 100px;
}

/* ===== 白カード ===== */
.pp-card {
  width: 1144px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  background: var(--white);
  padding: 56px 64px 64px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), calc(100% - 44px) 100%, 0 100%);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease .1s, transform .65s ease .1s;
}
.pp-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ===== カード内見出し ===== */
.pp-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.pp-card__title-line {
  width: 100%;
  height: 3px;
  background: var(--orange);
}
.pp-card__title-text {
  font-family: 'M PLUS 2', sans-serif;
  font-weight: 500;
  font-size: 35px;
  color: var(--orange);
  letter-spacing: .3em;
  text-align: center;
}

/* ===== 本文 ===== */
.pp-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.9;
}

/* 数字見出し（太字） */
.pp-body__heading {
  font-weight: 700;
  font-size: 16px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.pp-body__heading:first-child {
  margin-top: 0;
}

/* リスト */
.pp-body__list {
  padding-left: 1.5em;
  margin-bottom: 0;
  list-style: disc;
}
.pp-body__list li {
  margin-bottom: 4px;
  line-height: 1.9;
}
.pp-body__list li:last-child {
  margin-bottom: 0;
}

/* サブリスト（disc なし） */
.pp-body__list--plain {
  list-style: none;
  padding-left: 0;
}
.pp-body__list--plain li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

/* リンク */
.pp-body a {
  color: var(--orange);
  word-break: break-all;
}
.pp-body a:hover {
  opacity: .75;
}

/* Google Analytics テーブル */
.pp-body__ga-wrap {
  margin-top: 12px;
  margin-left: 1.5em;
}
.pp-body__ga-name {
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 12px;
}
.pp-body__ga-table {
  width: 100%;
  border-collapse: collapse;
}
.pp-body__ga-table tr {
  border-bottom: 1px solid #ccc;
}
.pp-body__ga-table tr:first-child {
  border-top: 1px solid #ccc;
}
.pp-body__ga-table th,
.pp-body__ga-table td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  padding: 10px 12px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.pp-body__ga-table th {
  font-weight: 700;
  white-space: nowrap;
  width: 160px;
  padding-right: 24px;
}
.pp-body__ga-table td {
  font-weight: 400;
  word-break: break-all;
}

/* 末尾署名 */
.pp-body__sign {
  margin-top: 48px;
  line-height: 1.9;
}

/* ===== 1100px以下 ===== */
@media (max-width: 1100px) {
  .pp-card { padding: 40px 40px 48px; }
  .pp-card__title-text { font-size: 28px; }
}

/* ===== 900px以下 ===== */
@media (max-width: 900px) {
  .pp-content { padding: 48px 0 72px; }
  .pp-card { padding: 32px 24px 40px; max-width: calc(100% - 32px); }
  .pp-card__title { gap: 14px; margin-bottom: 32px; }
  .pp-card__title-text { font-size: 22px; letter-spacing: .2em; }
  .pp-body { font-size: 15px; }
  .pp-body__heading { font-size: 15px; margin-top: 24px; }
  .pp-body__info-label { width: 10em; }
}

/* ===== 600px以下 ===== */
@media (max-width: 600px) {
  .pp-content { padding: 36px 0 60px; }
  .pp-card { padding: 24px 16px 32px; max-width: calc(100% - 24px); }
  .pp-card__title-text { font-size: 18px; letter-spacing: .15em; }
  .pp-body { font-size: 14px; }
  .pp-body__heading { font-size: 14px; }
  .pp-body__ga-table tr { display: flex; flex-direction: column; }
  .pp-body__ga-table th { width: 100%; padding-bottom: 2px; border-bottom: none; }
  .pp-body__ga-table td { padding-top: 0; }
}
