Create ashihara-karate.html
· 1 year ago
d3245b90287812fb29129387d1593690118d2026
Parent:
5bfb1555d
1 file changed +909 −0
- ashihara-karate.html +909 −0
Diff
--- /dev/null +++ b/ashihara-karate.html @@ -0,0 +1,909 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Ashihara Karate Cheatsheet: Ultimate Guide to Sabaki, Strikes & Kata (Printable & Trackable)</title> + + <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>芦</text></svg>"> + + <meta name="description" content="Master Ashihara Karate with our comprehensive, interactive cheatsheet. Covers Sabaki, striking techniques (Uchi Waza, Keri Waza), blocks (Uke Waza), throws (Nage Waza), Kata, Kumite, principles, and progress tracking. Perfect for all levels. Printable."> + <meta name="keywords" content="Ashihara Karate, Ashihara Kaikan, Hideyuki Ashihara, Sabaki, Full Contact Karate, Karate techniques, Karate strikes, Karate kicks, Karate blocks, Karate throws, Karate Kata, Kumite, NIKO, learn Ashihara Karate, Ashihara basics, Ashihara guide, Ashihara cheatsheet, Karate training, Karate etiquette"> + <meta name="author" content="AI Assistant (inspired by David Veksler's Judo Cheatsheet)"> + + <!-- Open Graph / Facebook / LinkedIn --> + <meta property="og:title" content="Ashihara Karate Cheatsheet: Ultimate Interactive & Printable Guide to Sabaki & Full Contact Techniques"> + <meta property="og:description" content="Master the essentials of Ashihara Karate with this detailed, interactive, and printable cheatsheet. Explore Sabaki, strikes, blocks, throws, Kata, Kumite, core principles, training methods, and key resources. Track your progress."> + <meta property="og:type" content="article"> + <!-- <meta property="og:url" content="http://cheatsheets.davidveksler.com/ashihara_karate.html"> --> + <!-- <meta property="og:image" content="http://cheatsheets.davidveksler.com/images/ashihara-og-image.jpg"> --> + <meta property="og:image:alt" content="Stylized illustration of two Ashihara Karateka in a dynamic stance"> + <meta property="og:site_name" content="Martial Arts Cheatsheets"> + <meta property="og:locale" content="en_US"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ashihara Karate Cheatsheet: Comprehensive Guide (Printable & Trackable)"> + <meta name="twitter:description" content="Your ultimate quick guide to Ashihara Karate! Explore Sabaki, fundamentals, strikes, blocks, Kata, Kumite, mindset, etiquette, YouTube resources, and more. Track your progress and print for offline study."> + <!-- <meta name="twitter:url" content="http://cheatsheets.davidveksler.com/ashihara_karate.html"> --> + <!-- <meta name="twitter:image" content="http://cheatsheets.davidveksler.com/images/ashihara-twitter-card.jpg"> --> + <meta name="twitter:image:alt" content="Two Karateka in traditional gi practicing Ashihara techniques"> + + <!-- CSS --> + <link rel="preconnect" href="https://fonts.googleapis.com"> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Oswald:wght@400;500;600&display=swap" rel="stylesheet"> + <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"> + <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"> + <!-- Custom CSS --> + <style> + :root { + --font-primary: 'Roboto', sans-serif; + --font-headings: 'Oswald', sans-serif; + --color-bg: #f4f4f4; + --color-text: #333; + --color-primary: #0033A0; /* Ashihara Blue */ + --color-secondary: #0055CC; /* Lighter Ashihara Blue */ + --color-accent: #FFD700; /* Gold Accent */ + --color-card-bg: #ffffff; + --color-card-border: #ddd; + --color-link: #0d6efd; + --color-link-hover: #0a58ca; + --color-expand-bg: #eaf2fa; + --shadow-soft: 0 3px 8px rgba(0, 0, 0, 0.08); + --shadow-hover: 0 6px 15px rgba(0, 0, 0, 0.12); + } + + body { + background-color: var(--color-bg); + font-family: var(--font-primary); + color: var(--color-text); + padding-top: 0; + padding-bottom: 3rem; + font-size: 16px; + line-height: 1.7; + } + + h1, h2, h3, h4, h5, h6 { + font-family: var(--font-headings); + color: var(--color-primary); + font-weight: 500; + text-transform: uppercase; + letter-spacing: 0.5px; + } + + a { + color: var(--color-link); + text-decoration: none; + transition: color 0.2s ease-in-out; + } + a:hover { + color: var(--color-link-hover); + text-decoration: underline; + } + .small { font-size: 0.85em; } + .text-accent { color: var(--color-accent); } + + .hero-image-container { + background-color: var(--color-primary); + text-align: center; + padding: 2rem 0; + margin: 0; + line-height: 1; + overflow: hidden; + width: 100%; + color: white; + } + .hero-image-container .karate-kanji { + font-size: 4rem; /* Adjusted for longer Kanji */ + font-weight: bold; + font-family: 'Noto Sans JP', sans-serif; /* Example Japanese font */ + margin-bottom: 0.5rem; + } + .hero-image-container p { + font-size: 1.2rem; + color: #f0f0f0; + } + + .page-header { + padding: 2.5rem 1.5rem 3rem 1.5rem; + margin-bottom: 3rem; + text-align: center; + background-color: var(--color-primary); + color: #fff; + border-bottom: 6px solid var(--color-accent); + margin-top: 0; + } + .page-header h1 { + color: #ffffff; + font-weight: 600; + margin-bottom: 0.75rem; + font-size: 3.2rem; + display: flex; + align-items: center; + justify-content: center; + gap: 1rem; + } + .page-header h1 .karate-icon { + font-size: 0.8em; + opacity: 0.9; + color: var(--color-accent); + font-family: 'Noto Sans JP', sans-serif; + } + .page-header .lead { + color: #e0e0e0; + font-size: 1.2rem; + max-width: 750px; + margin-left: auto; + margin-right: auto; + font-family: var(--font-primary); + text-transform: none; + letter-spacing: normal; + } + + .row > * { margin-bottom: 2rem; } + + .info-card { + background-color: var(--color-card-bg); + border: 1px solid var(--color-card-border); + border-left: 5px solid var(--color-secondary); + border-radius: 0.3rem; + box-shadow: var(--shadow-soft); + height: 100%; + display: flex; + flex-direction: column; + transition: transform 0.25s ease-out, box-shadow 0.25s ease-out; + page-break-inside: avoid; + } + .info-card:hover { + transform: translateY(-5px); + box-shadow: var(--shadow-hover); + border-left-color: var(--color-accent); + } + .info-card .card-body { + padding: 1.5rem 1.75rem; + flex-grow: 1; + } + .info-card h5 { + color: var(--color-primary); + text-align: left; + margin-bottom: 1.25rem; + padding-bottom: 0.5rem; + border-bottom: 1px solid var(--color-card-border); + font-weight: 500; + font-size: 1.3rem; + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 0.6rem; + } + .info-card h5 .bi { + font-size: 1.1em; + color: var(--color-secondary); + margin-right: 0.2rem; + } + .info-card h5 a { color: inherit; text-decoration: none; } + .info-card h5 a:hover { text-decoration: underline; } + .info-card p.description, .info-card .card-text { + font-size: 1rem; + color: var(--color-text); + text-align: left; + margin-bottom: 1rem; + line-height: 1.6; + } + + .info-card ul { + padding-left: 0; + margin-bottom: 0; + list-style: none; + } + .info-card ul li:not(.form-check-li) { + padding-left: 0.5em; + margin-bottom: 0.6rem; + position: relative; + } + .info-card ul li:not(.form-check-li)::before { + content: "•"; + position: absolute; + left: -0.8em; + color: var(--color-secondary); + font-size: 1.2em; + line-height: 1; + } + + .info-card .form-check-li { + margin-bottom: 0.6rem; + padding-left: 0; + list-style: none; + } + .info-card .form-check { + margin-bottom: 0; + padding-left: 2.2em; + position: relative; + } + .info-card .form-check .form-check-input { + margin-left: -2.2em; + margin-top: 0.3em; + cursor: pointer; + } + .info-card .form-check .form-check-label { + display: inline; + cursor: pointer; + font-size: 0.98rem; + color: var(--color-text); + } + .info-card .form-check + ul, + .info-card .form-check + ol { + margin-top: 0.4rem; + margin-bottom: 0.8rem; + padding-left: 2.5rem; + } + .info-card .form-check label strong { + font-weight: 500; + } + .info-card .form-check-input:checked + .form-check-label { + color: #555; + text-decoration: line-through; + opacity: 0.7; + } + + .group-label { + font-size: 0.85em; + font-style: italic; + color: #6c757d; + margin-top: 1rem; + margin-bottom: 0.3rem; + padding-left: 0.2rem; + font-weight: 500; + } + .group-label:first-of-type { + margin-top: 0; + } + + .info-card ul ol, .expandable-content ol { + list-style: decimal; + padding-left: 2.5rem; + margin-top: 0.6rem; + margin-bottom: 0.6rem; + } + .info-card ul ol li, .expandable-content ol li { + font-size: 0.95rem; + padding-left: 0; + margin-bottom: 0.4rem; + } + .expandable-content ul:not(.list-unstyled) { + list-style: disc; + padding-left: 2.5rem; + margin-top: 0.6rem; + margin-bottom: 0.6rem; + } + .expandable-content ul:not(.list-unstyled) li { + font-size: 0.95rem; + margin-bottom: 0.4rem; + } + + .section-heading { + font-family: var(--font-headings); + font-weight: 500; + color: var(--color-secondary); + margin-top: 1.5rem; + margin-bottom: 0.6rem; + font-size: 1rem; + text-transform: uppercase; + letter-spacing: 0.5px; + border-bottom: 1px solid #eee; + padding-bottom: 0.3rem; + } + .section-heading .bi { margin-right: 0.4rem; } + + .expandable-trigger { + border-bottom: 1px dotted var(--color-primary); + cursor: pointer; + text-decoration: none; + color: var(--color-primary); + font-weight: 500; + transition: color 0.2s, border-color 0.2s; + display: inline-block; + } + .expandable-trigger:hover { + color: var(--color-link-hover); + border-bottom-color: var(--color-link-hover); + text-decoration: none; + } + .expandable-trigger .bi-chevron-down { + font-size: 0.8em; + margin-left: 0.2em; + transition: transform 0.3s ease-in-out; + display: inline-block; + } + .expandable-trigger[aria-expanded="true"] .bi-chevron-down { + transform: rotate(180deg); + } + .expandable-trigger .bi-youtube { + color: #FF0000; + font-size: 0.9em; + margin-left: 0.3em; + vertical-align: baseline; + transform: none !important; + } + .form-check-label .expandable-trigger { + font-weight: 500; + } + li:not(.form-check-li) .expandable-trigger { + font-weight: 500; + } + + + .expandable-content { + background-color: var(--color-expand-bg); + border: 1px solid var(--color-card-border); + border-radius: 0.3rem; + padding: 1rem 1.2rem; + margin-top: 0.5rem; + margin-bottom: 0.8rem; + font-size: 0.95em; + line-height: 1.6; + box-shadow: inset 0 1px 4px rgba(0,0,0,0.06); + } + .expandable-content p:last-child { margin-bottom: 0; } + .expandable-content a { font-weight: 500; } + + footer { + padding: 3rem 0 2rem 0; + font-size: 0.9em; + margin-top: 4rem; + text-align: center; + color: #6c757d; + border-top: 1px solid var(--color-card-border); + } + footer a { color: var(--color-secondary); } + footer a:hover { color: var(--color-primary); } + footer .bi { margin-right: 0.2em; } + + .disclaimer { + font-size: 0.8em; + font-style: italic; + color: #6c757d; + margin-top: 1rem; + text-align: left; + } + .karate-belt-list { + list-style: none; + padding-left: 0; + margin-top: 0.5rem; + } + .karate-belt-list li { + margin-bottom: 0.3rem; + padding: 0.2rem 0.5rem; + border-radius: 3px; + font-weight: 500; + } + + + @media (max-width: 768px) { + .hero-image-container .karate-kanji { font-size: 3rem; } + .hero-image-container p { font-size: 1rem; } + .page-header h1 { font-size: 2.5rem; } + .page-header .lead { font-size: 1.1rem; } + } + @media (max-width: 576px) { + .hero-image-container .karate-kanji { font-size: 2.5rem; } + .page-header h1 { font-size: 2rem; flex-direction: column; gap: 0.5rem; } + .page-header .lead { font-size: 1rem; } + .page-header { padding: 2rem 1rem 2.5rem 1rem; } + } + + @media print { + :root { + --color-bg: #ffffff; --color-text: #000000; --color-primary: #000000; + --color-secondary: #000000; --color-accent: #000000; --color-card-bg: #ffffff; + --color-card-border: #cccccc; --color-link: #000000; --color-expand-bg: #f0f0f0; + } + body { + background-color: white !important; color: black !important; font-size: 10pt; + padding: 1cm; line-height: 1.4; + } + h1, h2, h3, h4, h5, h6 { color: black !important; font-family: var(--font-headings), sans-serif; page-break-after: avoid; } + a { color: black !important; text-decoration: underline !important; } + a[href^="http"]::after, a[href^="//"]::after { content: " (" attr(href) ")"; font-size: 0.9em; font-weight: normal; color: #555; } + a[href^="#"]::after { content: ""; } + .expandable-trigger .bi-youtube, .btn .bi-youtube { display: none !important; } + .hero-image-container { display: none !important; } + .page-header { + background: none !important; color: black !important; border: none !important; + text-align: left !important; padding: 0 0 1cm 0 !important; margin-bottom: 1cm !important; + } + .page-header h1 { font-size: 18pt !important; justify-content: flex-start; } + .page-header .lead { font-size: 11pt !important; color: #333 !important; max-width: none; text-align: left; } + .page-header h1 .karate-icon { display: none; } + .container, .row { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; } + .row > * { width: 100% !important; float: none !important; display: block !important; padding: 0 !important; margin-bottom: 1cm !important; } + .info-card { + box-shadow: none !important; border: 1px solid var(--color-card-border) !important; + border-left: 3px solid var(--color-card-border) !important; margin-bottom: 1cm !important; page-break-inside: avoid !important; + } + .info-card:hover { transform: none !important; } + .info-card .card-body { padding: 0.5cm !important; } + .info-card h5 { border-bottom: 1px solid var(--color-card-border) !important; font-size: 12pt !important; } + .info-card h5 .bi { display: none; } + .collapse { display: block !important; visibility: visible !important; height: auto !important; } + .expandable-trigger { border-bottom: none !important; cursor: default !important; text-decoration: none !important; } + .expandable-trigger .bi-chevron-down { display: none !important; } + .expandable-content { + box-shadow: none !important; border: 1px dashed #ccc !important; + background-color: var(--color-expand-bg) !important; padding: 0.5cm !important; + } + .form-check-input { + appearance: none; -webkit-appearance: none; -moz-appearance: none; + width: 1em; height: 1em; border: 1px solid #666; vertical-align: middle; + margin-top: 0.1em; display: inline-block; position: relative; + } + .form-check-input:checked { border-color: #333; background-color: #eee; } + .form-check-input:checked::before { + content: '\2713'; display: block; text-align: center; color: #000; + font-size: 0.9em; line-height: 1em; position: absolute; top: 0; left: 0; right: 0; bottom: 0; + } + .form-check-input:checked + .form-check-label { text-decoration: line-through; opacity: 0.8; } + .btn { display: none !important; } + .info-card img.img-fluid { display: none !important; } + .karate-belt-list { display: block !important; } + .karate-belt-list li { background-color: transparent !important; color: black !important; border: 1px solid #ccc !important; } + + + footer { + border-top: 1px solid var(--color-card-border) !important; margin-top: 1cm !important; + padding: 0.5cm 0 !important; text-align: left; font-size: 8pt; color: #666; + } + footer p { margin-bottom: 0.5em; } + /* footer a[href^="http"]:not([href*="davidveksler"]) { display: none; } */ + /* footer a[href^="http"]:not([href*="davidveksler"])::after { content: ""; } */ + footer div a { display: inline-block !important; margin: 0 0.5em 0 0 !important; } + footer div a::after { content: " (" attr(href) ")"; } + footer .bi { display: none; } + ul, ol { page-break-inside: avoid; } + li { page-break-inside: avoid; } + .info-card ul li:not(.form-check-li)::before { + color: #000 !important; + } + } + </style> +</head> +<body> + + <div class="hero-image-container"> + <div class="karate-kanji">芦原会館</div> + <p>Ashihara Karate - The Fighting Karate: A Challenge for Change</p> + </div> + + <header class="page-header"> + <div class="container"> + <h1><span class="karate-icon">芦</span> Ashihara Karate Cheatsheet</h1> + <p class="lead">Your comprehensive guide to Ashihara Karate: Sabaki strategy, striking techniques (Uchi Waza, Keri Waza), blocks (Uke Waza), throws (Nage Waza), Kata, Kumite, and core principles. Navigate the essentials of this dynamic and practical karate style. Check off techniques as you master them. Printable.</p> + </div> + </header> + + <div class="container"> + <div class="row"> + + <!-- Card: Intro & Core Ashihara Concepts --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-lightbulb-fill"></i> Intro & Core Concepts</h5> + <p class="card-text">Ashihara Karate (芦原会館) is a modern, full-contact Japanese karate style founded by Kancho Hideyuki Ashihara (芦原英幸) in 1980. It evolved from Kyokushin karate, emphasizing practical application, circular movement, and the strategic principle of Sabaki.</p> + <ul> + <li><strong>Founder:</strong> Kancho Hideyuki Ashihara (1944-1995).</li> + <li><strong>Origin:</strong> Developed from Kyokushin, with influences from boxing, Muay Thai, and Jujutsu. NIKO (New International Karate Organisation) established 1980.</li> + <li><strong>Goal:</strong> Effective self-defense in realistic situations, including multiple attackers, and fostering continued personal development.</li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-concept-sabaki" role="button" aria-expanded="false" aria-controls="collapse-concept-sabaki"><strong>Sabaki (捌き) - The Core Principle</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-concept-sabaki"> + <p>Sabaki involves using circular movements to deflect or parry an attack, repositioning to the opponent's blind spot (Shikaku - 死角), and turning their power against them. It integrates offense and defense into one fluid motion. Key aspects include: + <ul> + <li>Moving to the outside of an attack.</li> + <li>Using the opponent's momentum.</li> + <li>Creating angles for counter-attacks.</li> + <li>"Punch without being punched, fell your opponent without going down yourself."</li> + </ul> + </p> + </div> + </li> + <li><strong>Full Contact (Jissen Kumite - 実戦組手):</strong> Emphasis on realistic, full-contact sparring to test techniques and spirit.</li> + <li><strong>Rational & Logical Techniques:</strong> Focus on scientifically sound and efficient body mechanics.</li> + <li><strong>Circular Movement (Enkei Undo - 円形運動):</strong> Avoiding head-on clashes by moving circularly around the opponent.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Stances, Movement & Ukemi --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="50"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-person-walking"></i> Stances (Dachi), Movement & Ukemi</h5> + <p class="card-text">Stable stances (Dachi - 立), fluid footwork (Ashi Sabaki - 足捌き), body shifting (Tai Sabaki - 体捌き), and breakfalls (Ukemi - 受身) are crucial for applying Sabaki and executing techniques effectively and safely.</p> + <p class="group-label">Common Stances (Dachi Waza - 立技):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-dachi-kumite"><label class="form-check-label" for="chk-dachi-kumite">Kumite Dachi (組手立 - Sparring Stance)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-dachi-zenkutsu"><label class="form-check-label" for="chk-dachi-zenkutsu">Zenkutsu Dachi (前屈立 - Forward Stance)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-dachi-kokutsu"><label class="form-check-label" for="chk-dachi-kokutsu">Kokutsu Dachi (後屈立 - Back Stance)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-dachi-kiba"><label class="form-check-label" for="chk-dachi-kiba">Kiba Dachi (騎馬立 - Horse Riding Stance)</label></div></li> + </ul> + <p class="group-label">Movement & Tai Sabaki (体捌き):</p> + <ul> + <li><strong>Ayumi Ashi (歩み足):</strong> Natural stepping.</li> + <li><strong>Tsugi Ashi (継ぎ足):</strong> Following foot (shuffle step).</li> + <li><strong>Okuri Ashi (送り足):</strong> Sending foot (slide step).</li> + <li><strong>Mawari Ashi (廻り足):</strong> Pivoting/turning footwork, essential for Sabaki.</li> + <li><strong>Tai Sabaki (体捌き):</strong> Body evasion and management, including pivots and shifts to create angles.</li> + </ul> + <p class="group-label">Ukemi (受身 - Breakfalls):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ukemi-ushiro-ashihara"><label class="form-check-label" for="chk-ukemi-ushiro-ashihara">Ushiro Ukemi (後ろ受身 - Rear Breakfall)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ukemi-yoko-ashihara"><label class="form-check-label" for="chk-ukemi-yoko-ashihara">Yoko Ukemi (横受身 - Side Breakfall)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ukemi-mae-mawari-ashihara"><label class="form-check-label" for="chk-ukemi-mae-mawari-ashihara">Mae Mawari Ukemi (前方回転受身 - Forward Rolling Breakfall)</label></div></li> + </ul> + <a href="https://www.youtube.com/results?search_query=ashihara+karate+stances+footwork" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Stances & Movement</a> + </div> + </div> + </div> + + <!-- Card: Striking Techniques --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="100"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-lightning-charge-fill"></i> Striking Techniques (Atemi Waza)</h5> + <p class="card-text">Ashihara Karate employs a wide range of powerful strikes delivered with hands, elbows, feet, and knees. These are often combined with Sabaki for maximum effect.</p> + <p class="group-label">Hand Strikes (Tsuki Waza - 突技 & Uchi Waza - 打技):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tsuki-seiken"><label class="form-check-label" for="chk-tsuki-seiken">Seiken Tsuki (正拳突 - Forefist Punch)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tsuki-tate"><label class="form-check-label" for="chk-tsuki-tate">Tate Tsuki (縦突 - Vertical Fist Punch)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uchi-uraken"><label class="form-check-label" for="chk-uchi-uraken">Uraken Uchi (裏拳打 - Backfist Strike)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uchi-shuto"><label class="form-check-label" for="chk-uchi-shuto">Shuto Uchi (手刀打 - Knife Hand Strike)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tsuki-shita"><label class="form-check-label" for="chk-tsuki-shita">Shita Tsuki (下突 - Inverted Punch / Uppercut to body)</label></div></li> + </ul> + <p class="group-label">Elbow Strikes (Hiji Ate - 肘当 / Empi Uchi - 猿臂打):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-hiji-age"><label class="form-check-label" for="chk-hiji-age">Age Hiji Ate (上げ肘当 - Rising Elbow Strike)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-hiji-yoko"><label class="form-check-label" for="chk-hiji-yoko">Yoko Hiji Ate (横肘当 - Side Elbow Strike)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-hiji-mawashi"><label class="form-check-label" for="chk-hiji-mawashi">Mawashi Hiji Ate (廻肘当 - Roundhouse Elbow Strike)</label></div></li> + </ul> + <p class="group-label">Kicking Techniques (Keri Waza - 蹴技):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-mae"><label class="form-check-label" for="chk-keri-mae">Mae Geri (前蹴 - Front Kick)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-mawashi"><label class="form-check-label" for="chk-keri-mawashi">Mawashi Geri (廻蹴 - Roundhouse Kick - Chusoku/Haisoku)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-yoko"><label class="form-check-label" for="chk-keri-yoko">Yoko Geri (横蹴 - Side Kick)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-ushiro"><label class="form-check-label" for="chk-keri-ushiro">Ushiro Geri (後蹴 - Back Kick)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-hiza"><label class="form-check-label" for="chk-keri-hiza">Hiza Geri (膝蹴 - Knee Strike)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-kakato"><label class="form-check-label" for="chk-keri-kakato">Kakato Geri (踵蹴 - Axe Kick / Heel Kick)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-kin"><label class="form-check-label" for="chk-keri-kin">Kin Geri (金蹴 - Groin Kick)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-keri-gedanmawashi"><label class="form-check-label" for="chk-keri-gedanmawashi">Gedan Mawashi Geri (下段廻蹴 - Low Roundhouse Kick)</label></div></li> + </ul> + <a href="https://www.youtube.com/results?search_query=ashihara+karate+strikes+kicks" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Ashihara Strikes</a> + </div> + </div> + </div> + + <!-- Card: Blocking Techniques (Uke Waza) & Sabaki Fundamentals --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-shield-shaded"></i> Blocking (Uke Waza) & Sabaki Fundamentals</h5> + <p class="card-text">Blocks (Uke Waza - 受技) in Ashihara are not just passive defenses but are integrated with Sabaki to neutralize threats and create openings for counter-attacks.</p> + + <p class="group-label">Basic Blocks (Kihon Uke - 基本受):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uke-jodan"><label class="form-check-label" for="chk-uke-jodan">Jodan Uke (上段受 - Upper Block / Head Block)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uke-soto"><label class="form-check-label" for="chk-uke-soto">Soto Uke (外受 - Outside Block)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uke-uchi"><label class="form-check-label" for="chk-uke-uchi">Uchi Uke (内受 - Inside Block)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uke-gedan"><label class="form-check-label" for="chk-uke-gedan">Gedan Barai (下段払 - Low Sweep/Parry)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-uke-shuto"><label class="form-check-label" for="chk-uke-shuto">Shuto Uke (手刀受 - Knife Hand Block)</label></div></li> + </ul> + + <p class="group-label">Sabaki Positioning Drills (基本捌き - Kihon Sabaki):</p> + <ul> + <li><strong>Mae Sabaki (前捌き):</strong> Forward Sabaki - stepping in and angling off.</li> + <li><strong>Ushiro Sabaki (後捌き):</strong> Backward Sabaki - stepping back and angling off.</li> + <li><strong>Yoko Sabaki (横捌き) / Mawari Komi (回り込み):</strong> Side Sabaki / Circular entry - moving to opponent's side/blind spot.</li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sabaki-position1"> + <label class="form-check-label" for="chk-sabaki-position1"> + Position 1 (Ichi - 一): Controlling the opponent's front hand. + </label> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sabaki-position2"> + <label class="form-check-label" for="chk-sabaki-position2"> + Position 2 (Ni - 二): Controlling the opponent's back hand. + </label> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sabaki-position3"> + <label class="form-check-label" for="chk-sabaki-position3"> + Position 3 (San - 三): Moving to the opponent's outside (back hand side). + </label> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sabaki-position4"> + <label class="form-check-label" for="chk-sabaki-position4"> + Position 4 (Shi - 四): Moving to the opponent's inside (front hand side, often leading to back). + </label> + </div> + </li> + </ul> + <p class="disclaimer">Effective Sabaki involves combining blocks with footwork (Tai Sabaki) and immediate counter-attacks.</p> + <a href="https://www.youtube.com/results?search_query=ashihara+karate+blocks+sabaki+drills" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Blocks & Sabaki Drills</a> + </div> + </div> + </div> + + <!-- Card: Throws (Nage Waza) & Basic Groundwork (Ne Waza) --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="50"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-person-bounding-box"></i> Throws (Nage Waza) & Basic Groundwork</h5> + <p class="card-text">Ashihara incorporates practical throws (Nage Waza - 投技) that flow from Sabaki and striking combinations. Basic groundwork (Ne Waza - 寝技) focuses on control and finishing after a takedown, or quickly returning to a standing position.</p> + + <p class="group-label">Common Ashihara Throws/Takedowns:</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-nage-ashibarai"><label class="form-check-label" for="chk-nage-ashibarai">Ashi Barai (足払 - Foot Sweep)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-nage-osotogari"><label class="form-check-label" for="chk-nage-osotogari">Osoto Gari (大外刈 - Major Outer Reap - often adapted)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-nage-kouchigari"><label class="form-check-label" for="chk-nage-kouchigari">Kouchi Gari (小内刈 - Minor Inner Reap - often adapted)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-nage-kubinage"><label class="form-check-label" for="chk-nage-kubinage">Kubi Nage (首投 - Neck Throw / Guillotine Takedown)</label></div></li> + <li>Throws from clinching positions after Sabaki.</li> + <li>Leg hooking/tripping takedowns.</li> + </ul> + + <p class="group-label">Basic Groundwork Concepts (Ne Waza - 寝技):</p> + <ul> + <li>Achieving a dominant position after a takedown (e.g., knee-on-belly, side control variation).</li> + <li>Finishing with strikes on the ground (where rules permit).</li> + <li>Basic escapes to regain standing position quickly.</li> + <li>Simple joint locks or chokes if opportunity arises (less focus than grappling arts).</li> + </ul> + <p class="disclaimer">Ashihara's Nage Waza and Ne Waza are primarily for self-defense and to complement its striking and Sabaki, not for prolonged grappling exchanges.</p> + <a href="https://www.youtube.com/results?search_query=ashihara+karate+throws+takedowns" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Ashihara Throws</a> + </div> + </div> + </div> + + <!-- Card: Ashihara Kata --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="100"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-universal-access"></i> Ashihara Kata (Forms) & Purpose</h5> + <p class="card-text">Ashihara Kata (形) are unique and revolutionary. They are designed for practical application and directly relate to Sabaki and Kumite. They are often practiced solo and with partners (Bunkai) to understand their fighting applications.</p> + + <p class="group-label">Key Ashihara Kata:</p> + <ul> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-shoshinsha"> + <label class="form-check-label" for="chk-kata-shoshinsha"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-kata-shoshinsha" role="button" aria-expanded="false" aria-controls="collapse-kata-shoshinsha"><strong>Shoshinsha no Kata (初心者の型)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=ashihara+shoshinsha+no+kata" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-kata-shoshinsha"> + <p>Beginner's Kata. Focuses on fundamental stances, blocks, strikes, and body movements.</p> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-kihon"> + <label class="form-check-label" for="chk-kata-kihon"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-kata-kihon" role="button" aria-expanded="false" aria-controls="collapse-kata-kihon"><strong>Kihon no Kata (基本の型)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=ashihara+kihon+no+kata" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-kata-kihon"> + <p>Basic Kata (series of three). Builds on Shoshinsha, introducing more complex combinations and Sabaki principles.</p> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-kumite"> + <label class="form-check-label" for="chk-kata-kumite"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-kata-kumite" role="button" aria-expanded="false" aria-controls="collapse-kata-kumite"><strong>Kumite no Kata (組手の型)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=ashihara+kumite+no+kata" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-kata-kumite"> + <p>Sparring Kata (series of five). Focuses on practical fighting combinations, Sabaki applications against various attacks, and continuous movement.</p> + </div> + </li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-nage"> + <label class="form-check-label" for="chk-kata-nage"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-kata-nage" role="button" aria-expanded="false" aria-controls="collapse-kata-nage"><strong>Nage no Kata (投げの型)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=ashihara+nage+no+kata" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-kata-nage"> + <p>Throwing Kata (series of four). Teaches how to integrate throws with strikes and Sabaki.</p> + </div> + </li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-jissen"><label class="form-check-label" for="chk-kata-jissen">Jissen no Kata (実戦の型 - Real Fight Kata - advanced)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kata-goshin"><label class="form-check-label" for="chk-kata-goshin">Goshin no Kata (護身の型 - Self-Defense Kata - advanced)</label></div></li> + </ul> + <p class="group-label">Purpose of Ashihara Kata:</p> + <ul> + <li>To teach and drill practical fighting techniques and Sabaki.</li> + <li>To develop coordination, balance, power, and flow.</li> + <li>To serve as a "dictionary" of techniques that can be applied in Kumite.</li> + <li>No influence from traditional Samurai-era Kata; every move is intended for combat.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Kumite (Sparring) & Advanced Sabaki --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-fire"></i> Kumite (Sparring) & Advanced Sabaki</h5> + <p class="card-text">Kumite (組手 - Sparring) is a cornerstone of Ashihara training, allowing students to test and refine their techniques in a dynamic, full-contact environment. Advanced Sabaki application is key to success.</p> + <p class="group-label">Types of Kumite:</p> + <ul> + <li><strong>Yakusoku Kumite (約束組手):</strong> Pre-arranged sparring, often focusing on specific Sabaki sequences or combinations.</li> + <li><strong>Jiyu Kumite (自由組手):</strong> Free sparring. This is the full-contact application of Ashihara principles against a resisting opponent.</li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-kumite-rules" role="button" aria-expanded="false" aria-controls="collapse-kumite-rules"><strong>Basic Kumite Rules & Targets</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-kumite-rules"> + <p>Typically follows knockdown karate rules: + <ul> + <li>Full power strikes and kicks to the body and legs.</li> + <li>Kicks and knee strikes to the head are often allowed (depending on level/dojo).</li> + <li>Hand strikes to the head/face are generally prohibited (or light contact for children/beginners).</li> + <li>Throws, sweeps, and limited clinching are permitted.</li> + <li>Emphasis on continuous fighting and spirit.</li> + </ul> + </p> + </div> + </li> + </ul> + <p class="group-label">Advanced Sabaki Application in Kumite:</p> + <ul> + <li><strong>Reading the Opponent (Yomi - 読み):</strong> Anticipating attacks and opponent's reactions.</li> + <li><strong>Timing & Distance (Maai - 間合い):</strong> Mastering the engagement distance for effective offense and defense.</li> + <li><strong>Creating Blind Spots (Shikaku - 死角):</strong> Consistently moving to positions where the opponent cannot effectively attack or defend.</li> + <li><strong>Feints & Fakes (Kyojitsu - 虚実):</strong> Using deceptive movements to create openings.</li> + <li><strong>Combining Strikes, Blocks, Throws:</strong> Fluidly transitioning between techniques using Sabaki.</li> + <li><strong>Countering (Kaeshi Waza - 返し技):</strong> Using the opponent's attack to set up your own (e.g., parry and strike, slip and throw).</li> + </ul> + <a href="https://www.youtube.com/results?search_query=ashihara+karate+kumite+sabaki" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Ashihara Kumite</a> + </div> + </div> + </div> + + <!-- Card: Ashihara Philosophy, The Dojo & Etiquette --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="50"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-bank2"></i> Ashihara Philosophy, Dojo & Etiquette</h5> + <p class="card-text">Ashihara Karate is not just a fighting system but a way (Do - 道) to cultivate character, discipline, and a strong spirit, embodied in its philosophy and dojo culture.</p> + <div class="section-heading"><i class="bi bi-brightness-high-fill"></i> Core Philosophical Tenets</div> + <ul> + <li><strong>"A Challenge for Change":</strong> Continuously striving for improvement and adapting to new challenges.</li> + <li><strong>Development of Body and Spirit:</strong> Training to build physical strength, mental fortitude, and resilience.</li> + <li><strong>Practicality and Realism:</strong> Techniques and training methods must be effective in real situations.</li> + <li><strong>The Sabaki Spirit:</strong> Mutual improvement, where students of all levels help each other progress. It emphasizes problem-solving and strategic thinking.</li> + <li><strong>"If you do not become mentally strong, you cannot carry out true kindness or care for other people."</strong> - Kancho Hideyuki Ashihara.</li> + </ul> + + <div class="section-heading"><i class="bi bi-gem"></i> Belt System (Kyu & Dan - 級段位制)</div> + <p class="small">Progression is marked by Kyu (student) and Dan (black belt) grades. A common adult progression:</p> + <ul class="karate-belt-list"> + <li style="background-color: #FFFFFF; color: #000; border: 1px solid #ccc;">White (Mukyu)</li> + <li style="background-color: #FFA500; color: #000; border: 1px solid #666;">Orange (10th & 9th Kyu)</li> + <li style="background-color: #007bff; color: #FFF;">Blue (8th & 7th Kyu)</li> + <li style="background-color: #FFFF00; color: #000; border: 1px solid #666;">Yellow (6th & 5th Kyu)</li> + <li style="background-color: #008000; color: #FFF;">Green (4th & 3rd Kyu)</li> + <li style="background-color: #A52A2A; color: #FFF;">Brown (2nd & 1st Kyu)</li> + <li style="background-color: #000000; color: #FFF;">Black (Shodan 初段 onwards)</li> + </ul> + <p class="small">Focus on diligent training; rank is a recognition of progress.</p> + + <div class="section-heading"><i class="bi bi-journal-check"></i> Dojo Etiquette (Reigi Saho - 礼儀作法)</div> + <ul> + <li><strong>Bowing (Rei - 礼):</strong> Upon entering/leaving dojo, mat area (Tatami - 畳), and to instructors/partners. Osu! (押忍) is a common verbal affirmation of respect and effort.</li> + <li><strong>Hygiene (Seiketsu - 清潔):</strong> Clean Dogi (uniform), short nails, personal cleanliness.</li> + <li><strong>Punctuality & Focus:</strong> Be on time, minimize distractions, train earnestly.</li> + <li><strong>Respect (Sonkei - 尊敬):</strong> For instructors (Sensei, Shihan), seniors (Senpai), juniors (Kohai), and the training space.</li> + <li><strong>Safety (Anzen - 安全):</strong> Be mindful of partners, especially in full-contact training. Control techniques.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Tips for Ashihara Progress --> + <div class="col-lg-4 col-md-6 col-sm-12" data-aos="fade-up" data-aos-delay="100"> + <div class="info-card"> + <div class="card-body"> + <h5><i class="bi bi-check2-all"></i> Tips for Ashihara Progress</h5> + <p class="card-text">Advice for navigating your Ashihara Karate journey effectively and enhancing your learning.</p> + <ul> + <li><i class="bi bi-calendar-check text-success me-1"></i><strong>Train Consistently (Keizoku - 継続):</strong> Regular, dedicated practice is paramount.</li> + <li><i class="bi bi-arrows-move text-primary me-1"></i><strong>Master Sabaki (捌き):</strong> This is the heart of Ashihara. Practice moving to blind spots in all drills and kumite.</li> + <li><i class="bi bi-bullseye text-danger me-1"></i><strong>Develop Strong Kihon (基本):</strong> Solid fundamental strikes, blocks, and stances are the building blocks.</li> + <li><i class="bi bi-shield-fill-check text-info me-1"></i><strong>Practice Ukemi (受身):</strong> Good breakfalls prevent injury and build confidence for dynamic training and throws.</li> + <li><i class="bi bi-patch-question-fill text-secondary me-1"></i><strong>Understand the "Why":</strong> Seek to understand the principles behind techniques, not just memorize movements. Ask questions.</li> + <li><i class="bi bi-activity text-warning me-1"></i><strong>Embrace Full Contact (Jissen Kumite - 実戦組手):</strong> Gradually build up intensity in sparring to test your skills under pressure. Conditioning is key.</li> + <li><i class="bi bi-journal-bookmark-fill text-primary me-1"></i><strong>Study Your Kata (形):</strong> Understand their practical applications (Bunkai) and how they teach Sabaki.</li> + <li><i class="bi bi-people text-secondary me-1"></i><strong>Learn from Everyone:</strong> Train with various partners and observe senior students and instructors.</li> + <li><i class="bi bi-heart-fill text-danger me-1"></i><strong>Control Your Ego:</strong> Be a good training partner. Focus on learning and mutual improvement, not just "winning."</li> + <li><i class="bi bi-book text-success me-1"></i><strong>Study Ashihara Off the Mat:</strong> Watch videos of Kancho Ashihara and high-level practitioners. Read about the style's history and philosophy.</li> + <li><i class="bi bi-battery-charging text-warning me-1"></i><strong>Condition Your Body:</strong> Strength, stamina, flexibility, and impact conditioning are crucial for full-contact karate.</li> + <li><i class="bi bi-emoji-smile-fill text-accent me-1"></i><strong>Live the Dojo Kun (道場訓) (if applicable):</strong> Many dojos have precepts guiding conduct inside and outside the dojo.</li> + </ul> + </div> + </div> + </div> + + + </div> <!-- /.row --> + </div> <!-- /.container --> + +<footer class="container text-center pb-3"> + <p>This cheatsheet provides a foundational overview of Ashihara Karate. This dynamic style requires consistent practice under qualified, NIKO-certified instructors. Practice safely, with full spirit and respect for its principles and training partners. Osu!</p> + <p><strong>Key Ashihara Karate Resources:</strong> + <a href="http://www.ashihara-karate.com/" target="_blank" rel="noopener noreferrer"><i class="bi bi-globe"></i> NIKO World HQ (Japan)</a> | + <!-- Add links to major regional NIKO sites if known, or general search --> + <a href="https://www.youtube.com/results?search_query=NIKO+Ashihara+Karate+Honbu" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> NIKO Honbu YouTube Search</a> <br> + <span class="fw-bold">Reputable YouTube Channels for Ashihara & Full Contact Karate Concepts (examples):</span> + <a href="https://www.youtube.com/results?search_query=Ashihara+Karate+Techniques" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Ashihara Technique Search</a> | + <a href="https://www.youtube.com/results?search_query=Kyokushin+Karate+Techniques" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Kyokushin Technique Search (Related)</a> | + <a href="https://www.youtube.com/@The शुरुआती" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> The Shurwarthi (General Martial Arts, some full contact)</a> + + </p> + <div> + <!-- <a href="https://www.linkedin.com/in/davidveksler/" title="David Veksler on LinkedIn" target="_blank" rel="noopener noreferrer" class="mx-2 link-secondary"> + <i class="bi bi-linkedin"></i> LinkedIn + </a> + <a href="http://cheatsheets.davidveksler.com/" title="Browse All Cheatsheets by David Veksler" class="mx-2 link-secondary"> + <i class="bi bi-collection"></i> All Cheatsheets + </a> --> + <p class="small mt-2">Inspired by the Judo Cheatsheet by David Veksler.</p> + </div> +</footer> + + <!-- JAVASCRIPT --> + <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> + <script src="https://unpkg.com/[email protected]/dist/aos.js"></script> + <script> + // Initialize AOS (Animate on Scroll) + AOS.init({ + duration: 600, + easing: 'ease-in-out-quad', + once: true, + mirror: false, + offset: 70, + delay: 50, + }); + + // localStorage for checkbox persistence + document.addEventListener('DOMContentLoaded', () => { + const checkboxes = document.querySelectorAll('.mastery-checkbox'); + checkboxes.forEach(checkbox => { + const savedState = localStorage.getItem(checkbox.id); + if (savedState === 'true') { + checkbox.checked = true; + } + checkbox.addEventListener('change', () => { + localStorage.setItem(checkbox.id, checkbox.checked); + }); + }); + }); + </script> + +</body> +</html> \ No newline at end of file