@charset "UTF-8";
/* ============================================
   P-07 プライバシーポリシー v2
   ============================================ */

.legal-section {
  position: relative;
  padding: calc(80px + 64px) 0 var(--section-pad-y);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0, rgba(255, 181, 200,0.14), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 200, 220,0.10), transparent 50%);
  pointer-events: none;
}
.legal-section > .container { position: relative; z-index: 2; }

.legal-section .section-eyebrow {
  color: var(--orange);
  letter-spacing: 0.32em;
  font-size: 14px;
  margin-bottom: 14px;
}
.legal-section .section-title {
  font-size: 42px;
  margin-bottom: 22px;
  letter-spacing: 0.005em;
}
.legal-section .section-title .accent { color: var(--orange); }
.legal-section .section-lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 56px;
  text-align: center;
  font-weight: 500;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.legal-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  padding: 64px 64px 56px;
  border-radius: 28px;
  border: 1px solid #FFE0EA;
  box-shadow: 0 30px 60px rgba(93, 58, 82,0.08);
  color: var(--text);
}
.legal-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 50%, var(--gold) 100%);
  border-radius: 4px 4px 0 0;
}
.legal-article { margin-bottom: 44px; }
.legal-article:last-of-type { margin-bottom: 0; }
.legal-h {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 12px;
  padding-left: 36px;
  letter-spacing: 0.005em;
  border-bottom: 2px solid rgba(255, 143, 177, 0.18);
}
.legal-h::before {
  position: absolute;
  left: 0; top: 2px;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(255, 143, 177,0.32);
}
.legal-article:nth-of-type(1) .legal-h::before { content: "1"; }
.legal-article:nth-of-type(2) .legal-h::before { content: "2"; }
.legal-article:nth-of-type(3) .legal-h::before { content: "3"; }
.legal-article:nth-of-type(4) .legal-h::before { content: "4"; }
.legal-article:nth-of-type(5) .legal-h::before { content: "5"; }
.legal-article:nth-of-type(6) .legal-h::before { content: "6"; }
.legal-article:nth-of-type(7) .legal-h::before { content: "7"; }
.legal-article:nth-of-type(8) .legal-h::before { content: "8"; }

.legal-article p {
  font-size: 15.5px;
  line-height: 2.05;
  margin-bottom: 14px;
  color: var(--text);
}
.legal-article p:last-of-type { margin-bottom: 0; }
.legal-ol, .legal-ul { padding-left: 26px; margin: 10px 0 14px; }
.legal-ol { list-style: decimal; }
.legal-ul { list-style: disc; }
.legal-ol li, .legal-ul li {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-end {
  text-align: right;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 32px;
  font-weight: 500;
}
.legal-dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 18px;
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.85;
}
.legal-dl dt {
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.legal-dl dd { margin: 0; color: var(--ink); font-weight: 500; }
.legal-dl a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.legal-back {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.legal-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  height: 64px;
  padding: 0 36px;
  background: linear-gradient(135deg, #ff6a30, #e85520);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(255, 143, 177,0.36);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.legal-back a::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-130%);
  transition: transform .6s;
}
.legal-back a:hover::before { transform: translateX(130%); }
.legal-back a img { width: 18px; transition: transform .25s; }
.legal-back a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(255, 143, 177,0.46);
  opacity: 1;
}
.legal-back a:hover img { transform: translateX(4px); }

@media (max-width: 960px) {
  .legal-section .section-title { font-size: 30px; }
  .legal-card { padding: 48px 40px; }
  .legal-h { font-size: 19px; }
}
@media (max-width: 640px) {
  .legal-section { padding: calc(56px + 40px) 0 var(--section-pad-y); }
  .legal-section .section-title { font-size: 24px; }
  .legal-section .section-lead { font-size: 13.5px; text-align: left; }
  .legal-card { padding: 32px 24px; border-radius: 22px; }
  .legal-article { margin-bottom: 36px; }
  .legal-h { font-size: 17px; padding-bottom: 10px; padding-left: 32px; margin-bottom: 14px; }
  .legal-h::before { width: 24px; height: 24px; font-size: 14px; }
  .legal-article p, .legal-ol li, .legal-ul li { font-size: 14px; line-height: 1.95; }
  .legal-ol, .legal-ul { padding-left: 22px; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; padding: 20px 22px; border-radius: 14px; }
  .legal-dl dt { margin-top: 10px; font-size: 13px; }
  .legal-dl dt:first-child { margin-top: 0; }
  .legal-dl dd { font-size: 14px; }
  .legal-back { margin-top: 40px; }
  .legal-back a { width: 100%; min-width: 0; height: 56px; font-size: 15px; }
}
