/* 全体のスタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* コンテンツを中央に配置するラッパー */
.container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ヘッダー */
header {
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 1.8em;
    color: #2c3e50;
    margin: 0;
}

header p {
    font-size: 0.8em;
    color: #7f8c8d;
    margin-top: 10px;
}

/* メインコンテンツ */
main section {
    margin-bottom: 30px;
}

main h2 {
    font-size: 1.8em;
    color: #34495e;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

/* ドキュメントリンクのスタイル */
.documents ul {
    list-style: none;
    padding: 0;
}

.documents li a {
    display: block;
    background-color: #ecf0f1;
    color: #34495e;
    text-decoration: none;
    font-size: 1.2em;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.documents li a:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* フッター */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
    color: #95a5a6;
}
