CINXE.COM

AFC Women's Champions League 2024/25

<!doctype html><html lang="en"><head><meta charset="utf-8"><meta content="IE=edge" http-equiv="X-UA-Compatible"><meta content="width=device-width,initial-scale=1" name="viewport"><meta content="#372C76" name="theme-color"><link href="/apple-touch-icon.png?v=3" rel="apple-touch-icon" sizes="180x180"/><link href="/favicon-32x32.png?v=3" rel="icon" sizes="32x32" type="image/png"/><link href="/favicon-16x16.png?v=3" rel="icon" sizes="16x16" type="image/png"/><link href="/favicon.ico?v=3" rel="icon" sizes="16x16"/><link crossorigin="use-credentials" href="/site.webmanifest?v=3" rel="manifest"/><script async src="https://www.googletagmanager.com/gtag/js?id=G-7K62MZYNR4"></script><script>window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-7K62MZYNR4');</script><script>var gigyaLocale = 'en'; var gigyaOrigin = 'web'; var url_en_1 = '/aclelite_fantasy'; var url_en_2 = '/aclelite_matchpredictor'; var url_en_3 = '/acltwo_matchpredictor'; var url_en_4 = '/aq_matchpredictor'; var url_ar_1 = '/aclelite_fantasy_ar'; var url_ar_2 = '/aclelite_matchpredictor_ar'; var url_ar_3 = '/acltwo_matchpredictor_ar'; var url_ar_4 = '/aq_matchpredictor_ar'; if (/(Mac)/i.test(navigator.platform)) { gigyaOrigin += "-mac"; } else if (/(iPhone|iPad)/i.test(navigator.platform)) { gigyaOrigin += "-ios"; } else if (/Win/i.test(navigator.platform)) { gigyaOrigin += "-win"; } else { gigyaOrigin += "-other"; } var gigyaScreen = function (screenSet, startScreen, showBlockerInfo, options) { if (window.location.href.match(/[\.\/]?fantasy[\.\/]?/) !== null) { gigyaOrigin += '-fantasy'; } else if (window.location.href.match(/[\.\/]?predictor[\.\/]?/) !== null) { gigyaOrigin += '-predictor'; } else { gigyaOrigin.replace('-predictor',''); gigyaOrigin.replace('-fantasy',''); } fetch(window.app.config.globalProperties.apiUrl + '/v2/country') .then(function (response) { return response.json(); }) .then(function (data) { if (data.country === 'CN') { if (showBlockerInfo) { gigya.accounts.showScreenSet({ screenSet: 'afc-loginregistration', startScreen: 'blocked', lang: gigyaLocale, authFlow: 'popup', redirectURL: null }); } return; } gigya.accounts.showScreenSet({ screenSet: screenSet, startScreen: startScreen, lang: gigyaLocale, authFlow: 'popup', redirectURL: null, ...options }); }); }; var gigyaLoginScreen = function () { return gigyaScreen('afc-loginregistration', 'gigya-login-screen', true, { onAfterScreenLoad: function (e) { if (e.currentScreen === 'gigya-register-screen') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); } } }); }; function fillTeamsDropDown() { var currentFavTeams = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_teams; fetch(window.app.config.globalProperties.apiUrl + '/sportdb-connector/api/v1/favourite/teams?locale=' + gigyaLocale) .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_teams[' + i + '].code')[0]) { let currentFavTeamCode = currentFavTeams && currentFavTeams[i] && currentFavTeams[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); let teams = new Map(); data.data?.forEach(team => { let teamCode = team.contestantName + '_' + team.gender; let teamName = team.contestantName; if (team.contestantName !== team.country || team.gender === 'W') { teamName += ' ' + (team.gender === 'W' ? 'Women' : 'Men'); } teams.set(teamCode, teamName); }); for (let [teamCode, teamName] of teams) { let isSelected = currentFavTeamCode === teamCode; elem.options.add(new Option(teamName, teamCode, isSelected, isSelected)); } elem.setAttribute('data-filled', '1'); } }); } function fillClubsDropDown() { var currentFavClubs = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_clubs; fetch(window.app.config.globalProperties.apiUrl + '/api/sportsData/getTeamsByCountry?locale=' + gigyaLocale) .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_clubs[' + i + '].code')[0]) { let currentFavClubCode = currentFavClubs && currentFavClubs[i] && currentFavClubs[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); data.forEach(team => { let isSelected = currentFavClubCode === team.code + '_' + team.country; elem.options.add(new Option(team.name.toUpperCase() + ' (' + team.country + ')', team.code + '_' + team.country, isSelected, isSelected)); }); elem.setAttribute('data-filled', '1'); } }); } function fillCompetitionsDropDown() { var currentFavComps = JSON.parse(localStorage.getItem('gigyaProfile'))?.data?.favourite_competitions; fetch(window.app.config.globalProperties.apiUrl + '/api/sportsData/getCompetitions') .then(function (response) { return response.json(); }) .then(function (data) { let i = 0; let elem = null; while (elem = document.getElementsByName('data.favourite_competitions[' + i + '].code')[0]) { let currentFavCompCode = currentFavComps && currentFavComps[i] && currentFavComps[i].code; i++; if (elem.getAttribute('data-filled')) { continue; } while (elem.options.length > 0) { elem.options.remove(0); } elem.options.add(new Option('------', null, true, false)); data.forEach(team => { if (!team.national) { return; } let isSelected = currentFavCompCode === team.id; let teamName = team.locales[gigyaLocale] || team.display; elem.options.add(new Option(teamName, team.id, isSelected, isSelected)); }); elem.setAttribute('data-filled', '1'); } }); } function gigyaShow(className) { document.querySelectorAll('.' + className).forEach(function (e) { e.style.display = 'flex'; }); } function gigyaHide(className) { document.querySelectorAll('.' + className).forEach(function (e) { e.style.display = 'none'; }); } var observer = null; var userData = JSON.parse(localStorage.getItem('gigyaProfile')); var gigyaProfileScreen = function () { gigya.accounts.showScreenSet({ screenSet: 'afc-profile', startScreen: 'gigya-update-profile-screen', lang: gigyaLocale, authFlow: 'popup', redirectURL: null, onAfterScreenLoad: function (e) { if (e.currentScreen === 'gigya-update-profile-screen') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); observer = new MutationObserver(function (mutations) { mutations.forEach(mutation => { if (mutation.addedNodes.length && mutation.addedNodes[0].nodeName === 'DIV' && mutation.addedNodes[0].className === 'gigya-array-template') { fillCompetitionsDropDown(); fillClubsDropDown(); fillTeamsDropDown(); } }); }); observer.observe(document.getElementById('gigya-profile-form'), {childList: true, subtree: true}); } }, onAfterSubmit: function (e) { if (e.form === 'gigya-profile-form' && e.data) { localStorage.setItem('gigyaProfile', JSON.stringify({ uid: userData.uid, data: e.data || userData.data, profile: e.profile || userData.profile, subscriptions: e.subscriptions || userData.subscriptions })); } else if (e.data) { } }, }); }; var gigyaLogout = function () { gigya.accounts.logout(); localStorage.removeItem('gigyaProfile'); gigyaHide('gigya_profile'); gigyaShow('gigya_login'); }; function gigyaDelete() { console.log('deleting account ...'); let userData = JSON.parse(localStorage.getItem('gigyaProfile')); gigyaLogout(); fetch(window.app.config.globalProperties.apiUrl + '/v1/sap/delete?uid=' + userData.uid) .then(function (response) { console.log(response); document.location.href = document.location.href; }); } async function gigyaPrepare() { if (window.location.href.match(/\/[a-z]{2}\//)) { gigyaLocale = window.location.href.match(/\/[a-z]{2}\//)[0].substr(1, 2); } else { gigyaLocale = 'en'; } await gigya.hasSession().then(function (res) { if (!res) { localStorage.removeItem('gigyaProfile'); userData = null; gigyaHide('gigya_profile'); gigyaShow('gigya_login'); } else { gigyaHide('gigya_login'); gigyaShow('gigya_profile'); } }); } // IMPORTANT: window.__gigyaConf property must be defined BEFORE gigya.js is included // eslint-disable-next-line no-underscore-dangle window.__gigyaConf = { autoLogin: true, sessionExpiration: -2, onGigyaServiceReady: function () { console.log('global onGigyaServiceReady'); elem = document.createElement('script'); elem.setAttribute('src', 'https://cdn.gigya-ext.com/screenset-validation.min.js'); elem.setAttribute('type', 'text/javascript'); elem.setAttribute('defer', true); document.body.appendChild(elem); gigyaPrepare(); gigya.accounts.addEventHandlers({ onLogin: function (r) { gigyaHide('gigya_login'); gigyaShow('gigya_profile'); gigya.accounts.getAccountInfo( { include: 'subscriptions', callback: function (accountInfoRet) { localStorage.setItem('gigyaProfile', JSON.stringify({ uid: r.UID, data: r.data, profile: r.profile, subscriptions: accountInfoRet.subscriptions })); userData = JSON.parse(localStorage.getItem('gigyaProfile')); } } ); }, onLogout: function (r) { }, }); const popupName = 'afc_popup2_timestamp'; const popupInterval = 72; // hours const lastPopupTimestamp = localStorage.getItem(popupName); const userTimestamp = new Date().getTime(); const timeDiffInMs = (userTimestamp - lastPopupTimestamp); const timeDiffInHours = timeDiffInMs / (1000 * 60 * 60); let showPopupForLoggedInUsers = true; if (userData?.uid && userData?.subscriptions?.afc?.email?.isSubscribed && userData?.subscriptions?.afc?.partners?.email?.isSubscribed) { showPopupForLoggedInUsers = false; } if (userData?.uid && userData?.data?.do_not_show_popup) { showPopupForLoggedInUsers = false; } showPopupForLoggedInUsers = true; // fixed for image-slider instead of newsletter popup if (window.app.config.globalProperties.enableCrmPopup === 'true' && (lastPopupTimestamp === null || timeDiffInHours > popupInterval) && !window.location.href.match(/\/webview\//) && showPopupForLoggedInUsers) { console.info('popup fired'); //var gigyaLocale = window.location.href.match(/\/[a-z]{2}\//)[0].substr(1, 2); /* if (window.app.config.globalProperties.nodeEnv === 'production') { // eslint-disable-next-line no-undef gigyaScreen('AFC-LiteRegistrationProd', 'gigya-subscribe-with-email-screen-prod', false, {lang: gigyaLocale}); } else { // eslint-disable-next-line no-undef gigyaScreen('AFC-LiteRegistrationNonProd', 'gigya-subscribe-with-email-screen-non-prod', false, {lang: gigyaLocale}); } */ } }, validation: { // formData contains all information user has entered // eventType is either "change" or "submit" // callback is optional, you can use it for asynchronous validation or just use return // Validate each screen separately // eslint-disable-next-line no-unused-vars // PROD Final ScreenSets 'gigya-subscribe-with-email-screen-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, // PROD (DEV/STG) ScreenSets 'gigya-subscribe-with-email-fixed-screen-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, // NON-PROD (DEV/STG) ScreenSets 'gigya-subscribe-with-email-fixed-screen-non-prod': (formData, eventType, callback) => { const errors = {}; // Make checkbox mandatory if (!formData['subscriptions.afc.email.isSubscribed']) { // Checkboxes don't have error messages. errors['subscriptions.afc.email.isSubscribed'] = true; } // You can return errors OR use callback for validation via AJAX. // return errors; eventType.addEventListener('change', callback(errors), false); }, }, };</script><script defer="defer" lang="javascript">var gigyaLoader = setInterval(function () { if (!window.app || !window.app.config) { return; } clearInterval(gigyaLoader); var elem = document.createElement('script'); elem.setAttribute('src', 'https://cdns.eu1.gigya.com/js/gigya.js?apikey=' + window.app.config.globalProperties.gigyaApiKey); elem.setAttribute('type', 'text/javascript'); elem.setAttribute('defer', true); document.body.appendChild(elem); }, 200);</script><script defer="defer" src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/4.1.1/lazysizes.min.js"></script><script defer="defer" type="module" src="/js/runtime.15cf72f1.js"></script><script defer="defer" type="module" src="/js/442.45916f72.js"></script><script defer="defer" type="module" src="/js/app.408c997a.js"></script><script defer="defer" type="module" src="/js/basic.954fb259.js"></script><script defer="defer" type="module" src="/js/basicRTL.45a83fe3.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league.2eb2a843.js"></script><script defer="defer" type="module" src="/js/club-afc-cup.6932fce1.js"></script><script defer="defer" type="module" src="/js/club-brand.0c6c1cc6.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-cup.efd4757b.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-world-cup.89f86ac6.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-world-cup-final.002a1cbc.js"></script><script defer="defer" type="module" src="/js/national-afc-u17-asian-cup.b40d4291.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-cup-qatar-2023.460e0302.js"></script><script defer="defer" type="module" src="/js/national-afc-u20-asian-cup.57e16d4f.js"></script><script defer="defer" type="module" src="/js/national-afc-beach-soccer-asian-cup.838a8376.js"></script><script defer="defer" type="module" src="/js/national-afc-asian-qualifiers.7035cce8.js"></script><script defer="defer" type="module" src="/js/national-afc-u23-asian-cup.16ba6fc5.js"></script><script defer="defer" type="module" src="/js/national-afc-u17-womens-asian-cup.86b0842f.js"></script><script defer="defer" type="module" src="/js/national-afc-futsal-asian-cup.ed8aef4e.js"></script><script defer="defer" type="module" src="/js/club-afc-womens-champions-league.b624150f.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league-elite.e036e8dd.js"></script><script defer="defer" type="module" src="/js/club-afc-champions-league-two.7c8108c9.js"></script><script defer="defer" type="module" src="/js/club-afc-challenge-league.a5307cd3.js"></script><script defer="defer" type="module" src="/js/national-afc-womens-asian-cup.5a54bb5e.js"></script><script defer="defer" type="module" src="/js/national-afc-fifa-womens-world-cup.2d96df55.js"></script><script defer="defer" type="module" src="/js/national-afc-u20-womens-asian-cup.15adab70.js"></script><script defer="defer" type="module" src="/js/neutral.8c21df59.js"></script><link href="/css/442.966d3f2057454714.css" rel="stylesheet"><link href="/css/app.966d3f2057454714.css" rel="stylesheet"><link href="/css/basic.966d3f2057454714.css" rel="stylesheet"><link href="/css/basicRTL.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-champions-league.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-brand.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-fifa-world-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-fifa-world-cup-final.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-u17-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-asian-cup-qatar-2023.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-u20-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-beach-soccer-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-asian-qualifiers.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-u23-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-u17-womens-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-futsal-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-womens-champions-league.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-champions-league-elite.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-champions-league-two.966d3f2057454714.css" rel="stylesheet"><link href="/css/club-afc-challenge-league.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-womens-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-fifa-womens-world-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/national-afc-u20-womens-asian-cup.966d3f2057454714.css" rel="stylesheet"><link href="/css/neutral.966d3f2057454714.css" rel="stylesheet"><script defer="defer" src="/js/runtime-legacy.5c9c327a.js" nomodule></script><script defer="defer" src="/js/9804-legacy.e5c5e5c2.js" nomodule></script><script defer="defer" src="/js/app-legacy.a22a481d.js" nomodule></script><script defer="defer" src="/js/basic-legacy.954fb259.js" nomodule></script><script defer="defer" src="/js/basicRTL-legacy.45a83fe3.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-legacy.2eb2a843.js" nomodule></script><script defer="defer" src="/js/club-afc-cup-legacy.6932fce1.js" nomodule></script><script defer="defer" src="/js/club-brand-legacy.0c6c1cc6.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-cup-legacy.efd4757b.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-world-cup-legacy.89f86ac6.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-world-cup-final-legacy.002a1cbc.js" nomodule></script><script defer="defer" src="/js/national-afc-u17-asian-cup-legacy.b40d4291.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-cup-qatar-2023-legacy.460e0302.js" nomodule></script><script defer="defer" src="/js/national-afc-u20-asian-cup-legacy.57e16d4f.js" nomodule></script><script defer="defer" src="/js/national-afc-beach-soccer-asian-cup-legacy.838a8376.js" nomodule></script><script defer="defer" src="/js/national-afc-asian-qualifiers-legacy.7035cce8.js" nomodule></script><script defer="defer" src="/js/national-afc-u23-asian-cup-legacy.16ba6fc5.js" nomodule></script><script defer="defer" src="/js/national-afc-u17-womens-asian-cup-legacy.86b0842f.js" nomodule></script><script defer="defer" src="/js/national-afc-futsal-asian-cup-legacy.ed8aef4e.js" nomodule></script><script defer="defer" src="/js/club-afc-womens-champions-league-legacy.b624150f.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-elite-legacy.e036e8dd.js" nomodule></script><script defer="defer" src="/js/club-afc-champions-league-two-legacy.7c8108c9.js" nomodule></script><script defer="defer" src="/js/club-afc-challenge-league-legacy.a5307cd3.js" nomodule></script><script defer="defer" src="/js/national-afc-womens-asian-cup-legacy.5a54bb5e.js" nomodule></script><script defer="defer" src="/js/national-afc-fifa-womens-world-cup-legacy.2d96df55.js" nomodule></script><script defer="defer" src="/js/national-afc-u20-womens-asian-cup-legacy.15adab70.js" nomodule></script><script defer="defer" src="/js/neutral-legacy.8c21df59.js" nomodule></script><meta property="twitter:card" content="summary_large_image"> <meta property="twitter:title" content="AFC Women&#039;s Champions League"> <meta property="twitter:image" content="https://assets.the-afc.com/afc_bg.jpg?d=500x300"> <meta property="twitter:description" content="The official AFC site provides news, videos, photos and match results of the AFC Women&#039;s Champions League the continental club football tournament that determines the undisputed champions of Asia."> <meta property="twitter:site" content="@afc"> <meta property="twitter:creator" content="@afc"> <meta property="twitter:domain" content="www.the-afc.com"> <meta property="og:title" content="AFC Women&#039;s Champions League"> <meta property="og:description" content="The official AFC site provides news, videos, photos and match results of the AFC Women&#039;s Champions League the continental club football tournament that determines the undisputed champions of Asia."> <meta property="og:type" content="website"> <meta property="og:url" content="/en/club/afc_womens_club_championship/home.html"> <meta property="og:site_name" content="the-AFC"> <meta property="og:locale" content="en-GB"> <meta property="og:image" content="https://assets.the-afc.com/afc_bg.jpg?d=500x300"> <meta property="og:image:width" content="1600"> <meta property="og:image:height" content="900"> <meta property="og:image:type" content="jpg"> <title>AFC Women&#039;s Champions League 2024/25</title> <meta name="description" content="AFC Women&#039;s Champions League 2024/25"> <link rel="alternate" hreflang="ar" href="https://www.the-afc.com/ar/club/afc_womens_champions_league/home.html"/> </head><body><div id="app"></div><img class='pixel' src='/pixel/en/club/afc_womens_champions_league/home.html.png'/> <h1 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_club_championship/home.html">AFC Women's Champions League - Home</a></h1> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Article", "name": "AFC Women's Champions League - Home", "author": { "@type": "Organization", "url": "https://www.the-afc.com", "name": "The AFC" }, "image": "https://assets.the-afc.com/afc_bg.jpg?d=500x300", "headline": "AFC Women's Champions League - Home", "isAccessibleForFree": true, "datePublished": "2024-06-14" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "BreadcrumbList", "name": "AFC Women's Champions League Hero", "itemListElement": [ { "@type": "ListItem", "name": "Jafari credits Bam Khatoon resilience for historic win", "image": "https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/Bam-post-match.jpg", "url": "www.the-afc.com/en/club/afc_womens_champions_league.html/news/jafari-credits-bam-khatoon-resilience-for-historic-win", "description": "<div>Pathum Thani: Head coach Marziyeh Jafari praised Bam Khatoon\u2019s resilience after they sealed a 2-1 win over Thailand\u2019s College of Asian Scholars in their AFC Women\u2019s Champions League 2024/25 Group B tie on Saturday.</div>", "position": 1 }, { "@type": "ListItem", "name": "Urawa\u2019s Kusunose eyeing another title; Taichung\u2019s Lu demands more", "image": "https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Match/Naoki-Kusunose.jpg", "url": "www.the-afc.com/en/club/afc_womens_champions_league.html/news/urawa\u2019s-kusunose-eyeing-another-title-taichung\u2019s-lu-demands-more", "description": "<div>Ho Chi Minh: Head coach Naoki Kusonose is dreaming big after his Urawa Red Diamonds Ladies completed their AFC Women's Champions League\u2122 2024/25 Group C campaign with maximum points.</div>", "position": 2 } ] }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "WebPageElement", "name": null, "description": "<br>" }</script> <p class="seo-footer"><a href="www.the-afc.com/en/more/photo/3029573.html">www.the-afc.com/en/more/photo/3029573.html</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/AFCHome/ScreenSets/Newsletter_PopUp_Small2.png"></p> <p class="seo-footer"><strong class="seo-footer">afc-newsletter</strong></p> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null, "image": "https://assets.the-afc.com/AFCHome/ScreenSets/Newsletter_PopUp_Small2.png" }</script> <h2 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_club_championship/news.html">News</a></h2> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/jafari-credits-bam-khatoon-resilience-for-historic-win">Jafari credits Bam Khatoon resilience for historic win</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/Bam-post-match.jpg"></p> <h4 class="seo-footer">Jafari credits Bam Khatoon resilience for historic win</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Head coach Marziyeh Jafari praised Bam Khatoon’s resilience after they sealed a 2-1 win over Thailand’s College of Asian Scholars in their AFC Women’s Champions League 2024/25 Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The Iranian side's triumph was sealed in dramatic fashion with Zahra Ghanbari scoring the winner in the second minute of added time.</div></div> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/urawa’s-kusunose-eyeing-another-title-taichung’s-lu-demands-more">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Match/Naoki-Kusunose.jpg"></p> <h4 class="seo-footer">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</h4> <p class="seo-footer"><strong class="seo-footer">Ho Chi Minh: Head coach Naoki Kusonose is dreaming big after his Urawa Red Diamonds Ladies completed their AFC Women's Champions League™ 2024/25 Group C campaign with maximum points.</strong></p> <div class="seo-footer"><div>An own goal from Chuong Thi Kieu in the first half and a Fuka Tsunoda strike six minutes into the second half paved the way for Urawa to achieve their third straight victory to finish top of the group.</div><div><br></div><div>Having already taken the team all the way in the AFC Women’s Club Championship™ 2023 title, Kusunose is targeting a successful run in this inaugural competition.&nbsp;</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/973d5e87-bfed-49c0-bc22-d26769010a44.jpg?v=20241012170142"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/616c43e4-e820-4471-944a-d874abc833e7.jpg?v=20241012170059"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a9525766-bd7f-4a77-8376-9ebc59ebe115.jpg?v=20241012133409"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a8bdf69c-f19c-4bcd-a585-8dcd87a4c9b0.jpg?v=20241012125648"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/awcl-knockout-stage-cast-finalised">#AWCL knockout stage cast finalised</a></h3> <p class="seo-footer">Sat, 12 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Assets/Trophy/AAP_3122.jpg"></p> <h4 class="seo-footer">#AWCL knockout stage cast finalised</h4> <p class="seo-footer"><strong class="seo-footer">Kuala Lumpur: The inaugural AFC Women's Champions League™ 2024/25 moves to the next chapter after the completion of the group stage on Saturday confirmed the quarter-finalists.</strong></p> <div class="seo-footer"><div>The quarter-finals are scheduled to take place on March 22 and 23, 2025 with the four pairings determined by a knockout stage draw while the single leg semi-finals and final will be played in a centralised format from May 21 to 23, 2025.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Knockout_stage_Cast_/Urawa-Red-Diamonds-Ladies-1.JPG"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Album/CAS-BAM-1.jpg"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/group-b-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Bam---2nd-goal.jpg"></p> <h4 class="seo-footer">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Bam Khatoon FC of Islamic advanced to the AFC Women’s Champions League™ 2024/25 quarter-finals after a 2-1 win with Thailand’s College of Asian Scholars in their final Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The win secured the Iranian side&nbsp; second spot behind Melbourne City FC of Australia.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Album/Urawa-Red-Diamonds-v-Ho-Chi-Minh-1.JPG"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/group-c-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie">Group C: Urawa Red Diamonds Ladies (JPN) 2-0 Ho Chi Minh City Women’s FC (VIE)</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Match/Urawa-Red-Diamonds-v-Ho-Chi-Minh-1.jpg"></p> <h4 class="seo-footer">Group C: Urawa Red Diamonds Ladies (JPN) 2-0 Ho Chi Minh City Women’s FC (VIE)</h4> <p class="seo-footer"><strong class="seo-footer">Ho Chi Minh: Japan’s Urawa Red Diamonds Ladies stayed perfect after defeating Ho Chi Minh City Women’s FC of Vietnam 2-0 in their final AFC Women's Champions League™ 2024/25 Group C match on Saturday.</strong></p> <div class="seo-footer"><div>With three wins out of three with 21 goals scored and none conceded, Urawa marched into the knockout stage in ominous form while this was Ho Chi Minh City’s only blip as they finished second on six points.</div></div> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": "News" }</script> <h2 class="seo-footer"><a href="www.the-afc.com/en/more/content/photos_11.html">Photos</a></h2> <h3 class="seo-footer"><a href="www.the-afc.com/en/national/asian_qualifiers.html/news/group-c-japan-1-1-australia">Group C: Japan 1-1 Australia</a></h3> <p class="seo-footer">Wed, 16 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2026-27_Asian_Qualifiers/Matches/Round_3/Matches/Group_C/MD4/Japan_v_Australia/Match/Japan-lead.JPG"></p> <h4 class="seo-footer">Group C: Japan 1-1 Australia</h4> <p class="seo-footer"><strong class="seo-footer">Saitama: Japan’s perfect start to Group C of the AFC Asian Qualifiers™ - Road to 26 was brought to an end on Tuesday as Tony Popovic’s Australia eked out a 1-1 draw with the Samurai Blue at Saitama Stadium.</strong></p> <div class="seo-footer"><div>Shogo Taniguchi’s own goal in the 58th minute had given the Australians an unlikely lead and it took an error at the other end from Cameron Burgess 14 minutes from time to secure a point for Hajime Moriyasu’s side.</div><div><p style="text-align: start"></p></div><div style="text-align: start">The draw moves the Japanese onto 10 points from four games and breaks their remarkable run of consecutive wins in qualifying for the 2026 FIFA World Cup finals, with Taniguchi’s goal the first Moriyasu’s side have conceded since the start of the preliminaries.</div><div><p style="text-align: start"></p></div><div style="text-align: start">Australia move onto five points from four games, with four of those claimed since Popovic replaced Graham Arnold as head coach late last month.</div></div> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/jafari-credits-bam-khatoon-resilience-for-historic-win">Jafari credits Bam Khatoon resilience for historic win</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/Bam-post-match.jpg"></p> <h4 class="seo-footer">Jafari credits Bam Khatoon resilience for historic win</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Head coach Marziyeh Jafari praised Bam Khatoon’s resilience after they sealed a 2-1 win over Thailand’s College of Asian Scholars in their AFC Women’s Champions League 2024/25 Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The Iranian side's triumph was sealed in dramatic fashion with Zahra Ghanbari scoring the winner in the second minute of added time.</div></div> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/urawa’s-kusunose-eyeing-another-title-taichung’s-lu-demands-more">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Match/Naoki-Kusunose.jpg"></p> <h4 class="seo-footer">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</h4> <p class="seo-footer"><strong class="seo-footer">Ho Chi Minh: Head coach Naoki Kusonose is dreaming big after his Urawa Red Diamonds Ladies completed their AFC Women's Champions League™ 2024/25 Group C campaign with maximum points.</strong></p> <div class="seo-footer"><div>An own goal from Chuong Thi Kieu in the first half and a Fuka Tsunoda strike six minutes into the second half paved the way for Urawa to achieve their third straight victory to finish top of the group.</div><div><br></div><div>Having already taken the team all the way in the AFC Women’s Club Championship™ 2023 title, Kusunose is targeting a successful run in this inaugural competition.&nbsp;</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/973d5e87-bfed-49c0-bc22-d26769010a44.jpg?v=20241012170142"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/616c43e4-e820-4471-944a-d874abc833e7.jpg?v=20241012170059"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a9525766-bd7f-4a77-8376-9ebc59ebe115.jpg?v=20241012133409"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a8bdf69c-f19c-4bcd-a585-8dcd87a4c9b0.jpg?v=20241012125648"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/awcl-knockout-stage-cast-finalised">#AWCL knockout stage cast finalised</a></h3> <p class="seo-footer">Sat, 12 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Assets/Trophy/AAP_3122.jpg"></p> <h4 class="seo-footer">#AWCL knockout stage cast finalised</h4> <p class="seo-footer"><strong class="seo-footer">Kuala Lumpur: The inaugural AFC Women's Champions League™ 2024/25 moves to the next chapter after the completion of the group stage on Saturday confirmed the quarter-finalists.</strong></p> <div class="seo-footer"><div>The quarter-finals are scheduled to take place on March 22 and 23, 2025 with the four pairings determined by a knockout stage draw while the single leg semi-finals and final will be played in a centralised format from May 21 to 23, 2025.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Knockout_stage_Cast_/Urawa-Red-Diamonds-Ladies-1.JPG"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Album/CAS-BAM-1.jpg"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/group-b-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Bam---2nd-goal.jpg"></p> <h4 class="seo-footer">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Bam Khatoon FC of Islamic advanced to the AFC Women’s Champions League™ 2024/25 quarter-finals after a 2-1 win with Thailand’s College of Asian Scholars in their final Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The win secured the Iranian side&nbsp; second spot behind Melbourne City FC of Australia.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Album/Urawa-Red-Diamonds-v-Ho-Chi-Minh-1.JPG"></p> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "Thing", "name": null }</script> <h2 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league/videos.html">Videos</a></h2> <h3 class="seo-footer"><a href="www.the-afc.com/en/national/asian_qualifiers.html/news/group-c-japan-1-1-australia">Group C: Japan 1-1 Australia</a></h3> <p class="seo-footer">Wed, 16 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2026-27_Asian_Qualifiers/Matches/Round_3/Matches/Group_C/MD4/Japan_v_Australia/Match/Japan-lead.JPG"></p> <h4 class="seo-footer">Group C: Japan 1-1 Australia</h4> <p class="seo-footer"><strong class="seo-footer">Saitama: Japan’s perfect start to Group C of the AFC Asian Qualifiers™ - Road to 26 was brought to an end on Tuesday as Tony Popovic’s Australia eked out a 1-1 draw with the Samurai Blue at Saitama Stadium.</strong></p> <div class="seo-footer"><div>Shogo Taniguchi’s own goal in the 58th minute had given the Australians an unlikely lead and it took an error at the other end from Cameron Burgess 14 minutes from time to secure a point for Hajime Moriyasu’s side.</div><div><p style="text-align: start"></p></div><div style="text-align: start">The draw moves the Japanese onto 10 points from four games and breaks their remarkable run of consecutive wins in qualifying for the 2026 FIFA World Cup finals, with Taniguchi’s goal the first Moriyasu’s side have conceded since the start of the preliminaries.</div><div><p style="text-align: start"></p></div><div style="text-align: start">Australia move onto five points from four games, with four of those claimed since Popovic replaced Graham Arnold as head coach late last month.</div></div> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/jafari-credits-bam-khatoon-resilience-for-historic-win">Jafari credits Bam Khatoon resilience for historic win</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/Bam-post-match.jpg"></p> <h4 class="seo-footer">Jafari credits Bam Khatoon resilience for historic win</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Head coach Marziyeh Jafari praised Bam Khatoon’s resilience after they sealed a 2-1 win over Thailand’s College of Asian Scholars in their AFC Women’s Champions League 2024/25 Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The Iranian side's triumph was sealed in dramatic fashion with Zahra Ghanbari scoring the winner in the second minute of added time.</div></div> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/urawa’s-kusunose-eyeing-another-title-taichung’s-lu-demands-more">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Match/Naoki-Kusunose.jpg"></p> <h4 class="seo-footer">Urawa’s Kusunose eyeing another title; Taichung’s Lu demands more</h4> <p class="seo-footer"><strong class="seo-footer">Ho Chi Minh: Head coach Naoki Kusonose is dreaming big after his Urawa Red Diamonds Ladies completed their AFC Women's Champions League™ 2024/25 Group C campaign with maximum points.</strong></p> <div class="seo-footer"><div>An own goal from Chuong Thi Kieu in the first half and a Fuka Tsunoda strike six minutes into the second half paved the way for Urawa to achieve their third straight victory to finish top of the group.</div><div><br></div><div>Having already taken the team all the way in the AFC Women’s Club Championship™ 2023 title, Kusunose is targeting a successful run in this inaugural competition.&nbsp;</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/973d5e87-bfed-49c0-bc22-d26769010a44.jpg?v=20241012170142"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-urawa-red-diamonds-ladies-jpn-2-0-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/616c43e4-e820-4471-944a-d874abc833e7.jpg?v=20241012170059"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-melbourne-city-fc-aus-4-0-kaya-fc-iloilo-phi</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a9525766-bd7f-4a77-8376-9ebc59ebe115.jpg?v=20241012133409"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind">www.the-afc.com/en/club/afc_womens_champions_league.html/video/awcl-|-taichung-blue-whale-women’s-football-team-tpe-4-0-odisha-football-club-ind</a></p> <p class="seo-footer"><img src="https://ott.the-afc.com/image/1920x1080/a8bdf69c-f19c-4bcd-a585-8dcd87a4c9b0.jpg?v=20241012125648"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/awcl-knockout-stage-cast-finalised">#AWCL knockout stage cast finalised</a></h3> <p class="seo-footer">Sat, 12 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Assets/Trophy/AAP_3122.jpg"></p> <h4 class="seo-footer">#AWCL knockout stage cast finalised</h4> <p class="seo-footer"><strong class="seo-footer">Kuala Lumpur: The inaugural AFC Women's Champions League™ 2024/25 moves to the next chapter after the completion of the group stage on Saturday confirmed the quarter-finalists.</strong></p> <div class="seo-footer"><div>The quarter-finals are scheduled to take place on March 22 and 23, 2025 with the four pairings determined by a knockout stage draw while the single leg semi-finals and final will be played in a centralised format from May 21 to 23, 2025.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/the-cast</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Knockout_stage_Cast_/Urawa-Red-Diamonds-Ladies-1.JPG"></p> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-b-college-of-asian-scholars-tha-v-bam-khatoon-fc-irn</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Album/CAS-BAM-1.jpg"></p> <h3 class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/news/group-b-college-of-asian-scholars-tha-1-2-bam-khatoon-fc-irn">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</a></h3> <p class="seo-footer">Sun, 13 Oct, 2024</p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_B/MD3/College-Bam/Bam---2nd-goal.jpg"></p> <h4 class="seo-footer">Group B: College of Asian Scholars (THA) 1-2 Bam Khatoon FC (IRN)</h4> <p class="seo-footer"><strong class="seo-footer">Pathum Thani: Bam Khatoon FC of Islamic advanced to the AFC Women’s Champions League™ 2024/25 quarter-finals after a 2-1 win with Thailand’s College of Asian Scholars in their final Group B tie on Saturday.</strong></p> <div class="seo-footer"><div>The win secured the Iranian side&nbsp; second spot behind Melbourne City FC of Australia.</div></div> <p class="seo-footer"><a href="www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie">www.the-afc.com/en/club/afc_womens_champions_league.html/photo/group-c-urawa-red-diamonds-ladies-jpn-v-ho-chi-minh-city-women’s-fc-vie</a></p> <p class="seo-footer"><img src="https://assets.the-afc.com/2024-25_AWCL/Matches/Group_Stage/Group_C/MD3/Urawa_Red_Diamonds_Ladies_v_Ho_Chi_Minh_City_Womens_FC/Album/Urawa-Red-Diamonds-v-Ho-Chi-Minh-1.JPG"></p> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "itemList", "name": "Videos" }</script> <script type="application/ld+json">{ "@context": "https://schema.org/", "@type": "SiteNavigationElement", "name": "Home", "url": "/en/club/afc_womens_champions_league/home.html" }</script> <script type="text/javascript"> const elements = document.getElementsByClassName("seo-footer"); for(let element of elements) { element.style.display = "none" } document.getElementsByClassName("pixel")[0].style.display = "none"; </script> </body></html>

Pages: 1 2 3 4 5 6 7 8 9 10