
BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
CALSCALE:GREGORIAN
PRODID:-//WordPress - MECv7.33.0//EN
X-ORIGINAL-URL:https://hokkaido.a4jp.com/
X-WR-CALNAME:Hokkaido A4JP Travel Guide
X-WR-CALDESC:Places to go in Hokkaido - Information &amp; Travel Guide
X-WR-TIMEZONE:Asia/Tokyo
BEGIN:VTIMEZONE
TZID:Asia/Tokyo
X-LIC-LOCATION:Asia/Tokyo
BEGIN:STANDARD
TZOFFSETFROM:+0900
TZOFFSETTO:+0900
TZNAME:JST
DTSTART:20260521T173108
END:STANDARD
END:VTIMEZONE
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-PUBLISHED-TTL:PT1H
X-MS-OLK-FORCEINSPECTOROPEN:TRUE
BEGIN:VEVENT
CLASS:PUBLIC
UID:MEC-aa0994c4263018600494efceae69087a@hokkaido.a4jp.com
DTSTART;TZID=Asia/Tokyo:20260605T080000
DTEND;TZID=Asia/Tokyo:20260607T180000
DTSTAMP:20230528T185439Z
CREATED:20230529
LAST-MODIFIED:20260521
PRIORITY:5
SEQUENCE:7
TRANSP:OPAQUE
SUMMARY:Hokudaisai (Hokkaido University Festival)
DESCRIPTION:\n\n\n\n\n\n\nWhen: Usually for 3 days in June starting on the first Friday of the month\n\n\n\n2026: June 5th (Friday) to 7th (Sunday)\n\n\n\n2025: June 6th (Friday) to 8th (Sunday) 2023: June 2nd (Friday) to 4th (Sunday) 2022: June 3rd (Friday) to 5th (Sunday) 2018: June 1st (Friday) to 3rd (Sunday) \n\n\n\nWhere: Hokkaido University \n\n\n\nFee: Entry is free but not the food or drinks at the event \n\n\n\nURL: https://hokudaisai.com ( https://hokudaisai.com ) \n\n\n\nURL: https://www.global.hokudai.ac.jp/blog/hokkaido-university-festival-hokudai-sai/ ( https://www.global.hokudai.ac.jp/blog/hokkaido-university-festival-hokudai-sai/ ) \n\n\n\n\n\n\n\n    モバイル機器の場合：2本指で画面をスクロールとズーム可能\n    On mobile devices: Use 2 fingers to pan & zoomCheck Current Location現在地を確認する\n    \n        function zoomOutMap(button) {\n            var mapId = button.getAttribute("data-map-id");\n            var map = L.map(mapId);\n            var zoomLevel = map.getZoom();\n            if (zoomLevel > 1) {\n                map.setZoom(zoomLevel - 1);\n                button.disabled = true; // Disable the button after zooming out\n            }\n        }\n\n        function initLeafletMap() {\n            // Initialize the map\n			console.log("Map ID: leaflet-map-6a0ec2cc56eaf");\n            var map = L.map("leaflet-map-6a0ec2cc56eaf", {\n                dragging: !L.Browser.mobile,\n                editable: true,\n                editOptions: {\n                    lineGuideOptions: null\n                },\n                scrollWheelZoom: false,\n                attributionControl: false // Disable attribution control\n            }).setView([43.07424610623604, 141.34221173010155], 8);\n\n            // Add the tile layer\n            L.tileLayer("https://{s}.tile.openstreetmap.de/{z}/{x}/{y}.png", {\n                maxZoom: 18,\n                attribution: 'A4JP Design Studio ( https://a4jp.com )'\n            }).addTo(map);\n\n            // Define the custom marker icon\n            var customIcon = L.icon({\n                iconUrl: "https://hokkaido.a4jp.com/images/icon-recommended.svg",\n                iconSize: [32, 32], // Adjust the size of the icon as needed\n                iconAnchor: [16, 32] // Adjust the icon anchor point if necessary\n            });\n			\n			// Store the reference to the current location marker\n			var currentLocationMarker = null;\n			\n            // Add the marker with custom icon\n            L.marker([43.07424610623604, 141.34221173010155], { icon: customIcon }).addTo(map);\n			\n			// Store the reference to the circle\n			var circle = null;\n\n            // Function for location found\n            function onLocationFound(e) {\n                console.log("Map ID: leaflet-map-6a0ec2cc56eaf");\n				var radius = e.accuracy;\n                var roundedRadius = Math.round(radius); // Round radius to the nearest whole number\n                \n				var marker0 =  L.marker(e.latlng).addTo(map).bindPopup("この地点から" + roundedRadius + "メートル以内にいます。  You are here.+/- " + roundedRadius + " meters", {className: "custom-popup"}).openPopup();\n\n				var assetLayerGroup = new L.LayerGroup();\n				\n				// Remove the previous current location marker if it exists\n				if (currentLocationMarker){map.removeLayer(currentLocationMarker);}\n				\n				// Add the new current location marker\n				var marker1 = currentLocationMarker = L.marker(e.latlng).addTo(map);\n\n\n\n                // Remove the previous circle if it exists\n				if (circle){map.removeLayer(circle);}\n				\n				// Add the new circle\n				var marker2 = circle = L.circle(e.latlng, radius).addTo(map);\n				\n				\n				\n				assetLayerGroup.clearLayers();\n				\n                var userLocation = e.latlng; // Location found by geolocation\n                var markerLocation = L.latLng(43.07424610623604, 141.34221173010155);\n                // Calculate a LatLngBounds that includes both locations\n                var bounds = L.latLngBounds([userLocation, markerLocation]);\n\n                // Fit the map view to the calculated bounds\n                map.fitBounds(bounds);\n				\n				// Get the current zoom level and store it in a variable\n				var currentZoom = map.getZoom();\n                \n				if (currentZoom > 1 && !map.zoomed) {\n					map.setZoom(currentZoom - 2);\n					map.zoomed = true; // Set the zoomed flag to prevent further zooming\n				}\n            }\n\n            // Event listener for getting the user's location\n            L.DomEvent.on(document.getElementById("btnGetLoc-6a0ec2cc56eaf"), "click", function(event) {\n                event.preventDefault();\n                event.stopPropagation();\n                map.locate({ setView: false, maxZoom: 18 })\n                \n                ;\n            }, { passive: true });\n\n            map.on("locationfound", onLocationFound);\n        }\n\n        if (document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll)) {\n            initLeafletMap();\n        } else {\n            document.addEventListener("DOMContentLoaded", initLeafletMap);\n        }\n    \n\n\n\n\n\n\n\n    モバイル機器の場合：2本指で画面をスクロールとズーム可能\n    On mobile devices: Use 2 fingers to pan & zoomCheck Current Location現在地を確認する\n    \n        function zoomOutMap(button) {\n            var mapId = button.getAttribute("data-map-id");\n            var map = L.map(mapId);\n            var zoomLevel = map.getZoom();\n            if (zoomLevel > 1) {\n                map.setZoom(zoomLevel - 1);\n                button.disabled = true; // Disable the button after zooming out\n            }\n        }\n\n        function initLeafletMap() {\n            // Initialize the map\n			console.log("Map ID: leaflet-map-6a0ec2cc56ec6");\n            var map = L.map("leaflet-map-6a0ec2cc56ec6", {\n                dragging: !L.Browser.mobile,\n                editable: true,\n                editOptions: {\n                    lineGuideOptions: null\n                },\n                scrollWheelZoom: false,\n                attributionControl: false // Disable attribution control\n            }).setView([43.07424610623604, 141.34221173010155], 16);\n\n            // Add the tile layer\n            L.tileLayer("https://{s}.tile.openstreetmap.de/{z}/{x}/{y}.png", {\n                maxZoom: 18,\n                attribution: 'A4JP Design Studio ( https://a4jp.com )'\n            }).addTo(map);\n\n            // Define the custom marker icon\n            var customIcon = L.icon({\n                iconUrl: "https://hokkaido.a4jp.com/images/icon-recommended.svg",\n                iconSize: [32, 32], // Adjust the size of the icon as needed\n                iconAnchor: [16, 32] // Adjust the icon anchor point if necessary\n            });\n			\n			// Store the reference to the current location marker\n			var currentLocationMarker = null;\n			\n            // Add the marker with custom icon\n            L.marker([43.07424610623604, 141.34221173010155], { icon: customIcon }).addTo(map);\n			\n			// Store the reference to the circle\n			var circle = null;\n\n            // Function for location found\n            function onLocationFound(e) {\n                console.log("Map ID: leaflet-map-6a0ec2cc56ec6");\n				var radius = e.accuracy;\n                var roundedRadius = Math.round(radius); // Round radius to the nearest whole number\n                \n				var marker0 =  L.marker(e.latlng).addTo(map).bindPopup("この地点から" + roundedRadius + "メートル以内にいます。  You are here.+/- " + roundedRadius + " meters", {className: "custom-popup"}).openPopup();\n\n				var assetLayerGroup = new L.LayerGroup();\n				\n				// Remove the previous current location marker if it exists\n				if (currentLocationMarker){map.removeLayer(currentLocationMarker);}\n				\n				// Add the new current location marker\n				var marker1 = currentLocationMarker = L.marker(e.latlng).addTo(map);\n\n\n\n                // Remove the previous circle if it exists\n				if (circle){map.removeLayer(circle);}\n				\n				// Add the new circle\n				var marker2 = circle = L.circle(e.latlng, radius).addTo(map);\n				\n				\n				\n				assetLayerGroup.clearLayers();\n				\n                var userLocation = e.latlng; // Location found by geolocation\n                var markerLocation = L.latLng(43.07424610623604, 141.34221173010155);\n                // Calculate a LatLngBounds that includes both locations\n                var bounds = L.latLngBounds([userLocation, markerLocation]);\n\n                // Fit the map view to the calculated bounds\n                map.fitBounds(bounds);\n				\n				// Get the current zoom level and store it in a variable\n				var currentZoom = map.getZoom();\n                \n				if (currentZoom > 1 && !map.zoomed) {\n					map.setZoom(currentZoom - 2);\n					map.zoomed = true; // Set the zoomed flag to prevent further zooming\n				}\n            }\n\n            // Event listener for getting the user's location\n            L.DomEvent.on(document.getElementById("btnGetLoc-6a0ec2cc56ec6"), "click", function(event) {\n                event.preventDefault();\n                event.stopPropagation();\n                map.locate({ setView: false, maxZoom: 18 })\n                \n                ;\n            }, { passive: true });\n\n            map.on("locationfound", onLocationFound);\n        }\n\n        if (document.readyState === "complete" || (document.readyState !== "loading" && !document.documentElement.doScroll)) {\n            initLeafletMap();\n        } else {\n            document.addEventListener("DOMContentLoaded", initLeafletMap);\n        }\n    \n\n\n\nGPS: 43.07424610623604, 141.34221173010155 (Google Maps) ( https://maps.app.goo.gl/ZKoCc3dNpLmMSC4S8 )\n\n\n\n\n\n\n\nHokudai-sai, the Hokkaido University Festival, is a lively 3-day event bringing together students and university clubs, allowing them to showcase their expertise and activities. It is comprised of 10 festivals, including the International Food Festival where international students and associations set up food stalls so visitors can experience cuisine from all over the world. Examples of activities include the Nire Rock Festival, Haunted House, and student performances. \n\n\n\n\n\n\n\nPlaces To Visit Around Sapporo Station \n\n\n\n\n\n\n\n\n    \n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			AGREATDREAM Language School (English & Japanese Lessons/Events) ( https://hokkaido.a4jp.com/language-lessons-in-sapporo/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Mont-bell - Akarenga Terrace ( https://hokkaido.a4jp.com/mont-bell/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Flower Space Gravel ( https://hokkaido.a4jp.com/flower-space-gravel/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Miredo Icoi Lounge + Air Garden ( https://hokkaido.a4jp.com/miredo-icoi-lounge-air-garden/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Matsuya Sapporo Ekimaedori ( https://hokkaido.a4jp.com/matsuya-sapporo-ekimaedori/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Cafe de Crie Sapporo Eki Kita Guchi Store ( https://hokkaido.a4jp.com/cafe-de-crie-sapporo-eki-kita-guchi-store/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Chikaho (Underground Walkway / Passageway) ( https://hokkaido.a4jp.com/chikaho/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Cafe Yoshimi ( https://hokkaido.a4jp.com/cafe-yoshimi/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Cafe & Bar Manhattan ( https://hokkaido.a4jp.com/cafe-bar-manhattan/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Italian Restaurant Mia Bocca, Sapporo Station North Exit ( https://hokkaido.a4jp.com/italian-restaurant-mia-bocca-sapporo-station-north-exit/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Flower Flower, Daimaru, Sapporo ( https://hokkaido.a4jp.com/flower-flower/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Sapporo Cinema Frontier ( https://hokkaido.a4jp.com/sapporo-cinema-frontier/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Rirakuru Sapporoeki Kitaguchi-ten ( https://hokkaido.a4jp.com/rirakuru-sapporoeki-kitaguchi-ten/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Sapporo Clock Tower ( https://hokkaido.a4jp.com/sapporo-clock-tower/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Pomme's Omurice ( https://hokkaido.a4jp.com/pommes-omurice/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Okonomiyaki Chibo Asty 45 ( https://hokkaido.a4jp.com/okonomiyaki-chibo-asty-45/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Sapporo Grand Hotel ( https://hokkaido.a4jp.com/sapporo-grand-hotel/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Gong Cha, Sapporo Akarenga Terrace ( https://hokkaido.a4jp.com/gong-cha-sapporo-akarenga-terrace/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			BIC CAMERA Sapporo Store ( https://hokkaido.a4jp.com/bic-camera-sapporo-store/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Saizeriya Sapporo Station North Gate ( https://hokkaido.a4jp.com/saizeriya-sapporo-station-north-gate/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Risotteria Gaku ( https://hokkaido.a4jp.com/risotteria-gaku/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			22 Percent Market: Cafe, Bakery & Interior Shop ( https://hokkaido.a4jp.com/22-percent-market-cafe-bakery-interior-shop/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Computer Shop DO-MU ( https://hokkaido.a4jp.com/computer-shop-do-mu/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n		\n		\n					\n			\n																\n					\n		\n			\n				\n						\n			Hotei Chinese Cuisine ( https://hokkaido.a4jp.com/hotei-chinese-cuisine/ )\n		\n		\n				\n									\n\n				\n							\n		\n\n	\n	\n	\n\n\n
URL:https://hokkaido.a4jp.com/events2/hokudaisai-hokkaido-university-festival/
CATEGORIES:English Post
ATTACH;FMTTYPE=image/jpeg:https://hokkaido.a4jp.com/wp-content/uploads/2022/04/MG_4538-e1527560428602.jpg
END:VEVENT
END:VCALENDAR
