@supports(display: grid) {
:root {
--sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19);
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: unset;
bottom: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem
opacity: 1;
pointer-events: all;
z-index: -1;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: unset;
bottom: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important;
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu {
pointer-events: none;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before,
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after {
opacity: 0;
pointer-events: none;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
transition:
opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
@supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar {
padding: inherit;
} }
#content-wrap {
display: flex;
flex-direction: row;
width: calc(100vw - (100vw - 100%));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
width: var(--body-width-on-desktop, 45.75rem);
max-width: var(--body-width-on-desktop, 45.75rem);
margin: 0 auto;
}
#page-content {
max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
}
@supports (-webkit-hyphens:none) {
#side-bar {
transition:
left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms,
background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before,
#side-bar:hover .close-menu::after {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
}
@supports(display: grid) {
:root {
/* header measurements */
--header-height-on-desktop: 10rem;
--header-height-on-mobile: 10rem;
--header-h1-font-size: clamp(2rem, 5vw, 2.8125rem);
--header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem);
}
#header {
--search-textbox-text-color: var(--swatch-secondary-color);
background: none;
}
#header::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0.75rem;
background-image: var(--logo-image);
background-repeat: no-repeat;
background-position: center 0;
background-size: auto calc(var(--header-height-on-desktop) - 1.5rem);
opacity: 0.8;
pointer-events: none;
}
#header h1,
#header h2 {
margin: 0;
padding: 0;
width: 100%;
height: var(--header-height-on-desktop);
display: flex;
align-items: center;
justify-content: center;
display: flex;
align-items: center;
justify-content: center;
}
#header h1 a,
#header h1 a::before,
#header h2 span,
#header h2 span::before {
margin: 0;
padding: 0;
z-index: 0;
display: block;
text-align: center;
}
#header h1 {
z-index: 1;
}
#header h1 a::before,
#header h1 a::after {
content: var(--header-title);
}
#header h1 a::before {
color: rgb(var(--swatch-text-tertiary-color));
z-index: -1;
-webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark));
}
#header h1 a::after {
color: rgb(var(--swatch-headerh1-color));
z-index: 1;
}
#header h2 {
z-index: 0;
text-transform: uppercase;
pointer-events: none;
}
#header h2 span {
margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/1.6 - 2em);
}
#header h2 span::before,
#header h2 span::after {
--wght: 600;
content: var(--header-subtitle);
position: absolute;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 100%;
text-align: center;
}
#header h2 span::before {
-webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark));
}
#header h2 span::after {
color: rgb(var(--swatch-headerh2-color));
z-index: 1;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
color: rgba(0, 0, 0, 0);
}
@media (min-width: 36rem) {
#login-status {
flex-grow: 1;
left: 3%;
right: initial;
}
#login-status::before {
--mask-image: none;
background-color: transparent;
}
#login-status:not(:focus-within) {
color: rgb(var(--login-line-divider-color));
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
user-select: initial;
}
#login-status #account-topbutton,
#login-status:not(:focus-within) #account-topbutton {
--clip-path:
polygon( 0 0, 100% 0, 100% 100%, 0 100% );
background-color: rgba(var(--login-arrow-color), 0);
}
#login-status #account-topbutton::before{
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(var(--login-arrow-color), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton:hover::before {
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
}
#login-status:not(:focus-within) #account-topbutton::after {
display: none;
}
#login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
pointer-events: all;
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) {
opacity: 1;
}
#login-status #my-account {
--wght: 300;
}
#account-options {
background: var(--gradient-header);
}
#search-top-box {
top: 1.5em;
right: 3%;
background: rgba(var(--search-focus-textbox-bg-color), 0.4);
box-shadow: calc(var(--search-height) / 2 * -1) 0 calc(var(--search-height) / 2) rgba(var(--search-focus-textbox-bg-color), 0.4);
}
#search-top-box:focus-within ~ #login-status {
opacity: 1;
}
#search-top-box::after {
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#search-top-box:not(:focus-within)::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0% 100%
);
background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#search-top-box:not(:focus-within):hover::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
background-color: rgb(var(--search-icon-hover-bg-color));
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) {
max-width: var(--search-width);
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
max-width: var(--search-width);
padding: 0 var(--search-height) 0 1em;
outline-width: 0;
background-color: rgb(var(--search-focus-textbox-bg-color), 0.35);
color: rgba(var(--search-textbox-text-color), 0.4);
cursor: pointer;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"],
#search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] {
pointer-events: all;
border: none;
}
}
#page-title::after,
.meta-title::after,
#page-title::before,
.meta-title::before {
content: "";
flex-grow: 1;
height: 0.0625rem;
background: rgb(var(--swatch-primary));
}
#page-title::before,
.meta-title::before {
margin: auto 1.25rem auto auto;
}
}
もし手元に銃があったなら、迷わず頭をブチ抜いていた。
私の身体中、痛覚が存在するあらゆる箇所が、随意、不随意に関わらず私の挙動一つ一つに反応する。
最初に気づいた痛みは、目とその奥にあった。まるで眼球を直接抉られているような感覚。
掌を目に押し当てようとするが、腕が上がらない。
苦痛に呻こうとしたが、僅かに喉を通る息が掠れた音を立てるだけだった。
顔を歪めるにも新たな痛みが伴う。
体の芯に寒さを感じながらも、全身から汗が噴き出す。その汗の一滴ずつが身体の奥から染み出し、肌を伝うその感覚まで今の私には明確に分かった。
奇妙なことに、幾つもの異なる苦痛の中にあっても、全ての感覚は明瞭に区別されていた。
これが死の苦痛なら、せめて見苦しくもがいてやろうと思った。それが私たちの信条だからだ。
例え絶望的な理不尽に遭遇し、手が尽きたとしても最後まで抵抗の意志を示せ。
それが私たち人間が脅威に立ち向かった証となり、いつかお前によく似た奴がそいつを殺すだろう。
苦痛は死への恐怖を呼び起こす。それを抑えつける訓練を私たちは受けていた。
だが、四肢は私の体から切り離されたように動かない。
これは理不尽なのか、それとも必然なのか。
身動きも出来ず、意識を失う事も死ぬ事も出来ずにただじっと苦痛に耐えていた時間、それは
数時間かもしれないし数日かもしれないが、その間ずっと苦痛だけが私の世界を占める要素だった。
僅かに壁が明るくなり、ようやく私は自分が部屋の中にあるベッドに寝かされている事に気づいた。
続いて静かな音と共に扉が開き、朧げながら人のようなシルエットが入ってくるのが見えた。
私は、周りに武器が無いか視界を巡らせる事が出来た。そして、"それ以上近づくな、クソったれ"と。
私は意識の殆どを未だに取り戻せないまま、様々な思考が浮かんでは消えるのを感じた。
もしここが自分の部屋なら、ベッド脇に銃とナイフを置いている筈だった。私はそれを掴む為に手を動かそうとしたが、わずかに腕と指がが痙攣するのを感じ取る事が出来ただけだった。
今私はどこにいる?
私はどうしてここにいる?
なぜ私は生きている?
仲間たちは、そして私たちの敵はどこにいる?
その影は"安心しろ"と女性の声で語りかけた。それで私はそれが女性である事を認識した。
薄暗い明かりと、ようやく可視光を受容した視神経によって明瞭になっていく視力が、
彼女の姿を徐々にではあるが、映し出し始めた。
その肌は白く、非人間的なまでに一様で滑らかに見えた。彼女は全く躊躇を感じさせない滑らかな動きで、
自身の汚物に塗れた私の衣服を脱がして身体を濡らした布で拭き、次いで抱きかかえて浴槽まで運んでくれた。
僅かに粘性を感じる温かい液体に満たされた浴槽に浸かると、彼女は手にしたコップに口をつけ、次いで私の苦痛で震える唇に重ねた。
甘く柔らかな液体がゆっくりと注ぎこまれ、全身の痛み、痺れ、熱が静かに引いていくのが分かった。
突然気がついた。ここは私の部屋だ。
壁の色、カーテン、窓から差し込む明かりとそこから見える風景、そして家具やクローゼット。
どれも馴染みがあった。戦争が始まってからは一度も戻っていなかったが、それらを忘れる事はなかった。
部屋の明暗の切り替わりから考えて恐らくは10日ほどが経過した頃、私はようやく自力でベッドから起き上がれるようになった。その間ずっと、彼女―声が出せるようになった時に真っ先に名前を聞いたところ、"アレクサンドラ"と名乗った―が私の世話をしてくれた。軽々と私を抱き抱え、例の薄甘く滋養に満ちた液体を口移しで与え、浴室で体を清める。
未だ遠くにある自分の思考の中でも、その違和感に気づく事は出来た。窓は開かないし、外の音も聞こえない。
違う。
誰かが私の記憶を覗き見て、それを模倣したものだ。
私は、自分の部屋にある武器の事を思い返した。
それが無いという事は、私の疑念を確信させるのに十分だった。
ノックが聞こえ、玄関からアレクサンドラが入ってきた。
私は彼女に質問をぶつけた。
彼女は言った。"その質問への回答は、貴女の今後の判断に影響を与える可能性がある"と。
判断?私に判断が必要な機会が訪れるという事か。
私は別の質問をした。即ち、"今はいつだ?"
彼女は一瞬戸惑ったように見えた。そして、"西暦2345年10月14日、午前10時32分。"
Fuckin' God.
それ以外の言葉は出てこなかった。
ふと、芳しい匂いが鼻をくすぐる。
彼女はトレイに何か食品を乗せて持ってきてくれたらしい。
彼女はそれをテーブルに置き、私に勧めた。
ボウルに満たされた様々な具の入ったスープに、柔らかいパン、そして小さなチーズの塊。
アレクサンドラが調理したのだろうか、それは320年ぶりに口にするのに相応しいものだった。
スプーンでそれを口に運ぶと、後は無我夢中だった。
彼女は私の横に座り、どこか遠くを見ているように見えた。
食事を終えた私は、先ほどの無礼を詫びると共に、今までの世話と食事の礼を伝えた。
彼女はわずかに微笑んだように見えた。
そして、改めて私の疑問を伝える事にした。
彼女は、先ほどの忠告を再度繰り返したが、続けてこう言った。
"私たちは主人たる人類に奉仕するよう作られている。貴女が回答を望む場合、私はそれを拒むことは出来ない"
迷う理由はなかった。
彼女は私に言った。長い話だが、そのうち半分は貴女が既に体験している事だ、と。
彼女が小さく手をかざすと、窓の外が一瞬にして暗くなり、目の前に鮮明な映像が浮かび上がった。
映像記憶。私はそれを見ながら、自分の物語を思い出していた。