:root {
  --clubnavi-mobile-header-height: 68px;
  --clubnavi-mobile-panel-max-height: calc(
    100vh - var(--clubnavi-mobile-header-height) - 12px
  );
}

body.clubnavi-privacy-page {
  padding-top: var(--clubnavi-mobile-header-height);
  font-family: "Noto Sans JP", sans-serif;
  color: #1d1d1f;
  background:
    linear-gradient(
      180deg,
      rgba(0, 119, 237, 0.06) 0%,
      rgba(255, 255, 255, 0.96) 14rem
    ),
    #ffffff;
  line-height: 1.7;
}

.clubnavi-mobile-header {
  position: static;
  height: var(--clubnavi-mobile-header-height);
  padding: 0.75rem 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.clubnavi-mobile-header-shell {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.clubnavi-mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    max-height 0.32s ease,
    opacity 0.2s ease,
    transform 0.32s ease;
}

.clubnavi-mobile-nav-panel__body {
  max-height: var(--clubnavi-mobile-panel-max-height);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0.85rem 1rem;
}

.clubnavi-mobile-nav-card {
  display: grid;
  gap: 0.7rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  padding: 1rem 1rem 1.2rem;
}

.clubnavi-mobile-nav-card__eyebrow {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0077ed;
}

.clubnavi-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: #1d1d1f;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.clubnavi-mobile-nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 119, 237, 0.24);
  box-shadow: 0 12px 24px rgba(0, 119, 237, 0.08);
  color: #0077ed;
}

.clubnavi-mobile-nav-link i {
  width: 1rem;
  color: #0077ed;
  text-align: center;
}

.clubnavi-mobile-nav-link.is-current {
  border-color: rgba(0, 119, 237, 0.22);
  background: rgba(0, 119, 237, 0.08);
  color: #0077ed;
}

.clubnavi-mobile-nav-backdrop {
  display: block;
  position: fixed;
  inset: var(--clubnavi-mobile-header-height) 0 0;
  z-index: 1055;
  background: rgba(15, 23, 42, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.clubnavi-mobile-nav-backdrop[hidden] {
  display: none;
}

.clubnavi-mobile-header__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #1d1d1f;
  justify-self: start;
}

.clubnavi-mobile-header__brand:hover {
  color: #1d1d1f;
}

.clubnavi-mobile-header__brand .Logo {
  width: 36px;
  height: 36px;
  margin-right: 0;
  transform: none;
  box-shadow: 0 6px 18px rgba(0, 119, 237, 0.16);
}

.clubnavi-mobile-header__brand .Logo:hover {
  transform: none;
}

.clubnavi-mobile-header__brand-text {
  min-width: 0;
  display: grid;
  line-height: 1.1;
}

.clubnavi-mobile-header__brand-text strong {
  font-size: 0.96rem;
  font-weight: 800;
}

.clubnavi-mobile-header__brand-text small {
  color: #64748b;
  font-size: 0.63rem;
}

.clubnavi-mobile-header__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.clubnavi-mobile-header__icon-symbol {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition:
    opacity 0.18s ease,
    transform 0.24s ease;
}

.clubnavi-mobile-header__icon-symbol--menu {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.clubnavi-mobile-header__icon-symbol--close {
  opacity: 0;
  transform: scale(0.72) rotate(-90deg);
}

body.is-clubnavi-mobile-nav-open {
  overflow: hidden;
}

body.is-clubnavi-mobile-nav-open .clubnavi-mobile-header__icon {
  background: #0f172a;
  color: #ffffff;
  border-color: rgba(15, 23, 42, 0.35);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

body.is-clubnavi-mobile-nav-open .clubnavi-mobile-header__icon-symbol--menu {
  opacity: 0;
  transform: scale(0.72) rotate(90deg);
}

body.is-clubnavi-mobile-nav-open .clubnavi-mobile-header__icon-symbol--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body.is-clubnavi-mobile-nav-open .clubnavi-mobile-nav-panel {
  max-height: calc(var(--clubnavi-mobile-panel-max-height) + 1.5rem);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.is-clubnavi-mobile-nav-open .clubnavi-mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.clubnavi-privacy-intro {
  max-width: 42rem;
  margin: 0 auto;
}

.clubnavi-privacy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0077ed;
  background: rgba(0, 119, 237, 0.08);
  border: 1px solid rgba(0, 119, 237, 0.12);
}

.clubnavi-privacy-lead {
  max-width: 38rem;
  font-size: 1rem;
}

.clubnavi-policy-shell {
  max-width: 54rem;
  margin: 0 auto;
}

.clubnavi-policy-card {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow:
    0 1px 3px 0 rgba(15, 23, 42, 0.05),
    0 1px 2px -1px rgba(15, 23, 42, 0.04);
}

.clubnavi-policy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(
    135deg,
    rgba(0, 119, 237, 0.07),
    rgba(0, 180, 216, 0.08)
  );
  color: #64748b;
  font-size: 0.95rem;
}

.clubnavi-policy-meta strong {
  color: #0f172a;
  font-weight: 700;
}

.clubnavi-policy-content {
  padding: 2rem;
}

.clubnavi-policy-content section + section {
  margin-top: 2rem;
}

.clubnavi-policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  color: #0f172a;
}

.clubnavi-policy-content h2:first-child {
  margin-top: 0;
}

.clubnavi-policy-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.9rem;
  color: #0f172a;
}

.clubnavi-policy-content p,
.clubnavi-policy-content li {
  color: #334155;
  line-height: 1.85;
}

.clubnavi-policy-content p {
  margin-bottom: 1.5rem;
}

.clubnavi-policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.clubnavi-policy-content li {
  margin-bottom: 0.5rem;
}

.clubnavi-policy-content a {
  color: #0077ed;
  font-weight: 700;
  text-decoration: none;
}

.clubnavi-policy-content a:hover {
  color: #0060c7;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .clubnavi-privacy-intro {
    margin-bottom: 2.5rem;
  }

  .clubnavi-policy-card {
    border-radius: 1.1rem;
  }

  .clubnavi-policy-meta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }

  .clubnavi-policy-content {
    padding: 1.5rem 1.25rem;
  }

  .clubnavi-policy-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

@media (min-width: 992px) {
  .clubnavi-mobile-header {
    padding: 0.8rem 1.5rem;
  }

  .clubnavi-mobile-header__brand .Logo {
    width: 40px;
    height: 40px;
  }

  .clubnavi-mobile-header__brand-text strong {
    font-size: 1rem;
  }

  .clubnavi-mobile-header__brand-text small {
    font-size: 0.66rem;
  }

  .clubnavi-mobile-nav-panel__body {
    display: flex;
    justify-content: flex-end;
    padding: 0 1.5rem 1rem;
  }

  .clubnavi-mobile-nav-card {
    width: min(25rem, 100%);
  }

  body.is-clubnavi-mobile-nav-open .clubnavi-mobile-header-shell {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  }
}
