.locked-scroll {
    overflow: hidden;
}
:root {
    color-scheme: dark only;
    --font-base:
        "Manrope", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
        sans-serif;
    --font-heading: "Sora", "Noto Sans JP", "Manrope", system-ui, sans-serif;
    --color-bg: #0c0f16;
    --color-surface: rgba(18, 26, 41, 0.9);
    --color-card: rgba(22, 28, 43, 0.85);
    --color-primary: #f34c44;
    --color-primary-soft: rgba(243, 76, 68, 0.18);
    --color-highlight: #04c48b;
    --color-text: #f5f7fc;
    --color-muted: #9ba3b5;
    --color-border: rgba(255, 255, 255, 0.06);
    --shadow-soft: 0 30px 70px rgba(0, 0, 0, 0.6);
    --color-nav-bg: #f7f9fe;
    --color-nav-text: #1b2333;
    --color-nav-muted: #5c6677;
    --color-nav-border: rgba(20, 26, 39, 0.08);
}

* {
    box-sizing: border-box;
}
.btn-custom.outline {
    border: 1px solid var(--color-border) !important;
    background: transparent !important;
    color: var(--color-text) !important;
}

.btn-custom {
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-family: var(--font-base);
    font-weight: 400;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

.container {
    width: min(1440px, 94vw);
    margin: 0 auto;
}

.hero > .container {
    width: min(1760px, 96vw);
}

.footer {
    padding: clamp(40px, 8vw, 72px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
        160deg,
        rgba(6, 9, 22, 0.95),
        rgba(3, 9, 26, 0.9)
    );
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(4, 196, 139, 0.18),
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 0%,
            rgba(124, 92, 255, 0.22),
            transparent 45%
        );
    opacity: 0.8;
    pointer-events: none;
}

.footer .container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: flex-start;
}

.footer-grid {
    display: contents;
}

.footer-branding {
    max-width: 360px;
}

.footer-branding p {
    margin: 16px 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px 18px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--color-highlight);
}

.footer-contact p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact .btn {
    min-width: 220px;
    justify-content: center;
}

@media (max-width: 640px) {
    .footer-nav-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer .container {
        grid-template-columns: 1fr;
    }
}

.brand {
    font-family: var(--font-heading);
    grid-area: brand;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0;
}

.brand img {
    display: block;
    height: 32px;
    max-height: 32px;
    width: auto;
}

.brand span {
    display: none;
}
.btn-custom-no-drop {
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: no-drop !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
    border: 1px solid var(--color-border) !important;
    background: transparent !important;
    color: var(--color-text) !important;
}

.btn-custom.primary {
    background: linear-gradient(135deg, #f34c44, #c42c2e);
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(195, 43, 46, 0.35);
}
.btn-custom.success {
    background: linear-gradient(135deg, #04c48b, #028f66);
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(2, 143, 102, 0.35);
}
.maker-status-register-aff {
    border: 1px solid var(--color-border) !important;
    color: var(--color-text) !important;
    border-radius: 12px !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease !important;
}
.maker-status-register-aff.pending {
    background: linear-gradient(135deg, #f34c44, #c42c2e);
}
.maker-status-register-aff.approved {
    background: linear-gradient(135deg, #04c48b, #028f66);
}
.maker-status-register-aff.rejected {
    background: linear-gradient(135deg, #6c757d, #5a6268);
}
.panel-box-copy {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.text-center{
    text-align: center;
}