SCP-7892
/*
 
    Foxtrot Sigma-9 Theme
    [2022 Wikidot Theme]
    By Liryn
 
*/
 
/* FONTS */
 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;1,800&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@700;800&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
 
@import url('https://rsms.me/inter/inter.css');
 
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@800;900&display=swap');
 
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
 
/* VARIABLES */
 
:root {
 
    /* VARIABLES > Core */
 
    --header-title: "SCP Foundation";
    --header-subtitle: "SECURE, CONTAIN, PROTECT";
    --logo-img: url(https://scp-wiki.wikidot.com/local--files/theme:foxtrot/fxtrt-scp_logo_lightmode.svg);
    --darkmode-logo-img: url(https://scp-wiki.wikidot.com/local--files/theme:foxtrot/fxtrt-scp_logo_darkmode.svg);
    --logo-opacity: 14%;
 
    --head-font: 'Sans Normalcy';
    --ui-font: 'IBM Plex Sans';
    --mono-font: 'JetBrains Mono', 'Fira Code', monospace;
    --page-font: 'Inter', 'verdana';
    --base-font-size: 0.9rem;
    --page-font-size: 1rem;
 
    /* VARIABLES > Misc */
 
    --header-txt-color: #333333;
    --subheader-txt-color: rgb(var(--accent));
    --misc-txt-color: #464646;
    --link-txt-color: #E6283C;
    --link-hover-txt-color: white;
 
    /* VARIABLES > Color Accents */
 
    --accent: var(--acc-default);
 
    --acc-default: 59, 59, 59;
    --acc-wyoming: 142, 0, 18;
    --acc-canada: var(--acc-default);
    --acc-poland: 87, 44, 17;
    --acc-slothspit: 27, 60, 133;
    --acc-vanguard: 0, 153, 75;
    --acc-threshold: 121, 113, 130;
    --acc-overwatch: 28, 37, 56;
    --acc-spc: 0, 165, 200;
    --acc-fishing: 67, 111, 145;
    --acc-nightfall: 151, 0, 2;
    --acc-hybrasil: 27, 60, 133;
    --acc-goc: 39, 84, 149;
    --acc-spooky: 252, 112, 40;
 
    /* VARIABLES > BetterFootnotes */
 
    --fnColor: var(--link-txt-color);
    --fnLinger: 1s;
 
}
 
/* VARIABLES > Info Bar */
 
.info-container {
    --barColour: rgb(var(--accent));
    --linkColour: #EDEDED;
}
 
/* MAIN */
 
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
 
body {
    font-family: var(--ui-font), sans-serif;
    font-size: var(--base-font-size);
    color: rgb(51, 51, 51);
    background-image: linear-gradient(to bottom, #e0e0e0, #fff 200px);
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
}
 
div#container-wrap {
    background: none;
}
 
#content-wrap {
    margin: 2em auto 0;
}
 
#page-content {
    font-family: var(--page-font), var(--ui-font), sans-serif;
    font-size: var(--page-font-size);
    font-weight: 440;
}
 
#page-content strong {
    font-weight: 700;
}
 
tt,
.page-source,
pre,
#edit-page-textarea {
    font-family: var(--mono-font);
}
 
ol li {
    margin: 0 0 1em;
}
 
ul {
    margin: 1em 0;
}
 
li,
p {
    line-height: 1.5;
    text-underline-offset: 40%;
}
 
::selection {
    background: rgb(var(--accent));
    color: #fff;
}
 
/* Clicky links */
a,
a.newpage,
a:visited,
#side-bar a:visited {
    color: var(--link-txt-color);
}
 
a:hover,
a.newpage:hover,
a:visited:hover,
#side-bar a:visited:hover {
    color: var(--link-hover-txt-color);
    text-decoration: none;
    background-color: var(--link-txt-color);
}
 
a {
    transition-duration: 0.1s;
}
 
/* patch for sidebar media, collapsibles, ACS, info button and ayers module so link doesn't override */
#page-content .collapsible-block-folded a:hover,
#page-content .collapsible-block-unfolded-link a:hover,
#page-content .rate-box-with-credit-button .fa-info:hover,
#side-bar .side-block.media a:hover,
.danger-diamond a:hover {
    background: transparent;
}
 
.info-container .collapsible-block-folded .collapsible-block-link,
.info-container .collapsible-block-link {
    background: var(--linkColour) !important;
}
 
/* MAIN > Header */
 
div#header {
    background: none;
    height: 160px;
}
 
#header h1 span,
#header h2 span {
    font-size: 0;
    display: none;
}
 
#header h1 a::before,
#header h2::before {
    color: var(--header-txt-color);
    letter-spacing: 1px;
    font-family: var(--head-font), sans-serif !important;
    font-weight: 900;
    text-shadow: none;
}
 
#header h1 {
    margin-top: -0.3rem;
}
 
#header h1 a {
    width: fit-content;
    margin: auto;
}
 
#header h1 a::before {
    content: var(--header-title);
    font-size: 1.3em;
}
 
#header h2::before {
    content: var(--header-subtitle);
    font-family: var(--ui-font) !important;
    font-weight: 700;
    font-size: 1.4em;
    color: var(--misc-txt-color);
    line-height: 26px;
    margin-top: 0.35rem;
    display: block;
    text-transform: uppercase;
}
 
#header h1,
#header h2 {
    margin-left: 0;
    float: none;
    text-align: center;
}
 
#header h1 span,
#header h2 span {
    font-size: 0;
    display: none;
}
 
div#extra-div-1 {
    height: 160px;
    width: 100%;
    top: 7px;
    position: absolute;
    background: var(--logo-img) 10px 30px no-repeat;
    background-size: 130px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: -1;
    opacity: var(--logo-opacity);
}
 
/* MAIN > Header > Search Box */
 
#search-top-box-form>input[type=text] {
    display: none;
}
 
#search-top-box-input,
#search-top-box-input:hover,
#search-top-box-input:focus,
#search-top-box-form input[type=submit],
#search-top-box-form input[type=submit]:hover,
#search-top-box-form input[type=submit]:focus {
    border: none;
    background: rgb(var(--accent));
    box-shadow: none;
    border-radius: 5px !important;
    color: #efefef;
    font-family: var(--ui-font);
    font-size: calc(var(--page-font-size) - 10%);
}
 
#search-top-box input.empty {
    color: #999999;
}
 
#search-top-box {
    position: absolute;
    top: 47px;
    width: unset;
}
 
/* MAIN > Header > Top Bar */
 
#top-bar,
#top-bar a {
    top: 10rem;
}
 
#header #top-bar ul {
    border-radius: 10px;
    border: none;
    background: rgb(var(--accent));
    padding-left: 15px;
    padding-right: 15px;
}
 
#header #top-bar a {
    color: white;
    background: rgb(var(--accent));
    font-weight: bold;
}
 
#header #top-bar ul li ul {
    padding: 0px;
    border-radius: 0px;
}
 
#top-bar ul li.sfhover a,
#top-bar ul li:hover a {
    border-left: solid 1px #FFF;
    border-right: solid 1px #FFF;
}
 
#top-bar ul li ul li a:hover {
    color: rgba(255, 255, 255, 0.83) !important;
    line-height: 230%;
    text-indent: 3px;
}
 
#top-bar {
    display: flex;
    justify-content: center;
    right: 0;
}
 
.mobile-top-bar {
    left: unset;
}
 
/* MAIN > Header > Login Info */
 
#login-status {
    top: 19px;
}
 
#login-status,
#login-status a {
    color: #333333;
}
 
@media (max-width: 767px) {
    #header .printuser {
        font-size: 0;
    }
}
 
.printuser a {
    margin: 0;
}
 
.printuser img.small {
    width: 18px;
    height: 18px;
    padding: 1px 4px 0 0;
 
    background-image: none !important;
}
 
@media (max-width: 767px) {
    #header .printuser img.small {
        transform: translate(0, 4px);
    }
}
 
#my-account {
    display: none;
}
 
@media (max-width: 767px) {
    #account-topbutton {
        margin: 0 0 0 5px;
    }
}
 
/* MAIN > Header > Side Bar */
 
#top-bar .open-menu a {
    border-radius: 0px;
    border: none;
    background: rgb(var(--accent));
    color: white;
}
 
#side-bar {
    background: #FFF;
}
 
@media (min-width: 768px) {
 
    #side-bar {
        padding: 0.3em 0.6em 0 0.6em;
        width: 18.75em;
        transition: left 0.2s ease-in-out;
        direction: rtl;
        text-align: left;
        border-right: none;
    }
 
}
 
#side-bar .side-block,
#side-bar .side-block.resources,
#side-bar .side-block.media,
#interwiki .side-block {
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    box-shadow: none;
    margin-bottom: 6px;
    direction: ltr;
    background: transparent;
}
 
#side-bar .side-block.resources {
    text-align: center;
}
 
#side-bar .heading {
    color: var(--misc-txt-color);
    border-bottom: solid 2px #cfcfcf;
    font-size: 9pt;
    font-family: var(--head-font);
    font-weight: 800;
    text-transform: uppercase;
}
 
/* CONTENT */
 
/* CONTENT > Blockquotes, Custom Divs */
 
.blockquote,
div.blockquote,
blockquote {
    border: solid 2px rgba(0, 0, 0, 0.15);
    background: #f7f7f7;
}
 
.jotting {
    padding: 1.3em;
    margin: 1em 4.5em;
    border: dashed 2px rgba(0, 0, 0, 0.2);
    background: #f7f7f7;
}
 
.notation {
    padding: 1em 1.5em;
    margin: 1em 3em;
    border-left: solid 3px rgba(0, 0, 0, 0.35);
    border-right: solid 3px rgba(0, 0, 0, 0.35);
    background: #f7f7f7;
}
 
.modal {
    padding: 1.2em;
    margin: 1em 3em;
    border: solid 5px rgba(0, 0, 0, 0.15);
    background: #fbfbfb;
}
 
.quote {
    padding: 0.4em 2em;
    margin: 3em auto;
    border-left: solid 3px #bbb;
    max-width: 500px !important;
}
 
.paper {
    padding: 1.5em;
    margin: 2em;
    background: #FFF;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.2);
}
 
.box {
    padding: 1px 9px;
    border: solid 3px #bbb;
    margin: 0.5em 1em;
}
 
div.note {
    font-size: unset;
    border: 2px solid #afafaf;
    background-color: #fff;
}
 
.round {
    border-radius: 10px;
}
 
/* CONTENT > Headings, Titles */
 
#page-title,
.meta-title {
    font-family: var(--ui-font), sans-serif;
    font-weight: 800;
    color: #3b3b3b;
    border-bottom: solid 2px rgba(0, 0, 0, 0.2);
    width: fit-content;
    margin: 0 auto 1.5rem;
}
 
#page-title,
.meta-title,
#breadcrumbs,
.pseudocrumbs {
    text-align: center;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--head-font), sans-serif;
    font-weight: 800;
    color: #3b3b3b;
}
 
h1,
h2 {
    font-weight: 800;
}
 
.footnotes-footer .title {
    font-family: var(--head-font), sans-serif;
    color: #3b3b3b;
    font-weight: 800;
}
 
/* CONTENT > Rate Module */
 
#page-content .creditRate {
    margin: unset;
    font-family: var(--ui-font);
    float: unset !important;
}
 
#page-content .rate-box-with-credit-button {
    background-color: #fff;
    border: solid 1px #bbb;
    box-shadow: none;
    border-radius: 0;
}
 
#page-content .rate-box-with-credit-button .fa-info {
    border: none;
    color: #333;
}
 
#page-content .rate-box-with-credit-button .fa-info:hover {
    background: #333;
    color: #fff;
}
 
.rate-box-with-credit-button .cancel {
    border: solid 1px #fff;
}
 
.page-rate-widget-box {
    box-shadow: none;
    border: solid 1px #bbb;
    margin: unset;
    margin-bottom: 4px;
    border-radius: 0;
    font-family: var(--ui-font);
}
 
.page-rate-widget-box .rate-points {
    background-color: #fff !important;
    color: #333 !important;
    border: none !important;
    border-radius: 0;
}
 
.page-rate-widget-box .rateup,
.page-rate-widget-box .ratedown {
    background-color: #fff;
    border-top: none;
    border-bottom: none;
}
 
.page-rate-widget-box .rateup a,
.page-rate-widget-box .ratedown a {
    background: transparent;
    color: #333;
}
 
.page-rate-widget-box .rateup a:hover,
.page-rate-widget-box .ratedown a:hover {
    background: #333;
    color: #fff;
}
 
.page-rate-widget-box .cancel {
    background: #fff;
    border: none;
    border-radius: 0;
    display: inline-block;
}
 
.page-rate-widget-box .cancel a {
    color: #333;
}
 
.page-rate-widget-box .cancel a:hover {
    background: #333;
    color: #fff;
    border-radius: 0;
}
 
#page-content .rate-box-with-credit-button .page-rate-widget-box {
    border: none;
}
 
/* CONTENT > Rate Module > Author Label */
 
.authorlink-wrapper {
    --author-top-adjust: 0;
    --author-bottom-adjust: 0;
    --author-right-adjust: 0;
    font-family: var(--ui-font);
    font-size: var(--base-font-size);
}
 
/* CONTENT > Side Box */
 
.anchor {
    position: sticky;
    height: 0;
    top: 0;
}
 
.sidebox {
    padding: .14rem;
    margin-top: 0;
    margin-bottom: 8px;
    width: calc((100vw - 870px)/2);
    max-height: calc(100vh - 18rem);
    position: absolute;
    top: 0;
    left: 103.5%;
    z-index: 5;
    overflow: auto;
    box-sizing: border-box;
}
 
@media (max-width: 1290px) {
    .sidebox {
        display: none;
        visibility: hidden;
    }
}
 
/* CONTENT > Image Block */
 
.scp-image-block .scp-image-caption {
    background-color: #f4f4f4;
    color: #3b3b3b;
    border: solid 2px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}
 
.scp-image-block {
    border: none;
    box-shadow: none;
}
 
.scp-image-block img {
    border: solid 2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
 
.imagediv {
    float: right;
    margin: 15px
}
 
@media (max-width: 540px) {
    .imagediv {
        float: unset;
        text-align: center;
        margin: 1.3rem auto 1.3rem auto;
    }
}
 
@media only screen and (max-width: 600px) {
    .scp-image-block.block-right {
        float: none;
        margin: 10px auto;
    }
}
 
/* CONTENT > Tables Base */
 
#page-content tr th {
    padding: 6px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}
 
#page-content tr td {
    padding: 12px;
    border: 2px solid #bfbfbf;
    line-height: 1.4;
}
 
#page-content .sidebox tr td,
#page-content .sidebox tr th {
    padding: 0.35em;
}
 
/* CONTENT > Tables Customization (Table Coloring System) */
 
/* CONTENT > Tables Customization (Table Coloring System) > Table Headings, Image Captions */
 
#page-content .table1 tr th,
#page-content .table1 .scp-image-block .scp-image-caption {
    background-color: #E0FFD4;
}
 
#page-content .table2 tr th,
#page-content .table2 .scp-image-block .scp-image-caption {
    background-color: #D8ECF4;
}
 
#page-content .table3 tr th,
#page-content .table3 .scp-image-block .scp-image-caption {
    background-color: #FDF6D7;
}
 
#page-content .table4 tr th,
#page-content .table4 .scp-image-block .scp-image-caption {
    background-color: #FFDFCD;
}
 
#page-content .table5 tr th,
#page-content .table5 .scp-image-block .scp-image-caption {
    background-color: #FFCFCF;
}
 
#page-content .table6 tr th,
#page-content .table6 .scp-image-block .scp-image-caption {
    background-color: rgba(146, 0, 255, 0.2);
}
 
.tableb .wiki-content-table {
    border-collapse: separate;
    border-spacing: 2px;
}
 
/* CONTENT > Tables Customization (Table Coloring System) > Other Colored Divs */
 
.table1 .blockquote,
.table1 div.blockquote,
.table1 blockquote,
.table1 .jotting,
.table1 .notation,
.table1 .modal,
.table1 .paper,
.blockquote.table1,
div.blockquote.table1,
.jotting.table1,
.notation.table1,
.modal.table1,
.paper.table1 {
    background: rgb(224, 255, 212);
}
 
.table2 .blockquote,
.table2 div.blockquote,
.table2 blockquote,
.table2 .jotting,
.table2 .notation,
.table2 .modal,
.table2 .paper,
.blockquote.table2,
div.blockquote.table2,
.jotting.table2,
.notation.table2,
.modal.table2,
.paper.table2 {
    background: rgb(226, 244, 255);
}
 
.table3 .blockquote,
.table3 div.blockquote,
.table3 blockquote,
.table3 .jotting,
.table3 .notation,
.table3 .modal,
.table3 .paper,
.blockquote.table3,
div.blockquote.table3,
.jotting.table3,
.notation.table3,
.modal.table3,
.paper.table3 {
    background: rgb(255, 245, 189);
}
 
.table4 .blockquote,
.table4 div.blockquote,
.table4 blockquote,
.table4 .jotting,
.table4 .notation,
.table4 .modal,
.table4 .paper,
.blockquote.table4,
div.blockquote.table4,
.jotting.table4,
.notation.table4,
.modal.table4,
.paper.table4 {
    background: rgb(255, 223, 205);
}
 
.table5 .blockquote,
.table5 div.blockquote,
.table5 blockquote,
.table5 .jotting,
.table5 .notation,
.table5 .modal,
.table5 .paper,
.blockquote.table5,
div.blockquote.table5,
.jotting.table5,
.notation.table5,
.modal.table5,
.paper.table5 {
    background: rgb(255, 207, 207);
}
 
.table6 .blockquote,
.table6 div.blockquote,
.table6 blockquote,
.table6 .jotting,
.table6 .notation,
.table6 .modal,
.table6 .paper,
.blockquote.table6,
div.blockquote.table6,
.jotting.table6,
.notation.table6,
.modal.table6,
.paper.table6 {
    background: rgb(255, 218, 255);
}
 
/* CONTENT > Tabs Base */
 
.yui-navset .yui-nav a,
.yui-navset .yui-navset-top .yui-nav a {
    background-color: inherit;
    background-image: inherit
}
 
.yui-navset .yui-nav a:hover,
.yui-navset .yui-nav a:focus {
    background: inherit;
    text-decoration: inherit
}
 
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav .selected a:focus,
.yui-navset .yui-nav .selected a:hover {
    color: inherit;
    background: inherit
}
 
.yui-navset .yui-nav,
.yui-navset .yui-navset-top .yui-nav {
    border-color: inherit
}
 
.yui-navset li {
    line-height: inherit
}
 
/* CONTENT > Tabs Customization */
 
.yui-navset .yui-nav,
.yui-navset .yui-navset-top .yui-nav {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - .125rem);
    margin: 0 auto;
    border-color: #333333;
    box-shadow: none;
}
 
.yui-navset .yui-nav a,
/* ---- Link Modifier ---- */
.yui-navset .yui-navset-top .yui-nav a {
    color: #333333;
    /* ---- Tab Background Colour | [UNSELECTED] ---- */
    background-color: #efefef;
    border: unset;
    box-shadow: none;
    box-shadow: none;
}
 
.yui-navset .yui-nav a:hover,
.yui-navset .yui-nav a:focus {
    color: #ffffff;
    /* ---- Tab Background Colour | [HOVER] ---- */
    background-color: #333333;
}
 
.yui-navset .yui-nav li,
/* ---- Listitem Modifier ---- */
.yui-navset .yui-navset-top .yui-nav li {
    position: relative;
    display: flex;
    flex-grow: 2;
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #ffffff;
    border-color: transparent;
    box-shadow: none;
}
 
.yui-navset .yui-nav li a,
.yui-navset-top .yui-nav li a,
.yui-navset-bottom .yui-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
 
.yui-navset .yui-nav li em {
    border: unset;
}
 
.yui-navset .yui-nav a em,
.yui-navset .yui-navset-top .yui-nav a em {
    padding: .35em .75em;
 
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
 
.yui-navset .yui-nav .selected,
/* ---- Selection Modifier ---- */
.yui-navset .yui-navset-top .yui-nav .selected {
    flex-grow: 2;
    margin: 0;
    padding: 0;
    /* ---- Tab Background Colour | [SELECTED] ---- */
    background-color: #333333;
}
 
.yui-navset .yui-nav .selected a,
.yui-navset .yui-nav .selected a em {
    border: none;
}
 
.yui-navset .yui-nav .selected a {
    width: 100%;
    color: #ffffff;
}
 
.yui-navset .yui-nav .selected a:focus,
.yui-navset .yui-nav .selected a:active {
    color: #ffffff;
    background-color: #333333;
}
 
.yui-navset .yui-content {
    background-color: #ffffff;
    box-shadow: none;
}
 
.yui-navset .yui-content,
.yui-navset .yui-navset-top .yui-content {
    padding: .5em;
    border: 1px solid #333;
    box-sizing: border-box;
}
 
/* CONTENT > WORDS NO BROKEY. CROQ HAS SPOKEY. and other things */
 
span,
a {
    word-break: normal !important
}
 
.avatar-hover {
    display: none !important;
}
 
#main-content .page-tags span {
    max-width: 100%;
}
 
/* CONTENT > Dustjacket Assets */
 
.fancyhr hr {
    border-top: 2vw solid transparent;
    background-color: rgba(var(--bright-accent), 0);
    height: 0;
    box-sizing: border-box;
    border-image-source: url('https://wanderers-library.wikidot.com/local--files/component:dustjacket-theme/wl_hr.png');
    border-image-repeat: round round;
    background: none;
    border-image-slice: 80 500 80 500 fill;
    border-image-width: 10em 80em 10em 80em;
}
 
.fancyborder {
    box-sizing: border-box;
    border: 2vw solid rgba(0, 0, 0, 0.5);
    border-image: url('https://wanderers-library.wikidot.com/local--files/component:dustjacket-theme/wl_border.png') 600 round;
    border-image-width: 6;
    padding: 2vw;
}
 
/* CONTENT > Collapsibles */
 
#page-content a.collapsible-block-link:hover {
    text-decoration: underline;
    color: var(--link-txt-color);
}
 
#page-content a.collapsible-block-link:not(.licensebox a.collapsible-block-link, .info-container a.collapsible-block-link, .default-col a.collapsible-block-link) {
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 9px;
    background: rgb(var(--accent));
    border-radius: 6px;
    margin-top: 5px;
    font-family: var(--ui-font);
    font-size: var(--base-font-size);
    box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0.4);
    transition-duration: 0.4s;
    display: inline-block;
 
}
 
#page-content a.collapsible-block-link:not(.licensebox a.collapsible-block-link, .info-container a.collapsible-block-link, .default-col a.collapsible-block-link):hover {
    background: rgba(var(--accent), 0.7);
    box-shadow: none;
}
 
/* CONTENT > ACS Adjustments */
 
.top-left-box>.item {
    display: none;
}
 
.anom-bar-container {
    margin-top: 1.1rem;
}
 
.anom-bar-container,
.anom-bar-container * {
    font-family: var(--head-font), Inter, sans-serif !important;
}
 
.acs-extra-1,
.acs-extra-2,
.acs-extra-3,
.acs-extra-4 {
    font-family: var(--head-font), Inter, sans-serif !important;
}
 
.anom-bar > .top-box {
    text-transform: none;
}
 
/* CONTENT > Woed Bar Adjustments */
 
div.scale div.item1>div {
    color: #333;
    font-family: var(--head-font);
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: unset;
}
 
div.scale div.class1>div {
    color: #333;
    font-family: var(--head-font);
    font-size: 2em;
    line-height: 0.9em;
    letter-spacing: 2px;
}
 
div.scale {
    --woedbar-class-bar-color: #333 !important;
}
 
div.scale div.obj {
    height: 1.7em;
}
 
div.scale div.obj>div {
    font-size: 1.55em;
}
 
/* MISC */
 
#page-content hr {
    height: 2px;
}
 
.bt {
    color: rgb(var(--accent));
    font-weight: bold;
}
 
#footer {
    background: transparent;
    color: #444;
    margin-top: 45px;
}
 
#footer a {
    color: #7b7b7b;
}
 
.footer-wikiwalk-nav {
    font-weight: 700;
    font-size: 88%;
    word-spacing: 5px;
}
 
#page-info-break {
    height: 10px;
}
 
#page-options-container {
    border-top: solid 1px rgba(213, 213, 213, 0.5);
    padding-top: 1rem;
}
 
.page-watch-options {
    padding-bottom: 0.6rem;
    font-size: 77%;
}
 
.page-options-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
 
.page-options-bottom a {
    margin: 3px;
    color: #FFF;
    background: rgb(var(--accent));
    padding: 5px 13px 5px 13px;
    text-decoration: none;
    font-size: 90%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
 
.page-options-bottom a:hover {
    background: rgba(var(--accent), 0.8);
}
 
#page-info-break {
    height: 6px;
}
 
#license-area {
    color: #5f5f5f;
    background: #ecf2f1;
    border-top: solid 2px #d9d9d9;
    margin-top: 10px;
}
 
#license-area a::after {
    content: ".";
}
 
@media (min-width: 768px) {
    #main-content .page-tags {
        padding-right: 16rem;
    }
}
 
#main-content div.page-tags::before {
    content: "tags   ";
    color: var(--misc-txt-color);
    font-family: var(--head-font);
    font-weight: 800;
    font-size: var(--page-font-size);
}
 
#main-content .page-tags a {
    display: inline-block;
    height: .8125rem;
    margin: 0 0 .5rem .75rem;
    padding: .1875rem .3125rem .1875rem 0;
    color: #FFF;
    background-color: rgb(var(--accent));
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem;
    line-height: 13px;
    line-height: .8125rem;
    font-size: calc(var(--page-font-size) - 10%);
    font-weight: bold;
}
 
#main-content .page-tags a::before {
    width: 0;
    height: 0;
    top: -.1875rem;
    left: -.625rem;
    padding: 0 .0625rem .1875rem;
    border-color: transparent rgb(var(--accent)) transparent transparent;
    border-style: solid;
    border-width: .5rem .5rem .5rem 0;
}
 
#main-content .page-tags a::before,
#main-content .page-tags a::after {
    content: "";
    position: relative;
    float: left;
}
 
#main-content .page-tags a::after {
    width: .25rem;
    height: .25rem;
    top: .2813rem;
    left: -.5rem;
    background-color: #FFF;
    border-radius: .125rem;
}
 
#main-content .page-tags span {
    max-width: 100%;
    border-top: .5rem solid transparent;
}
 
#page-tags-input {
    font-weight: bold;
    word-spacing: 8px;
}
 
#edit-page-form input.text {
    font-family: var(--head-font), sans-serif;
    font-weight: 800;
    font-size: 150% !important;
    padding: 4px;
}
 
#edit-page-form>table.form>tbody>tr>td:nth-child(1) {
    font-weight: bold;
}
 
.edit-help-34 {
    font-size: 85%;
    opacity: 60%;
    transition-duration: 0.3s;
    width: fit-content;
}
 
.edit-help-34:hover {
    opacity: 100%;
}
 
.edit-help-34 a {
    margin-right: 3px;
    margin-left: 10px;
}
 
table.edit-page-bottomtable {
    width: 100%;
}
 
#edit-page-comments {
    height: 86px;
}
 
#lock-info {
    background-color: transparent;
    margin: 0.8em;
    line-height: 1.7;
    font-size: 86%;
    border: none;
}
 
#lock-info::before {
    content: "!";
    padding-right: 12px;
    font-weight: bold;
    font-size: 110%;
    opacity: 60%;
}
 
#lock-timer {
    font-size: 115%;
    margin: 0 5px;
}
 
#lock-timer::before {
    content: "⏲ ";
    opacity: 80%;
}
 
textarea,
#edit-page-form input.text {
    outline: none;
    border: 1px solid #ccc;
    transition-duration: 0.3s;
    transition-property: box-shadow;
}
 
textarea:focus-visible,
#edit-page-form input.text:focus-visible {
    box-shadow: 0px 0px 0px 1px #a3a3a3;
    border: 1px solid #a3a3a3;
}
 
#action-area>p {
    font-size: 85%;
    color: darkslategrey;
}
 
#action-area>p:nth-child(5)>a {
    display: block;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
}
 
#who-rated-page-area>div {
    column-count: 4;
}
 
@media (max-width: 900px) {
    #who-rated-page-area>div {
        column-count: 3;
    }
}
 
@media (max-width: 700px) {
    #who-rated-page-area>div {
        column-count: 2;
    }
}
 
@media (max-width: 540px) {
    #who-rated-page-area>div {
        column-count: 1;
    }
}
 
#page-content .content-warning.creditRate {
    padding-top: 8px;
    padding-right: 21px;
}
 
.preview-message {
    right: 0em;
    top: 2em;
    border: unset;
    padding: 1em 1.5em;
    background-color: rgba(0, 0, 0, 0.9);
    max-width: 29em;
    opacity: 1;
    z-index: 100;
    line-height: 1.7;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
    color: #EDEDED;
}
 
.error-block {
    background-color: rgba(255, 0, 48, 0.1);
    text-align: center;
    border: none;
    border-top: solid 3px #B00;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
 
table.page-history tbody tr:nth-child(2n) {
    background: rgba(var(--accent), 0.05);
}
 
.owindow {
    animation: fade 0.5s;
}
 
@keyframes fade {
    0% {
        opacity: 0;
    }
 
    100% {
        opacity: 1;
    }
}
 
.owindow .button-bar a {
    border: solid 2px rgba(0, 0, 0, 0.1);
    margin: 11px;
    padding: 0.5em 2em;
    border-radius: 4px;
}
 
.owindow .button-bar a:hover {
    background-color: var(--link-txt-color);
    color: var(--link-hover-txt-color);
    border-radius: 0px;
}
 
.owindow .button-bar {
    padding: 1.2em 1em 1.2em;
}
 
.owindow .table {
    margin-bottom: 1.5rem;
}
 
.owindow .title {
    cursor: default;
    font-family: var(--head-font);
    font-weight: 800;
    font-size: 155%;
    text-align: center;
    padding: 0.5em 1em;
    border-bottom: solid 2px rgba(187, 187, 187, 0.4);
    background-color: #F7F7F7;
}
 
.owindow.owait .content {
    padding: 0.5em 0.5em 2em;
    background-image: none;
}
 
.owindow.owait .content::after {
    content: " ";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.9rem auto;
    margin-top: 1rem;
    animation: loading 1.2s linear infinite;
    border-top: 0.4rem solid grey;
    border-right: 0.4rem solid transparent;
    border-bottom: 0.4rem solid grey;
    border-left: 0.4rem solid transparent;
    border-radius: 50%;
}
 
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
 
    100% {
        transform: rotate(360deg);
    }
}
 
.owindow.osuccess {
    padding: 0.5em;
}
 
.owindow div.content:nth-child(2)>img:nth-child(1) {
    margin-right: 1.2rem;
    margin-top: 1rem;
}
 
.odialog-shader {
    background-color: #262a39;
}
 
.btn {
    transition-duration: 0.15s;
}
 
.btn:not(#main-content .btn, #search-top-box-form input[type="submit"]),
.btn.btn-primary,
div.buttons input,
input.button:not(#search-top-box-form input[type="submit"]) {
    padding: 0.5em;
    margin: 11px;
    border-radius: 3px;
    font-family: var(--ui-font);
    cursor: pointer;
}
 
#edit-cancel-button,
#edit-diff-button,
#edit-preview-button,
#edit-save-draft-button,
#edit-save-continue-button,
#edit-save-button {
    background: #fff;
    border: solid 1px #ccc;
    cursor: pointer;
    font-family: var(--ui-font);
    color: #333;
    padding: 0.5rem 14px;
    margin: 1px;
    font-size: 90%;
    border-radius: 3px;
}
 
#edit-cancel-button:hover,
#edit-diff-button:hover,
#edit-preview-button:hover,
#edit-save-draft-button:hover,
#edit-save-continue-button:hover,
#edit-save-button:hover {
    background-color: #eaeaea;
}
 
#edit-save-continue-button,
#edit-save-button {
    background: #dbffd6;
    transition-duration: 0.3s;
    color: #005a0a;
}
 
#edit-save-continue-button:hover,
#edit-save-button:hover {
    color: #fff;
    background: #0d951c;
}
 
#edit-cancel-button {
    background: #ffe1e1;
    transition-duration: 0.3s;
    color: #c52727;
}
 
#edit-cancel-button:hover {
    color: #fff;
    background: #c5272e;
}
 
table.page-history tbody tr {
    color: #757575;
}
 
.fncon {
    font-size: var(--page-font-size) !important;
    line-height: 1.4;
    border: 2px solid rgba(0, 0, 0, 0.2);
}
 
.fncon::before {
    font-size: var(--page-font-size) !important;
}
 
.hovertip {
    border: none !important;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 3px;
    max-width: 400px;
}
 
input.checkbox,
.page-history input,
#h-perpage {
    cursor: pointer;
}
 
input,
textarea {
    font-family: var(--ui-font);
}
 
#breadcrumbs,
.pseudocrumbs {
    font-weight: bold;
    font-size: 110%;
    font-family: var(--ui-font);
}
 
/* ---- REDUCED MOTION ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
 
    *,
    *::before,
    *::after {
        animation-duration: .001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001s !important;
    }
}
 
/* @MEDIA */
 
@media (max-width: 850px) {
 
    #header h2::before {
        font-size: 1.4em;
    }
 
}
 
@media (max-width: 700px) {
 
    #header h2::before {
        font-size: 1.2em;
        margin-top: 0.3rem;
    }
 
    #top-bar,
    #top-bar a {
        top: 8.8rem;
        font-size: 90%;
    }
 
}
 
@media (max-width: 620px) {
 
    #header h2::before {
        font-size: 1em;
        margin-top: 0.15rem;
    }
 
    #top-bar,
    #top-bar a {
        top: 8.3rem;
        font-size: 90%;
    }
 
    div#header {
        height: 123px;
    }
 
}
 
@media (max-width: 520px) {
 
    #header h2::before {
        line-height: 16px;
        margin-top: 0.5rem;
    }
 
    #top-bar,
    #top-bar a {
        top: 9.3rem;
    }
 
    div#header {
        height: 145px;
    }
 
}
rating: +22+x


1024px-Yasukuni_Shrine_201005.jpg

Yasukuni Shrine, Haiden (Oratory)


Special Containment Procedures: SCP-7892 is currently only allowed to be performed for research purposes. Research on SCP-7892 must first be permitted unanimously by Site-50’s Director,1 Site-50’s Head of Research,2 Site-50’s History Department Lead,3 and Site-50’s RAISA Liaison.4 If all four members approve the proposal, it is to be sent for review to the East Asian Regional Council. Only with their approval may SCP-7892 be performed.

SCP-7892 research may only be performed by members of Provisional Task Force Kappa-70 (“Prisoners of 和”). PTF Kappa-70 will continually be replenished by individuals able to perform, preferably from GoI prisoners and/or terminally ill patients. If this were not to be possible, PTF Kappa-70 will be replenished by willing participants. No willing participant will be considered for research if any other choice is available.

No efforts are to be made to conceal or prohibit entrance into the Yasukuni Shrine. No efforts are to be made to blockade or prohibit praying to the Kami enshrined here. No efforts are to be made to remove enshrined Kami from the Book of Souls,5 but the true list is to be exchanged for one with names of deceased people up to the signing of the Treaty of Peace with Japan.

No member of the Foundation or of any allied group with connections to any enshrined Kami is to perform SCP-7892 step inside the Yasukuni Shrine’s Inner Garden. This is not to be enforced; however, no recovery attempts will be made in the event a member is discovered doing so.


Description: SCP-7892 is a ritual that can only be performed within the premises of the Yasukuni Shrine,6 Chiyoda City, Tokyo Prefecture. The ritual is believed to be able to dimensionally translocate the performer into another universe, reality, or theological realm. The only remnants of the action are their existence in the memory of other people able to perform SCP-7892, sudden Akiva spikes at the time of performance, and their names appearing on the official list of enshrined Kami in Yasukuni Shrine’s Book of Souls,7 People attempting to find information about SCP-7892 or its performers are to be amnesticized and, if necessary, integrated into PTF Kappa-70.

SCP-7892 can only be performed by people with blood ties with any Kami enshrined inside the Yasukuni Shrine. It is not known how the binding spell of the ritual recognizes blood ties, but direct and indirect descendants, as well as non-recognized descendants are known to be able to perform the ritual. The ritual is believed to work similarly to the ritual present on SCP-2937; due to the innate threat of using SCP-2937, this conjecture cannot and will not be proven. Of note is that not all targets capable of performing SCP-7892 will perform the ritual. Those who do perform it, however, appear to enter a fugue state, and stop responding to outside stimuli.

It is not known how an individual learns how to perform SCP-7892, as no member who has performed it is believed to have known it beforehand. The performance itself is also only rudimentarily understood. While a target unable to perform it can document SCP-7892’s performance, crucial steps are either only available to other performers, or a cognitohazardous effect stops a non-performer from perceiving them.

Due to this nature, it is also not known when the first performance of the ritual was conducted, but it is believed to have been enacted at some point after the construction of the Reijibo Hoanden8 in 1975. SCP-7892’s creation has been attributed to remnants of the IJAMEA,9 although no evidence of this exists.


History: The first confirmed occurrence is the disappearance of Hinata Kurata, Tsukasa Kurata, and Miyamoto Ienaga in 2014. All three were members of the Greater Japan Patriotic Party, a far-right political party of Japan, with the two former also suspected of being “Kakure Shogun”, the latter having known ties with the Gogyō-Kessha.10

Due to their ties with known antagonistic GoIs, a search party was sent to the Yasukuni Shrine as another party was sent to interrogate potential witnesses. It is here that two of the agents in the search party, Rebecca Roberts and Mari Iwanaga, disappeared as well. Despite a behavior believed to have heavily deviated from standard procedures, no member of the search party reported anything unusual. Instead, the Head Priest, who at the time was being interviewed, was the only one to react to the event:

Interview Log

Date: 2014/05/21

Interviewer: Agent Kogiku Toyohisa

Interviewee: Yasukuni Shrine’s priests, including the Head Priest


(Interview has been going on for seven minutes. Information preceding this event has been deemed irrelevant.)

Head Priest: …Ah. There’s been two more.

Toyohisa: Hm? Did you say something?11

Head Priest: The doves are singing, and the cherry trees blossom, because it knows two more have joined them.12

Toyohisa: Singing? What do you mean, singing?

Head Priest: They are celebrating the arrival of the Kami. The shrine expands. All are joyous. Can’t you hear it, Kogiku? Can’t you hear the reverence of the old Gods? The cheers of the new? A parade of a thousand horses, all carrying the palanquins? Praise be to Rebecca Roberts, she who honors her parents, who in turn honor theirs. Praise be to Mari Iwanaga, she who honors her parents, who in turn honor theirs. And they honor theirs, and they honor theirs. All the way to He who took on the name of Jinmu, who honored the Great Ninigi-no-Mikoto, who in turn honored the Great Amaterasu-Oomikami.13 Their names… They… They shall not be forgotten, neither on Heaven nor on Earth.

(A period of 15 seconds is spent in silence. The Head Priest stares towards a wall, directly towards the Honden. He then turns back to agent Toyohisa.)

Head Priest: Pardon me, what was your question?

Toyohisa: Did you see anyone enter the premises on the 18th of May, especially the areas that are restricted to other visitors?


Note: The interview continued as per protocol, neither acknowledging the event. Enhanced interrogation methods would reveal no person present was able to recall this event. The reason for this is being studied.


Exploration Log



Following this event, and a minimum of three others, Foundation prepared for testing of the exact working of SCP-7892. At this time, it was only known that the ritual started at the shrine’s Daiichi Torii,14 and finished at either the Main Sanctuary or the Chinreisha.15

The first successful recon expedition was conducted by agent Hibiki Ogawa, whose grandfather was a Major for the IJA, killed in battle during the Cabanatuan raid.

Exploration Log

Date: 2014/06/08

Interviewer: Agent Hibiki Ogawa


<00:00> - Recording starts. Agent is 100 meters from the first torii gate.

<01:35> - Agent passes by the first torii gate, but not before praying in front of it. Agent is heard whispering ”thank you” before entering the Outer Garden.

<04:41> - Agent passes by the second torii gate, not before praying in front of it. Agent then turns left, and walks to the Temizuya16 to purify herself.

<06:01> - Agent turns right, towards the dove cote. Doves are heard cooing constantly. She walks in front of it, before praying once more. The cooing stops.

<06:55> - Agent walks towards the Sanshuden hall. The door opens on its own in front of her. The agent enters, then moves towards an empty reception room. She sits down, and begins conversing, despite being alone. Speech is consistent with petitions to worship enshrined Kami. Agent reveals information regarding her grandfather, as well as information regarding six other family members who are enshrined in Yasukuni. Information given includes a concise life history, major accomplishments, committed crimes, among other details. Some of these details involve behind-the-veil activities, and were not known to the Foundation, nor to the agent.

<14:17> - Camera turns off for three seconds. Once the camera comes back on, the agent is standing in front of the Main Sanctuary. The sky and bushes around the sanctuary appear to slightly pulsate. Whether this is actually occurring, or is some sort of camera disruption is not known.

<14:43> - Agent prostrates, assuming the dogeza position, then begins chanting what is believed to be a prayer or a mantra. Doves cooing are heard again.

<15:37> - Sounds of people marching are heard around the agent, walking to her left and right, towards the sanctuary. Agent continues praying.

<31:19> - Agent finishes praying at the same time the sound of footsteps stops being heard. Agent raises her head, and moves towards the sanctuary.

<32:20> - Agent stops at the entrance of the sanctuary, and begins screaming, banging her hands on the wooden floor with enough force to break her right hand. The tips of a pair of shoes can be seen at the top of the camera, standing in front of the agent.

<36:01> - The shoes move back, disappearing from view.

<41:12> - Agent raises her head once more, before exiting the sanctuary, and walking towards the Reijibo Hoanden repository.

<44:47> - Upon reaching the repository, the agent notices the doors are entirely missing. Several pages and archives of the Book of Souls are seen outside, apparently having been thrown from the inside.

<45:01> - Agent picks up one of the pages, before stopping screaming. She looks at it, the page containing information on one of her ancestors. She pockets it, before walking towards the next paper. This action is repeated a total of seven times.

<47:36> - Agent walks inside the repository, carrying the papers. In the middle of the room, she sees an empty page sitting upon a lectern. Behind the lectern, the statue of Omura Masujiro can be seen.

<49:02> - The agent pulls an ink brush from the statue, then writes her name on the empty paper. Agent is seen prostrating herself on the ground, head against the ground as she begins repeating the words “thank you”. Due to her position, the camera is obstructed.

<51:22> - The cooing of the doves stops at the same time a sudden Akiva spike is detected. Five seconds later, the agent stops vocalizing. Twelve seconds later, the camera turns off.

Ten minutes later, a team reached the repository building, the camera found inside of it. The insides of the camera had been replaced by incense ash. Agent Hibiki was nowhere to be seen. Of note is that both the statue and the repository doors were in their usual positions, and no proof of their movement was detected.


Following the event, a further fifty five explorations attempts were conducted, ten of them successful, leading to the discovery of the following characteristics:

  • SCP-7892 performers will stop reacting to outside stimuli, and will only react according to the performance.
  • SCP-7892 performers gain all knowledge of any family member enshrined at the Shrine.
  • SCP-7892 performers are able to accomplish supernatural feats without damage to themselves (Not proven; damage might be dispensed to them, but is not known to any observers)
  • During the performance, SCP-7892 performers might encounter anomalous events related to events in the lives of their ancestors.
  • SCP-7892 performers will arrive at the repository no matter what events happen beforehand. The statue of Omura Masujiro will be present near or inside the building.
  • The exact moment at which an SCP-7892 performer disappears cannot be registered. (Not proven; however, all attempts to record it so far have failed.)

Following concerns by the Ethics Committee, the exploration phase reached its end. Entrance to the repository for the Book of Souls was prohibited, with a team of guards unable to perform SCP-7892 guarding the building at all times.


Addendum 7892-1



The Yasukuni Shrine suffered several attempts to breach into the repository throughout a period of 7 months following its closure, culminating on Incident 7892-1 on 2017/03/15, at exactly 12:00, when 1,851 people entered the Yasukuni Shrine and forcibly started several SCP-7892 performances. Despite the Foundation and the Metropolitan Police’s Special Affairs Division attempting to disperse the performers, flocks of white doves coming from the Shrine interfered, personnel finding themselves unable to act while the doves were present. A further 35 members of personnel assisting at the time became SCP-7892 performers, with each performer disappearing throughout a period of five hours, their names added to the Book of Souls. The event required a mass amnestization campaign, with information on SCP-7892 being shared with relevant parties and involved GoIs, a meeting being held the following week. As a result, several further tests were performed in an attempt to either contain, pacify or eliminate the anomaly.

Experiment Logs


Experiment: Neutralization of SCP-7892 through the elimination of all souls enshrined at Yasukuni.

Proposed by: Foundation, Site-50, Director’s Office

Results: Proposal denied by the Research Department, the Global Occult Coalition, and the Shūshū-In17 on the basis of a mass Shinto-faith subsidence due to the removal of 3,5 million Kami. Worries were also raised on the religious impossibility of Kami being removed from enshrinement, leading to ire from all currently active Shinto deities, including those at the service of the Foundation.


Experiment: Utilization of clones of personnel able to perform SCP-7892 to carry out the rituals.

Proposed by: Special Affairs Division, Tokyo Prefecture, Chiyoda Ward Department

Results: Clone of individual-45981 entered Yasukuni Shrine, and performed SCP-7892. Upon the finalization of the ritual, the clone disappeared. At the same time, individual-45981 falls into unconsciousness. Further analysis shows that the individual had lost their soul (tamashii), which had turned into a Kami at the shrine (mitama). Further experiments with cloning and other human replications yielded similar results.


Experiment: Appeasement of anomaly through standardized ritual performances, using available prisoners.

Proposed by: Foundation, Site-50, Research Department

Results: Experiment deemed successful. Targets approved under parameters delineated by the Japanese Anomalous Groups Peace and Amity Treaty Organization (JAGPATO), grouping them into PTF Kappa-70. Number of available targets unsustainable for long-term containment.


Experiment: Appeasement of anomaly through standardized ritual performances, using targets deemed ‘expendable’.

Proposed by: Foundation, Site-50, Research Department

Results: Proposal denied by the Global Occult Coalition, the JAGPATO, the East Asian Regional Council’s Korean and Chinese Branches, the Shūshū-In, and fourteen other Groups of Interest. Site-50’s Head of Research resigns following allegations of racial and social discrimination.


Experiment: Appeasement of anomaly through standardized ritual performances, using targets belonging, or having belonged to the Imperial House of Japan.

Proposed by: Shūshū-In, Headquarters

Results: See below.


Following the last experiment proposal, Shūshū-In’s archivist Higashikuni offered themselves for the ritual. While the Higashikuni-no-miya branch was abolished in 1947, due to family enshrined in Yasukuni, as well as recent political movements to reinstate abolished branches of the Imperial Family, they were deemed a suitable candidate for the experiment.

The experiment was initially proposed under the belief that members of the Imperial House would be more effective targets when performing SCP-7892, and would thus increase the period of time necessary between each performance.18

Substantial deviations were immediately noticed, as Higashikuni was unable to recall the steps for the performance of SCP-7892, and had to be guided by others based on previous documented information. They remained lucid throughout the entire procedure.

Upon reaching the repository, they found its doors open, with the Statue of Omura Masujiro inside. Events following their entrance into the repository are as follows:

Interview Log



(Archivist Higashikuni steps into the building, staring at the statue at the back before focusing on the lectern in front of it, to then turn to the many archives lined up at each side of the room.)

Higashikuni: I must say, it’s quite the impressive setting. It reminds me of the archives back at headquarters… The smell of aged paper… Of memories of a world no longer present.

(The sound of cooing is heard from within the room. Archivist Higashikuni quickly stares back at the statue. From this point on, it’s understood that the statue is speaking, albeit their speech is not present in the recording.)

Higashikuni: Ah, my apologies. (Higashikuni sits on the floor, before bowing.) My associates did not warn me you had a voice to use. I should have assumed so, I suppose. So, do I speak to the true Omura Masujiro?

(The sound of battle cries and Dreyse-Zündnadelgewehre rifles are heard in the background. Higashikuni doesn’t appear to react to it.)

Higashikuni: Of course I believe it, master. I’ve seen enough that defies the logical that I cannot but believe your word. Belief is not why I’ve come here, however. I’ve come here to ask why.

(Silence.)

Higashikuni: Why are you doing this? Why make it so people come to this place, and are to become nothing but a name in the Book of Souls of this shrine?

(The doves’ cooing stops. The oratory’s bells are heard in the background.)

Higashikuni: …Belonging to… No, they belong to their families. They belong to themselves. They do not belong to Heaven, not yet, and they certainly don’t belong to Japan.

(The sound of metal creaking, followed by the rushing of water into the room is heard. Indistinct voices can also be appreciated.)

Higashikuni: We’re not at war anymore, and we will never be at war again. Long gone are the days of political instabilities. Long gone are the days of the Samurai, of the Bakufu, of the Satsuma and the Tokugawa. Long gone are the days of the Empire.

(Banzai cries are heard.)

Higashikuni: It’s not a matter of honor. It’s a matter of change. We’re at peace now. It’s the Heisei era. “Peace on both Heaven and Earth”. You cannot only have peace in Heaven, but cause grief on Earth.

(The sound of a gavel is heard. Monument to Radha Binod Pal19 turns 63 degrees, facing the repository.)

Higashikuni: That hardly accounts for “Peace on Earth”. Peace is something we still struggle with. Peace of body, peace of mind. Peace with one another. Not even this shrine is exempt from the struggle. You know this, correct?

(Silence for 11 seconds. A small explosion is heard in the background.)

Higashikuni: There is still struggle, of course, and there is still ‘war’, as you put it, but it’s not like in the old days anymore. And even if it was, cutting one’s life short is not honorable. There’s no peace that comes from it; no rest of soul. Do you earnestly believe otherwise?

(The sound of indistinct loud-speaker noises can be heard.)

Higashikuni: I see… The loudest voices are hardly ever the ones worth listening to, my friend. I feel that is a piece of wisdom the likes of you would have passed down to one’s apprentices. I’m sure one of the books you wrote contains such a lesson.

(The sound of paper shuffling and sliding doors opening and closing is heard in the background.)

Higashikuni: (Chuckles) I am much more attuned towards Eastern Studies, I’m afraid, but I believe it’s quite the similar experience. Learning from the past and the present, such that we know better in the future… This shrine is just like such a text. It teaches the same principles that seemed so foreign to us in the past. The same that still escapes our grasp today. And although there’s many messages contained within, contradicting each other, muddying each other… One still stands the test of time, escaping tear, redaction, and revision.

(Silence.)

Higashikuni: People live because they want peace. No one wishes to live for strife. We live yearning for peace, and we pray so that the dead may reach it. We live our lives in the hopes that there’ll be someone to remember us, someone to pray for us when we’re no longer here. To disregard this is unfair to those who are alive. It’s unfair to the dead too. There’s no free ticket to any Heaven. There shouldn’t be one.

(Silence. Higashikuni stands up.)

Higashikuni: I suppose you’re right. I shouldn’t force my beliefs onto others. Equally, you shouldn’t either. It’s not fair to make a choice that is theirs. Choices have been made without considering the recipients too many times in the past. This shrine and many others were built so that its victims could find peace. So let them make their choice, because it is theirs, and no one else’s.

(Higashikuni pulls out an ink brush from their person, before putting it down on the lectern. They were not carrying this item when they entered the shrine.)

Higashikuni: It was a pleasure to speak with you, master. I shall take my leave now.

(Higashikuni puts their hands together in prayer, then bow their head before leaving the building. While the camera doesn’t capture this, based on sound, it is believed the statue bows as well.)



Post-event interview revealed that Archivist Higashikuni had managed to appease the statue (Now designated as SCP-7892-1), and SCP-7892 events would no longer need to occur. However, SCP-7892 can still be performed, leading to the same results.

”[…] He’s an old man stuck in his old ways. I cannot blame him for it; there’s the likes of him still alive today. I much prefer the likes of him than those who visit the shrine and pray for it, not for the sake of the dead, but for their own sake. He still fights for Japan, for the Army, for the Emperor. And yet, he fights not with guns and swords, but by offering an open door to those who need it. A place to belong.

Maybe the home he offers is not one liked by many. I’m sure many of the people listening to my words oppose it. I do too. I can’t say I agree with the man, but I can understand him. A place that accepts you is better than none at all. And so the shrine will continue to accept those who fight for an empire that no longer exists, and people will pray for them, because they have found peace in this. […]”

“[…] I recommend you keep that place open. You cannot deny that which is owed to the dead. That being said, living people should be barred from writing their names in the Book of Souls. That place is not one of honor; not for the living, at the very least. It could never be. There’s many places that accept the living. This is not one of them. […]”

- Archivist Higashikuni, post-event interview excerpts


Since this event, SCP-7892’s steps have been fully deduced, and the ritual has been used a total of 37 times by Foundation and Foundation-allied personnel. Usage of SCP-7892 has received mixed responses from both national and international organizations, including other Foundation Sites and Branches. Following internal pressure, SCP-7892’s usage approval was delegated to the East Asian Regional Council.

14 requests to use SCP-7892 to enshrine retired personnel and other key members of the Foundation able to perform the ritual before their natural death have been submitted to the East Asian Regional Council since then. 8 have been denied, 3 have become invalid, and 3 remain under consideration. No further requests are to be made until all remaining requests are resolved.





Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License