Activity

Filter

Category

Category

Search

Sensoji Temple

Taito-Ku

Beyond the lantern-lined Nakamise-dori, Sensoji rises with quiet grace, a sacred flame in the swirl of Asakusa's color. Incense curls skyward while prayers echo across centuries, tethering the old world to the now.

Cultural

Tsukiji Fish Market

Chuo-Ku

Awake before dawn, Tsukiji hums with an energy all its own ice cracking, blades flashing, voices bartering over the oceans freshest treasures. A chaotic symphony of sea and steel, where tradition slices through time, and breakfast is a revelation.

Explore the City

Team Labo

Minato-Ku

Bathed in shifting lights and pulsing sound, Team Labo offers a dreamlike descent into the infinite. Boundaries dissolve as water, color, and motion respond to your presence each step an invitation into wonder. It is not merely an exhibition, but a living canvas where technology and nature swirl in delicate harmony.

Fun

Meiji Shrine

Shibuya-Ku

In the stillness of Yoyogi' s forest, Meiji Shrine stands solemn and serene. Torii gates mark a passage not just to a shrine, but into reflection where gravel paths and sacred offerings whisper of emperors and peace.

Cultural

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
<script>
  document.addEventListener("DOMContentLoaded", function () {
    // 分页按钮:包括 page-button、上一页、下一页
    const paginationLinks = document.querySelectorAll(
      'a[href*="_page="], .w-pagination-next, .w-pagination-previous'
    );

    paginationLinks.forEach(function (link) {
      link.addEventListener("click", function () {
        // 延迟滚动,确保分页内容切换已完成
        setTimeout(function () {
          const target = document.querySelector(".fs-pagination-top");
          if (target) {
            target.scrollIntoView({
              behavior: "smooth",
              block: "start"
            });
          }
        }, 300); // 可根据页面渲染速度调整时间
      });
    });
  });
</script>