@charset "utf-8";

/* 柴田研究室 モダン・アカデミック・スタイル 
   - 不要なHTMLコメント()を削除しCSSとして正常化
   - ぶら下がりインデントの追加
   - レスポンシブ対応の強化
*/

body {
    /* 現代的で読みやすいフォントセット */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    background: #e9ecef; /* 少し落ち着いた背景色 */
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* --- コンテナ設定 --- */
.container {
    width: 95%;
    max-width: 1050px; /* 読みやすい横幅に制限 */
    background: #FFFFFF;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1); /* 軽い影を追加 */
    border: none;
}

/* --- ヘッダー・メニュー --- */
.header {
    background: #1a365d; /* 信頼感のある濃紺 */
}

#menu {
    background: #2d3748;
    padding: 12px 0;
    text-align: center;
}

#menu a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 0.95rem;
}

#menu a:hover {
    color: #cbd5e0;
    text-decoration: underline;
}

/* --- コンテンツエリア --- */
.content {
    padding: 40px 5%;
}

h1 {
    font-size: 1.6rem;
    color: #1a365d;
    border-bottom: 3px solid #1a365d;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* 導入文などの強調（h2を使用している箇所） */
h2 {
    font-size: 1.05rem;
    font-weight: normal;
    color: #4a5568;
    background: #f8fafc;
    border-left: 5px solid #1a365d;
    padding: 20px;
    margin: 20px 40px 40px 40px;
    line-height: 1.8;
}

/* セクション見出し（h3） */
h3 {
    font-size: 1.25rem;
    color: #1a365d;
    background: #edf2f7;
    padding: 10px 15px;
    margin: 40px 0 20px 0;
    border-left: 10px solid #1a365d;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

/* 小見出し（h4） */
h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 30px 0 15px 15px;
    padding: 0;
}

/* --- 業績リストのインデント調整（重要） --- */
/* achieve.html で <ul> に class="achieve-list" をつけると適用されます */
.achieve-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 20px 20px;
}

.achieve-list li {
    padding-left: 2.5em;      /* 2行目以降の下げ幅 */
    text-indent: -2.5em;     /* 1行目を左に戻す */
    margin-bottom: 12px;     /* 論文ごとの間隔 */
}

/* --- フッター --- */
.footer {
    padding: 30px 5%;
    background: #2d3748;
    color: #ffffff !important;
}

.footer a {
    color: #fff;
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
}

/* テーブルの調整 */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

td {
    padding: 10px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}

