SCP-7591


: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)); }
}
評価: +31+x
アイテム番号: 7591
レベル1
収容クラス:
pending
副次クラス:
{$secondary-class}
撹乱クラス:
dark
リスククラス:
notice

特別収容プロトコル: N/A

説明: SCP-7591はアレックス・ソーリーが最低1人に対して用いた殺害方法です。本来的に、SCP-7591を用いた殺人は立証できず、物的証拠は全て現在の現実から完全に抹消されます。これには凶器、死体、DNAの痕跡、その他殺人の立証に繋がりうる情報も含まれます。

証拠不十分であるにも拘らず、SCP-7591の利用者と遭遇した人物は一様に、殺人が実行され、SCP-7591の利用者がその犯人であると認識します。

補遺7591.1: 調査

2019年12月24日、アレックス・ソーリーは無関係な調査研究の一環としてサイト-322に移されました。この時期に、アレックス・ソーリーはSCP-7591を秘密裏に作成もしくは発見し、同日に利用しました。

転写


«ログ開始»

当日はピザの日であったため、カフェテリアは非常に混んでいる。

フーバー: アレックス・ソーリーが人を殺した。

シャンツ: やっぱりな!

フーバー: しーっ! やめてくれ、ネイル。注目を集めるな。

シャンツ: あいつが人を殺したことなんてみんな知ってる。

クライン: ああ、分かりきってるね。

シャンツ: アレックス・ソーリーが人を殺した。

クライン: アレックス・ソーリーが人をぶっ殺した

別のテーブルからマーリー・ムーニー博士が会話に加わる。

ムーニー: ソーリーの話をしているのか?

フーバー: ええ。

ムーニー: 奴が誰かを殺したのは間違いないな。

シャンツ: 100パーセントそうでしょうね。

ムーニー: だが、どうやったんだろうな? どんなひどい殺し方をしたらみんなにバレるというんだ?

コイクス研究員が通り際に口を挟む。

コイクス: アレックス・ソーリーが誰かを殺したことについて話しているので?

フーバー: ええ。

ムーニー: ええ。

シャンツ: ええ。

クライン: ええ。

コイクス: イカれた奴ですよ。

コイクスがドーナツを摂食しながら去る。他のカフェテリア利用客がソーリーの殺人行為の陰謀について話し合い始める。


ラグー管理官とSCP-5595がカフェテリアに入り、ビュッフェの列に並ぶ。

ラグー: 君の発言はこれ以上は容認しかねるな。

SCP-5595: 殺人ハ容認スルトイウノニカ。

ラグー: 黙れと言ったはずだぞ。

SCP-5595: アア、君ハ揉ミ消シヲ図ッテイルノダナ? ぽり公。ぽり公。ぽり公。

ラグー: 今は内部審査中だ。

SCP-5595: 君タチ、今ノ発言ヲ聞イタカ? 彼ガ言ッタノダ。ぽり公。ぽり公。コノ豚ヲ笑イタマエ。

ラグー: 証拠も無しに解雇はできない。

SCP-5595: 我々ハ皆あれっくす・そーりーガ人ヲ殺シタト知ッテイルデハナイカ。

ラグー: 事を荒立てても誰の益にもならないぞ。

SCP-5595: 荒立テテミルカ?

SCP-5595がカフェテリアの方を向く。

SCP-5595: ヤアミンナ、あれっくす・そーりーガ人ヲ殺シタゾ。

カフェテリア内の全員が一斉に返答する。

カフェテリア利用客: みんな知ってる。

«ログ終了»

サイト-322の上層部に圧力がかけられ、ソーリー研究員はこの告発についてラグー管理官と話し合うよう命じられました。

転写


«ログ開始»

ラグー: これまでに暴力的な思考を抱いたことはあるか?

ソーリー: 多分。

ラグー: 頻度は?

ソーリー: カウントしないといけませんか?

ラグー: 平均でいい。

ソーリー: 稀です。

ラグー: 実行に移したことは?

ソーリー: いいえ。

ラグー: 幼少期の頃、アリを虫眼鏡で焼くようなことはしたか?

ソーリー: いいえ。

ラグー: 君は自分が気分屋であると思うか?

ソーリー: 分かりません。恐らくは違うかと。

ラグー: お気に入りの映画は?

ソーリー: えっ?

ラグー: ああ、もう勘弁してくれ。一日中こんなのに付き合わされて、私はもう帰りたいんだ。君は人を殺したか?

ソーリー: いいえ……?

ラグー: どうして君が人を殺したと皆が考えている?

ソーリー: 分かりません。

ラグー: もし私が君の過去10年間の部屋割りをくまなく洗い出したなら、君は不安に感じるか?

ソーリー: 不安に感じたほうがいいんですか?

ラグー: どうなんだ。

ソーリー: いいえ。

ラグーがため息を吐く。

ラグー: OK、ありがとう、アレックス。

ソーリー: ええ。

«ログ終了»

補遺7519.2: 転任

2019年12月25日、証拠不十分であるにも拘らず、ソーリーが確実に何者かを殺害したことが次第に明らかになり、サイト-322全体の生産性に関わる問題を防止するためにも、ソーリーは別のサイトへの転任を余儀なくされました。ソーリーは25日中に転任の準備を完了させるよう告げられました。以下は当日に発生した出来事です。

転写


«ログ開始»

ソーリーが私物の小物アイテムの荷造りを始め、仕事用ラップトップ、ノートブック、束ねられていない書類、ルービックキューブを小さなショルダーバッグに詰める。

ソーリーが自室のクローゼットから衣服を取りに向かう。扉を開けると、血塗れの死体が顔を下にして倒れる。ソーリーが目に見えて慄き、部屋の反対側まで飛び退く。

ソーリーがゆっくりと死体に接近し、その腕を掴んでひっくり返すと、死体の正体がアレックス・ソーリーであると明らかになる。

ソーリーが自身の死体を見つめ、落ち着きを取り戻したように見える。

ソーリーが携帯電話を取り出し、3桁の番号に電話を掛ける。

ソーリー: やあ。

[…]

ソーリー: まただよ。

[…]

ソーリー: 今度はクローゼットだ。

[…]

ソーリー: ああ。

[…]

ソーリー: もっと悪い。

[…]

ソーリー: みんなだよ。サイト全体がだ。

[…]

ソーリー: 嫌だ。私はこれから — 頼むよ。嫌だって。

[…]

ソーリーがため息を吐く。

ソーリー: 自分でやるかぁ。

ソーリーが監視のない清掃用のカートからゴミ袋を1枚取り出す。

ソーリーが自身の無惨な死体をゴミ袋に入れ、そのゴミ袋を大きなダッフルバッグの中に密封し、バランスを崩しかけながらバッグを肩にかける。

ソーリーがドアから頭をのぞかせて、しばらく部屋の中をすり足で行ったり来たりしたのち、速やかにサイト-322から退出する。

«ログ終了»

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