SCP-3142-JP
評価: -1+x
blank.png
:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/*-----------------------------------*/
/*-----------------------------------*/
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    white-space: nowrap;
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/*-----------------------------------*/
/*-----------------------------------*/
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*--- Motion Accessibility ---*/
@media screen and (prefers-reduced-motion: reduce) {
    div.anom-bar-container { --timeScale: 0!important; }
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0); }
    to { opacity: 1; clip-path: inset(0); }
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem); }
    to { opacity: 1; transform: translateX(0); }
}
 
@keyframes expand2 {
    from { opacity: 0; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
アイテム番号: 3142-JP
レベル2
収容クラス:
keter
副次クラス:
none
撹乱クラス:
ekhi
リスククラス:
caution

特別収容プロトコル: SCP-3142-JP実例の収容は事実上不可能です。その為、SCP-3142-JPの収容手順は情報隠蔽と日本全土の治安維持に重点を置く必要があります。SCP-3142-JPが発生した場合、確認した職員は各々のサイト管理官に報告します。その後、報道機関や民間にカバーストーリー「未知の幻覚現象」を流布して日本国民の混乱を最小限に抑えます。また、財団は警視庁公安部特事課を介して日本警察組織と協力し、SCP-3142-JP発生下の日本の治安維持に務めます。各種SNSを運営している会社に潜入しているエージェントはSCP-3142-JPの情報隠蔽に務めてください。

SCP-3142-JPが終了した場合、SCP-3142-JPに関する痕跡1を抹消し、O5評議会の全会一致決議の下で「アンニュイ・プロトコル」を発動してSCP-3142-JPに関する情報や記憶を極力取り除くようにしてください。SCP-3142-JP実例の写真や動画は回収され、研究のために財団のデータベースに保存されます。

説明: SCP-3142-JPは日本全域でSCP-3142-JP実例が出現するイベントの総称です。SCP-3142-JP実例は可視実体ですが、物理的実体を持ちません。また、SCP-3142-JP実例は建造物や地形などの物理的干渉を無視するため、こちらからの攻撃や対話などは受け付けません。SCP-3142-JPが発現する条件や原因は未解明です。

SCP-3142-JP実例は実際の過去の日本の生態系や植生に沿って時間経過で変化します。生物をかたどったSCP-3142-JP実例(以下、SCP-3142-JP-A群と呼称)はその種類を問わず現実の人間を含めたあらゆる生物に完全に無関心です。加えてSCP-3142-JPイベント内での温度や環境の変化も現実には何の影響を持たない一方、植物型のSCP-3142-JP実例(以下、SCP-3142-JP-B群と呼称)はSCP-3142-JPイベント内の気候の変化に沿って変化します。また、人型のSCP-3142-JP-A群は実際の歴史に沿って建造物や物品などのSCP-3142-JP実例(以下、SCP-3142-JP-Cと呼称)を形成します。

IMG_3460.jpeg

[編集済]湾で確認された魚型のSCP-3142-JP-A群

SCP-3142-JPは20██/██/██に[編集済]県沖で財団に初めて確認されました。更なる調査の結果、真猿型下目2や二枚貝類などのSCP-3142-JP-A群が発見されました。このことから、SCP-3142-JPは「新生代 古期第三紀」を示していると予測されました。以下は財団が確認したSCP-3142-JP-A,-Bと予測された地質時代や年代、歴史的時代3の抜粋です。

出現したSCP-3142-JP-Aの一部 出現したSCP-3142-JP-Bの一部 予測される年代
猿人類、オオツノジカ、ウマなどの哺乳類動物 ナラガシワ、ケヤキ、ササ 新生代 新第三紀前半(約2300万年前)
ヒト属の生物群、ケナガマンモス コミネカエデ、ヤマボウシ、イヌブナ 新生代 第四紀
全裸、または毛皮を着た人間、マンモス類 ブナなどの森林 縄文時代中期4
水田を形成し、稲作を行う人間 温帯ジャポニカ稲など 弥生時代前期5
袴などを着用した男人、裳などを着用した女人 特筆すべき点無し 飛鳥時代6
草鞋や直垂を着用した男人、小袖や絞り袴を着用した女人、強装束の男人、背子や褶を着用した女人、[編集済] 上と同様 平安時代中期~後期
戦乱を起こす武士の恰好をした男人7 上と同様 鎌倉時代
江戸時代式の武士の恰好をした男人など8 上と同様9 江戸時代前期~中期
IMG_3465.jpeg

サイト-8128の非常口付近で確認された[編集済]のSCP-3142-JP-A

SCP-3142-JPは現時点(20██/12/2)も進行中であり、-A,-B,-Cから明治時代初期が該当すると推測されています。観測の結果、SCP-3142-JPイベント内の時間は通常よりも早く進んでいますが、その速度は一定ではありません。観測した研究チームによると、SCP-3142-JP内の時間は特徴的な歴史的イベントの発生密度が多いほど遅くなる10と推測されています。

補遺: SCP-3142-JP実例を初めて財団が確認してから██時間後11には日本国民の殆どの混乱が収まりました。日本世論は次第にSCP-3142-JPの異常性を受け入れ始めました12。SCP-3142-JP発見から50時間後、SCP-3142-JPの特性からO5評議会は全会一致でSCP-3142-JPの異常が確認できなくなった時点において「アンニュイ・プロトコル」の発動を正式決議し、上述の収容プロトコルが制定されました。SCP-3142-JPについての研究・観測は続けられています。

追記(20██/██/██)
あなたは現在旧版の文書を閲覧しています。最新版の3142-JP文書を閲覧するにはレベル4/3142-JP以上の権限が必要です。クリアランス保持者は下記の認証システムから認証してください。

職員コード
パスワード

特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。