:root {
    --gold: #C9A961; --gold-light: #E5D4A6; --gold-dark: #8B6914;
    --white: #FDFCFA; --black: #1A1A1A; --text-subtle: #4A4A4A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Shippori Mincho', serif; color: var(--black);
    background: var(--white); min-height: 100vh; padding-top: 80px;
}

/* ── ナビバー ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253,252,250,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,97,0.2);
    padding: 20px 40px; display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
    letter-spacing: 0.3em; color: var(--gold); font-weight: 600; text-decoration: none;
}
.nav-menu { display: flex; gap: 30px; align-items: center; list-style: none; }
.nav-menu a {
    font-family: 'Cormorant Garamond', serif; font-size: 0.9rem;
    letter-spacing: 0.15em; color: var(--text-subtle); text-decoration: none; transition: color 0.3s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 44px; height: 44px; padding: 0; border: none; background: transparent; cursor: pointer; gap: 6px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── コンテナ ── */
.legal-container { max-width: 720px; margin: 0 auto; padding: 50px 30px 80px; }

.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Cormorant Garamond', serif; font-size: 0.85rem;
    color: var(--text-subtle); text-decoration: none; letter-spacing: 0.1em;
    margin-bottom: 30px; transition: color 0.3s;
}
.back-link:hover { color: var(--gold); }

.legal-title {
    font-size: 1.4rem; letter-spacing: 0.15em; color: var(--gold);
    margin-bottom: 30px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(201,169,97,0.3);
}

/* ── カード ── */
.legal-card {
    background: rgba(255,255,255,0.9); border: 1px solid rgba(201,169,97,0.12);
    border-radius: 8px; padding: 32px 28px;
}

.legal-section { margin-bottom: 28px; }
.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
    font-size: 1rem; color: var(--gold-dark); letter-spacing: 0.08em;
    margin-bottom: 12px; padding-bottom: 6px;
    border-bottom: 1px solid rgba(201,169,97,0.15);
}
.legal-section h3 {
    font-size: 0.9rem; color: var(--black); letter-spacing: 0.06em;
    margin: 12px 0 8px; font-weight: 600;
}
.legal-section p {
    font-size: 0.88rem; line-height: 1.9; color: var(--text-subtle); letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.legal-section ul {
    list-style: none; padding-left: 0; margin-bottom: 8px;
}
.legal-section ul li {
    font-size: 0.86rem; line-height: 1.8; color: var(--text-subtle);
    padding: 6px 0 6px 18px; position: relative;
    border-bottom: 1px solid rgba(201,169,97,0.06);
}
.legal-section ul li:last-child { border-bottom: none; }
.legal-section ul li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-light);
}
.legal-section ul li ul { margin-top: 4px; }
.legal-section ul li ul li { padding-left: 16px; font-size: 0.84rem; }
.legal-section ul li ul li::before { width: 4px; height: 4px; top: 12px; background: rgba(201,169,97,0.3); }

/* ── テーブル ── */
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table th {
    text-align: left; font-size: 0.82rem; color: var(--text-subtle);
    padding: 10px 14px; width: 100px; background: rgba(201,169,97,0.04);
    border-bottom: 1px solid rgba(201,169,97,0.1); font-weight: 500; letter-spacing: 0.04em;
}
.legal-table td {
    font-size: 0.88rem; padding: 10px 14px;
    border-bottom: 1px solid rgba(201,169,97,0.1); letter-spacing: 0.02em;
}

/* ── 他ページリンク ── */
.legal-footer-links {
    display: flex; justify-content: center; gap: 20px; margin-top: 40px;
    padding-top: 20px; border-top: 1px solid rgba(201,169,97,0.15);
}
.legal-footer-links a {
    font-size: 0.78rem; color: var(--text-subtle); text-decoration: none;
    letter-spacing: 0.06em; transition: color 0.3s;
}
.legal-footer-links a:hover { color: var(--gold); }

/* ── レスポンシブ ── */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; flex-wrap: wrap; }
    .nav-hamburger { display: flex; }
    .nav-menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(253,252,250,0.98); backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(201,169,97,0.2); padding: 20px 0; margin-top: 1px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu li {
        width: 100%; text-align: center; padding: 12px 0;
        border-bottom: 1px solid rgba(201,169,97,0.1);
    }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a { display: block; padding: 8px 0; }

    .legal-container { padding: 30px 16px 60px; }
    .legal-card { padding: 24px 18px; }
    .legal-table th { width: 80px; font-size: 0.78rem; padding: 8px 10px; }
    .legal-table td { font-size: 0.84rem; padding: 8px 10px; }
}
