/* 共通設定 */
body {
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", serif; /* アカデミックな明朝体 */
    line-height: 1.8;
    color: #333;
    background-color: #fcfcfc;
    margin: 0;
}

.container {
    max-width: 750px; /* 1カラムで読みやすい幅 */
    margin: 0 auto;
    padding: 60px 20px;
}

/* ナビゲーション */
header {
    padding-top: 40px;
    text-align: center;
}

.nav-links {
    margin-top: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    margin: 0 15px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: #000; border-bottom: 1px solid #333; }
.nav-links a.active { color: #2c3e50; font-weight: bold; }

/* 見出し */
h1 { font-size: 1.8rem; font-weight: normal; margin: 0; }
h2 { font-size: 1.4rem; margin-top: 40px; border-bottom: 1px solid #ccc; padding-bottom: 5px; }
h3 { font-size: 1.2rem; margin-top: 40px; padding-bottom: 5px; }
h4 { font-size: 1.0rem; }

/* 箇条書き（業績リスト） */
.cv-list { list-style: none; padding: 0; }
.cv-list li { margin-bottom: 15px; padding-left: 1em; text-indent: -1em; }

span.scientific-name { font-style: italic; }
span.note { font-size: small; }