Create judo.html
· 1 year ago
a3e73e12b2c042508918f96985efb8b2d73c7020
Parent:
b8a1202ce
1 file changed +907 −0
- judo.html +907 −0
Diff
--- /dev/null +++ b/judo.html @@ -0,0 +1,907 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Judo Cheatsheet: Ultimate Guide to Throws, Groundwork & Principles (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 Judo with our comprehensive, interactive cheatsheet. Covers throws (Nage Waza), groundwork (Katame Waza), fundamental principles (Kuzushi, Kumi Kata), Ukemi, etiquette, and progress tracking. Perfect for beginners to advanced Judoka. Printable."> + <meta name="keywords" content="Judo, Judo techniques, Nage Waza, Katame Waza, Judo throws, Judo groundwork, Ukemi, Kuzushi, Tsukuri, Kake, Kumi Kata, Judo principles, learn Judo, Judo basics, Judo guide, Judo for beginners, Judo black belt, Judo cheatsheet, Judo PDF, Judo training, Judo etiquette, Jigoro Kano, Kodokan"> + <meta name="author" content="AI Assistant (based on user input for David Veksler)"> + + <link rel="canonical" href="http://cheatsheets.davidveksler.com/judo.html"> + + <!-- Open Graph / Facebook / LinkedIn --> + <meta property="og:title" content="Judo Cheatsheet: Ultimate Interactive & Printable Guide to Throws & Groundwork"> + <meta property="og:description" content="Master the essentials of Judo with this detailed, interactive, and printable cheatsheet. Explore throws (Nage Waza), groundwork (Katame Waza), Ukemi, 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/judo.html"> + <meta property="og:image" content="http://cheatsheets.davidveksler.com/images/judo-og-image.jpg"> <!-- Suggested OG image path --> + <meta property="og:image:alt" content="Stylized illustration of two Judoka engaged in a throw"> + <meta property="og:site_name" content="David Veksler Cheatsheets"> + <meta property="og:locale" content="en_US"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Judo Cheatsheet: Comprehensive Guide (Printable & Trackable)"> + <meta name="twitter:description" content="Your ultimate quick guide to Judo! Explore fundamentals, throws, groundwork, Ukemi, mindset, etiquette, YouTube resources, and more. Track your progress with checkboxes and print for offline study."> + <meta name="twitter:url" content="http://cheatsheets.davidveksler.com/judo.html"> + <meta name="twitter:image" content="http://cheatsheets.davidveksler.com/images/judo-twitter-card.jpg"> <!-- Suggested Twitter card image path --> + <meta name="twitter:image:alt" content="Two Judoka in traditional Judo gi practicing a technique"> + + <!-- 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 (Adapted from BJJ example) --> + <style> + :root { + --font-primary: 'Roboto', sans-serif; + --font-headings: 'Oswald', sans-serif; + --color-bg: #f4f4f4; + --color-text: #333; + --color-primary: #003366; /* Judo Blue */ + --color-secondary: #336699; /* Lighter Judo Blue */ + --color-accent: #FFCC00; /* Gold/Yellow 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 .judo-kanji { + font-size: 5rem; + 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 .judo-icon { + font-size: 0.8em; + opacity: 0.9; + color: var(--color-accent); + } + .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) { /* Style non-checkbox list items */ + padding-left: 0.5em; /* Indent similar to checkboxes but without box space */ + margin-bottom: 0.6rem; + position: relative; + } + .info-card ul li:not(.form-check-li)::before { /* Optional: Add a simple bullet */ + content: "•"; + position: absolute; + left: -0.8em; /* Adjust as needed */ + color: var(--color-secondary); + font-size: 1.2em; + line-height: 1; + + } + + + /* Checkbox Styling */ + .info-card .form-check-li { /* Use a class for li items that will contain a checkbox */ + margin-bottom: 0.6rem; + padding-left: 0; /* Reset li padding */ + list-style: none; + } + .info-card .form-check { + margin-bottom: 0; /* Checkbox itself doesn't need bottom margin if li has it */ + 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; + } + /* For non-checkbox list items with expandable triggers */ + li:not(.form-check-li) .expandable-trigger { + font-weight: 500; /* or specific styling */ + } + + + .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; + } + .judo-belt-list { + list-style: none; + padding-left: 0; + margin-top: 0.5rem; /* Add some space above the belt list */ + } + .judo-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 .judo-kanji { font-size: 4rem; } + .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 .judo-kanji { font-size: 3rem; } + .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 .judo-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; } + .judo-belt-list { display: block !important; } /* Make sure belt list text shows in print */ + .judo-belt-list li { background-color: transparent !important; color: black !important; border: 1px solid #ccc !important; } /* Simplify belt list for print */ + + + 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; } + /* Ensure non-checkbox list item bullets are visible in print */ + .info-card ul li:not(.form-check-li)::before { + color: #000 !important; /* Ensure bullet is black for print */ + } + } + </style> +</head> +<body> + + <div class="hero-image-container"> + <div class="judo-kanji">柔道</div> + <p>The Gentle Way</p> + </div> + + <header class="page-header"> + <div class="container"> + <h1><span class="judo-icon">🥋</span> Judo Cheatsheet</h1> + <p class="lead">Your comprehensive guide to Judo: core principles, throws (Nage Waza), groundwork (Katame Waza), mindset, and etiquette. Navigate the essentials of "The Gentle Way" for all levels. Check off techniques as you master them. Printable.</p> + </div> + </header> + + <div class="container"> + <div class="row"> + + <!-- Card: Intro & Core Judo 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 Judo Concepts</h5> + <p class="card-text">Judo (柔道), meaning "Gentle Way," was created by Jigoro Kano (嘉納治五郎) in 1882. It emphasizes throws, pins, chokes, and armlocks to control or submit an opponent, alongside character development.</p> + <ul> + <li><strong>Origin:</strong> Founded by Jigoro Kano, derived from classical Jujutsu. Kodokan Judo Institute (講道館) established 1882.</li> + <li><strong>Goal:</strong> Achieve Ippon (一本 - full point) typically via a clean throw, pin for 20 seconds, or an effective choke or armlock. Equally important is the development of character.</li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-concept-seiryoku" role="button" aria-expanded="false" aria-controls="collapse-concept-seiryoku"><strong>Seiryoku Zen'yo (精力善用)</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-concept-seiryoku"> + <p>Maximum Efficiency, Minimum Effort. The core principle of using one's physical and spiritual energy in the most effective manner.</p> + </div> + </li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-concept-jita" role="button" aria-expanded="false" aria-controls="collapse-concept-jita"><strong>Jita Kyoei (自他共栄)</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-concept-jita"> + <p>Mutual Welfare and Benefit. The principle that through cooperation and mutual respect, individuals and society can prosper together. This is fundamental to Judo training.</p> + </div> + </li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-concept-kkt" role="button" aria-expanded="false" aria-controls="collapse-concept-kkt"><strong>Kuzushi, Tsukuri, Kake (崩し作り掛け)</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-concept-kkt"> + <p>The three sequential phases of a Judo throw: + <strong>Kuzushi (崩し):</strong> Off-balancing the opponent. This is the crucial first step. + <strong>Tsukuri (作り):</strong> Positioning and fitting in your body for the throw. + <strong>Kake (掛け):</strong> Execution and completion of the throw. + </p> + </div> + </li> + <li><strong>Kumi Kata (組み方):</strong> Grip fighting. The art of establishing and maintaining dominant grips on the opponent's Judogi (uniform), essential for controlling them and setting up throws.</li> + <li><strong>Shisei (姿勢):</strong> Posture. Maintaining a strong, stable, and balanced posture (both natural - shizentai, and defensive - jigotai) is key for effective offense and defense.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Fundamental Movements & 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-shield-check"></i> Ukemi (Breakfalls) & Movement</h5> + <p class="card-text">Ukemi (受け身 - Breakfalls) are vital for safety and developing body control. Master these before engaging in active throwing. Shintai (進体 - Body Movement) and Tai Sabaki (体捌き - Body Management) are fundamental for positioning.</p> + <p class="group-label">Ukemi (受け身 - Techniques to Master):</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"> + <label class="form-check-label" for="chk-ukemi-ushiro"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-ukemi-ushiro" role="button" aria-expanded="false" aria-controls="collapse-ukemi-ushiro"><strong>Ushiro Ukemi (後ろ受身)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=judo+ushiro+ukemi+tutorial" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-ukemi-ushiro"> + <p>Rear breakfall. Falling backward safely by tucking chin, rounding back, and slapping the mat with one or both arms at approximately a 30-45 degree angle to the body.</p> + </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"> + <label class="form-check-label" for="chk-ukemi-yoko"> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-ukemi-yoko" role="button" aria-expanded="false" aria-controls="collapse-ukemi-yoko"><strong>Yoko Ukemi (横受身)</strong> <i class="bi bi-chevron-down"></i></a> + <a href="https://www.youtube.com/results?search_query=judo+yoko+ukemi+tutorial" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + <div class="collapse expandable-content" id="collapse-ukemi-yoko"> + <p>Side breakfall. Falling to the side, slapping the mat with one arm (the arm on the side of the fall) to dissipate impact, keeping legs slightly bent and head off the mat.</p> + </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"> + <label class="form-check-label" for="chk-ukemi-mae"> + <strong>Mae Ukemi (前受身):</strong> Front breakfall (hard fall). Falling forward, using forearms and palms in a triangular shape to absorb impact, keeping body off mat. <a href="https://www.youtube.com/results?search_query=judo+mae+ukemi+tutorial" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </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-maemawari"> + <label class="form-check-label" for="chk-ukemi-maemawari"> + <strong>Mae Mawari Ukemi / Zempo Kaiten Ukemi (前方回転受身):</strong> Forward rolling breakfall. Rolling over one shoulder to dissipate impact, slapping mat with arm. <a href="https://www.youtube.com/results?search_query=judo+zempo+kaiten+ukemi" target="_blank" rel="noopener noreferrer" class="expandable-trigger"><i class="bi bi-youtube"></i></a> + </label> + </div> + </li> + </ul> + <p class="group-label">Movement (Shintai - 進体 & Tai Sabaki - 体捌き):</p> + <ul> + <li><strong>Ayumi Ashi (歩み足):</strong> Normal walking (natural stepping), maintaining balance.</li> + <li><strong>Tsugi Ashi (継ぎ足):</strong> Following foot movement (one foot moves, the other follows to maintain stance, without crossing).</li> + <li><strong>Tai Sabaki (体捌き):</strong> Body turning/management/evasion. Pivoting and turning efficiently to create angles for attack or defense.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Nage Waza (Throwing 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-person-down"></i> Nage Waza (投げ技 - Throws)</h5> + <p class="card-text">The hallmark of Judo, involving techniques to throw an opponent onto their back. Categorized by the primary body part used by Tori (thrower). These are techniques to master.</p> + <p class="group-label">Te Waza (手技 - Hand Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tewaza-ipponseoi"><label class="form-check-label" for="chk-tewaza-ipponseoi">Ippon Seoinage (一本背負投 - One Arm Shoulder Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tewaza-moroteseoi"><label class="form-check-label" for="chk-tewaza-moroteseoi">Morote Seoinage (双手背負投 - Two Arm Shoulder Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-tewaza-taiotoshi"><label class="form-check-label" for="chk-tewaza-taiotoshi">Tai Otoshi (体落 - Body Drop)</label></div></li> + </ul> + <p class="group-label">Koshi Waza (腰技 - Hip Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-koshiwaza-ogoshi"><label class="form-check-label" for="chk-koshiwaza-ogoshi">O Goshi (大腰 - Major Hip Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-koshiwaza-koshiguruma"><label class="form-check-label" for="chk-koshiwaza-koshiguruma">Koshi Guruma (腰車 - Hip Wheel)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-koshiwaza-haraigoshi"><label class="form-check-label" for="chk-koshiwaza-haraigoshi">Harai Goshi (払腰 - Sweeping Hip Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-koshiwaza-tsurikomigoshi"><label class="form-check-label" for="chk-koshiwaza-tsurikomigoshi">Tsurikomi Goshi (釣込腰 - Lifting Pulling Hip Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-koshiwaza-uchimata"><label class="form-check-label" for="chk-koshiwaza-uchimata">Uchi Mata (内股 - Inner Thigh Throw)</label></div></li> + </ul> + <p class="group-label">Ashi Waza (足技 - Foot/Leg Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ashiwaza-osotogari"><label class="form-check-label" for="chk-ashiwaza-osotogari">Osoto Gari (大外刈 - Major Outer Reap)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ashiwaza-ouchigari"><label class="form-check-label" for="chk-ashiwaza-ouchigari">Ouchi Gari (大内刈 - Major Inner Reap)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ashiwaza-kouchigari"><label class="form-check-label" for="chk-ashiwaza-kouchigari">Kouchi Gari (小内刈 - Minor Inner Reap)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ashiwaza-deashibarai"><label class="form-check-label" for="chk-ashiwaza-deashibarai">De Ashi Barai (出足払 - Forward 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-ashiwaza-sasae"><label class="form-check-label" for="chk-ashiwaza-sasae">Sasae Tsurikomi Ashi (支釣込足 - Propping Drawing Ankle Throw)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-ashiwaza-hiza"><label class="form-check-label" for="chk-ashiwaza-hiza">Hiza Guruma (膝車 - Knee Wheel)</label></div></li> + </ul> + <p class="group-label">Sutemi Waza (捨身技 - Sacrifice Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sutemi-tomoenage"><label class="form-check-label" for="chk-sutemi-tomoenage">Tomoe Nage (巴投 - Circle Throw) (Ma Sutemi - Rear Sacrifice)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sutemi-sumigaeshi"><label class="form-check-label" for="chk-sutemi-sumigaeshi">Sumi Gaeshi (隅返 - Corner Reversal) (Ma Sutemi)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-sutemi-yokoguruma"><label class="form-check-label" for="chk-sutemi-yokoguruma">Yoko Guruma (横車 - Side Wheel) (Yoko Sutemi - Side Sacrifice)</label></div></li> + </ul> + <p class="disclaimer">This is a selection from the Gokyo no Waza (五教の技 - Five Sets of Techniques) and other common throws. Many more exist.</p> + <a href="https://www.youtube.com/results?search_query=judo+gokyo+no+waza" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Judo Throws (Gokyo)</a> + </div> + </div> + </div> + + <!-- Card: Katame Waza (Ground Techniques) --> + <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-diagram-3"></i> Katame Waza (固技 - Grappling)</h5> + <p class="card-text">Techniques to control or submit an opponent on the ground (Ne Waza - 寝技). These are techniques to master.</p> + + <p class="group-label">Osaekomi Waza (押込技 - Pinning Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-osae-kesa"><label class="form-check-label" for="chk-osae-kesa">Kesa Gatame (袈裟固 - Scarf Hold)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-osae-kuzurekesa"><label class="form-check-label" for="chk-osae-kuzurekesa">Kuzure Kesa Gatame (崩袈裟固 - Broken Scarf Hold variant)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-osae-yokoshiho"><label class="form-check-label" for="chk-osae-yokoshiho">Yoko Shiho Gatame (横四方固 - Side Four-Quarter Hold)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-osae-kamishiho"><label class="form-check-label" for="chk-osae-kamishiho">Kami Shiho Gatame (上四方固 - Upper Four-Quarter Hold)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-osae-tateshiho"><label class="form-check-label" for="chk-osae-tateshiho">Tate Shiho Gatame (縦四方固 - Vertical Four-Quarter Hold / Mount)</label></div></li> + </ul> + + <p class="group-label">Shime Waza (絞技 - Choking/Strangulation Techniques):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-namijuji"><label class="form-check-label" for="chk-shime-namijuji">Nami Juji Jime (並十字絞 - Normal Cross Choke)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-gyakujuji"><label class="form-check-label" for="chk-shime-gyakujuji">Gyaku Juji Jime (逆十字絞 - Reverse Cross Choke)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-katajuji"><label class="form-check-label" for="chk-shime-katajuji">Kata Juji Jime (片十字絞 - Half Cross Choke)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-hadaka"><label class="form-check-label" for="chk-shime-hadaka">Hadaka Jime (裸絞 - Naked Choke/Rear Naked Choke)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-okuri"><label class="form-check-label" for="chk-shime-okuri">Okuri Eri Jime (送襟絞 - Sliding Lapel Choke)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-shime-kataha"><label class="form-check-label" for="chk-shime-kataha">Kata Ha Jime (片羽絞 - Single Wing Choke)</label></div></li> + </ul> + + <p class="group-label">Kansetsu Waza (関節技 - Joint Lock Techniques - Armlocks Only in Competition):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kan-udegarami"><label class="form-check-label" for="chk-kan-udegarami">Ude Garami (腕緘 - Arm Entanglement / Figure-Four Armlock, "Kimura")</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kan-jujigatame"><label class="form-check-label" for="chk-kan-jujigatame">Ude Hishigi Juji Gatame (腕挫十字固 - Cross Armlock, "Armbar")</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kan-udehishigiudegatame"><label class="form-check-label" for="chk-kan-udehishigiudegatame">Ude Hishigi Ude Gatame (腕挫腕固 - Arm Breaking Arm Lock / Straight Armlock)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kan-hizagatame"><label class="form-check-label" for="chk-kan-hizagatame">Ude Hishigi Hiza Gatame (腕挫膝固 - Knee Armlock)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-kan-wakigatame"><label class="form-check-label" for="chk-kan-wakigatame">Ude Hishigi Waki Gatame (腕挫腋固 - Armpit Lock)</label></div></li> + </ul> + <p class="disclaimer">Safe application and control are paramount. Leg locks (Ashi Kansetsu) are generally forbidden in sport Judo (Shiai) but exist in some Kata.</p> + <a href="https://www.youtube.com/results?search_query=judo+newaza+katame+waza" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Groundwork Basics</a> + </div> + </div> + </div> + + <!-- Card: Transitions, Combinations & Counters --> + <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-intersect"></i> Transitions, Combinations & Counters</h5> + <p class="card-text">Linking techniques (Renraku Waza - 連絡技) and countering opponent's attacks (Kaeshi Waza - 返し技) are key to advanced Judo.</p> + + <p class="group-label">Transitions (Tachi Waza to Ne Waza - 立技から寝技へ):</p> + <ul> + <li>Following a successful or partially successful throw immediately to a pin or submission.</li> + <li>Transitioning to Ne Waza after a failed throw attempt (by Tori or Uke) to capitalize on the situation.</li> + <li class="form-check-li"> + <div class="form-check"> + <input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-trans-hikikomi"> + <label class="form-check-label" for="chk-trans-hikikomi"> + Hikikomi Gaeshi (引込返 - Pulling Down Reversal - often into Tomoe Nage or Sumi Gaeshi) + </label> + </div> + </li> + </ul> + + <p class="group-label">Combinations (Renraku Waza - 連絡技):</p> + <ul> + <li>Concept: Attacking with one throw to create an opening (Kuzushi) for a second, different throw if the first is defended.</li> + <li>Example: Kouchi Gari (小内刈) attempt -> leading to Osoto Gari (大外刈).</li> + <li>Example: Ouchi Gari (大内刈) attempt -> leading to Ippon Seoinage (一本背負投).</li> + </ul> + + <p class="group-label">Counters (Kaeshi Waza - 返し技):</p> + <ul> + <li>Concept: Using an opponent's attacking momentum and commitment against them to execute your own throw.</li> + <li>Example: Countering an opponent's Osoto Gari (大外刈) with Osoto Gaeshi (大外返).</li> + <li>Example: Countering an opponent's Uchi Mata (内股) with Tai Otoshi (体落) or Uchi Mata Sukashi (内股透 - Inner Thigh Dodge).</li> + </ul> + <a href="https://www.youtube.com/results?search_query=judo+renraku+waza+kaeshi+waza" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Combos & Counters</a> + </div> + </div> + </div> + + <!-- Card: Escapes & Defense (Ne Waza) --> + <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-escape"></i> Escapes & Defense (Ne Waza)</h5> + <p class="card-text">Surviving and escaping from disadvantageous ground positions and submission attempts. These are techniques to master.</p> + + <p class="group-label">Escaping Osaekomi Waza (Pins):</p> + <ul> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-esc-kesa-bridge"><label class="form-check-label" for="chk-esc-kesa-bridge">Kesa Gatame Escape: Bridge and Roll (Upa)</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-esc-kesa-shrimp"><label class="form-check-label" for="chk-esc-kesa-shrimp">Kesa Gatame Escape: Shrimp (Ebi) & Create Frames</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-esc-yokoshiho"><label class="form-check-label" for="chk-esc-yokoshiho">Yoko Shiho Gatame Escape: Leg Entanglement & Bridge/Shrimp</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-esc-kamishiho"><label class="form-check-label" for="chk-esc-kamishiho">Kami Shiho Gatame Escape: Framing & Turning to Knees / Turtle</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-esc-tateshiho"><label class="form-check-label" for="chk-esc-tateshiho">Tate Shiho Gatame Escape: Bridge & Shrimp (Elbow-Knee Escape)</label></div></li> + </ul> + + <p class="group-label">Defending Shime Waza (Chokes):</p> + <ul> + <li>Fundamental: Tucking chin, protecting neck with hands, creating posture.</li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-def-choke-gripbreak"><label class="form-check-label" for="chk-def-choke-gripbreak">Two-on-One Grip Breaks against lapel chokes.</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-def-choke-turnin"><label class="form-check-label" for="chk-def-choke-turnin">Turning into the choke (where appropriate) to create space or attack grips.</label></div></li> + </ul> + + <p class="group-label">Defending Kansetsu Waza (Armlocks):</p> + <ul> + <li>Fundamental: Keeping arms bent and close to body, recognizing danger early.</li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-def-juji-stack"><label class="form-check-label" for="chk-def-juji-stack">Juji Gatame Defense: Stacking opponent / Posturing Up.</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-def-juji-turnarm"><label class="form-check-label" for="chk-def-juji-turnarm">Juji Gatame Defense: Turning arm (rotate thumb) to escape.</label></div></li> + <li class="form-check-li"><div class="form-check"><input class="form-check-input mastery-checkbox" type="checkbox" value="" id="chk-def-udegarami-straighten"><label class="form-check-label" for="chk-def-udegarami-straighten">Ude Garami Defense: Straightening arm towards head (carefully, specific to situation) or bringing elbow to ground.</label></div></li> + </ul> + + <p class="group-label" style="margin-top:1.5rem;"><i class="bi bi-info-circle"></i> Key Principle (All Levels):</p> + <ul> + <li>Prevention is paramount: Early recognition of danger, maintaining good posture and frames, and proactive movement can prevent many pins and submissions.</li> + </ul> + <a href="https://www.youtube.com/results?search_query=judo+newaza+escapes+and+defenses" target="_blank" rel="noopener noreferrer" class="btn btn-sm btn-outline-primary mt-2"><i class="bi bi-youtube"></i> Groundwork Escapes</a> + </div> + </div> + </div> + + <!-- Card: Mindset & The Dojo --> + <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-bank2"></i> Judo Philosophy & The Dojo</h5> + <p class="card-text">Judo is more than a sport; it's a "Do" (道 - way or path). Cultivating the right mindset and respecting Dojo culture are integral.</p> + <ul> + <li><strong>Respect (Rei - 礼):</strong> Profound respect for instructors (Sensei - 先生), training partners (senpai/kohai), the dojo (training hall), and the art of Judo itself. Demonstrated through bowing and conduct.</li> + <li><strong>Discipline & Perseverance:</strong> Consistent effort, dedication, and the resilience to continue through challenges and plateaus. Ukemi practice is a daily testament to this.</li> + <li><strong>Humility (Kenkyo - 謙虚):</strong> Acknowledging there's always more to learn. Being willing to learn from everyone, regardless of rank. Accepting being thrown (Nagekomi, Randori) as a crucial part of the learning process.</li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-mindset-kata" role="button" aria-expanded="false" aria-controls="collapse-mindset-kata"><strong>Role of Kata (形 - Forms)</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-mindset-kata"> + <p>Kata are pre-arranged patterns of techniques that preserve and teach the fundamental principles, philosophy, and historical applications of Judo. Examples include Nage-no-Kata (Forms of Throwing) and Katame-no-Kata (Forms of Grappling).</p> + </div> + </li> + <li> + <a class="expandable-trigger" data-bs-toggle="collapse" href="#collapse-mindset-randori" role="button" aria-expanded="false" aria-controls="collapse-mindset-randori"><strong>Purpose of Randori (乱取り - Free Practice)</strong> <i class="bi bi-chevron-down"></i></a> + <div class="collapse expandable-content" id="collapse-mindset-randori"> + <p>Randori is the application of Judo techniques in a live, non-scripted setting against a resisting partner. It's a key method for developing timing, adaptation, and practical skill. The goal in daily practice is mutual learning and improvement (Jita Kyoei), not just "winning."</p> + </div> + </li> + <li><strong>Safety & Control (Anzen - 安全):</strong> Always prioritize the safety of your partner (Uke - 受け) and yourself (Tori - 取り). Apply techniques with control and precision. Tap clearly and early if caught in a submission.</li> + <li><strong>Mushin (無心 - No Mind):</strong> A mental state of effortless action and reaction, free from ego, fear, or excessive thought. Allowing intuition and trained reflexes to guide actions during Randori or Shiai (competition).</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Training, Belts, 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-award-fill"></i> Judo Training & Progression</h5> + <p class="card-text">Understanding the structure of Judo training, advancement, and essential dojo culture.</p> + <div class="section-heading"><i class="bi bi-clipboard-data"></i> Common Training Methods</div> + <ul> + <li><strong>Warm-ups (Junbi Undo - 準備運動):</strong> General fitness exercises and Judo-specific movements to prepare the body and mind.</li> + <li><strong>Ukemi Practice (受身稽古):</strong> Consistent drilling of breakfalls.</li> + <li><strong>Uchi Komi (打込稽古):</strong> Repetitive fitting-in drills for throws, focusing on Kuzushi and Tsukuri (static or moving).</li> + <li><strong>Nage Komi (投込稽古):</strong> Repetitive throwing practice where Uke is thrown completely.</li> + <li><strong>Randori (乱取稽古):</strong> Free sparring, standing (Tachi Waza) and/or groundwork (Ne Waza).</li> + <li><strong>Kata Study (形稽古):</strong> Practice of formal pre-arranged Judo techniques.</li> + <li><strong>Cool-down (Seiri Undo - 整理運動):</strong> Stretching and light exercises.</li> + </ul> + + <div class="section-heading"><i class="bi bi-gem"></i> Belt System (Kyu & Dan Grades - 級段位制)</div> + <p class="small">Progression in Judo is marked by Kyu (級 - student) grades and Dan (段 - black belt) grades. Colors and the number of Kyu grades can vary by country and organization. A common adult progression is:</p> + <ul class="judo-belt-list"> + <li style="background-color: #FFFFFF; color: #000; border: 1px solid #ccc;">White (Rokkyu/Mukyu - 六級/無級)</li> + <li style="background-color: #FFFF00; color: #000; border: 1px solid #666;">Yellow (Gokyu - 五級)</li> + <li style="background-color: #FFA500; color: #000; border: 1px solid #666;">Orange (Yonkyu - 四級)</li> + <li style="background-color: #008000; color: #FFF;">Green (Sankyu - 三級)</li> + <li style="background-color: #0000FF; color: #FFF;">Blue (Nikyu - 二級)</li> + <li style="background-color: #A52A2A; color: #FFF;">Brown (Ikkyu - 一級)</li> + <li style="background-color: #000000; color: #FFF;">Black (Shodan 初段, Nidan 二段, etc.)</li> + </ul> + <p class="small">Focus on diligent training and personal development; 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> Bow upon entering/leaving the dojo, stepping on/off the mat (tatami - 畳), and to your partner before/after practice. Show respect to the training space (Kamiza/Shomen).</li> + <li><strong>Hygiene (Seiketsu - 清潔):</strong> Always wear a clean Judogi. Ensure personal cleanliness (short fingernails and toenails, clean feet).</li> + <li><strong>Safety (Anzen - 安全):</strong> Be mindful of your surroundings and training partners. Remove all jewelry. Use Zori (草履 - sandals) when off the mat.</li> + <li><strong>Respect for Instructor (Sensei ni Rei - 先生に礼):</strong> Listen attentively when Sensei is teaching. Address instructors respectfully. Avoid unnecessary talking during instruction.</li> + <li><strong>Punctuality (Jikan Genshu - 時間厳守):</strong> Arrive on time for class. If unavoidably late, wait at the edge of the mat for Sensei's permission to join.</li> + <li><strong>Focused Training:</strong> Minimize idle chatter during active training periods. Concentrate on the techniques and instructions.</li> + <li><strong>Health & Consideration:</strong> Do not train if you are ill or have any contagious skin conditions. Inform Sensei of any injuries.</li> + </ul> + </div> + </div> + </div> + + <!-- Card: Tips for Success in Judo --> + <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 Judo Progress</h5> + <p class="card-text">Advice for navigating the Judo journey effectively and enhancing your learning.</p> + <ul> + <li><i class="bi bi-calendar-check text-success me-1"></i><strong>Consistency (Keizoku - 継続):</strong> Regular attendance and dedicated practice are the most critical factors for improvement.</li> + <li><i class="bi bi-shield-fill text-primary me-1"></i><strong>Master Ukemi (受身):</strong> Excellent breakfalls build confidence, prevent injury, and allow you to train harder and longer.</li> + <li><i class="bi bi-arrows-angle-contract text-info me-1"></i><strong>Deeply Understand Kuzushi (崩し):</strong> True off-balancing is the secret to effortless throws. Focus on it in every technique.</li> + <li><i class="bi bi-grip-horizontal text-warning me-1"></i><strong>Develop Strong Kumi Kata (組み方):</strong> Grip fighting is a constant battle that often dictates the engagement. Learn to secure advantageous grips.</li> + <li><i class="bi bi-patch-question-fill text-secondary me-1"></i><strong>Ask Insightful Questions:</strong> Seek to understand the 'why' and 'when' behind techniques, not just the 'how'.</li> + <li><i class="bi bi-graph-up text-success me-1"></i><strong>Set Process-Oriented Goals:</strong> Focus on specific skill improvements (e.g., better entry for a throw) rather than solely on "winning" in Randori.</li> + <li><i class="bi bi-journal-bookmark-fill text-primary me-1"></i><strong>Reflect on Your Randori:</strong> After practice, analyze what worked, what didn't, and why. Consider keeping a training journal.</li> + <li><i class="bi bi-heart-fill text-danger me-1"></i><strong>Manage Your Ego:</strong> Be a good Uke. Helping your partners improve also helps you. Learn from every throw, whether giving or receiving.</li> + <li><i class="bi bi-people text-secondary me-1"></i><strong>Train with a Variety of Partners:</strong> Practice with different sizes, strengths, and styles to develop adaptability.</li> + <li><i class="bi bi-book text-success me-1"></i><strong>Study Judo Off the Mat:</strong> Watch high-level competitions and instructional videos. Read about Judo history and philosophy.</li> + <li><i class="bi bi-bicycle text-primary me-1"></i><strong>Physical Conditioning:</strong> Supplement Judo with strength, flexibility, and cardiovascular training.</li> + <li><i class="bi bi-battery-charging text-warning me-1"></i><strong>Prioritize Rest & Recovery:</strong> Adequate sleep and nutrition are vital for learning, muscle repair, and injury prevention.</li> + <li><i class="bi bi-emoji-smile-fill text-accent me-1"></i><strong>Embrace Jita Kyoei (自他共栄):</strong> Actively contribute to a positive and mutually beneficial training environment.</li> + </ul> + </div> + </div> + </div> + + + </div> <!-- /.row --> + </div> <!-- /.container --> + +<footer class="container text-center pb-3"> + <p>This cheatsheet provides a foundational overview. Judo is a deep and complex art requiring consistent practice under qualified instructors. Practice safely and with respect for its principles.</p> + <p><strong>Key Judo Resources:</strong> + <a href="https://www.ijf.org/" target="_blank" rel="noopener noreferrer"><i class="bi bi-trophy"></i> IJF (International Judo Federation)</a> | + <a href="http://kodokanjudoinstitute.org/en/" target="_blank" rel="noopener noreferrer"><i class="bi bi-bank"></i> Kodokan Judo Institute</a> | + <a href="https://www.reddit.com/r/judo/" target="_blank" rel="noopener noreferrer"><i class="bi bi-reddit"></i> r/judo Reddit</a> <br> + <span class="fw-bold">Reputable YouTube Channels for Judo Instruction & Concepts:</span> + <a href="https://www.youtube.com/@TravisStevensgrappling" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Travis Stevens</a> | + <a href="https://www.youtube.com/@RhadiFerguson" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Dr. Rhadi Ferguson</a> | + <a href="https://www.youtube.com/@ShintaroHigashi" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Shintaro Higashi</a> | + <a href="https://www.youtube.com/@SampsonJudo" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Sampson Judo</a> | + <a href="https://www.youtube.com/@JudoFanatics" target="_blank" rel="noopener noreferrer"><i class="bi bi-youtube"></i> Judo Fanatics / BJJ Fanatics (Judo section)</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="https://cheatsheets.davidveksler.com/" title="Browse All Cheatsheets by David Veksler" class="mx-2 link-secondary"> + <i class="bi bi-collection"></i> All Cheatsheets + </a> + </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