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

アイテム番号: 1663-JP
レベル1
収容クラス:
euclid
副次クラス:
{$secondary-class}
撹乱クラス:
vlam
リスククラス:
caution

特別収容プロトコル: 回収されたSCP-1663-JP実例はサイト-8123の低脅威度オブジェクト収容シェルターで保管されます。

カバーストーリー「破片混入」を適用し、SCP-1663-JPの自主回収の実施を知らせるコマーシャルをテレビや各種動画配信サイトにて放映します。コマーシャルで示した連絡先を通して問い合わせがあり次第、問い合わせ元の住所に機動部隊な-23(“うぶめ”)を向かわせます。回収の際、曝露者と見られる児童、またその同居者に対してクラスA記憶処理を施します。異常性による認識災害が重度に進行したとみられる曝露者に関しては、記憶処理の後にカウンセリング等然るべき対応を行います。

その他の個体に比べ特徴的な個体が発見された場合、警察署に潜入している財団エージェントへ通報することが推奨されています。

medium.jpg

曝露者所有のアルバムに記載されていたSCP-1663-JPの写真。
タイトルは「ひとりでたっちできたね!」

説明: SCP-1663-JPは、体長0.5mのウォルドルフ人形1に類似する人形です。2024年10月1日現在、財団によって67体のSCP-1663-JP実例が発見、回収されていますが、それぞれに大きな外見的差違は認められません。

SCP-1663-JPと一般的なウォルドロフ人形との主な相違点として、頭髪にあたる頭部への装飾が施されていないこと、また内部に不明な物質で構成された骨組みが存在することが挙げられます。これらに加え、SCP-1663-JPは軽微な物理耐性を示しています。これにより耐久度や汚れの落ちやすさの面で、一般的なウォルドルフ人形に比べ多少の優位性があります。
 
SCP-1663-JPの異常性は、実年齢が12歳以下かつ一人っ子の児童に触れられたタイミングで発現します(触れた児童を曝露者に指定)。曝露者は、SCP-1663-JPに対し名付けを行います。この時付けられる名前は様々であり、目立った共通項はありません。その後、曝露者はSCP-1663-JPを名前で呼び、「0~1歳程の我が子」であると認識します。以下は曝露者にしばしば見られる行動です。

  • SCP-1663-JPに対し赤ちゃん言葉で話しかける
  • どこに行くにもSCP-1663-JPを持参しようと試みる
  • 自らを「[SCP-1663-JPに付けた名前]のパパ(ママ)」、両親を「おじいちゃん / おばあちゃん」と呼ぶ
  • 自らを「[SCP-1663-JPに付けた名前]のパパ(ママ)」と呼ぶよう周囲に要求する
  • 食事の際、自分の食事をSCP-1663-JPの口元に押し付ける等の行動をとる2
  • 入浴時にSCP-1663-JPを浴室へ持ち込み洗濯する3
  • SCP-1663-JPの排泄を補助するような行動をとる
  • 「SCP-1663-JPの泣き声が聞こえる」といった趣旨の発言を行う4
  • SCP-1663-JPを取り上げられることに対し、強い抵抗を見せる

SCP-1663-JPは異常性を除くと通常の人形と同様であり、生理現象が実際に起きることはありません。

曝露者が認識しているSCP-1663-JPの状態は、曝露者のイメージに左右されるものであることが曝露者へのインタビューにより判明しています。仮に、曝露者がSCP-1663-JPが死亡するに至ったと捉えられる状況に直面した場合、状況終了時からSCP-1663-JPを「我が子の死体」であると認識するようになります(補遺1を参照)。

これらの認識災害は記憶処理により解消することが可能です。また、異常性の影響をうけるのは曝露者のみであり、それ以外の者が異常性に曝露した事例は確認されていません。

SCP-1663-JPは外寸58cm×24cm×18cmの段ボール製貼箱に入った状態で、曝露者となる条件を満たす児童がいる家庭の自宅内部に出現します。出現の瞬間は未だ確認できておらず、またその出現に違和感を覚えられることはありません。5貼箱は白地で目立った装飾はなく、側面に「シュトルヒ運輸」の文字のみが印刷されています。貼箱の中にはSCP-1663-JPと4着の衣服、哺乳瓶とおしゃぶりが2つずつ6、1枚のカードが入っています。カードには以下の文言が印刷されています。

赤ちゃん、育ててみませんか?

赤ちゃんは誰の元へもやってきます。もしかしたら、まだ子どもであるあなたの元にもやってくることがあるかもしれません。赤ちゃんの育て方、分かりますか?親になるイメージ、できていますか?不安に思うことはありません!その子は赤ちゃんのかわりです。本物の赤ちゃんがあなたの元に来る前に、その子のお世話で練習しておきましょう。さぁ、目の前のその子をだき上げて!まずはすてきなお名前をつけてあげましょう!

シュトルヒ運輸

貼箱そのものとSCP-1663-JP以外の内容物に関して、いずれも製造元は不明ですが異常性も確認されておらず、一般社会に流通している同様の物品と大差ないものであると結論付けられています。
 
 
補遺1: SCP-1663-JPは2020年9月14日に山形県米沢市で発生した非異常の交通事故7がきっかけでその存在が認知されました。被害者である海野 悠氏(当時9歳)の両親より同氏の事故発生数日前から当日に至るまでの様子が証言され、その情報が財団の注意を引きました。以下は海野氏に対して実施されたインタビュー記録の抜粋です。

本インタビュー実施後、財団は全国に設置された児童相談所に寄せられた相談内容の調査を行いました。結果、SCP-1663-JPが関わっていると予想される相談が多数確認され、複数体のSCP-1663-JPの認知に繋がりました。

実験によりSCP-1663-JPの異常性を突き止めた財団は、2020年11月2日にこれらをVlamクラスオブジェクトとして認定し、現在特別収容プロトコルに規定されている方法での回収活動を開始しました。
 
 
補遺2: 回収されたSCP-1663-JP群の中で、その他には見られない特徴を示す個体が数体発見されました。以下はその一例です。

指定番号: SCP-1663-JP-15

回収日時: 2021/8/9

曝露者: 鈴木 祐太朗氏(当時11歳)

特殊な点: SCP-1663-JP-15はその他の個体と比べ、傷が多く見られる状態で発見された。内部の骨組みにも破損が見られ、右腕の肩関節にあたる部位は外れており、両足の膝関節には可動方向と逆に曲げようとしたと見られる痕跡が残っていた。

指定番号: SCP-1663-JP-27

回収日時: 2022/4/11

曝露者: 高根 天響てぃな氏(当時9歳)

特殊な点: SCP-1663-JP-27は股関節の骨組みに、可動範囲を超える動きをさせたような痕跡が認められる。また、その他の個体より汚れや染みが多く見られ、特に顔面、胸部、股関節に集中していた。汚れからはタンパク質やアミラーゼとみられる成分が検出され、DNA検査の結果それらが高根氏から分泌されたものであると断定された。

これらの個体を所持していた曝露者の身辺調査を行った結果、その9割が日常的な家庭内暴力に晒されていたことが判明しました。そのため財団は2022年6月1日より、その他の個体に比べ明らかに損傷もしくは汚れが多い個体が発見された場合、最寄りの警察署へ潜入しているエージェントへ連絡し、曝露者の身辺調査を依頼することを推奨しています。
 
 
補遺3: SCP-1663-JPの異常性に曝露し続けることで、曝露者の「SCP-1663-JPの親」としての自己認識が強まっていくことが判明しました。閾値を超えた曝露者は「[SCP-1663-JPに付けた名前]のパパ(ママ)」と呼ばれることでのみ応答するようになり、本名やこれまで呼ばれていた通称で呼ばれても反応を示さなくなります。

調査の結果、平均2週間以上SCP-1663-JPの異常性に曝露し続けることで閾値を超えると見なされています。しかしこの期間には個人差が大きく、2週間を待たずしてこの状態に達した曝露者も確認されています。

この状態の曝露者は、SCP-1663-JPに対して極端に献身的な態度、行動を示します。その結果、曝露者が心身共に不安定な状態になる、また負傷するケースが数件確認されています。以下はその一例です。

指定番号: SCP-1663-JP-7

回収日時: 2021/2/23

曝露者: 奥田 佳奈氏(当時11歳)

確認された症状、異常行動: 食欲不振、注意力・集中力・免疫力の低下、易疲労感、情緒不安定等の諸影響

補足: 奥田氏の両親により、奥田氏の睡眠時間が大幅に減っていたこと、その理由を聞くと「夜泣きが激しいから」という旨を返答された、という証言が得られた。諸影響は睡眠不足が引き起こす悪影響と一致している。また、同様の症状を示した曝露者は、奥田氏の他に14人確認されている。

指定番号: SCP-1663-JP-41

回収日時: 2022/3/5

曝露者: 日下部 涼子氏(当時12歳)

確認された症状、異常行動: 自尊心の低下、不安感・抑うつ感の増大

補足: 日下部氏はSCP-1663-JPの世話を熱心に行っていた。日下部氏の父である雅人氏がSCP-1663-JPの父親を訊ねた後から、徐々に上記の徴候が見られるようになった。SCP-1663-JPの担当研究員である小鳥遊研究員は、雅人氏の質問が「アノマリーの親である」という日下部氏の自認を大きく揺るがし、一種のアイデンティティクライシスが引き起こされたのだと推察している。またこのケースは、SCP-1663-JPの異常性はあくまで曝露者の認識を歪めることのみであり、都合の良い記憶の捏造等は行えないことを示唆している。

指定番号: SCP-1663-JP-55

回収日時: 2023/5/10

曝露者: 太原 樹氏(当時3歳)

確認された症状、異常行動: 自宅の鋏を使用し、自らの陰茎を切断

補足: 太原氏の母親が異変に気付き救急へ通報。施術により再接合は成功したが、勃起不全など生殖機能に重篤な障害が残った。両親からの証言によると、事故が起きる数日前から「みくちゃん9が懐いてくれない」「自分がママではないからかも」という旨の話をしていたことが分かっている。

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