<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* è¨˜äº‹è©³ç´°ãƒšãƒ¼ã‚¸å°‚ç”¨ã®ã‚¹ã‚¿ã‚¤ãƒ« */

/* ãƒ˜ãƒƒãƒ€ãƒ¼ã‚’å°ã•ãã™ã‚‹ */
.article-header {
    background-color: var(--main-color);
    color: var(--light-text);
    padding: 20px;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.article-header .logo-container {
    margin-right: 15px;
    margin-bottom: 0;
}

.article-header .logo {
    width: 60px;
    height: 60px;
}

.article-header h1 {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: none;
}

.article-header h1 a {
    color: var(--light-text);
    text-decoration: none;
}

.article-header h1 a:hover {
    text-decoration: underline;
}

/* ãƒ¡ã‚¤ãƒ³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ */
.article-main {
    padding: 40px 20px 60px;
    background-color: white;
    min-height: 70vh;
}

/* ãƒ‘ãƒ³ããšãƒŠãƒ“ */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--main-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* è¨˜äº‹è©³ç´° */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.article-meta {
    margin-bottom: 15px;
}

.article-detail-header .article-date {
    background-color: var(--light-color);
    color: var(--main-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.article-detail-title {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0;
}

/* è¨˜äº‹æœ¬æ–‡ */
.article-detail-content {
    line-height: 1.8;
    color: var(--text-color);
}

.article-detail-content section {
    margin-bottom: 40px;
}

.article-detail-content h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.article-detail-content h3 {
    color: var(--main-color);
    font-size: 1.2rem;
    margin: 30px 0 15px 0;
}

.article-detail-content p {
    margin-bottom: 20px;
}

.article-detail-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-detail-content li {
    margin-bottom: 10px;
}

.article-detail-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.article-detail-content a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
}

.article-detail-content a:hover {
    text-decoration: underline;
}

/* è¨˜äº‹ãƒ•ãƒƒã‚¿ãƒ¼ */
.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.article-back-link a {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.article-back-link a:hover {
    background-color: var(--accent-color);
}

/* ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–ãƒ‡ã‚¶ã‚¤ãƒ³ */
@media (max-width: 768px) {
    .article-header {
        padding: 15px 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .article-header .logo-container {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .article-header h1 {
        font-size: 1.3rem;
    }

    .article-main {
        padding: 30px 15px 50px;
    }

    .article-detail-title {
        font-size: 1.6rem;
    }

    .article-detail-content h2 {
        font-size: 1.3rem;
    }

    .article-detail-content h3 {
        font-size: 1.1rem;
    }
}</pre></body></html>