/* --- 全体設定 --- */
body {
    background-color: #ffe4e1; /* ミスティローズ（淡いピンク） */
    color: #222; /* 濃いグレー（読みやすさ重視） */
    /* モダンで太めのゴシック体フォントを指定 */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
    margin: 20px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* 文字をなめらかに表示 */
}

/* --- ヘッダー部分（本家風・実用的サイズ） --- */
header {
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

header h1 a {
    /* 本文(1.1em)より「やや大きい」1.2em?1.3em程度に設定 */
    font-size: 1.25rem; 
    font-weight: 700;
    color: #ff00ff;     /* 本家らしい鮮やかなマゼンタ系 */
    text-decoration: none;
}

header h1 a:hover {
    text-decoration: underline;
}

header p {
    font-size: 0.85rem;
    color: #333;
    margin: 5px 0 0 0;
}

/* --- 掲示板（スレッド）表示エリア --- */
.thread-container {
    background-color: #ffffff; /* 本文は白背景で見やすく */
    border: 2px solid #ffb6c1; /* ライトピンクの太枠 */
    padding: 20px;
    max-width: 950px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

/* 各投稿（レス）の区切り */
.post {
    margin-bottom: 2em;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ffb6c1;
}

/* 名前・日付・IDなどの一行目 */
.post-meta {
    font-size: 0.95em;
    color: #444;
    margin-bottom: 8px;
}

.post-info b {
    color: #d02090; /* 濃いピンク（名前部分） */
    font-size: 1.1em;
}

.post-no {
    color: #ff0000; /* レス番号は赤 */
    font-weight: bold;
}

/* 【重要】本文（メッセージ）部分：太くて濃いゴシック体 */
.message {
    font-size: 1.1em;    /* 文字を少し大きく */
    font-weight: 700;    /* はっきりとした太字 */
    color: #000000;      /* 真っ黒にしてコントラストを最大に */
    margin-left: 25px;   /* 左側に少し余白を置いて読みやすく */
    letter-spacing: 0.03em; /* 文字の間隔をわずかに広げる */
    word-wrap: break-word; /* 長いURLなどで枠が壊れないように */
}

/* --- 投稿フォーム --- */
.post-form-section {
    background-color: #fff0f5; /* ラベンダーブラッシュ（さらに淡いピンク） */
    border: 1px solid #ffb6c1;
    padding: 20px;
    max-width: 700px;
    border-radius: 8px;
}

.warning-box {
    font-size: 0.85em;
    color: #666;
    border: 1px solid #ffb6c1;
    padding: 12px;
    background: #ffffff;
    margin-bottom: 15px;
    line-height: 1.5;
}

textarea {
    font-family: inherit; /* フォーム内も同じゴシック体にする */
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ffb6c1;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #ff69b4; /* ホットピンク */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

input[type="submit"]:hover {
    background-color: #ff1493; /* 濃いピンク（マウスを乗せたとき） */
}

/* --- フッター --- */
footer {
    margin-top: 40px;
    padding-bottom: 20px;
}

footer a {
    color: #d02090;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}