SCP-7195


: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)); }
}
評価: +20+x
アイテム番号: 7195
レベル1
収容クラス:
N/A
副次クラス:
none
撹乱クラス:
N/A
リスククラス:
N/A

配属サイト


N/A

サイト管理官


N/A

研究責任者


アレックス・ソーリー、N/A

担当機動部隊


N/A

配属サイト


N/A

サイト管理官


N/A

研究責任者


アレックス・ソーリー、N/A

担当機動部隊


N/A


AgentKitty2%28Wiley%29.jpeg

SCP-7195


‎‏‏‎ ‎ ‎

‎‏‏‎ ‎ ‎‏‏ ‎‏‏‎‏‏‎‏‏‎
‎‏‏‎ ‎ ‎‏‏‎
特別収容プロトコル: 備忘録: 店でキャットフードを買ってくる。

説明: SCP-7195はキティという名前の、アレックス・ソーリーのオフィスを時折訪れる品種不明のイエネコです。キティがどのようにしてアレックス・ソーリーのオフィスの物理的な位置を特定し、そこへ移動できているのか、また不在時の移動先が何処であるのかは不明です。
‎‏‏‎ ‎ ‎‏‏ ‎‏‏‎ ‎ ‎

‎‏‏‎ ‎ ‎‏‏ ‎‏‏‎
‎‏‏‎ ‎ ‎‏‏‎


補遺7195.1: 最初の遭遇、サイト-120

転写


«ログ開始»

ソーリーがオフィスに入室する。SCP-7195は既にオフィスに入室している。

ソーリーがSCP-7195を見つめる。

SCP-7195がソーリーを見つめる。

ソーリーがニャアと鳴く。

SCP-7195がニャアと鳴く。

ソーリーが廊下の方を見る。

ソーリー: 誰のネコだ?

返答はない。

SCP-7195が画面外に出る。

ソーリーがネコの不在に気付く。

ソーリー: あれっ。

«ログ終了»

付記: サイト-120で調査を進めても、このネコの素性や仮定上の飼い主は特定できなかった。

補遺7195.2: 2度目の遭遇、サイト-15

転写


«ログ開始»

ソーリーは仕事用コンピュータを茫然と凝視している。

[15分間茫然と凝視する様子は編集済]

SCP-7195が画面外から入来する。ソーリーは気付いていないように見受けられる。

SCP-7195がソーリーの脚に擦り付き、喉を鳴らす。

ソーリー: どうやってここに入ってきたんだ?

SCP-7195が喉を鳴らし、ニャアと鳴いて、また喉を鳴らし続ける。

ソーリーが見覚えのあるネコだと気付く。

ソーリー: あの子猫か?

SCP-7195が喉鳴らしをやめ、ニャアと鳴いて、ソーリーの空いた膝までジャンプする。

ソーリー: うおっと! OK。

SCP-7195が再び喉を鳴らす。ソーリーが優しくネコを撫で、仕事を再開する。

«ログ終了»

付記: SCP-7195はしばらくその場に留まり、アレックス・ソーリーが起立すると同時に画面外へ出て姿を消した。

補遺7195.3: 3度目の遭遇、サイト-58

転写


«ログ開始»

ソーリーは電子レンジで加熱したサラミとチーズ入りのサンドイッチを摂食しようとしている。サンドイッチのトッピングに用いた材料はまだ片付けられていない。

ソーリーが一口摂食しようとした際に、ニャアという鳴き声が聞こえる。

ソーリー: やあ、キティ。

SCP-7195がソーリーの近くの床に座って期待の眼差しを向け、ニャアと鳴く。

ソーリー: 何?

SCP-7195が次第に音程の低くなる長い鳴き声をあげ、その後平常に戻る。

ソーリー: 食べ物? キャットフードは無いが…… サラミでいいか?

ソーリーがサラミの袋からサラミをちぎり、小片をSCP-7195に与える。SCP-7195がサラミを摂食する。

ソーリーが再びサンドイッチを手に取り、摂食しようとする。

SCP-7195が先ほどと同様の鳴き声をあげる。

ソーリーがサンドイッチを置く。

ソーリー: ごめん。

ソーリーが立ち上がる。

ソーリー: 何か買ってくるよ。すぐに戻る。

ソーリーが途中でSCP-7195を一瞥しながらオフィスを退室する。

ソーリーが退室すると、SCP-7195がデスクの上にジャンプする。

SCP-7195がサンドイッチを嗅ぎ、次いでその材料を嗅ぐ。

SCP-7195がベーグルの入った袋を噛み始める。

SCP-7195がベーグルの袋を破り、全てのベーグルを一口噛んでから画面外に出る。

ソーリーがキャットフードの袋を持って戻る。

ソーリーがネコの不在に気付く。

ソーリー: キティ?

ソーリーはSCP-7195を発見できなかったものの、ベーグルに付いた、SCP-7195と同じ大きさのネコのものと合致する歯型に気付く。

ソーリーが齧られたベーグルを捨てる。

«ログ終了»

付記: この遭遇の後、ソーリー現実性リエゾンは次回の遭遇に備えて、キャットフード、フードボウル、ウォーターボウル、ネコ用トイレ、トイレの砂、ネコ用玩具を購入した。

ソーリー現実性リエゾンはまた、動物学研究部門 副部門長のファラン・カラウェイ博士からペットの世話に関する助言を受け、のちにSCP-7195がオスであり、既に去勢されていることを判別できた。

上記ログ以降、SCP-7195はより頻繁かつ長期的にアレックス・ソーリーのオフィスを訪れるようになり、食事や遊戯の他、ソーリー現実性リエゾンの相手をすることが多くなっています。

[簡潔化のため7つのログを編集]

補遺7195.4: 18度目の遭遇、サイト-87

転写


«ログ開始»

ソーリーは箱の中身を出している。SCP-7195は近くで毛繕いをしている。

ソーリーが箱の中身を出し終える。SCP-7195が空の箱を調べ、中に入る。

ソーリーがふざけて箱を閉める。ニャアという鳴き声が聞こえる。

ソーリーが箱を開ける。SCP-7195の姿は見えない。

ソーリーが目に見えて困惑する。

«ログ終了»

付記: SCP-7195をキャットキャリーへと誘導しようとすると、その所在が特定できなくなるため、ソーリー現実性リエゾンはSCP-7195を獣医による診察や異常検査に連れ出すことができていない。しかしながら、訪問者による観察では、SCP-7195と基軸現実の健康なネコとの間に相違点は認められていない。

同様に、ソーリーはSCP-7195に首輪や追跡用チップを装着できていないが、SCP-7195は必要に応じてソーリーによる投薬や医療行為を許している。

[簡潔化のため5つのログを編集]

補遺7195.5: 23度目の遭遇、サイト-18

転写


«ログ開始»

ソーリーは自身の宿舎で就寝している。

ガラスの割れる音が聞こえる。その音でソーリーが目覚める。

ソーリー: "キティ?!"

ソーリーが見渡すと、倒れて粉々になった自立式の鏡を発見する。ソーリーが箒を持参し、散乱した破片を掃く。

«ログ終了»

付記: SCP-7195は翌日に無傷で現れた。彼は依然として第一容疑者である。

[簡潔化のため4つのログを編集]

補遺7195.6: 28度目の遭遇、サイト-43

転写


«ログ開始»

SCP-7195はキャットタワーの上に座っており、ソーリーを見つめている。

ソーリーがそれに気付き、SCP-7195を見つめる。

SCP-7195がソーリーに向かってゆっくりと瞬く。

ソーリーがSCP-7195に向かってゆっくりと瞬く。

«ログ終了»

付記: 上記のやり取りは何度か続いた。

[簡潔化のため7つのログを編集]

補遺7195.7: 36度目の遭遇、

転写


«ログ開始»

SCP-7195は地面に座り、尾を振りながら上方を凝視して、獲物を追っているかのように両目を動かしている。SCP-7195がニャアと鳴く。

ソーリー: どうした、キティ?

SCP-7195がニャアと鳴く。

ソーリー: そこには何もないよ。

SCP-7195が屈んで尻を小刻みに動かし、2フィート上に跳躍する。

ソーリー: うわっ、ジャンプだ!

ソーリーがSCP-7195に接近して撫でる。SCP-7195が喉を鳴らし、顔をソーリーの手に擦り付ける。

«ログ終了»

備忘録: キティにいくつか小さな虫刺されがあるから、今度店に寄った時に何か蚤取りを買ってくる。

補遺7195.8:  ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎ ‎ ‎‏‏‎
05/27、SCP-7195がネコ用首輪を着けた状態で目撃されました。首輪のペットタグは戦闘中の勇敢行動に対する財団星章Foundation Star for Bravery in Combatと酷似しており、SCP-7195の名前が "エージェント キティ・H・キャット" として記載され、有効ではあるが存在しないレベル2財団認証IDが示されていました。

これ以降、SCP-7195が首輪を着けた姿は目撃されていません。

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