/*
Theme Name: Academic Modern Minimalist
Theme URI: https://example.com/
Author: AI Collaborator
Description: 大学教員・研究者向けのモダン・ミニマルテーマ。ポイントカラーに#D10000を採用。ヘッダーを洗練された白基調にアップデート。
Version: 1.3
License: GNU General Public License v2 or later
*/

/* 1. 全体設定 */
body {
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    color: #212529; /* 信頼感のある深い黒 */
    background-color: #ffffff; /* すっきりとした白 */
    line-height: 1.85;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0;
}

a {
    color: #D10000; /* ポイントカラー：情熱と知性を宿す赤 */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #a30000;
    text-decoration: underline;
}

.container {
    max-width: 840px; /* 論文や文章が最も読みやすいタイトな幅 */
    margin: 0 auto;
    padding: 0 30px;
}

/* 2. ヘッダー（黒を廃止し、知的な白・グレー基調へ） */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef; /* 上品な薄いグレーの境界線 */
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
}

.site-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
}

.site-title a {
    color: #212529; /* サイト名は深い黒で知的に */
}

.site-title a:hover {
    color: #D10000;
    text-decoration: none;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.site-nav a {
    color: #495057; /* 落ち着いたダークグレー */
    font-weight: 500;
    font-size: 0.9rem;
}

.site-nav a:hover {
    color: #D10000; /* ホバー時にポイントカラーの赤 */
    text-decoration: none;
}

/* 3. メインコンテンツ */
.site-section {
    padding: 80px 0;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 12px;
}

/* タイトルの下に#D10000のシャープなライン */
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #D10000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.entry-content {
    padding: 10px 0;
}

/* ブロックエディタ（Gutenberg）の標準的な装飾をサポート */
.entry-content h2, .entry-content h3 {
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
}
.entry-content p {
    margin-bottom: 25px;
}

/* 4. フッター（黒を排し、シンプルにまとめる） */
.site-footer {
    background-color: #ffffff;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: #6c757d;
    margin: 0 10px;
}

.footer-nav a:hover {
    color: #D10000;
}