/* uaii.css 白黒版 */

/* 全体 */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #000; /* 黒背景 */
    color: #fff; /* 白文字 */
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* ページ全体 */
#pagebody {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8); /* 半透明黒 */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* ヘッダーリンク */
#pagebody a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

#pagebody a:hover {
    color: #aaa;
    text-shadow: 0 0 5px #fff;
}

/* 見出し */
h1, h2, h3, h4 {
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
    color: #fff;
    text-shadow: 0 0 2px #fff;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

/* サブ見出し */
h2 {
    border-bottom: 2px dotted #fff;
    padding-bottom: 4px;
}

h3 {
    color: #eee; 
    font-size: 1.4em;
    text-shadow: 0 0 1px #fff;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

h4 {
    color: #eee; 
    text-shadow: 0 0 1px #fff;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

/* 記事・セクション */
.section {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #fff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* 引用 */
.quote {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #fff;
    padding: 10px 15px;
    margin: 10px 0;
    font-style: italic;
    color: #ccc;
    line-height: 1.5;
    text-shadow: 0 0 1px #fff;
}

/* 強調 */
strong {
    color: #fff;
    text-shadow: 0 0 2px #fff;
}

/* 記事全体のスタイル */
article {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* フッター */
footer {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9em;
    color: #aaa;
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 15px;
}

/* NEW感を出すボタン */
.new-label {
    display: inline-block;
    font-size: 0.8em;
    color: #000;
    background-color: #fff;
    padding: 2px 6px;
    margin-right: 5px;
    border-radius: 3px;
    font-weight: bold;
    text-shadow: none;
}

/* 底部リンク */
div[align="center"] p {
    color: #ccc;
}

/* スクロールバー */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #000;
}

/* メディアクエリ（スマホ対応） */
@media (max-width: 768px) {
    #pagebody {
        padding: 15px;
    }
    h1, h2, h3, h4 {
        font-size: 1.1em;
    }
}

/* ボタンリンク */
a.waku {
    display: block;
    border-radius: 20px;
    margin-bottom: 10px; 
    text-align: center;
    cursor: pointer;
    padding: 10px 10px;
    background-color: transparent;
    border: 1px solid #fff; 
    color: #fff;
    transition: 0.3s;
}

a.waku:hover {
    background-color: #fff;
    color: #000;
    text-shadow: none;
}

.box11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: transparent;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0; 
    padding: 0;
}

ol.Nested {
    list-style:none;
    counter-reset:counter;
}
ol.Nested li::before {
    content:counters(counter, "-") "｜ ";
    counter-increment:counter;
}
ol.Nested li ol {
    list-style:none;
    counter-reset:counter;
}

/* uaii.css 白黒版に追加する強調スタイル */

/* UAII 見出し (h4) の強調 */
.uaii-heading {
    /* 既存のh4スタイルを維持しつつ、さらに際立たせる */
    color: #000 !important; /* 背景色と反対の黒 */
    background-color: #fff !important; /* 白の背景 */
    padding: 4px 10px;
    margin-top: 1.5em !important;
    margin-bottom: 0.8em !important;
    border-radius: 4px;
    text-shadow: none !important; /* 背景が白なのでテキストシャドウを解除 */
    display: inline-block; /* 見出しを背景色の範囲に限定 */
    font-weight: bold;
    /* 枠線を追加してサイバー感を出す */
    border: 1px solid #000;
}

/* UAII 内容 (p) の強調 */
.uaii-content {
    /* 内容を枠線で囲み、少し異質なフォントで表示 */
    border: 1px solid #fff; /* 白い枠線 */
    padding: 15px;
    margin-top: 0;
    margin-bottom: 1.5em;
    font-family: 'Courier New', monospace; /* モノスペースフォントで情報/機密文書感を出す */
    background-color: rgba(255, 255, 255, 0.05); /* わずかに明るい背景 */
    color: #aaa; /* 内容は少しグレーにして秘密情報感を出す */
    font-size: 1.05em;
    /* 点滅効果の代わりに、シャドウを加えて光らせる */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transition: all 0.5s;
}

/* UAII内容のホバー効果（マウスオーバーで強調） */
.uaii-content:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* 各UAII事例セクションのスタイル */
.uaii-section { 
    /* 見やすさのため、黒背景の中で少し明るく浮き上がらせる */
    background-color: #1a1a1a; /* 濃い黒背景の中で浮き立つように */
    border: 1px solid #444444; /* セクションの境界線を明確に */
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 40px; 
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05); /* ほのかな光 */
}



