SCP-3786-JP
評価: +50+x
blank.png
⚠️ content warning



: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)); }
}

財団記録・情報保安管理局 (RAISA) より通達

本報告書は、現時点で調査段階のアノマリーについて記述しています。そのため、記述されているアノマリーの性質について誤り、または不完全な部分を含む可能性があります。

今後の調査の進展に応じて、随時報告書は更新される予定です。


アイテム番号: 3786-JP
レベル1
収容クラス:
safe
副次クラス:
{$secondary-class}
撹乱クラス:
{$disruption-class}
リスククラス:
{$risk-class}

特別収容プロトコル: SCP-3786-JP周辺はカバーストーリー「土砂崩れの危険性」が適用され、封鎖・監視されています。

過去にSCP-3786-JPに進入したことが確認された人物には記憶処理を施し、経過観察の後に解放してください。解放後も、突発的な感情の噴出や精神的外傷の兆候がないか定期的に監視します。

調査の進展に応じて、本プロトコルは随時改訂されます。


説明: SCP-3786-JPは山梨県██山中の標高2██メートル地点に位置する洞穴です。最初に発見された1か所を除いて内部につながる開口部は確認されていません。

SCP-3786-JPの開口部は、確認された限りあらゆる光、音、熱、電波を遮断するようであり、それにより外部から直接SCP-3786-JP内部を観測したり、内部の人間と連絡を取ることは不可能です。この性質のため、SCP-3786-JP内外の境界では急速に暗転しているように見えます。

人間に記録装置を装備させてSCP-3786-JP内部を撮影した際の映像は黒一色のみを映し、また一切の音声が記録されませんでした。トラッキング装置は、対象がSCP-3786-JPへの進入直後にその場で静止していることを示しました。自動ドローンでの調査も試みられましたが、事前のプログラムにも拘らずドローンは進入以降帰還していません。

SCP-3786-JPに進入した人間(以下、対象)は、事前の指示に関わらず数分から数時間後1にSCP-3786-JPを退出します。退出した対象は肉体的には一切の異常がみられませんが、程度の差はあるものの、概して強く恐怖および憔悴した様子を見せます。場合によっては心的外傷後ストレス障害(PTSD)を発症することも確認されています。対象は、SCP-3786-JP内部での経験についての発言を強く拒否し、いかなる説得・脅迫によっても対象からSCP-3786-JP内部の情報は得られていません。記憶処理は有効ですが、それ以降も漠然とした不安感や恐怖心が報告される場合があります。

SCP-3786-JPの上部には、複数種の植物で粗雑に造られた十字架型の墓碑のような構築物が存在します。その下の地中からはそれぞれ異なる衣服を着用した、多数の人間の子供の死体2が一箇所にまとめて埋められているのが発見されており、腐敗・分解の進行度は死体によって異なります。大半の死体は、腐敗・分解によるものを除いて外傷などの痕跡が見られず、死因は不明です。ただし2体のみ、それぞれ縊死、転落死の痕跡が見られる死体が確認されています。死体のうち身元が確認されたのは現状3体ですが、該当する人物はいずれも存命であり、またその後の調査で全員が過去にSCP-3786-JPに進入していたことが確認されました。そのうち1名は、死体が着用していたものと同じ衣服を以前に所有していたことが判明しました。

財団によるSCP-3786-JP内部探査の試みの後、探査を実行した人員の幼少期と一致する死体が新たに発見されました。このことから、恐らくこれらの死体は基本的にSCP-3786-JPに進入し、退出することをトリガーとして出現すると考えられます。しかし上記の死体も死因は不明であり、外傷のある2体の死体がどのように出現したのかは現状不明です。


補遺: 他の手段による調査が困難なこと、および危険性が比較的低いことに鑑みて、SCP-3786-JPがランドール・五加潜在意識抽出器(Randall-Goka Subconscious Extractor、RGSE)の試験運用の対象となり、2024/08/31にRGSEを用いた探査が実施されました。

RGSEは、神経学部門のランドール・ホルト博士と夢界部門の五加ごか 路隆みちたか博士が共同で研究・開発した装着型の装置であり、装着者の思考・感覚から特に強く発露したものを選択的に抽出、人間が理解可能なように自動修正・再構成し、文章・画像の形式で出力する装置です。性質上、装着者の思考、記憶の想起、リアルタイムでの経験を明白に弁別することは困難であり、基本的にはそれらが混在して出力されることになります。また、試験運用段階のため、場合により何らかのエラーが生じる可能性があります。

2024/08/31、D-3534がRGSEを装着し、SCP-3786-JPに進入しました。2時間33分後、D-3534はSCP-3786-JPから帰還、回収されたRGSEから以下の出力結果が得られました。

認識災害・ミーメティックハザードスクリーニングや人工知能構成体(AIC)による検査では、出力結果に異常は確認されませんでした。


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