SCP-5754

: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)); }
}
評価: +6+x
アイテム番号: 5754
レベル3
収容クラス:
keter
副次クラス:
{$secondary-class}
撹乱クラス:
keneq
リスククラス:
danger

特別収容プロトコル: 公共の医療機関に配属された財団職員は、脱毛症1や多毛症2の症例が増加した場合にその旨を報告する必要があります。SCP-5754の申し出を受諾したことが確認された患者は、外来種のウイルスに感染したという名目で財団の拘束下に置かれ、死亡するまで標準ヒト型実体収容チャンバーに収容されます。

訪問販売員やその製品は信用できない、不誠実なものであるとするメディアキャンペーンが現在展開されています。

説明: SCP-5754は訪問販売員を装った、様々な外見を有するヒト型実体です。実体はアメリカ合衆国、カナダ、西ヨーロッパを中心とした無作為な家屋の正面に出現します。各出現事例で共通しているのは、正装をしている点と、確認できる限りでは完全に無毛である点のみです。

ヒト (以降 "顧客" と表記) が応対に出ると、SCP-5754は顧客が強く欲している物体や感情、もしくは概念の売り込みを開始します。売り込みが終了すると、SCP-5754は上着の内ポケットから契約書とペンを取り出し、週間予約料を顧客に提示します。この予約料には必ず長さの単位が使われており、通常は8〜14 m (もしくはそれと同等の長さ) と定められていますが、何の物質であるかは明言されません。顧客が製品に興味を示さない場合、実体は面倒をかけたことを簡潔に謝罪し、顧客がドアを閉めた時点で消失します。この場合、顧客はそれ以降の異常イベントの影響を被りません。

顧客が週間予約料に同意し、契約書にサインした場合、SCP-5754は購入品がその週のうちに配達されると説明し、顧客がドアを閉めた時点で同じく消失します。この時点から、顧客は一連の異常な変化を経験します。

段階 期間 説明
0 0-1日目 食事中、対象の口内に髪の房が出現しますが、大抵は無視されるか、食事の準備中の不手際で混入したものと見なされます。
1 2-4日目 洗髪、ブラッシング、コーミングの過程で脱落した毛が、観測されていない時に消失します。SCP-5754から感情を購入していた場合、ごく僅かな割合ではありますが、対象はその対応する感情を抱き始めます。
2 5-9日目 対象は脱毛症の初期兆候 (大抵は頭皮に限られる) を示し始め、対象のうちさらに推定30%は全身の発毛の促進も見られます。脱落した毛は観測されていない時に全て消失します。対象は購入した製品を少しずつ受け取るか、製品を入手する機会が増加します3
3 10日目 対象から全ての毛が脱落し、即座に消失します。新たな毛が加速度的に生え始めますが、長さが5 cmに達すると同様に抜け落ちます。このプロセスは全ての異常効果が停止するまで繰り返されます。
4 11日目 対象は大量の毛を途切れなく吐き出し始め、同時に他の開口部から毛が排出され始めます。対象は窒息により死亡します。この直後に異常効果が全て停止します。

補遺1:
2013/05/21、アップルトン・ヘルスケアシステムに勤務する財団工作員は、バイタルと環境因子の監視という名目で、SCP-5754の異常影響の第2段階にある患者、シーン・ブライトンに隠しカメラとマイクを取り付けました。3日後、装置が以下のイベントを記録しました。

ログ開始

ブライトンはカウチソファに座り、雑誌を読んでいる。突如として彼が立ち上がり、息苦しそうに両手を喉に当てる。彼はバスルームに駆け込み、1分ほど咳払いやえずきを続けた後、約30 cmの毛を吐き出す。

ブライトン: 何だこりゃ? どこから —

彼が再びえずき始め、その最中にSCP-5754がバスルーム正面のカメラに収まる。のちのビデオ分析から、SCP-5754のスーツが人間の毛に似た繊維で構成されていると判明した。ブライトンが途切れなく毛を吐き出し、呼吸が困難となっている。

SCP-5754: ため息 こんなん慣れるわけねえよ。こんにちは、ブライトンさん! 契約書に記載された協定金額をお支払いいただけてないことに気が付きましてね。この状況をご説明願えますか?

ブライトン: 10秒間のくぐもったえずき

SCP-5754: おやめください、お客様、そう敵意を向ける必要はありません。私はただ、取引の条件を順守していただきたいとお願いしているだけです。ほら、ここに書いて —

ブライトン: 激しいえずき

SCP-5754: いいですか、私だって家計のやりくりに苦心しているのですよ。分かりますね? どうにかして生計を立てているのです、もし私の売り上げが全部顧客の不払いのせいでパーになったら、私は上司に噛みつかれて潰されて吐き捨てられることでしょう。それも文字通りに。

15秒間の沈黙。吐き出された毛はブライトンの胃の内容物と混ざり合っている。左の眼球の下から髪の毛の束が見え始める。

SCP-5754: その — このようになってしまわれたのは残念ですが、購入した品を3分の1の値段で手に入れるというのは無理な話です。それではセールスが成り立ちません。

ブライトンの鼻腔から毛が出始める。両目が飛び出し、眼窩から毛が溢れ出ている。

SCP-5754: 交渉した品は既に手に入りましたよね? 昨日に昇給したばかりですし、懐かしの叔父があなたに素敵な遺産を残した旨のメールもお受け取りになられたでしょう。ところで、あれは我々からのちょっとしたボーナスです。我々は何よりも合理的に振る舞っていると思いますので、お客様もどうか、我々と同じように誠意を見せてください。

10秒間の沈黙。ブライトンの呼吸が停止する。

SCP-5754: えー、他に問題がないようでしたら、この辺りでお暇させていただきますね。ご愛顧いただきありがとうございます、お客様! 素敵な一日を!

SCP-5754が消失する。ブライトンが2分後に窒息死する。

ログ終了

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