-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1824 lines (1630 loc) · 75.8 KB
/
Copy pathindex.html
File metadata and controls
1824 lines (1630 loc) · 75.8 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rekimoto Lab. × Ishiguro Lab. Open House 2025</title>
<meta name="description" content="日時:11/15(土) 13:00–18:00, 11/16(日) 11:00–18:00 | 場所:東京大学 本郷キャンパス 福武ホール | 懇親会:11/16(日) 18:30〜 @Capo PELLICANO 本郷店" />
<meta name="keywords" content="暦本研究室, 石黒研究室, 東京大学, 大学院, 学際情報学府, オープンハウス, Open House, 2025, Rekimoto Lab., Ishiguro Lab., The University of Tokyo" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap" rel="stylesheet" />
<!-- Favicon -->
<link rel="icon" href="img/icon.jpg" type="image/jpeg" />
<link rel="apple-touch-icon" href="img/icon.jpg" />
<style>
:root {
--bg: #f7f7f8; /* page background */
--ink: #111827; /* text */
--ink-2: #374151; /* secondary text */
--muted: #6b7280; /* muted */
--line: #e5e7eb; /* borders */
--brand: #1f2937; /* primary accent (deep gray) */
--brand-2: #4b5563; /* secondary accent */
--card: #ffffff; /* surfaces */
--ring: rgba(17,24,39,.18);
--maxw: 1200px;
--radius: 18px;
--shadow: 0 12px 32px rgba(17,24,39,.08);
--shadow-sm: 0 6px 18px rgba(17,24,39,.06);
--gap: clamp(16px, 2vw, 24px);
}
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
margin: 0; font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
color: var(--ink); background: var(--bg); line-height: 1.7; text-rendering: optimizeLegibility;
}
/* Utilities */
.container {
width: min(80%, var(--maxw));
margin-inline: auto;
box-sizing: border-box;
}
.cluster { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stack { display: grid; gap: 12px; }
.grid { display: grid; gap: var(--gap); }
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.grid.auto-fit { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: start; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: clamp(16px, 2.2vw, 24px); }
.btn {
display: inline-flex; align-items: center; justify-content: center; gap: .55em;
padding: .8rem 1.1rem; border-radius: 999px; font-weight: 800; letter-spacing: .02em; text-decoration: none;
border: 1.5px solid var(--brand); color: #fff; background: var(--brand);
transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
box-shadow: var(--shadow-sm);
}
.btn.ghost { background: #fff; color: var(--brand); }
.btn:hover, .btn:focus-visible { transform: translateY(-1px); box-shadow: var(--shadow); outline: none; }
.tag { display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--muted); padding: .25rem .6rem; border-radius: 999px; font-size: .85rem; }
.skip { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip:focus { left: 16px; top: 16px; width: auto; height: auto; z-index: 1000; background: #fff; padding: .5rem .75rem; border-radius: 8px; outline: 3px solid var(--ring); }
/* Header */
/* header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.2) blur(10px); background: color-mix(in srgb, var(--bg) 75%, #fff 25%); border-bottom: 1px solid rgba(31,41,55,.08); } */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 50;
-webkit-backdrop-filter: saturate(1.2) blur(10px);
backdrop-filter: saturate(1.2) blur(10px);
background: color-mix(in srgb, var(--bg) 75%, #fff 25%);
border-bottom: 1px solid rgba(31,41,55,.08);
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: .6rem 0;
position: relative;
}
.brand { display: grid; gap: 2px; }
.brand b { font-weight: 900; letter-spacing: .02em; }
.brand small { color: var(--muted); font-size: .85rem; }
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; flex-wrap: wrap; }
nav a { display: inline-flex; align-items: center; padding: .55rem .8rem; border-radius: 12px; color: var(--ink-2); text-decoration: none; font-weight: 700; border: 1px solid transparent; transition: background .18s ease, border-color .18s ease; }
nav a:not(.btn):hover, nav a[aria-current="page"]:not(.btn) { background: #fff; border: 1px solid var(--line); }
main {
/* モバイル向けのパディング - ヘッダーサイズに合わせて最適化 */
padding-top: 120px;
}
/* デバイスサイズに応じてパディングを調整 */
@media (min-width: 768px) {
main {
padding-top: 85px; /* タブレットサイズ */
}
}
@media (min-width: 1024px) {
main {
padding-top: 70px; /* デスクトップサイズ */
}
}
/* Header nav button align with links */
nav .btn {
padding: .55rem .8rem; /* navリンクと同じ */
border-radius: 12px; /* navリンクと同じ */
border-width: 1px; /* 枠線太さを合わせる */
box-shadow: none; /* 影を外す */
font-weight: 700; /* navリンクと同じ太さ */
}
nav .btn:hover,
nav .btn:focus-visible {
transform: none; /* 浮き上がりを無効化 */
box-shadow: none;
background: #fff;
border-color: var(--line);
outline: none;
}
/* Hero */
.hero-inner {
display: grid;
align-items: center;
gap: var(--gap);
grid-template-columns: 1.1fr;
padding: clamp(20px, 5vw, 56px) 0;
}
.eyebrow { display: inline-flex; align-items: center; gap: .6em; font-weight: 800; color: var(--brand-2); }
.title { font-size: clamp(28px, 5vw, 56px); line-height: 1.12; margin: .1em 0 .2em; font-weight: 900; letter-spacing: .01em; }
.lead { font-size: clamp(16px, 2.2vw, 20px); color: var(--ink-2); }
section { padding: clamp(20px, 4vw, 48px) 0; }
section h2 { font-size: clamp(22px, 3.2vw, 36px); margin: 0 0 .6em; letter-spacing: .01em; }
section h3 { font-size: clamp(18px, 2.4vw, 22px); margin: .2em 0 .4em; }
.list { margin: 0; padding-left: 1.1em; }
footer { border-top: 1px solid rgba(31,41,55,.08); padding: 40px 0; color: var(--ink-2); }
.prose { max-width: 70ch; }
.kbd { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; background: #111827; color: #fff; padding: .1rem .35rem; border-radius: 6px; font-size: .85em; }
/* Dialog (記事=展示詳細) */
dialog { border: 1px solid var(--line); border-radius: 16px; padding: 0; max-width: min(900px, 96vw); box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(0,0,0,.4); }
.dialog-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.dialog-body { padding: 20px 22px; }
.close { background: transparent; border: 0; font-size: 20px; padding: 6px 10px; border-radius: 10px; }
.close:focus-visible { outline: 3px solid var(--ring); }
/* 他のナビのみ白背景に(.btnを除外) */
nav a:not(.btn):hover,
nav a[aria-current="page"]:not(.btn) {
background: #fff;
border: 1px solid var(--line);
}
/* 参加登録ボタン: 通常時は等サイズ、ホバー時のみ少し大きく。色は常にブランド色 */
nav .btn,
nav .btn:hover,
nav .btn:focus-visible,
nav .btn[aria-current="page"] {
background: var(--brand);
color: #fff;
border-color: var(--brand);
box-shadow: none;
transform: none;
outline: none;
}
nav .btn,
nav .btn[aria-current="page"] {
background: var(--brand);
color: #fff;
border-color: var(--brand);
box-shadow: none;
transform: none;
outline: none;
}
/* 参加登録ボタンのホバー効果(グレー→白) */
nav .btn:hover,
nav .btn:focus-visible {
background: #fff;
color: var(--brand);
border-color: var(--line);
box-shadow: none;
transform: none;
outline: none;
}
/* ハンバーガーメニュー用のスタイル */
.menu-toggle {
display: none;
background: transparent;
border: none;
padding: 10px;
cursor: pointer;
z-index: 60;
/* コンテナ内での位置指定 */
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.menu-toggle span {
display: block;
width: 24px;
height: 2px;
margin: 5px 0;
background: var(--ink);
transition: all 0.3s ease;
}
/* モバイル向けナビゲーション */
@media (max-width: 767px) {
.menu-toggle {
display: block;
}
nav ul {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: var(--bg);
flex-direction: column;
padding: 60px 20px 20px;
z-index: 55;
border-left: 1px solid var(--line);
transition: right 0.3s ease;
box-shadow: var(--shadow);
}
nav ul.active {
right: 0;
}
nav li {
width: 100%;
}
nav a {
display: block;
width: 100%;
padding: 12px 16px;
margin: 4px 0;
}
/* ハンバーガーメニューが開いている時のアイコン */
.menu-toggle.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
/* オーバーレイ */
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 50;
}
.overlay.active {
display: block;
}
}
/* ヘッダーのブランド部分のリンクスタイル */
.brand a {
text-decoration: none;
color: inherit;
display: grid;
gap: 2px;
transition: opacity 0.2s ease;
}
.brand a:hover {
opacity: 0.8;
}
/* Brand: icon + text layout */
.brand a.brand-link { display: inline-flex; align-items: center; gap: 8px; }
.brand-text { display: grid; gap: 2px; }
.brand-icon { width: 56px; height: 56px; border-radius:128px; object-fit: cover; }
/* Footer */
footer {
border-top: 1px solid rgba(31,41,55,.08);
padding: 40px 0;
color: var(--ink-2);
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
/* タブレット以上のサイズでは2列表示 */
@media (min-width: 768px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
grid-template-areas:
"info info"
"empty empty"
"sns labs";
}
.footer-info {
grid-area: info;
}
.footer-empty {
grid-area: empty;
display: none; /* タブレットサイズでは空の列を非表示 */
}
.footer-sns {
grid-area: sns;
}
.footer-labs {
grid-area: labs;
}
}
/* PCサイズでは4列表示 */
@media (min-width: 992px) {
.footer-grid {
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-areas: "info empty sns labs";
}
.footer-empty {
display: block; /* PCサイズでは空の列を表示 */
}
}
/* デスクトップサイズでは4列に変更し、左から2列目は空に */
@media (min-width: 1024px) {
.footer-grid {
grid-template-columns: 2fr 1fr 1fr 1fr;
grid-template-areas: "info empty sns labs";
align-items: start;
column-gap: 32px;
}
.footer-info {
grid-area: info;
}
.footer-empty {
grid-area: empty;
display: block; /* 空の列を表示 */
}
.footer-sns {
grid-area: sns;
}
.footer-labs {
grid-area: labs;
}
}
/* フッターリンクのスタイル調整 */
footer a {
color: var(--ink-2);
text-decoration: none;
transition: color 0.2s ease;
}
footer a:hover {
color: var(--brand);
text-decoration: underline;
}
/* SNSリンク(アイコン+テキスト横並び) */
.socials { display: grid; gap: 10px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); text-decoration: none; line-height: 1.6; font-weight: 500; }
.social-link:hover { color: var(--brand); text-decoration: underline; }
.social-link svg { width: 20px; height: 20px; }
/* シェアボタンのスタイル */
.share-buttons {
margin-top: 12px;
}
.share-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: var(--bg);
border: 1px solid var(--line);
border-radius: 6px;
color: var(--ink-2);
text-decoration: none;
font-size: 0.9rem;
transition: all 0.2s ease;
}
.share-btn:hover {
background: var(--brand);
color: #fff;
border-color: var(--brand);
}
/* 中央寄せの大きめボタン */
.centered-btn {
width: 30%;
min-width: 200px;
margin: 0 auto;
text-align: center;
justify-content: center;
padding: 1rem 1.5rem;
font-size: 1.1rem;
}
/* モバイル向けの調整 */
@media (max-width: 767px) {
.centered-btn {
width: 80%;
}
/* モバイル表示では余白を少なくする */
.container {
width: min(90%, var(--maxw)); /* モバイルでは90%に拡大 */
}
}
/* 会場セクションのスタイル調整 - 他のセクションと統一 */
#venue {
background: var(--bg);
padding: clamp(20px, 4vw, 48px) 0;
}
/* 会場セクションの個別スタイルを削除し、グローバルなh2スタイルに準拠 */
/* 会場情報のレイアウト */
.venue-container {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
/* タブレット以上のサイズでは2列表示 */
@media (min-width: 768px) {
.venue-container {
grid-template-columns: 1fr 1fr;
gap: 32px;
}
}
/* 区切り線(モバイル表示時のみ) */
.venue-divider {
margin: 16px 0;
border: none;
border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
.venue-divider {
display: none;
}
}
/* 会場カラムのスタイル */
.venue-column {
display: flex;
flex-direction: column;
gap: 16px;
}
/* 地図コンテナ */
.map-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 8px;
margin-top: 8px;
}
.map-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
}
/* 地図キャプション */
.map-caption {
margin-top: 8px;
font-size: 0.9rem;
color: var(--muted);
}
/* 見出しの調整 */
.venue-column h3 {
margin-top: 0;
margin-bottom: 12px;
}
.venue-column h4 {
margin: 16px 0 8px;
font-size: 1.1rem;
color: var(--brand-2);
}
/* スマホ・タブレット向けに地図を大きく表示 */
@media (max-width: 767px) {
.map-container {
padding-bottom: 75%; /* 4:3 */
}
}
/* 開催概要(独立セクション)- 折りたたみ機能追加 */
#overview {
--preview-height: 80px; /* プレビュー時の高さ */
--full-height: 1000px; /* 完全表示時の高さ(適宜調整) */
}
/* 開催概要の折りたたみ式表示 - 重複を解消 */
.overview-mobile {
display: none; /* デフォルトでは非表示 */
}
.overview-desktop {
display: block; /* デフォルトではPC表示 */
}
.overview-full {
max-height: 0; /* 初期状態では閉じている */
overflow: hidden;
transition: max-height 0.5s ease; /* アニメーション時間を長めに */
}
.overview-preview {
margin: 0 0 8px;
position: relative;
}
.overview-toggle {
width: 100%;
justify-content: center;
margin-top: 12px;
padding: 8px;
border: 1px solid var(--line);
border-radius: 8px;
cursor: pointer;
}
.overview-toggle:hover {
background: var(--brand-2);
color: #fff;
}
.overview-toggle .show-less {
display: none;
}
.overview-toggle.active .show-more {
display: none;
}
.overview-toggle.active .show-less {
display: inline;
}
.toggle-icon {
width: 16px;
height: 16px;
margin-left: 8px;
transition: transform .3s ease;
}
/* アイコン切り替え用のスタイル */
.overview-toggle .up-icon {
display: none;
}
.overview-toggle.active .down-icon {
display: none;
}
.overview-toggle.active .up-icon {
display: inline;
}
/* モバイル表示時のみ折りたたみ表示、PCでは通常表示 */
@media (max-width: 767px) {
.overview-desktop {
display: none; /* PCバージョンを非表示 */
}
.overview-mobile {
display: block; /* モバイルバージョンを表示 */
}
}
/* タイトルの下に線を引く(左濃く→右薄く) */
h2::after {
content: '';
display: block;
width: 100%;
height: 2px;
background: linear-gradient(
to right,
var(--brand) 0%,
color-mix(in srgb, var(--brand) 50%, transparent) 55%,
transparent 100%
);
margin-top: 4px;
}
#demos .grid.auto-fit {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
#demos .grid.auto-fit {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
#demos .grid.auto-fit {
grid-template-columns: 1fr;
}
}
/* スケジュール末尾の注意書き */
.schedule-note {
font-size: .8rem;
color: var(--muted);
margin-top: 8px;
}
/* 講演セクションのスタイル */
#talks .grid.auto-fit {
grid-auto-rows: auto;
}
/* PC表示時のみカードの高さを揃える */
@media (min-width: 768px) {
#talks .grid.auto-fit {
grid-auto-rows: 1fr;
}
#talks .card {
height: 100%;
}
}
#talks .card {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#talks .card > * {
width: 100%;
}
.lecture-header {
margin-bottom: 16px;
}
.lecture-header h4 {
margin: 16px 0 8px;
font-size: 1rem;
font-weight: 700;
}
.lecture-meta {
display: flex;
flex-direction: column;
gap: 4px;
margin-top: 8px;
}
.lecture-date {
font-weight: 700;
color: var(--brand);
font-size: 0.9rem;
}
.lecture-venue {
color: var(--muted);
font-size: 0.85rem;
}
.lecture-speaker {
margin: 2px 0;
padding: 12px;
background: var(--bg);
border-radius: 8px;
border-left: 4px solid var(--brand);
}
.speaker-info h4 {
margin: 0 0 4px;
color: var(--brand);
font-size: 1.1rem;
}
.speaker-affiliation {
margin: 0 0 8px;
color: var(--ink-2);
font-size: 0.9rem;
}
.speaker-bio {
margin: 0;
font-size: 0.85rem;
color: var(--muted);
line-height: 1.5;
}
.lecture-content {
margin-top: 0px;
}
.lecture-content p {
margin: 0;
line-height: 1.6;
}
/* 講演カード内の「概要」見出しのスタイル */
#talks .card h4:not(.lecture-header h4):not(.speaker-info h4) {
margin: 4px 0 2px;
font-size: 1rem;
font-weight: 700;
}
.lecture-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 12px;
}
/* モバイル向け調整 */
@media (max-width: 767px) {
.lecture-meta {
flex-direction: column;
}
.lecture-speaker {
margin: 12px 0;
padding: 10px;
}
}
/* Demos: 上段=サムネ+タイトル、下段=説明+ボタン(全幅) */
.demo-card {
display: grid;
grid-template-columns: 110px 1fr;
grid-template-areas:
"thumb title"
"desc desc";
grid-auto-rows: auto;
gap: 12px;
align-items: start;
}
.teaser { grid-area: thumb; margin: 0; width: 110px; height: 110px; border-radius: 8px; overflow: hidden; background: var(--bg); display: grid; place-items: center;}
.teaser img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.demo-head { grid-area: title; align-self: start; margin-bottom: 20px; min-width: 0; }
.demo-body { grid-area: desc; display: grid; gap: 8px; align-content: start; }
.demo-body p {
display: -webkit-box;
-webkit-line-clamp: 4; /* 表示する行数 */
-webkit-box-orient: vertical;
overflow: hidden;
min-height: calc(1em * 1.6 * 4); /* 行高 × 行数(line-heightが1.6想定) */
line-height: 1.6;
}
/* 長い単語や英語でも折り返し・省略 */
.demo-head h3 {
max-width: 100%;
overflow: hidden;
overflow-wrap: anywhere; /* or word-break: break-word; */
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* 3行で切る(必要に応じて調整) */
-webkit-box-orient: vertical;
}
@media (max-width: 767px) {
.demo-head {
margin-bottom: 10px;
}
.demo-card { grid-template-columns: 88px 1fr; gap: 10px; }
.teaser { width: 88px; height: 64px; }
}
/* Coming Soon */
.coming-soon {
text-align: center;
padding: 60px 20px;
color: var(--ink-2);
}
.coming-soon p {
font-size: 1.5rem;
font-weight: 500;
margin: 0;
}
/* 展示セクション注意書き */
.demo-notice {
text-align: left;
margin-top: clamp(24px, 4vw, 42px);
color: var(--ink-2);
font-size: clamp(1rem, 2.5vw, 1.5rem);
line-height: 1.6;
}
/* タブレット以上では中央揃え */
@media (min-width: 768px) {
.demo-notice {
text-align: center;
}
}
/* Dialog: teaser + speaker meta */
.detail-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.detail-teaser { grid-area: thumb; margin: 0; width: 120px; height: 120px; border-radius: 8px; overflow: hidden; background: var(--bg); display: grid; place-items: center; }
.detail-teaser img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.detail-meta { display: grid; gap: 6px; }
.detail-title { margin: 0; font-weight: 700; }
.detail-speaker { color: var(--muted); font-size: .9rem; display: flex; gap: 8px; flex-wrap: wrap; }
#demo-members h2 {
margin: 0 0 16px;
}
.members-card {
max-width: 900px;
margin: 0 auto;
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow-sm);
padding: 24px 28px;
}
.member-list {
margin: 0; padding: 0; list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 8px 24px;
}
.member-list li {
padding: 6px 0;
border-bottom: 1px solid var(--line);
}
@media (max-width: 767px) {
.members-card { padding: 20px; }
.member-list { grid-template-columns: 1fr; gap: 6px 16px; }
}
</style>
<link rel="canonical" href="https://rkmtlab.github.io/openhouse2025/">
<meta property="og:url" content="https://rkmtlab.github.io/openhouse2025/">
<meta property="og:type" content="website">
<meta property="og:locale" content="ja_JP">
<meta property="og:site_name" content="Rekimoto Lab. × Ishiguro Lab.">
<meta property="og:title" content="Rekimoto Lab. × Ishiguro Lab. Open House 2025">
<meta property="og:description" content="日時:11/15(土) 13:00–18:00, 11/16(日) 11:00–18:00 | 場所:東京大学 本郷キャンパス 福武ホール | 懇親会:11/16(日) 18:30〜 @Capo PELLICANO 本郷店">
<meta property="og:image" content="https://rkmtlab.github.io/openhouse2025/img/icon.jpg">
<meta property="og:image:alt" content="Rekimoto Lab. × Ishiguro Lab. Open House 2025">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Rekimoto Lab. × Ishiguro Lab. Open House 2025">
<meta name="twitter:description" content="日時:11/15(土) 13:00–18:00, 11/16(日) 11:00–18:00 | 場所:東京大学 本郷キャンパス 福武ホール | 懇親会:11/16(日) 18:30〜 @Capo PELLICANO 本郷店">
<meta name="twitter:image" content="https://rkmtlab.github.io/openhouse2025/img/icon.jpg">
</head>
<body>
<a class="skip" href="#home">メインへ移動</a>
<!-- Header / Nav with hamburger menu for mobile -->
<header>
<div class="container nav">
<div class="brand">
<a href="#home" data-scroll class="brand-link" style="text-decoration: none; color: inherit;">
<img class="brand-icon" src="img/icon.jpg" alt="Site icon" width="28" height="28" />
<span class="brand-text">
<b>Rekimoto Lab. × Ishiguro Lab.</b>
<small>Open House 2025</small>
</span>
</a>
</div>
<button class="menu-toggle" aria-label="メニュー" aria-expanded="false" aria-controls="mobile-menu">
<span role="presentation"></span>
<span role="presentation"></span>
<span role="presentation"></span>
</button>
<nav aria-label="メイン">
<ul id="mobile-menu">
<li><a href="#overview" data-scroll>概要</a></li>
<li><a href="#schedule" data-scroll>スケジュール</a></li>
<li><a href="#venue" data-scroll>会場</a></li>
<li><a href="#demos" data-scroll>展示内容</a></li>
<li><a href="#talks" data-scroll>講演内容</a></li>
<li><a class="btn" href="https://rkmt-ishiguro-openhouse-2025.peatix.com" target="_blank" rel="noopener noreferrer">参加登録</a></li>
</ul>
</nav>
</div>
<div class="overlay"></div>
</header>
<!-- MAIN (single page) -->
<main id="main">
<!-- 概要 / Hero -->
<section id="home" class="hero">
<div class="container hero-inner">
<div class="stack">
<h1 class="title">Rekimoto Lab. × Ishiguro Lab.<br/>Open House 2025</h1>
<p class="lead">2025年11月15日(土)・16日(日)/東京大学本郷キャンパス<br/>Human Augmentation と Internet of Abilities (IoA) 、自律移動体技術に基づく<br/>最新の研究デモを公開します。</p>
<div class="cluster">
<a class="btn" href="https://rkmt-ishiguro-openhouse-2025.peatix.com" target="_blank" rel="noopener noreferrer">参加登録(Peatix)</a>
</div>
</div>
</div>
</section>
<!-- 開催概要(独立セクション) -->
<section id="overview">
<div class="container">
<h2>開催概要</h2>
<div class="card">
<!-- モバイル用の折りたたみ表示 -->
<div class="overview-mobile">
<p class="overview-preview">暦本研究室・石黒研究室(東京大学大学院情報学環)合同のオープンハウスを開催いたします。</p>
<button class="btn ghost overview-toggle" type="button">
<span class="show-more">続きを読む</span>
<span class="show-less">閉じる</span>
<svg class="toggle-icon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" role="img" aria-hidden="true">
<path class="down-icon" d="M6 9l6 6 6-6"></path>
<path class="up-icon" d="M6 15l6-6 6 6" style="display:none"></path>
</svg>
</button>
<div class="overview-full">
<p>暦本研究室・石黒研究室(東京大学大学院情報学環)合同のオープンハウスを開催いたします。<br>暦本研究室では、人間や人工物がそれぞれの能力を時間・空間の制約を超えて活用する、Human AugmentationやInternet of Abilities(IoA)という概念を提唱し、様々な研究を展開しています。<br>石黒研究室では、上記コンセプトに加え、自動運転技術と人との関係、自律移動体技術を活用したさまざまなアプリケーションの可能性も探索し、具現化する研究を行っています。<br>オープンハウスでは、これらの考えに基づいた研究成果を中心に、各種研究を展示いたします。<br>なお、暦本研究室は、暦本純一教授の退官に伴い、本年度をもって散会いたします。暦本研究室のオープンハウスは今年が最後となりますので、ぜひお立ち寄りいただけますと幸いです。<br><br>We are pleased to announce that the Rekimoto Laboratory and the Ishiguro Laboratory of the Interfaculty Initiative in Information Studies, The University of Tokyo, will jointly host an Open House.<br>The Rekimoto Laboratory has advanced research under the concepts of Human Augmentation and the Internet of Abilities (IoA), which seek to enable both humans and artifacts to transcend the limitations of time and space in order to fully realize their potential.<br>The Ishiguro Laboratory, in addition to engaging with these concepts, conducts research that explores and materializes the possibilities of autonomous driving technologies, human–technology interaction, and applications utilizing autonomous mobile systems.<br>At the Open House, a wide range of research achievements will be presented, with particular emphasis on projects grounded in these approaches.<br>Please be advised that the Rekimoto Laboratory will be dissolved at the end of this academic year following the retirement of Professor Jun Rekimoto. Accordingly, this year’s event will mark the final Open House of the Rekimoto Laboratory. We would be most honored by your attendance.</p>
</div>
</div>
<!-- デスクトップ用の通常表示 -->
<div class="overview-desktop">
<p>暦本研究室・石黒研究室(東京大学大学院情報学環)合同のオープンハウスを開催いたします。<br>暦本研究室では、人間や人工物がそれぞれの能力を時間・空間の制約を超えて活用する、Human AugmentationやInternet of Abilities(IoA)という概念を提唱し、様々な研究を展開しています。<br>石黒研究室では、上記コンセプトに加え、自動運転技術と人との関係、自律移動体技術を活用したさまざまなアプリケーションの可能性も探索し、具現化する研究を行っています。<br>オープンハウスでは、これらの考えに基づいた研究成果を中心に、各種研究を展示いたします。<br>なお、暦本研究室は、暦本純一教授の退官に伴い、本年度をもって散会いたします。暦本研究室のオープンハウスは今年が最後となりますので、ぜひお立ち寄りいただけますと幸いです。<br><br>We are pleased to announce that the Rekimoto Laboratory and the Ishiguro Laboratory of the Interfaculty Initiative in Information Studies, The University of Tokyo, will jointly host an Open House.<br>The Rekimoto Laboratory has advanced research under the concepts of Human Augmentation and the Internet of Abilities (IoA), which seek to enable both humans and artifacts to transcend the limitations of time and space in order to fully realize their potential.<br>The Ishiguro Laboratory, in addition to engaging with these concepts, conducts research that explores and materializes the possibilities of autonomous driving technologies, human–technology interaction, and applications utilizing autonomous mobile systems.<br>At the Open House, a wide range of research achievements will be presented, with particular emphasis on projects grounded in these approaches.<br>Please be advised that the Rekimoto Laboratory will be dissolved at the end of this academic year following the retirement of Professor Jun Rekimoto. Accordingly, this year’s event will mark the final Open House of the Rekimoto Laboratory. We would be most honored by your attendance.</p>
</div>
<div class="cluster" style="margin-top:8px; gap:8px; flex-wrap:wrap">
<span class="tag">Human Augmentation</span>
<span class="tag">Internet of Abilities</span>
<span class="tag">Demonstrations</span>
</div>
</div>
</div>
</section>
<!-- スケジュール -->
<section id="schedule">
<div class="container">
<h2>スケジュール</h2>
<div class="card two-col">