/* 独自フォント読み込み */
@font-face {
    font-family: '851CHIKARA-YOWAKU_002';
    src: url('/fonts/851CHIKARA-YOWAKU_002.woff2') format('woff2'),
         url('/fonts/851CHIKARA-YOWAKU_002.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ヘッダー全体 */
.header {
    width: 100%;
    background-color: #0f0f1f; /* 黒背景に変更 */
    box-shadow: 0 0 20px #0ff; /* サイバーパンク風光彩 */
}

/* 内部コンテナ */
.header-inner {
    max-width: 2000px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center; /* 画像と文字を縦中央揃え */
    gap: 20px;
}

/* タイトル文字 */
.header-title {
    font-family: '851CHIKARA-YOWAKU_002', sans-serif;
    font-size: 2.5rem;
    color: #0ff; /* 蛍光ブルー */
    text-shadow: 
        0 0 5px #0ff,
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 40px #f0f; /* 紫っぽい光彩追加 */
    white-space: nowrap; /* 改行させない */
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
    .layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    .header-title {
        font-size: 2rem;
    }
}