SCP-5396
評価: +7+x


: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)); }
}
アイテム番号: 5396
レベル1
収容クラス:
safe
副次クラス:
none
撹乱クラス:
dark
リスククラス:
notice

Antiquemirrorwithfinewoodworking

SCP-5396

特別収容プロトコル: SCP-5396は標準セキュリティルームに収容されます。SCP-5396の全アクセスには主任研究員とサイト管理官の承認が必要です。職員が劣等感またはインポスター症候群1に苦しんでいる場合、SCP-5396へのアクセスが要請される場合があります。

説明: SCP-5396は1860年頃に作成されたと推定されるアンティークの金箔鏡です。側面に沿ってシンプルな模様が、その上には追加の装飾彫刻が施されています。枠の上部には弾痕と一致する溝があり、その周囲には火薬の痕跡が見られます(補遺5396.01を参照)。

劣等感に苦しんでいる対象がSCP-5396を視認すると、鏡の反射像は対象から、「対象の最高のバージョン」2を映した同様の画像(以降、SCP-5396-Aと呼称)に変化します。これには通常、SCP-5396-Aにおける対象の描写された状態と、どのように成功を収めたかを説明するSCP-5396の鏡面上への自然発生的な書き込みが伴います。

その後のGPUI3を使用した試験の結果、SCP-5396-Aに描写された「最高のバージョン」は別の並行宇宙4から発見された対象と一致することが判明しました。

試験ログ:

対象: D-3467、窃盗で三回有罪判決を受けた。小学校を中退し、家族を養うために犯罪を余儀なくされた。試験前に、対象の夢は「セールスマン」になることだと述べた。

結果: 対象のSCP-5396-Aは、自動車展示会で高級なスーツを着たD-3467を映した。複数の人物(後にD-3467の犯罪の共犯者だと判明)が興味を持った顧客に車を提示していた。左上隅には以下の記述があった。「自動車業界の偉大な革新者。あなたはたった17歳にして三つの仕事を掛け持ちしました。これは、これまでにあり得たあなたの最高のバージョンです。これは、今もあり得るあなたの最高のバージョンです。」

対象: アルド・デ・マールズ、サイト-19の用務員。試験前に、対象は同僚と私生活について話し、自分が「酷い夫で、三人の子供をまともに養うこともできない」と感じていると述べたのを記録されている。

結果: 対象のSCP-5396-Aは、家族が集まった中で老人となったデ・マールズを映した。三人の若者(後に対象の子供たちが成人した姿であることが確認された)が年配の女性(後に対象の妻であるリナ・デ・マールズであることが確認された)と一緒にテーブルの周りに集まっていた。5歳の子供が対象の脚を引っ張り、一緒に食事しようと要求している。左上隅には以下の記述があった。「あなたは16歳で父親になりました。あなたは家族を養うために朝から晩まで働きました。それ以上に良いことができたでしょうか?あなたの最高のバージョンはずっと先の未来です- ただ待ち続けましょう。」

対象: イワン・ペトレンコ博士、SCP-9015の主任研究員。大学の論文に関してインポスター症候群を複数回発症していたため、職務遂行が困難になっていたと記録されていた。

結果: SCP-5396-Aは現在のペトレンコ博士本人の姿を映した。左上隅には以下の記述があった。「あなたは22歳にして広く認められた自然哲学者5であり、同輩やより上の人々、万人に称賛されました。これがあなたがなれた最高のバージョンです。今まさにこの瞬間、あなたは彼なのです。誇りに思ってください。私は間違いなくそうしなかったのです、そしてそうした時には手遅れだったのです。」

補遺5396.01: SCP-5396から発見された火薬と弾痕の更なる調査の結果、SCP-5396の起源はバージニア州ウィリアムズバーグに1824年から1860年まで住んでいたモンゴメリー・バロウズという鏡職人に遡ると判明しました。彼は自分の人生を「真実の鏡」を作成することに投じていたことで知られていましたが、その販売においては失敗しました。彼は父親のリボルバーを使用し、1860年に作業場の中心で自殺しました。

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