<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 蝓ｺ譛ｬ縺ｮ繝ｪ繧ｻ繝�ヨ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* 繝九Η繝ｼ繧ｹ繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ */
.news-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.news-item {
    margin-bottom: 20px;
}

.news-item h2 {
    font-size: 1.5rem;
    color: #333;
}

.news-item .date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 1.1rem;
    color: #444;
}

/* 繝輔ャ繧ｿ繝ｼ */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

</pre></body></html>