* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #ff6b4a;
  --coral-dark: #e5532f;
  --deep-navy: #1a2c3e;
  --gray-light: #f4efe9;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #fff9f5;
  color: #1f1a17;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}

.top-bar {
  background: var(--deep-navy);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
}

.top-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-18 {
  font-weight: 700;
}

.notice-operator {
  font-size: 0.68rem;
  opacity: 0.9;
}

.footer-mandatory {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(243, 205, 181, 0.25);
}

.footer-mandatory .notice-18 {
  color: #f3cdb5;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-mandatory .notice-operator {
  color: #c0a084;
  font-size: 0.78rem;
}

.site-header {
  border-bottom: 3px solid var(--coral);
  background: #fff;
  padding: 16px 0;
}

.site-header .header-operator {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #8a6f5c;
  margin-top: 6px;
}

.site-header a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), #ffc107);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: #8a6f5c;
}

.breadcrumb a {
  color: var(--coral-dark);
  font-weight: 600;
  text-decoration: none;
}

.legal-main {
  padding: 32px 0 64px;
}

.legal-main h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: #8a6f5c;
  margin-bottom: 28px;
}

.legal-content {
  background: #fff;
  border-radius: 28px;
  padding: 32px 36px;
  border: 1px solid #ffddd0;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  font-size: 1.2rem;
  color: var(--deep-navy);
  margin: 28px 0 12px;
}

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

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: #4b3a2f;
  margin-bottom: 12px;
  font-weight: 450;
}

.legal-content ul {
  margin: 0 0 16px 20px;
}

.legal-content a {
  color: var(--coral-dark);
  font-weight: 600;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed #ffe1d4;
}

.legal-nav a {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--gray-light);
  color: var(--deep-navy);
  text-decoration: none;
  font-weight: 600;
}

.legal-nav a.is-current {
  background: var(--deep-navy);
  color: #fff;
}

.footer {
  background: #1a2c3e;
  color: #f3cdb5;
  padding: 40px 0 28px;
  border-top: 6px solid var(--coral);
}

.footer .container {
  max-width: 1280px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-legal a {
  color: #f3cdb5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 750px) {
  .legal-content {
    padding: 24px 20px;
  }
}
