/* =========================================================
   nanoTRACK cookie policy page (cokkie.html)
   Extends style.css — reuses its CSS variables, .container,
   .reveal-up etc. Only page-specific components live here.
   Base styles are written for PC and overridden inside a
   single `@media (max-width: 768px)` block for SP, matching
   the convention used in style.css.
========================================================= */

/* ---------- page hero (title) ---------- */

.page-hero {
  padding: calc(var(--header-h) + clamp(32px, 6vw, 74px)) 0 clamp(32px, 5vw, 56px);
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 0.1rem + 6.5vw, 6rem); /* long title, slightly lower min */
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--text);
}

.page-hero__lead {
  margin: clamp(12px, 2vw, 20px) 0 0;
  font-size: var(--fs-18);
  font-weight: 500;
}

/* ---------- breadcrumb ---------- */

.breadcrumb {
  padding: clamp(16px, 3vw, 36px) 0;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-size: var(--fs-18);
  font-weight: 500;
}

.breadcrumb__inner a,
.breadcrumb__inner .breadcrumb__sep {
  white-space: nowrap;
}

.breadcrumb__inner a {
  text-decoration: underline;
}

.breadcrumb__sep {
  opacity: 0.6;
}

/* ---------- cookie policy body ---------- */

.cookie-section {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px);
}

.cookie-intro {
  margin: 0 0 clamp(40px, 6vw, 64px);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.6;
}

.cookie-block {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.cookie-block:last-child {
  margin-bottom: 0;
}

.cookie-block__title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-24);
  letter-spacing: 0.1em;
}

.cookie-block__text {
  margin: 0;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
}

.cookie-block__text--spaced {
  margin-top: 16px;
}

.cookie-block__text a {
  text-decoration: underline;
}

.cookie-block__list {
  margin: 12px 0 0;
  padding-left: 1.5em;
  list-style: disc;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.6;
}

.cookie-block__list li {
  margin-bottom: 8px;
}

.cookie-block__list li:last-child {
  margin-bottom: 0;
}

.cookie-block__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.cookie-block__table th,
.cookie-block__table td {
  padding: 12px 16px;
  text-align: left;
  font-size: var(--fs-18);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.cookie-block__table th {
  border-top: 1px solid var(--border);
  font-weight: 700;
}

/* ---------- SP ---------- */

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--header-h) + 32px) 0 32px;
  }

  .cookie-section {
    padding: 32px 0 64px;
  }

  .cookie-intro,
  .cookie-block {
    margin-bottom: 32px;
  }

  .cookie-block__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
