SCP-7440
評価: +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)); }
}

アイテム番号: 7440
レベル4
収容クラス:
safe
副次クラス:
none
撹乱クラス:
vlam
リスククラス:
warning

SCP-BUNKER.jpg

SCP-7440の入口

特別収容プロトコル: SCP-7440の周囲30mには境界線が常に維持され、プロトコル4000-ESHUの概要を把握している職員のみがSCP-7440への入場を許可されます。SCP-7440から退出する全ての人物には、更なる傷害を防ぐため、ミーム的・名辞的除染処理を施します。

現在、SCP-7440の第2階層よりも下に降りた人物が脱出する既知の手段は無いため、内部にはDクラス職員のみが派遣されます。

説明: SCP-7440はイギリスのアイルランド・ウッド森林にある、丘の中腹に建造された掩蔽壕です。SCP-7440は地下11mまで掘られた5層構造で、主に木材とコンクリートで構成されています。放射性炭素年代測定によると、SCP-7440は1700年代後半に建造されたものですが、1800年代後半のある時点で転用・増築されたようです。

SCP-7440の各階層には奇跡術災害及び名辞災害が濃厚に浸透しており、建造物を研究する努力の著しい妨げとなっています。これらの中で最も顕著な災害因子は、2グラム以上の鉄を含有するあらゆる物質の劣化を引き起こします.この効果は有機物にも作用します。。この災害因子は過去には非常に強力だったと仮定されていますが、保守管理が行われなかったために、その危険性は大幅に低下しています。

補遺7440.1: SCP-7440の階層

SCP-7440の第1階層は、下層階の存在を隠蔽するために意図的に廃墟に見せかけた造りになっており、粗末な家具と空の糧食パックが入った棚が並ぶ1部屋のみから成ります。ある棚の下に第2階層に通じる木製のハッチがありますが、分析結果は、このハッチにかつて名辞特性を有する錠前が仕込まれており、開放するには名前を述べる必要があったことを示しています。しかし、この錠前は未知の手段で回避されたらしく、ハッチは強引にこじ開けられていました。

SCP-7440の第2階層は、空間異常の影響を受けているらしく、現時点で総数不明の部屋から成ります。ハッチをくぐって第2階層に入ると、ドアや窓などの出口が全く無いランダムな一室に辿り着きますが、この部屋は第2階層内にある別のランダムな部屋1ヶ所と繋がっています。数多くの部屋に、名辞的収容違反の発生時と一致する状態になったヒト型実体の死体があります。第2階層にある部屋の中で、実際の出口を有することが判明しているのは1部屋のみであり、そこには何者かが床に乱雑に掘った大きな穴があります。

SCP-7440の第3階層は、奇跡術によって、見通しが極端に悪い広大な森林に見せかけられています。森を通り抜けようとする人物は例外なく混乱状態に陥り、階層内で道に迷うので、この階層の実際の面積は現在判明していません。複数の死去したヒト型実体が階層内で発見されており、ここで死んだ者たちに指定名称を付与する試みは激しい偏頭痛を引き起こします。発見時、死体は原始的な奇跡術兵器や、防御用と推定されるルーン文字を所持していました。第4階層に繋がるハッチは灌木の下に隠されており、第1階層のハッチと同じく強引にこじ開けられています。

SCP-7440の第4階層は、相互接続された3ヶ所の狭い部屋から成ります。これらの部屋のうち2つは、糧食の保管と、奇跡術を活用した作物栽培に使用されていたようです。これらの部屋にある15体のかつての居住者の遺体は、全て錆のような未知の物質で覆われています。破損した木製のドアをくぐって入室できる3番目の部屋には、第5階層に繋がる、木製のはしごが設けられた穴があります。

SCP-7440の第5階層は荒廃した狭い部屋で、火が点っていない粗末な造りの暖炉と、 10体のヒューマノイドの朽ちた亡骸があります。の分析結果は、多数の刺創が死因となったことを示唆します。暖炉から発見された物品群は、指定名称なき地へ入るための儀式に必要なものと一致しますが、多数の要素が欠落しています。

暖炉の隣からは斃された工作員が発見されました。当該エージェントが所持していた識別票は、MTF アルファ-1 (“赤の右手”)レッド・ライト・ハンド の前身として知られる廃止された機動部隊のものと一致します。

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