/* 全体的なリセット */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

/* 全体のスクロールバー幅 */
::-webkit-scrollbar {
  width: 8px;
}

/* スクロールバーのつまみ部分 */
::-webkit-scrollbar-thumb {
  background: rgb(0, 255, 0);   /* ここで色指定 */
  border-radius: 8px;     /* 丸み */
  border: 2px solid #111; /* 外枠（任意） */
}

/* スクロールバーの背景部分 */
::-webkit-scrollbar-track {
  background: #222;       /* 背景色 */
  border-radius: 8px;
}





body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 画面の高さを最低でも確保 */
  margin: 0;
}
body.noscroll {
  overflow: hidden;
}

img {
  margin: 0;
  padding: 0;
}




/* navigationbar.php */
.site-logo{
  font-size: 0px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
}
.site-logo img {
  height: 80px; /* 高さを 60px に調整（旧: 120px） */
  width: auto;
  transition: transform 0.3s ease, opacity 0.3s;
  opacity: 0.9; /* 通常時は少し透明に */
}
.site-logo:hover img {
  transform: scale(1.05); /* ホバー時に少し拡大 */
  opacity: 1.0; /* ホバー時に不透明に */
}

.navbar {
  background: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* ← 明示するのが重要 */
  padding: 0 5%;
  border-bottom: 1px solid rgba(0, 255, 0, 0.8); 
box-shadow: 0 5px 20px rgba(0, 255, 0, 0.5);  transition: all 0.3s ease;
  /* overflow: hidden; */
  flex-shrink: 0;
  position: relative; /* z-index を有効にするために必要 */
  z-index: 1100;       /* 他の要素より手前に表示するための重なり順指定 */
}
.navbar.shrink {
  height: 0;
  opacity: 0;
  pointer-events: none;
  border-bottom-width: 0;
  box-shadow: none;
}
.navbar.hide {
  /* transform: translateY(-100%); */
  /* ↓ 以下に変更（レイアウトの高さを 0 にする）*/
  height: 0;
  opacity: 0;
  pointer-events: none;
  border-bottom-width: 0;
  box-shadow: none;
  
  /* もし navbar に上下の padding があれば、それも 0 にします */
  padding-top: 0; 
  padding-bottom: 0;
}

.nav-links{
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a{
  text-decoration: none;
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 4px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links li a::after{
  content: '';
  position: absolute;
  bottom: 0; /* リンクの真下に配置 */
  left: 50%; /* 中央からスタート */
  transform: translateX(-50%); /* 中央揃え */
  width: 0%; /* 初期状態（幅ゼロ） */
  height: 2px;
  background-color: rgb(0, 255, 0); /* テーマカラーの緑 */
  transition: width 0.3s ease-out; /* 幅が広がるアニメーション */
}
.nav-links li a:hover{
  color: rgb(0, 255, 0);
  background-color: transparent;
}
.nav-links li a:hover::after{
  width: 100%;
}
.nav-links li a.active {
  color: rgb(0, 255, 0);
  font-weight: 700;
  background: transparent;
}
.nav-links li a.active::after {
  width: 100%;
}










/* index.php */
#matrixCanvas {
  /* position: absolute; (削除) */
  /* top: 0; (削除) */
  /* left: 0; (削除) */
  width: 100%;
  height: 100%;
  /* z-index は不要になります */
  
  /* ▼ 追加 ▼ */
  /* canvas要素がインライン要素として扱われる際の
     意図しない下余白を防ぎます */
  display: block;
}

.section-container{
  display: flex;
}

/* メインセクション */
.index-main-section{
  flex: 8;
  background: #003a00;
}

/* トップセクション */
.index-top-section {
  position: relative; /* 子要素(canvas)の配置の基準点にする */
  height: 300px; /* ★ここでキャンバスの高さを自由に調整できます */
  background: #000;
  
  /* ▼ 追加 ▼ */
  /* canvasの display: block と合わせて、
     余白が発生するのを防ぎます */
  line-height: 0; 
}
.index-top-section{
  background: rgb(10, 10, 10);
}
.index-top-section img{
  height: 400px;
  margin: auto;
  display: block;
}


/* ミドルセクション */
.index-midle-section {
  /* 変更点: 赤(#450000) -> テーマのダークグレー(#222) */
  background: #030506;
  
  /* * 変更点: 左右のパディングを 5% に設定
   * (Navbarやサイドバーラッパーと合わせる)
   * 上下のパディングは 40px を維持
   */
  padding: 40px 5%;
  /* (旧: padding: 40px 0;) */
}

/* 投稿リストと情報セクションのラッパー */
.post_and_inf-wrapper {
    display: flex;
    justify-content: space-between; /* 記事リストとサイドバーを両端に */
    gap: 30px; /* 間の余白 */
    
    /* * 背景とパディングは親(.index-midle-section)が担当するため、
     * ここでは指定不要です (以前の変更から)
     */
}

.all-posts-container {
  flex: 8;
  /* (既存のまま) */
}


/* ミドルセクション内の説明/タイトル */
.index-explanation {
  margin-bottom: 40px; /* タイトルと記事リストの間に十分な余白 */
}

.index-explanation h2,
.index-explanation p {
  text-align: center;
  /* (旧: font-size: 20px;) */
}

/* タイトル (h2) */
.index-explanation h2 {
  /* 変更点: 赤 -> テーマの緑 */
  color: rgb(0, 255, 0); 
  font-size: 1.8em; /* h2 を大きく */
  font-weight: 700;
  
  /* --- グロー（発光）エフェクトを追加 --- */
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3);
}

/* サブテキスト (p) */
.index-explanation p {
  /* 変更点: 赤 -> 落ち着いた白 */
  color: #f0f0f0; 
  font-size: 1.1em;
  margin-top: 10px;
}


















/* フッター */
.site-footer {
  background-color: #0a0d0e;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: auto;
  border-top: 1px solid #444;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
}






































/* --- メインとサイドバーのレイアウト --- */

/* 投稿リストと情報セクションのラッパー
  flexbox を使い、メインコンテンツとサイドバーを横並びにします。
*/
.post_and_inf-wrapper {
    display: flex;
    /* justify-content: space-between; (メイン側に flex: 8 があるため不要) */
    gap: 30px; /* メインとサイドバーの間の隙間 */
    padding: 30px 5%; /* 全体の左右余白（navbarの 5% と合わせる） */
    background: #030506;
}


/* 情報セクション (サイドバー) 
  幅を 30-35% 程度に固定します。
*/
.index-information-section {
    /* margin-top: 100px; (削除) -> 記事リストと高さを合わせる */
    width: 320px; /* サイドバーの幅を固定（旧: 300px） */
    min-width: 300px; /* 最小幅 */
    flex-shrink: 0; /* flex: 2; の代わりに縮まないように設定 */
    display: flex;
    flex-direction: column; /* 中の要素を縦に並べる */
    gap: 30px; /* 各セクション間の余白 */
}

/* --- サイドバー内部のカードデザイン --- */

/* 情報カードの共通スタイル 
  (self-introduction-section や recommended-posts-section に適用) 
*/
.info-card {
    background-color: #000000; /* Navbar と同じダークグレー */
    border: 1px solid rgba(0, 255, 0, 0.5); /* テーマカラーの緑 */
    border-radius: 8px;
    padding: 20px;
    
    /* テーマカラーの緑でグロー（発光）させる */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2); 
    
    color: #f0f0f0; /* デフォルトの文字色を白系に */
    
    /* ホバーアニメーション */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* カードをホバーした時に少し浮き上がらせ、光を強くする */
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
}

/* カードのタイトル (h4) */
.info-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3); /* 緑色の薄い下線 */
    font-size: 1.2em;
    color: rgb(0, 255, 0); /* タイトルをテーマカラーの緑に */
}

/* (1) プロフィール欄 */
.profile-content {
    display: flex;
    align-items: center; 
    gap: 15px;
}

.profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 0, 0.5); /* アイコンにも枠線を追加 */
}

.profile-text .profile-name {
    font-weight: bold;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.profile-text p {
    font-size: 0.9em;
    color: #ccc; /* 説明文の文字色を少し落ち着いた白に */
    margin: 0;
    line-height: 1.6;
}

/* (2) おすすめ記事欄 */
.recommended-posts-section ul {
    margin: 0;
    padding-left: 20px; 
}

.recommended-posts-section li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.recommended-posts-section li:last-child {
    margin-bottom: 0;
}

.recommended-posts-section a {
    text-decoration: none;
    color: #f0f0f0; /* 通常時のリンク色を白に */
    transition: color 0.3s;
}

.recommended-posts-section a:hover {
    color: rgb(0, 255, 0); /* ホバー時にテーマカラーの緑に */
    text-decoration: underline;
}

/* (3) X (Twitter) 欄 */
/* アクションボタンエリア */
.cyber-actions {
    margin-top: 20px;
    text-align: center;
}

/* サイバー風ボタン */
.cyber-button {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: 1px solid #00ff00;
    color: #00ff00;
    text-decoration: none;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-button:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

/* ホバー時のテキスト変化（疑似的なグリッチ） */
.cyber-button .btn-glitch {
    display: none;
}
.cyber-button:hover .btn-text {
    display: none;
}
.cyber-button:hover .btn-glitch {
    display: inline;
}






/* (4) YouTube 欄 */
.x-section, .youtube-section {
    /* 埋め込みコンテンツは背景が白の場合があるため、パディングを調整 */
    padding: 12px;
}

.youtube-section iframe {
    border-radius: 4px;
}

/* Twitterリンクのスタイル */
.twitter-timeline {
  color: white;
  text-decoration: none !important;
  transition: color 0.3s; /* ふわっと色を変える */
}

/* ホバー時のスタイル */
.twitter-timeline:hover {
  color: rgb(0, 255, 0); /* 緑色に変更 */
  text-decoration: none !important;
}

/* YouTubeリンクのスタイル */
.youtube-timeline {
  display: block;       /* ★重要：これを指定するとマージンが効くようになります */
  margin-bottom: 10px;  /* これで効きます */
  
  /* 以下はお好みで（Twitterのリンクと合わせる場合など） */
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.youtube-timeline:hover {
  color: rgb(0, 255, 0);
  text-decoration: none;
}



















/* =======================================
   レスポンシブ対応 (メディアクエリ)
   ======================================= */

/* --- タブレットサイズ (1024px 以下) --- */
@media (max-width: 1024px) {
    .post_and_inf-wrapper {
        flex-direction: column; /* メインとサイドバーを縦積みに */
    }

    .all-posts-container {
        flex: none; /* flex: 8 をリセット */
        width: 100%;
    }

    .index-information-section {
        width: 100%; /* サイドバーの幅を100%に */
        min-width: unset;
    }
}


/* --- スマートフォンサイズ (767px 以下) --- */
@media (max-width: 767px) {
    /* --- ナビゲーションバー --- */
    .navbar {
        height: 60px; /* 高さを詰める */
        padding: 0 15px; /* 左右の余白を 5% -> 15px に */
    }

    .site-logo img {
        height: 45px; /* ロゴを小さく */
    }

    .nav-links {
        display: none; /* PC用リンクを非表示 */
        /* ※注意: ここを非表示にした場合、別途
           ハンバーガーメニュー用のHTML/CSS/JavaScriptの実装が必要です。
        */
    }

    /* --- トップセクション --- */
    .index-top-section {
        height: 200px; /* Canvasの高さを調整 */
    }

    /* --- ミドルセクション (レイアウト調整) --- */
    .index-midle-section {
        padding: 30px 15px; /* 左右余白を 5% -> 15px に */
    }

    .post_and_inf-wrapper {
        gap: 25px; /* 記事リストとサイドバーの隙間 */
    }

    .index-explanation h2 {
        font-size: 1.5em;
    }
    .index-explanation p {
        font-size: 1em;
    }

    /* --- サイドバー --- */
    .profile-content {
        /* アイコンとテキストを縦積みに */
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}























/* =======================================
   ハンバーガーメニュー
   ======================================= */

/* --- アイコン (スマホでのみ表示) --- */
.hamburger-menu {
  display: none; /* デフォルト(PC)では非表示 */
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative; /* z-indexを有効にするため */
  z-index: 1001; /* モバイルメニュー(1000)より手前に */
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgb(0, 255, 0); /* テーマカラー */
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}
/* アイコンの各線の初期位置 */
.hamburger-menu span:nth-child(1) { top: 0px; }
.hamburger-menu span:nth-child(2) { top: 10px; }
.hamburger-menu span:nth-child(3) { top: 20px; }

/* --- モバイルメニュー本体 (オーバーレイ) --- */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 画面全体の高さ */
  
  /* 既存テーマに合わせた背景 */
  background: rgba(0, 0, 0, 0.95); /* #1a1a1a に近い色 + 透明度 */
  backdrop-filter: blur(5px); /* 背景をぼかす */
  
  display: flex;
  justify-content: center;
  align-items: center;

  /* 初期状態 (非表示) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 30px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 2rem; /* スマホ用に大きく */
  font-weight: bold;
  transition: color 0.3s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: rgb(0, 255, 0); /* テーマカラー */
}


/* --- JavaScriptで付与する .open クラスのスタイル --- */

/* メニューが開いた時のスタイル */
.mobile-nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* アイコンを「×」印に変更 */
.hamburger-menu.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}
.hamburger-menu.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* --- 既存のスマホ用メディアクエリを上書き --- */
/* (767px 以下) */
@media (max-width: 767px) {
  .nav-links {
    display: none; /* PC用リンクを非表示 (これは既存) */
  }

  .hamburger-menu {
    display: block; /* スマホ用アイコンを表示 */
  }
}