-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-ja.html
More file actions
267 lines (263 loc) · 9.4 KB
/
Copy pathindex-ja.html
File metadata and controls
267 lines (263 loc) · 9.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!doctype html>
<html lang="ja" data-l30-lang-lock="JP_ONLY">
<head>
<script>
/* L30_THEME_FALLBACK_BOOT_BEGIN */
(function(){
try {
var t = localStorage.getItem('l30-color-theme');
if (t === 'light' || t === 'dark') document.documentElement.setAttribute('data-l30-theme', t);
} catch (e) {}
})();
/* L30_THEME_FALLBACK_BOOT_END */
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="l30:lang-lock" content="JP_ONLY" />
<title>Lumi30 公開記録</title>
<style>
:root {
color-scheme: light;
--bg: #F7F9FC;
--text: #1E2732;
--muted: #5D6B78;
--line: #D8E2EC;
--panel: #FFFFFF;
--soft: #E8EEF5;
--accent: #2F6FA3;
--shadow: rgba(30, 39, 50, .14);
--halo: rgba(47, 111, 163, .12);
--topbar: rgba(247, 249, 252, .86);
}
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark;
--bg: #0F1720;
--text: #EAF2F9;
--muted: #AFC0D2;
--line: #294153;
--panel: #182330;
--soft: #1B2E3D;
--accent: #8FC9FF;
--shadow: rgba(0, 0, 0, .28);
--halo: rgba(143, 201, 255, .12);
--topbar: rgba(15, 23, 32, .86);
}
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background:
radial-gradient(circle at top left, var(--halo), transparent 32rem),
var(--bg);
color: var(--text);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.72;
}
a { color: var(--accent); }
main { max-width: 1040px; margin: 0 auto; padding: 1.25rem 1.1rem 4rem; }
.topbar {
position: sticky;
top: 0;
z-index: 2;
backdrop-filter: blur(14px);
background: var(--topbar);
border-bottom: 1px solid var(--line);
}
.topbar-inner {
max-width: 1040px;
margin: 0 auto;
padding: .7rem 1.1rem;
display: flex;
flex-wrap: wrap;
gap: .55rem;
align-items: center;
}
.topbar a, .pill {
display: inline-flex;
align-items: center;
gap: .25rem;
border: 1px solid var(--line);
background: var(--soft);
border-radius: 999px;
padding: .44rem .68rem;
text-decoration: none;
font-size: .94rem;
}
header.hero {
border: 1px solid var(--line);
background: var(--panel);
border-radius: 24px;
padding: clamp(1.15rem, 3vw, 2rem);
box-shadow: 0 18px 44px var(--shadow);
margin: 1.1rem 0 1rem;
}
.kicker { color: var(--muted); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.08; margin: .18em 0 .35em; }
h2 { font-size: clamp(1.28rem, 3vw, 1.75rem); line-height: 1.25; margin-top: 0; }
p { margin: .5rem 0; }
.lead { color: var(--muted); font-size: clamp(1.04rem, 2.3vw, 1.22rem); max-width: 72ch; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: .9rem; margin: 1rem 0; }
.card {
border: 1px solid var(--line);
background: var(--panel);
border-radius: 18px;
padding: 1rem;
min-height: 100%;
}
.card ul { padding-left: 1.25rem; margin: .45rem 0 0; }
.card li { margin: .34rem 0; }
.route-list { display: grid; gap: .75rem; margin: .7rem 0 0; }
.route {
display: block;
border: 1px solid var(--line);
border-radius: 16px;
padding: .9rem 1rem;
background: var(--soft);
text-decoration: none;
}
.route strong { display: block; margin-bottom: .15rem; }
.route span { color: var(--muted); }
.note { color: var(--muted); font-size: .96rem; }
footer { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1rem; color: var(--muted); }
[id] { scroll-margin-top: 5rem; }
</style>
<style>
/* L30_THEME_FALLBACK_STYLE_BEGIN */
:root[data-l30-theme="light"] {
color-scheme: light;
--bg: #F7F9FC;
--paper: #FFFFFF;
--panel: #FFFFFF;
--ink: #1E2732;
--text: #1E2732;
--muted: #5D6B78;
--line: #D8E2EC;
--border: #D8E2EC;
--accent: #2F6FA3;
--accent-soft: #E8EEF5;
--soft: #E8EEF5;
--warn: #1E2732;
--shadow: rgba(30, 39, 50, .14);
--halo: rgba(47, 111, 163, .12);
--topbar: rgba(247, 249, 252, .86);
}
:root[data-l30-theme="dark"] {
color-scheme: dark;
--bg: #0F1720;
--paper: #182330;
--panel: #182330;
--ink: #EAF2F9;
--text: #EAF2F9;
--muted: #AFC0D2;
--line: #294153;
--border: #294153;
--accent: #8FC9FF;
--accent-soft: #1B2E3D;
--soft: #1B2E3D;
--warn: #EAF2F9;
--shadow: rgba(0, 0, 0, .28);
--halo: rgba(143, 201, 255, .12);
--topbar: rgba(15, 23, 32, .86);
}
.l30-theme-control {
max-width: 1080px;
margin: 0 auto;
padding: .42rem 1.1rem .25rem;
display: flex;
justify-content: flex-end;
align-items: center;
gap: .45rem;
color: var(--muted);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: .82rem;
line-height: 1.4;
}
.l30-theme-control label { font-weight: 650; }
.l30-theme-control select {
color: var(--text);
background: var(--panel, var(--paper, #FFFFFF));
border: 1px solid var(--line, var(--border, #D8E2EC));
border-radius: 999px;
padding: .3rem .58rem;
font: inherit;
}
.l30-theme-control select:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
/* L30_THEME_FALLBACK_STYLE_END */
</style>
</head>
<body>
<!-- L30_THEME_FALLBACK_CONTROL_BEGIN -->
<div class="l30-theme-control" role="group" aria-label="表示テーマ">
<label for="l30-theme-select">表示</label>
<select id="l30-theme-select" aria-label="表示テーマ">
<option value="auto">自動</option>
<option value="light">ライト</option>
<option value="dark">ダーク</option>
</select>
</div>
<!-- L30_THEME_FALLBACK_CONTROL_END -->
<div class="topbar"><div class="topbar-inner">
<a href="https://lumina-30.github.io/lumina-30-overview/index-ja.html#top">概要</a>
<a href="https://lumina-30.github.io/Lumi30-Index/index-ja.html#top">索引</a>
<a href="https://lumina-30.github.io/lumina30-incident-review/index-ja.html#top">事故レビュー</a>
<a href="https://lumina-30.github.io/lumina30-public-reference/index-ja.html">公開参照</a>
<a href="index.html">英語版</a>
<a href="https://github.com/lumina-30/Lumi30-Public-Record">GitHubソース</a>
</div></div>
<main id="top">
<header class="hero">
<div class="kicker">真正性確認レイヤー</div>
<h1>Lumi30 公開記録</h1>
<p class="lead">Core Canon PDFのハッシュ整合性だけを扱う公開記録です。記録同一性を保管するもので、教義、政策、義務、認証、承認を作りません。</p>
</header>
<div class="grid">
<section class="card"><h2>このrepoを使う場合</h2><ul><li>Core Canon PDFのハッシュ同一性が必要な場合。</li><li>固定公開記録を確認する場合。</li><li>固定正典と可変的な補助資料を区別する場合。</li></ul></section><section class="card"><h2>このrepoとして扱わないもの</h2><ul><li>最初に読む概念入口ではありません。</li><li>認証・準拠手続ではありません。</li><li>政策、教義、運用承認のレイヤーではありません。</li></ul></section>
</div>
<section class="card" id="routes">
<h2>次に開く場所</h2>
<div class="route-list">
<a class="route" href="https://github.com/lumina-30/Lumi30-Public-Record/blob/main/README.md"><strong>READMEソースを開く</strong><span>真正性確認の範囲と引用導線を確認します。</span></a>
<a class="route" href="https://lumina-30.github.io/Lumi30-PDF-Archive/index-ja.html"><strong>PDFアーカイブを開く</strong><span>記録同一性を確認した後、安定PDFを取得します。</span></a>
<a class="route" href="https://lumina-30.github.io/Lumi30-Index/index-ja.html#top"><strong>索引へ戻る</strong><span>repo群全体の導線へ戻ります。</span></a>
</div>
</section>
<section class="card" id="source-role">
<h2>ソース本文の扱い</h2>
<p>Markdownやテキストファイルは、本文保管、検索到達性、既存リンク維持、ソース確認、差分確認のために残します。読者向けの入口・移動・戻り導線には、このHTML入口を優先します。</p>
</section>
<footer>
<p>LUMINA-30境界参照ネットワーク。非拘束・非認証・非指令型の公開参照資料です。</p>
</footer>
</main>
<script>
/* L30_THEME_FALLBACK_RUNTIME_BEGIN */
(function(){
var root = document.documentElement;
var select = document.getElementById('l30-theme-select');
if (!select) return;
var saved = 'auto';
try {
var stored = localStorage.getItem('l30-color-theme');
if (stored === 'light' || stored === 'dark') saved = stored;
} catch (e) {}
select.value = saved;
function applyTheme(theme) {
if (theme === 'light' || theme === 'dark') {
root.setAttribute('data-l30-theme', theme);
try { localStorage.setItem('l30-color-theme', theme); } catch (e) {}
} else {
root.removeAttribute('data-l30-theme');
try { localStorage.removeItem('l30-color-theme'); } catch (e) {}
}
}
select.addEventListener('change', function(){ applyTheme(select.value); });
})();
/* L30_THEME_FALLBACK_RUNTIME_END */
</script>
</body>
</html>