Skip to content

Commit 7a91f56

Browse files
committed
Added a venue information page for the 2026 conference
1 parent 99cb30a commit 7a91f56

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
layout: conference
3+
title: "Venue information"
4+
subtitle: "Music Encoding Conference 2026"
5+
permalink: "/conference/2026/venueinfo"
6+
tag: MEC2026
7+
id: venueinfo
8+
---
9+
10+
<style>
11+
/* --- Venue Page: UNIQUE Styles ONLY --- */
12+
/*
13+
このページにしかない要素(住所ブロックと地図)のスタイルのみを定義します。
14+
基本的な文字スタイルやレイアウトはサイト共通のCSSに任せます。
15+
*/
16+
17+
/* 住所ブロックのスタイル */
18+
.venue-address {
19+
font-style: normal;
20+
background-color: #f8f9fa; /* 背景を少しグレーに */
21+
padding: 15px;
22+
border-radius: 5px;
23+
border-left: 4px solid #7f8c8d; /* 左のアクセントボーダー */
24+
margin-top: 1em;
25+
margin-bottom: 1em;
26+
}
27+
28+
/* レスポンシブな地図のコンテナ */
29+
.map-placeholder {
30+
position: relative;
31+
overflow: hidden;
32+
width: 100%;
33+
/* ↓ 3行追加 */
34+
max-width: 750px; /* 地図の最大幅を750pxに制限 */
35+
margin-left: auto; /* 中央揃え(左の余白を自動) */
36+
margin-right: auto; /* 中央揃え(右の余白を自動) */
37+
padding-top: 56.25%; /* アスペクト比 16:9 */
38+
margin-top: 1.5em;
39+
border-radius: 5px;
40+
}
41+
42+
/* 地図のiframe自体 */
43+
.map-placeholder iframe {
44+
position: absolute;
45+
top: 0;
46+
left: 0;
47+
width: 100%;
48+
height: 100%;
49+
border: 0;
50+
}
51+
</style>
52+
53+
<div class="mec2026-page">
54+
55+
<img src="/images/conference/2026/banner.png" class="img-responsive" style="margin-bottom: 1em" alt="Music Encoding Conference banner">
56+
57+
<h1>Venue Information</h1>
58+
59+
<p>
60+
Welcome to the conference! We are delighted to host this year's event at the <strong>Morito Memorial Hall</strong> (森戸記念館) of the Tokyo University of Science.
61+
</p>
62+
63+
<section id="location">
64+
<h2>Location & Map</h2>
65+
<p>The venue is located in the historic and charming Kagurazaka district.</p>
66+
67+
<address class="venue-address">
68+
Morito Memorial Hall, Tokyo University of Science<br>
69+
4-2-2 Kagurazaka, Shinjuku-ku, Tokyo
70+
</address>
71+
72+
<div class="map-placeholder">
73+
<iframe
74+
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3239.984368592685!2d139.73725331220763!3d35.70200227246616!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x60188c5a8b8f110f%3A0xe53fb3ac997bb764!2z5p2x5Lqs55CG56eR5aSn5a2mIOajruaIuOiomOW_temkqA!5e0!3m2!1sja!2sjp!4v1760493509507!5m2!1sja!2sjp"
75+
allowfullscreen="" loading="lazy"
76+
referrerpolicy="no-referrer-when-downgrade"></iframe>
77+
</div>
78+
</section>
79+
80+
<section id="access">
81+
<h2>Access Information</h2>
82+
<p>Located centrally in Tokyo, the venue is easily accessible via a comprehensive network of public
83+
transportation.</p>
84+
85+
<h3>From International Airports</h3>
86+
<ul>
87+
<li><strong>From Narita Airport (NRT):</strong> Approximately 90 minutes by train.</li>
88+
<li><strong>From Haneda Airport (HND):</strong> Approximately 60 minutes by train.</li>
89+
</ul>
90+
91+
<h3>Closest Stations</h3>
92+
<p>The closest stations to the venue are:</p>
93+
<ul>
94+
<li><strong>Toei Oedo Line:</strong> <strong>Ushigome-kagurazaka Station</strong> (A3 Exit) -
95+
<strong>3 min walk</strong></li>
96+
<li><strong>JR Line / Tokyo Metro:</strong> <strong>Iidabashi Station</strong> (JR West Exit / Metro
97+
B3 Exit) - <strong>6 min walk</strong></li>
98+
</ul>
99+
</section>
100+
</div>

0 commit comments

Comments
 (0)