@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --primary-color: #5D5FEF; /* Soft Indigo/Blue */
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --border-color: #E0E0E0;
    --link-color: #5D5FEF;
    --link-hover-color: #4041bf;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--card-bg);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

header {
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #888;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 30px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

p, li {
    font-size: 16px;
    margin-bottom: 12px;
}

ul, ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

strong {
    font-weight: 700;
    color: var(--heading-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.contact-info {
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 8px;
}

.contact-label {
    font-weight: 700;
    width: 80px;
    flex-shrink: 0;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #888;
}

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

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
        margin: 20px auto;
        border-radius: 12px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    body {
        padding: 10px;
    }
}
