/* ==========================
   Legal pages
========================== */

/* ページ背景 */
.donate-page {
  background: #fdf6ef;
  padding: 48px 20px 80px;
}

/* 中央カード */
.donate-page .donate-hero.legal-page {
  max-width: 880px;
  margin: 64px auto;
  padding: 56px 48px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
}

/* ---------- Header ---------- */

.donate-page .donate-hero.legal-page .donate-kicker {
  margin-bottom: 12px;
  text-align: center;
  color: #9b7b3f;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.donate-page .donate-hero.legal-page h1 {
  margin-bottom: 40px;
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}

.donate-page .donate-hero.legal-page h2 {
  margin: 40px 0 18px;
  padding: 14px 18px;
  background: #fff7ef;
  border-left: 4px solid #c9a85f;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

.donate-page .donate-hero.legal-page p {
  margin: 0 0 18px;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

/* ---------- Table ---------- */

.legal-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  border: 1px solid #e5dfd3;
  background: #fff;
}

.legal-table tr:not(:last-child) {
  border-bottom: 1px solid #ece6da;
}

.legal-table th,
.legal-table td {
  padding: 18px 20px;
  vertical-align: top;
  font-family: "Noto Sans JP", sans-serif;
}

.legal-table th {
  width: 190px;
  background: #fdf6ef;
  color: #5a4630;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  border-right: 1px solid #e5dfd3;
}

.legal-table td {
  color: #333;
  text-align: left;
  line-height: 2;
}

.legal-table .section-title th {
  width: auto;
  padding: 14px 20px;
  background: #c9a85f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  border-right: none;
}

/* ---------- Footer ---------- */

.donate-page .donate-hero.legal-page .legal-date {
  margin-top: 48px;
  text-align: right;
  color: #777;
  font-size: 14px;
}

.donate-page .donate-hero.legal-page .hero-btns {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.donate-page .donate-hero.legal-page .btn-primary {
    width: auto;
    min-width: 220px;
    max-width: 260px;
    padding: 14px 28px;
    text-align: center;
}

.btn-primary {
    background: #F07830;
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(240, 120, 48, 0.25);
}

.btn-primary:hover{
  background:#D4601A;
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(240,120,48,0.35);
}



/* ---------- SP ---------- */
@media (max-width: 768px) {

  .donate-page {
    padding: 16px 12px 48px;
  }

  .donate-page .donate-hero.legal-page {

    max-width: none;
    margin: 24px auto;
    padding: 32px 22px;
    border-radius: 18px;
  }

  .donate-page .donate-hero.legal-page h1 {
    font-size: 30px;
    line-height: 1.45;
    margin-bottom: 28px;
  }

  .donate-page .donate-hero.legal-page .donate-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .legal-table {
    border: none;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    margin-bottom: 14px;
    border: 1px solid #e5dfd3;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .legal-table tr.section-title {
    margin: 24px 0 12px;
    border: none;
    border-radius: 0;
  }

  .legal-table th {
    width: 100%;
    padding: 12px 14px;
    border-right: none;
    border-bottom: 1px solid #e5dfd3;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;   /* ←これが重要 */
  }

  .legal-table td {
    padding: 14px;
    font-size: 14px;
    line-height: 1.9;
    word-break: break-word;
    box-sizing: border-box;   /* ←これが重要 */
  }

  .legal-table .section-title th {
    padding: 12px 14px;
    border-bottom: none;
    border-radius: 10px;
    font-size: 15px;
  }

  .donate-page .donate-hero.legal-page .legal-date {
    text-align: left;
  }

  .donate-page .donate-hero.legal-page .hero-btns {
    margin-top: 40px;
  }

  .donate-page .donate-hero.legal-page .btn-primary {
    width: auto;
    min-width: 220px;
    max-width: none;
  }
}