<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* �顒�ゝ�∽�桁� - agreement.css */

:root {
    /* 蘂��峨��� */
    --primary-color: #007aff;
    --secondary-color: #5856d6;
    --accent-color: #ff2d55;
    --success-color: #34c759;
    --warning-color: #ff9500;
    --danger-color: #ff3b30;
    --background-color: #f2f2f7;
    --card-background: #ffffff;
    --text-primary: #000000;
    --text-secondary: #8e8e93;
    --border-color: #e5e5ea;
    --input-background: #f5f5f7;
    --form-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* 莨号���茹� */
    --border-radius: 12px;
    --input-radius: 8px;
    --button-radius: 10px;

    /* 菴�羝≧���� */
    --transition-duration: 0.3s;

    /* 絖�篏� */
    --heading-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-duration) ease;
}

a:hover {
    color: var(--secondary-color);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* 蕁狗������� */
.site-header {
    background-color: var(--card-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    transition: background-color var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 20px;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* 筝糸��� */
.main-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    flex-grow: 1;
}

/* �顒���� */
.agreement-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--form-shadow);
    padding: 40px;
    transition: background-color var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}

.agreement-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.agreement-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.updated-date {
    font-size: 14px;
    color: var(--text-secondary);
}

.agreement-content {
    margin-bottom: 30px;
}

.agreement-section {
    margin-bottom: 30px;
}

.agreement-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.agreement-section p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.agreement-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.agreement-section li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.agreement-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.agreement-footer p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.agreement-actions {
    display: flex;
    justify-content: center;
}

.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--button-radius);
    font-size: 15px;
    font-weight: 500;
    transition: background-color var(--transition-duration) ease, transform var(--transition-duration) ease;
}

.btn-back:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* 蕁笈�� */
.site-footer {
    background-color: var(--card-background);
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
    transition: background-color var(--transition-duration) ease;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-duration) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ��綺�綣顖��� */
@media (max-width: 768px) {
    .agreement-container {
        padding: 30px 20px;
    }
    
    .agreement-header h1 {
        font-size: 24px;
    }
    
    .agreement-section h2 {
        font-size: 18px;
    }
    
    .agreement-section p,
    .agreement-section li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 20px 15px;
    }
    
    .agreement-container {
        padding: 20px 15px;
    }
    
    .agreement-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .agreement-header h1 {
        font-size: 22px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}</pre></body></html>