2025 大阪
去大阪之前看到一位日本 Youtuber 的影片,影片的內容剛好是在住宿的旅館附近,還跑去吃了影片中拍到的一間餐廳。
影片:【4K/大阪散歩】大阪市浪速区恵美須町駅を街歩き Walking around Ebisucho Station,Osaka,Japan,2024

另一支影片有拍到住宿的旅館,還有附近街道的塗鴉。
影片:【4K/大阪散歩】大阪市浪速区恵美須町駅を街歩き Walking around Ebisucho Station,Osaka,Japan,2025


去大阪之前看到一位日本 Youtuber 的影片,影片的內容剛好是在住宿的旅館附近,還跑去吃了影片中拍到的一間餐廳。
影片:【4K/大阪散歩】大阪市浪速区恵美須町駅を街歩き Walking around Ebisucho Station,Osaka,Japan,2024

另一支影片有拍到住宿的旅館,還有附近街道的塗鴉。
影片:【4K/大阪散歩】大阪市浪速区恵美須町駅を街歩き Walking around Ebisucho Station,Osaka,Japan,2025


// html
<div class="accordion-container">
<input type="checkbox" id="chkbox-1" class="chkbox" />
<label class="accordion-title" for="chkbox-1">...</label>
<div class="accordion-content">
<div>
<p class="mb-3">...</p>
<p class="mb-3">...</p>
<p>...</p>
</div>
</div>
</div>
// css
*,
*::before,
*::after {
box-sizing: border-box;
}
.accordion-list {
max-width: 640px;
margin: 0 auto;
padding: 0.25rem;
}
.chkbox {
display: none;
}
.chkbox:checked ~ .accordion-title::after {
content: '\F2EA';
}
.chkbox:checked ~ .accordion-content {
grid-template-rows: 1fr;
}
.accordion-title {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0 1rem 0;
font-weight: bold;
font-size: 1.2rem;
cursor: pointer;
}
.accordion-title::after {
font-family: bootstrap-icons;
content: '\F4FE';
}
.accordion-content {
display: grid;
grid-template-rows: 0fr;
transition: 0.4s ease-in-out;
}
.accordion-content > div {
overflow: hidden;
}
.accordion-content p {
margin: 0;
}
p.mb-3 {
margin-bottom: 1rem;
}