/* --- 基本的なリセットとbodyのスタイル --- */
body, h1, h2, h3, p, ul, pre {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background-color: #2c2c2c; /* bg-gray-100 に相当 */
    color: #202122;
}

hr {
    margin-top: 60px;
    margin-bottom: 100px;
}

/* --- レイアウト関連 --- */
.experiments_post{
  background: #191e20;
}

/* タイトルのデザイン */
.experiments_post-title {
    /* --- テキストスタイル --- */
    color: rgb(0, 255, 0);      /* テーマカラーの緑 */
    font-size: 2.5rem;          /* かなり大きく強調 */
    font-weight: 700;           /* 太字 */
    line-height: 1.3;
    letter-spacing: 0.05em;     /* テック感が出るよう少し文字間を空ける */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* --- 発光エフェクト (Glow) --- */
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);

    /* --- 背景と枠線 (サイバーな装飾) --- */
    /* 左から右へフェードアウトする薄い緑のグラデーション背景 */
    background: linear-gradient(90deg, rgba(0, 255, 0, 0.1) 0%, transparent 90%);
    
    /* 左側に太いアクセントバー */
    border-left: 8px solid rgb(0, 255, 0);
    
    /* --- 余白と形状 --- */
    padding: 1.5rem 2rem;       /* 文字の周りの余白 */
    border-radius: 0 10px 10px 0; /* 右側だけ角を丸くして近未来感を出す */
    width: 100%;
    box-sizing: border-box;
}



/* --- 日付のデザイン (追加) --- */
.post-date {
    font-family: 'Courier New', Consolas, monospace; /* 等幅フォントで機械的に */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* "LOG_DATE:" のラベル部分 */
.date-label {
    background-color: rgba(0, 255, 0, 0.2);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* タイトル文字本体の調整 (h1タグにしたためリセットも兼ねる) */
.post-title-text {
    margin: 0;
    padding: 0;
    font-size: inherit; /* 親(.experiments_post-title)のサイズを継承 */
    font-weight: inherit;
    color: inherit;
    line-height: 1.2;
}



.experiments_post-home {
  background: #020405;
    max-width: 1400px; /* max-w-7xl に相当 */
    margin-left: auto;
    margin-right: auto;
    padding: 2rem; /* p-8 に相当 */
}

.layout-wrapper {
  padding-top: 40px;
  display: flex;
  flex-direction: column; /* モバイルでは縦並びがデフォルト */
  gap: 2rem; /* gap-8 に相当 */
}

.main-content {
    width: 100%;
    background-color: #000000; /* bg-white に相当 */
    padding: 2rem; /* p-8 に相当 */
    border-radius: 0.5rem; /* rounded-lg に相当 */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2); 
    color: #f0f0f0;
    box-sizing: border-box;
}

.sidebar-content {
    width: 100%;
}

/* --- レスポンシブデザイン (PC向け) --- */
/* 画面幅が1024px以上の場合に適用 */
@media (min-width: 1024px) {
    .layout-wrapper {
        flex-direction: row; /* 横並びに変更 */
    }
    .main-content {
        width: 75%; /* lg:w-3/4 に相当 */
    }
    .sidebar-content {
        width: 25%; /* lg:w-1/4 に相当 */
        position: sticky;
        top: 2rem; /* top-8 に相当 */
        align-self: flex-start; /* self-start に相当 */
    }
}


/* --- Wikipedia風のコンテンツスタイル --- */
/* 注意書き */
.precautions {
    /* ★ 変更: テーマに合わせる */
    background: #000000;
    color: #ff0000; /* 警告的な赤 */
    border: 1px solid #ff0000;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
}

.overview {
    /* ★ 変更: テーマのカードスタイルを適用 */
    background-color: #080808;
    border: 1px solid rgba(0, 255, 0, 0.5); 
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    margin-top: 0; /* ページ先頭のためマージン削除 */
    padding: 2rem;
}

.experiments_post-contaner .overview_contants h1 {
    font-size: 1.8em; /* h1 とサイズを合わせる */
    font-weight: normal;
    /* ★ 変更: テーマカラー適用 */
    color: rgb(0, 255, 0);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* グロー追加 */
    
    padding-bottom: 0.3em;
    margin-top: 0; /* overview内のh1は上マージンを削除 */
    margin-bottom: 0.5em;
}
.experiments_post-contaner .overview_contants p {
    /* ★ 変更: テーマカラー適用 */
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 1em;
}

.overview_contaner {
    display: flex;
    align-items: flex-start; /* 上揃えにする */
    gap: 20px; /* テキストと画像の間の隙間 */
}

.overview_contants{
    flex: 1; /* 空いているスペースをすべて埋める */
}

.thumbnail-contaner {
  /* ★ 変更: 背景と枠線をテーマに合わせる */
  background: #000000;
  border: 1px solid rgba(0, 255, 0, 0.5); 
  width: 320px;
  height: 230px;
  display: flex;
  justify-content: center; 
  align-items: center; 
  overflow: hidden; 
  border-radius: 10px;
  /* ★ 変更: グローエフェクト */
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  flex-shrink: 0; /* 縮まないように設定 */
}
.thumbnail {
  margin: 0;
  border-radius: 10px;
  
  /* 変更点: 固定幅をやめ、コンテナに収まるように調整する */
  /* width: 300px; */ /* <-- この行を削除またはコメントアウト */
  
  max-width: 100%;   /* コンテナの幅(320px)を最大値とする */
  max-height: 100%; /* コンテナの高さ(230px)を最大値とする */
  width: auto;      /* アスペクト比を維持 */
  height: auto;     /* アスペクト比を維持 */
}

.experiments_post-contaner h1 {
    font-size: 1.8em;
    font-weight: normal;
    /* ★ 変更: テーマカラー適用 */
    color: rgb(0, 255, 0);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* グロー追加 */
    
    padding-bottom: 0.3em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.experiments_post-contaner h2 {
    font-size: 1.5em;
    font-weight: normal;
    /* ★ 変更: テーマカラー適用 */
    color: rgb(0, 255, 0);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
    
    padding-bottom: 0.25em;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
}
.experiments_post-contaner h3 {
    font-size: 1.2em;
    font-weight: bold;
    /* ★ 変更: テーマカラー適用 */
    color: rgb(0, 255, 0);
    opacity: 0.9;
    
    margin-top: 1em;
    margin-bottom: 0.5em;
}
.experiments_post-contaner p,
.experiments_post-contaner li {
    /* ★ 変更: テーマカラー適用 */
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 1em;
}
.experiments_post-contaner ul,
.experiments_post-contaner ol {
    padding-left: 1.5em; /* リストのインデント */
    margin-bottom: 1em;
}
.experiments_post-contaner a {
    /* ★ 変更: リンク色を白系に、ホバーで緑 */
    color: #f0f0f0;
    text-decoration: underline;
    transition: color 0.3s;
}

.experiments_post-contaner a:hover {
    color: rgb(0, 255, 0);
    text-decoration: underline;
}
.experiments_post-contaner code {
    /* ★ 変更: ダークテーマのコードスタイル */
    background-color: #333;
    color: #f0f0f0;
    border: 1px solid #444;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
    line-height: 1.4em;
}
.experiments_post-contaner pre {
    /* ★ 変更: ダークテーマのコードブロックスタイル */
    background-color: #0d0d0d; /* 真っ黒に近い背景 */
    color: #f0f0f0;
    border: 1px solid #333;
    
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    white-space: pre;
    scrollbar-width: thin;
    margin-bottom: 1em;
}
.experiments_post-contaner pre code {
    background-color: transparent;
    border: none;
    padding: 0;
    line-height: normal; /* preのスタイルを優先 */
}

.toc-h1 { padding-left: 0; }
.toc-h2 { padding-left: 1.5em; }
.toc-h3 { padding-left: 3em; }

.zoomable-image-container {
    margin: 1em 0;
}
.zoomable-image-container img {
    /* ★ 変更: 幅をコンテナに合わせ、枠線をテーマに合わせる */
    width: 100%;
    max-width: 600px; /* 最大幅は維持 */
    height: auto;
    border: 1px solid rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    border-radius: 4px;
}

.comment-area-container{
    max-width: 1000px; 
    margin: 0 auto;
}







/* --- タブレットサイズ (1024px 以下) --- */
@media (max-width: 1024px) {
    .layout-wrapper {
        flex-direction: column; /* 縦積みに変更 */
    }

    .main-content,
    .sidebar-content {
        width: 100%; /* 幅を100%に */
    }

    .sidebar-content {
        position: static; /* sticky を解除 */
        height: auto;     /* 高さを自動に */
        margin-top: 0;    /* 上マージンを削除 */
        order: -1;        /* 目次をメインコンテンツより上に */
    }

    .main-content {
        order: 0;         /* メインコンテンツを下にする */
        margin-top: 2rem; /* 目次との間に余白を追加 */
        box-sizing: border-box;
    }
}


/* --- スマートフォンサイズ (767px 以下) --- */
@media (max-width: 767px) {
    .experiments_post-home {
        padding: 1rem; /* 全体の左右余白を詰める */
    }

    .layout-wrapper {
        gap: 1.5rem; /* メインとサイドバーの隙間を詰める */
    }

    .main-content {
        padding: 1.5rem; /* コンテンツ内の余白を詰める */
    }
    
    .overview {
        padding: 1.5rem; /* 概要ボックスの余白も詰める */
    }
    .overview_contaner {
        flex-direction: column; /* 概要内のテキストと画像を縦積みに */
    }
    .thumbnail-contaner {
        width: 100%; /* サムネイルコンテナの幅を100%に */
        height: auto; 
    }
    .thumbnail {
        width: 100%; /* サムネイル画像の幅を100%に */
        max-width: 300px;
        height: auto;
    }

    /* --- コンテンツスタイル調整 --- */
    .experiments_post-contaner h1 {
        font-size: 1.6em;
    }
    .experiments_post-contaner h2 {
        font-size: 1.3em;
    }
    .experiments_post-contaner h3 {
        font-size: 1.1em;
    }

    .experiments_post-contaner p,
    .experiments_post-contaner li {
        font-size: 0.95em; /* 本文の文字サイズを少し小さく */
    }

    .experiments_post-contaner pre {
        padding: 0.8em;
        font-size: 0.9em; /* コードブロックの文字サイズ調整 */
    }

    .zoomable-image-container img {
        max-width: 100%; /* 画像がコンテナからはみ出さないように */
    }

    .experiments_post-title {
        font-size: 1.6rem;      /* スマホでは少し小さく */
        padding: 1rem 1.2rem;
        border-left-width: 5px; /* バーを少し細く */
        /* margin-bottom: 2rem; */
    }

    .post-date {
        font-size: 0.8rem;
    }
}
