/* ===== こもれびゆうえんちファンサイト 2000年代個人サイト再現CSS ===== */

/* 画像保護：ドラッグ・右クリック保存防止 */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

/* 背景：パステル系単色 */
body {
    background-color: #ffffee;
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ", sans-serif;
    font-size: 12px;
    color: #333333;
    margin: 0;
    padding: 0;
}

/* メインコンテナ：テーブルレイアウト風 */
.main-container {
    width: 780px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #99cc99;
    padding: 0;
}

/* サイトヘッダー */
.site-header {
    background-color: #eeffee;
    border-bottom: 2px solid #99cc99;
    padding: 15px;
    text-align: center;
}

.site-header h1 {
    font-size: 22px;
    color: #336633;
    margin: 0;
    letter-spacing: 2px;
}

.site-header .subtitle {
    font-size: 11px;
    color: #669966;
    margin-top: 4px;
}

/* 2カラムレイアウト */
.layout {
    display: flex;
    align-items: flex-start;
}

/* サイドバー */
.sidebar {
    width: 180px;
    min-width: 180px;
    background-color: #eeffee;
    border-right: 1px solid #99cc99;
    padding: 8px;
    font-size: 11px;
    box-sizing: border-box;
}

.sidebar-title {
    text-align: center;
    font-weight: bold;
    color: #336633;
    padding: 5px 0;
    border-bottom: 1px dashed #99cc99;
    margin-bottom: 8px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    padding: 3px 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #0033cc;
}

.nav-menu li a:hover {
    color: #ff3300;
    text-decoration: underline;
}

.nav-menu .nav-sub {
    padding-left: 12px;
    font-size: 10px;
}

.sidebar hr {
    border: none;
    border-top: 1px dashed #99cc99;
    margin: 8px 0;
}

.sidebar-banner {
    text-align: center;
    margin: 5px 0;
}

.sidebar-counter {
    text-align: center;
    font-size: 10px;
    color: #669966;
    margin-top: 5px;
}

/* メインコンテンツ */
.content {
    flex: 1;
    padding: 15px;
    min-height: 400px;
}

/* ページタイトル */
.page-title {
    font-size: 16px;
    font-weight: bold;
    color: #336633;
    border-bottom: 2px dashed #99cc99;
    padding-bottom: 4px;
    margin-bottom: 10px;
    margin-top: 0;
}

/* リンク色：2000年代定番 */
a:link { color: #0033cc; }
a:visited { color: #660099; }
a:hover { color: #ff3300; text-decoration: underline; }
a:active { color: #ff0000; }

/* 区切り線 */
hr {
    border: none;
    border-top: 1px dashed #cccccc;
    margin: 15px 0;
}

/* セクション */
.section-heading {
    font-size: 13px;
    font-weight: bold;
    color: #336633;
    margin: 15px 0 8px;
}

/* marquee */
.marquee-container {
    border: 1px solid #99cc99;
    background-color: #fffff0;
    padding: 4px 8px;
    margin: 10px 0;
    font-size: 11px;
}

/* アクセスカウンター */
.counter-display {
    font-family: "Courier New", monospace;
    font-size: 14px;
    font-weight: bold;
    color: #336633;
    background-color: #eeffee;
    border: 1px inset #ccc;
    padding: 2px 6px;
    display: inline-block;
}

/* 更新情報リスト */
.update-list {
    font-size: 11px;
    line-height: 1.8;
}

.update-list .date {
    color: #999;
    margin-right: 5px;
}

/* プレースホルダー画像 */
.placeholder-img {
    display: inline-block;
    background-color: #e0e0e0;
    border: 1px dashed #999;
    text-align: center;
    font-size: 10px;
    color: #666;
    line-height: 1.2;
    padding: 2px;
    overflow: hidden;
}

.placeholder-banner {
    width: 88px;
    height: 31px;
    line-height: 31px;
    font-size: 9px;
}

.placeholder-icon {
    width: 16px;
    height: 16px;
    line-height: 16px;
    vertical-align: middle;
}

.placeholder-character {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin: 10px auto;
    border-radius: 4px;
}

img.placeholder-character {
    object-fit: contain;
    border: 2px dashed #99cc99;
    background-color: #fafafa;
}

/* サイトマップツリー */
.sitemap-tree {
    font-family: "ＭＳ ゴシック", "MS Gothic", monospace;
    line-height: 1.8;
    font-size: 12px;
}

/* フッター */
.site-footer {
    text-align: center;
    padding: 10px;
    font-size: 10px;
    color: #999;
    border-top: 1px dashed #cccccc;
    margin-top: 20px;
}

.back-link {
    text-align: right;
    margin-top: 15px;
    font-size: 11px;
}

/* バナーリンク（88x31） */
.banner-link {
    display: inline-block;
    width: 88px;
    height: 31px;
    background-color: #ddd;
    border: 1px solid #999;
    text-align: center;
    line-height: 31px;
    font-size: 8px;
    color: #666;
    text-decoration: none;
    margin: 2px;
}

/* 放送リスト */
.episode-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.episode-table th {
    background-color: #eeffee;
    border: 1px solid #99cc99;
    padding: 3px 6px;
    text-align: left;
    font-size: 11px;
}

.episode-table td {
    border: 1px solid #ddd;
    padding: 3px 6px;
}

.episode-table .cancelled {
    color: #cc0000;
    font-weight: bold;
}

/* 隠しページ1 */
.secret-page-1 {
    background-color: #f8f8f0;
}

.secret-page-1 .content {
    text-align: center;
    color: #555;
    padding-top: 50px;
    line-height: 2.5;
}

/* 隠しページ2 */
body.secret-page-2 {
    background-color: #000000;
    color: #ffffff;
    font-family: "ＭＳ ゴシック", "MS Gothic", monospace;
}

.secret-page-2 .secret-content {
    max-width: 500px;
    margin: 100px auto;
    text-align: center;
    line-height: 2.5;
}

/* 404ページ */
.whisper {
    font-size: 8px;
    color: #cccccc;
}
