ADVERTISEMENT
970x220

Boy band &TEAM embarks on Asia tour

Published May 19, 2025 08:36 am

Japanese boy band &TEAM embarked on their first Asia tour, “2025 &TEAM Concert Tour ‘awaken The Bloodline,’” covering nine cities. 

&TEAM started the tour in Aichi, Japan on May 10 and 11. 

The concert started with a spectacular production that brought the wild energy of the wolf, the identity of &TEAM, to life. 

The concert hall was filled with thunderous cheers as the nine members appeared on stage amid a set modeled after a lunar eclipse, accompanied by wolf howls. 

&TEAM (Photos from (C)YX Labels)
&TEAM (Photos from (C)YX Labels)

&TEAM opened the concert with “Go in Blind,” the title track from their third single, featuring &TEAM’s signature smooth performance, in which they covered their eyes, oriented their senses, and synchronized their movements. 

They also performed “Dropkick,” a performance that started with Maki catching a flying nightball. It was a task that had no room for error. 

“I was nervous, but I’m glad I successfully caught it! Lune’s [fandom] wonderful reaction moved me so much.” said member Maki. His passion was palpable throughout the concert hall as he expressed his determination to repeat his success in every future performance. 

Next, in “Deer Hunter,” which garnered attention when its performance video ranked in YouTube’s Trending Music, members dressed in chic black suits performed an original dance break as a surprise. The audience erupted in cheers in response to a member’s archery choreography. 

Also, on the first day of the Aichi concerts, when asked what part he would like to try, Maki said, “I’d like to try Yuma’s part in ‘Deer Hunter’ where he falls down in front of Fuma.” Then he actually performed the part, and the audience responded enthusiastically to this fresh sight. 

In “Big suki,” which drew attention with a performance choreographed by K, the stage shifted to a retro style with the members in hats. They captivated the audience with dynamic choreography that utilized the team's strength, which is that every member is more than capable of being the center of the group. 

During the encore, Fuma expressed his gratitude for being able to embark on the much-anticipated Asia tour with Luné, saying, “It’s all thanks to Luné that we’re able to do this Asia tour. Thank you so much!” 

Harua said, “We put Luné first and prepared for this tour together with you. I’m delighted to see so many smiling faces tonight. It lets me know all our hard work and practice was worth it.” 

K said, “I want to share how grateful I am that I could become one with Luné through my favorite music. I think the group’s solidarity has also become stronger through all our practice. Let’s keep going step by step and create an &TEAM sensation in Asia!” 

&TEAM performed a double encore and kept waving at Luné until they finally left the stage. 

From Aichi, &TEAM will hold the tour in Tokyo, Bangkok, Fukuoka, Seoul, Jakarta, Taipei, Hyogo, and Hong Kong. 

Their third single “Go in Blind” was released on April 23 and achieved two wins on the Oricon Singles Chart: Weekly CD Single and Weekly Combined Single. 

The first-week sales became the highest of the year for a male artist (Oricon survey. Rankings for this year started on December 23, 2024), and the total number of units shipped has now exceeded 800,000.

Related Tags

&TEAM
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.