SCP-XXXX-JP - 渋谷天界漏出事件
評価: 0+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)); }
}
アイテム番号: XXXX-JP
レベル2
収容クラス:
keter
副次クラス:
none
撹乱クラス:
ekhi
リスククラス:
critical


C499ABF0-5395-4D45-A00F-90ECE270BA73.jpeg

SCP-XXXX-JP発生前夜の渋谷の様子

特別収容プロトコル(2024/07/28更新)

SCP-XXXX-JPは現在破局的な収容違反の最中です。現在機動部隊は-61("荒籠")、機動部隊に-8("地域猫")、機動部隊て-0 ("第四軌条")、機動部隊も-9("都の狩人")が収容違反に対処しています。また、原則として上記の機動部隊はJAGPATO加盟組織による合同軍1の指揮下に置かれます。

気象庁より、渋谷区の新橋地区、恵比寿地区、氷川地区、大向地区、神宮前地区にはレベル5の超常現象特別警報が、その他の渋谷区の地区、港区、新宿区、中野区、杉並区、世田谷区、目黒区、品川区にレベル4の超常現象警報が、東京23区全域にレベル2の超常現象注意報が発令されています。周辺に展開しているエージェントは警報発令時民間人退避プロトコルに則り、他機関と協調した民間人の避難誘導を継続して下さい。

渋谷駅再開発地区に建設中のサイト-81SHの一部を事態収束までSCP-XXXX-JPの前哨基地に指定し、機動部隊て-0 ("第四軌条")新宿本隊隊長である成瀬 蒼彩へ臨時的にサイト管理官相当のセキュリティクリアランスと都内の財団の機動部隊について全面的な指揮権を付与し、JAGPATOの防衛計画委員会との総合的な連絡業務を兼任します。


説明

SCP-XXXX-JPは2024年7月28日15:00:01(日本標準時)より渋谷駅を中心として発生している基底世界と別次元が不規則的に接続する現象です。SCP-XXXX-JPの接続する別次元の全容は判明していませんが、SCP-XXXX-JPを通じて基底世界へと現実性が流出している点、境界線イニシアチブが記録していた天使実体系列のアキヴァ放射が観測された点などから、SCP-XXXX-JPは「天界」と呼称されている基底世界の付属次元と接続していると考えられています。

SCP-XXXX-JPによる現実性の上昇、あるいはアキヴァ放射によるカック灰の降下は渋谷駅の周囲約500mにて見られますが、1時間に10cm程度ずつ拡大すると予想されています。しかしながら、1998年以前から存在していた建造物には上記の異常現象は確認されない事も判明しています。

SCP-XXXX-JPの発生した原因は判明していませんが、同日14:59:37に発生した幾つかの異常現象や奇蹟論的に起因しているという説が有力視されています。


補遺1: 経緯

1998年のイベント・ペルセポネ発生以後、早急に連携が確立したメキシコ湾条約をベースとして、元来存在していたJAGPATOの連携強化と加盟組織間の武力を用いた戦闘を禁止する紀尾井協定が策定されました。これ以降、防衛計画委員会や調停裁判所を初めとしたJAGPATO各機関は紀尾井協定に基づいて行動しています。

また、2001年に引き起こされた地下鉄呪殺事件以後、機動部隊て-0 ("第四軌条")を始めとした都内に存在する機動部隊や世界オカルト連合の排撃班は編成が一層強化されていました。また、東京23区の鉄道駅にはJAGPATOが非認可団体に指定している組織に加盟している人物は通行を認められない、という法令も施行されました。

加えて、渋谷駅旧1番線ホームには██年程前からSCP-023-JPが発生しており、機動部隊い-28("駅の工事作業員")が収容作戦を行っていました。


補遺2: 事件発生

sakura-1

渋谷新桜丘ビル開業前日の様子

2024年7月28日午後3時頃、渋谷駅と渋谷桜丘再開発地区にて奇蹟論的儀式を用いたテロが発生しました。渋谷新桜丘ビルでは同日に開業記念式典が開かれており、15時は渋谷新桜丘ビルが開業し、内部の商業施設を利用出来るようになる時刻であったため、首謀者は計画的に式典と開業を同時に狙っていたと思われます。

以下の映像記録は渋谷駅と渋谷新桜丘ビルにて発生した奇蹟論的儀式を捉えたものと思われる映像です。

インクルードを行おうとしたページ、 component:custom-info-baseは存在しません(ページを作成する)

文字数: 9818

アーカイブに移行

特に明記しない限り、このページのコンテンツは次のライセンスの下にあります: Creative Commons Attribution-ShareAlike 3.0 License