/* ===== 2003年風掲示板CSS ===== */

body {
    background-color: #efefef;
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    color: #333;
    margin: 10px;
}

.bbs-container {
    max-width: 780px;
    margin: 0 auto;
}

.bbs-header {
    background-color: #cc3333;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
}

.bbs-nav {
    background-color: #ddd;
    padding: 3px 10px;
    font-size: 11px;
    border-bottom: 1px solid #999;
}

.bbs-nav a {
    color: #0000cc;
    text-decoration: none;
    margin: 0 2px;
}

.bbs-nav a:hover {
    color: #ff0000;
    text-decoration: underline;
}

.thread-title {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

/* 個別レス */
.post {
    padding: 5px 10px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.post-header {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
}

.post-number {
    font-weight: bold;
    color: #cc3333;
}

.post-name {
    color: #009900;
    font-weight: bold;
}

.post-date {
    color: #999;
}

.post-body {
    font-size: 12px;
    line-height: 1.6;
    padding-left: 5px;
}

.post-body .anchor {
    color: #0000cc;
    text-decoration: none;
}

.post-body .anchor:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* スレッド4の>>1は微妙に異なる */
.post-anomaly .post-date {
    color: #333;
}

/* 黒塗りリンク */
.bbs-hidden-link {
    color: #333;
    text-decoration: underline;
    cursor: pointer;
}

.bbs-hidden-link:hover {
    color: #000;
}

/* リンク */
a:link { color: #0000cc; }
a:visited { color: #660099; }
a:hover { color: #ff0000; }

/* 書き込みフォーム（無効化された状態で表示） */
.bbs-form {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    opacity: 0.5;
    pointer-events: none;
}

.bbs-form p {
    margin: 0 0 5px;
    font-weight: bold;
    font-size: 12px;
}

.bbs-form input[type="text"],
.bbs-form textarea {
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    border: 1px solid #999;
    margin: 2px 0;
}

.bbs-form input[type="submit"] {
    margin-top: 5px;
}

.bbs-form::after {
    content: "※この掲示板は現在書き込みできません";
    display: block;
    color: #999;
    font-size: 10px;
    margin-top: 5px;
}

/* ポップアップ */
.anchor-popup {
    position: absolute;
    background-color: #ffffee;
    border: 1px solid #999;
    padding: 5px 8px;
    font-size: 11px;
    max-width: 400px;
    z-index: 100;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    display: none;
}
