<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>2月  |  かぴまる｜MLB現地通信</title>
	<atom:link href="https://capymaru.com/category/2026/02/feed/" rel="self" type="application/rss+xml" />
	<link>https://capymaru.com</link>
	<description>ドジャースや日本人選手を中心としたMLBの情報を現地の声（海外の反応）やスタットキャストのデータと一緒に紹介します！</description>
	<lastBuildDate>Tue, 03 Mar 2026 08:56:00 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://capymaru.com/wp-content/uploads/2026/03/cropped-capymaru_icon-32x32.png</url>
	<title>2月  |  かぴまる｜MLB現地通信</title>
	<link>https://capymaru.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<atom:link rel="hub" href="https://pubsubhubbub.appspot.com"/>
<atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com"/>
<atom:link rel="hub" href="https://websubhub.com/hub"/>
<atom:link rel="self" href="https://capymaru.com/category/2026/02/feed/"/>
	<item>
		<title>【WBC直前】山本由伸スプリングトレーニング最終登板（海外の反応）</title>
		<link>https://capymaru.com/03_dodgers/</link>
					<comments>https://capymaru.com/03_dodgers/#respond</comments>
		
		<dc:creator><![CDATA[かぴまる]]></dc:creator>
		<pubDate>Mon, 02 Mar 2026 04:25:43 +0000</pubDate>
				<category><![CDATA[2月]]></category>
		<guid isPermaLink="false">https://capymaru.com/?p=6</guid>

					<description><![CDATA[【ST2026】山本由伸WBC前最終登板！3回2失点で侍ジャパンへ｜ドジャース vs ジャイアンツ Spring Training 2026 山本由伸、WBC前スプリングトレーニング最終登板完遂！ 3回2失点・4奪三振で [&#8230;]]]></description>
										<content:encoded><![CDATA[
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>【ST2026】山本由伸WBC前最終登板！3回2失点で侍ジャパンへ｜ドジャース vs ジャイアンツ</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&#038;family=Noto+Sans+JP:wght@400;500;700;900&#038;family=Oswald:wght@400;600;700&#038;display=swap" rel="stylesheet">
<style>
  :root {
    --dodger-blue: #005A9C;
    --dodger-blue-dark: #003f70;
    --dodger-blue-light: #2a81c9;
    --accent-gold: #d4a017;
    --accent-red: #e03030;
    --accent-green: #16a34a;
    --bg-dark: #f6f4f0; /* 温かみのあるベージュ背景 */
    --bg-card: #ffffff; /* カードの白背景 */
    --bg-card2: #faf9f6;
    --text-primary: #1e293b; /* 明るい背景用の濃い文字色 */
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --gradient-blue: linear-gradient(135deg, #005A9C 0%, #003f70 100%);
    --sf-orange: #FD5A1E;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.8;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    background: linear-gradient(160deg, #ffffff 0%, #f6f4f0 100%);
    padding: 60px 20px 50px;
    overflow: hidden;
    border-bottom: 3px solid var(--dodger-blue);
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,90,156,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: 'YY18';
    position: absolute;
    bottom: -20px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 140px;
    color: rgba(0,90,156,0.04);
    letter-spacing: 4px;
    pointer-events: none;
    line-height: 1;
  }
  .hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dodger-blue);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
  .hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 20px;
  }
  .hero-title .accent { color: var(--dodger-blue); }
  .hero-title .japan { color: var(--accent-red); }
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  /* ===== LOSS BANNER ===== */
  .loss-banner {
    background: rgba(224,48,48,0.05);
    border: 1px solid rgba(224,48,48,0.2);
    border-left: 4px solid var(--accent-red);
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    font-size: 13px;
    color: #b91c1c;
    margin-top: 8px;
  }
  .loss-banner strong { color: #7f1d1d; }

  /* ===== ARTICLE WRAP ===== */
  .article-wrap { max-width: 820px; margin: 0 auto; padding: 0 20px 60px; }

  /* ===== SCOREBOARD ===== */
  .scoreboard-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  }
  .scoreboard-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .scoreboard-header span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .final-badge {
    background: var(--accent-gold);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .scoreboard-body { padding: 24px 20px; }
  .score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }
  .score-row + .score-row { border-top: 1px solid var(--border); }
  .score-team { display: flex; align-items: center; gap: 12px; flex: 1; }
  .team-abbr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    width: 60px;
  }
  .team-abbr.sf { color: var(--sf-orange); }
  .team-abbr.lad { color: var(--text-muted); }
  .team-name-full { font-size: 12px; color: var(--text-muted); font-family: 'Oswald', sans-serif; }
  .score-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; letter-spacing: 2px; }
  .score-num.winner { color: var(--sf-orange); }
  .score-num.loser { color: var(--text-muted); }
  .inning-grid {
    display: grid;
    grid-template-columns: 64px repeat(9, 1fr) 40px;
    gap: 2px;
    margin-top: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
  }
  .cell { text-align: center; padding: 6px 2px; border-radius: 3px; }
  .cell.header { color: var(--text-muted); font-size: 10px; letter-spacing: 1px; }
  .cell.team-label { text-align: left; color: var(--text-secondary); }
  .cell.score-cell { background: #f1f5f9; color: var(--text-primary); }
  .cell.highlight { background: rgba(253,90,30,0.1); color: #c2410c; font-weight: 700; }
  .cell.total { background: #e2e8f0; font-weight: 700; font-size: 13px; }
  .cell.total.win { color: var(--sf-orange); }
  .cell.total.lose { color: var(--text-muted); }
  .wp-lp { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
  .wp-lp-item {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 11px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
  }
  .wp-lp-item .label { color: var(--text-muted); margin-right: 4px; }
  .wp-lp-item.win .name { color: var(--sf-orange); }
  .wp-lp-item.loss .name { color: var(--accent-red); }

  /* ===== YAMAMOTO CARD ===== */
  .yamamoto-card {
    background: var(--bg-card);
    border: 1px solid var(--dodger-blue);
    border-radius: 12px;
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 8px 32px rgba(0,90,156,0.08);
  }
  .yamamoto-header {
    background: var(--gradient-blue);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .yamamoto-header-left { display: flex; align-items: center; gap: 14px; }
  .yamamoto-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(255,255,255,0.4);
    line-height: 1;
  }
  .yamamoto-name { font-weight: 900; font-size: 20px; color: white; }
  .yamamoto-sub { font-size: 12px; color: rgba(255,255,255,0.8); font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; margin-top: 2px; }
  .yamamoto-badge {
    background: #EFC050;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .yamamoto-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1px;
    background: var(--border);
  }
  .yamamoto-stat {
    background: var(--bg-card);
    padding: 16px 12px;
    text-align: center;
  }
  .yamamoto-stat .y-label {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .yamamoto-stat .y-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--dodger-blue);
    line-height: 1;
  }
  .yamamoto-stat .y-value.good { color: var(--accent-green); }
  .yamamoto-stat .y-value.ok { color: var(--dodger-blue-light); }

  /* ===== SECTION TITLE ===== */
  .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dodger-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 48px 0 20px;
  }
  .section-title::before { content: ''; width: 3px; height: 16px; background: var(--dodger-blue); border-radius: 2px; }
  .section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  /* ===== HIGHLIGHT CARDS ===== */
  .highlight-cards { display: flex; flex-direction: column; gap: 16px; }
  .highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--dodger-blue);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .highlight-card:hover { 
    border-left-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .highlight-card::before {
    content: attr(data-num);
    position: absolute;
    top: -10px; right: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(0,90,156,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .highlight-num { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--accent-gold); margin-bottom: 6px; }
  .highlight-heading { font-weight: 700; font-size: 16px; color: var(--text-primary); margin-bottom: 10px; line-height: 1.5; }
  .highlight-body { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }
  .stat-inline {
    display: inline-block;
    background: rgba(0,90,156,0.08);
    border: 1px solid rgba(0,90,156,0.15);
    color: var(--dodger-blue);
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 3px;
    margin: 0 2px;
    font-weight: 600;
  }

  /* ===== EPISODE CARD ===== */
  .episode-card {
    background: #fdfbf7;
    border: 1px solid #eaddc3;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
  }
  .episode-card .ep-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .episode-card .ep-body { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
  .episode-card .ep-body strong { color: var(--text-primary); }
  .episode-card .ep-quote {
    border-left: 3px solid var(--accent-gold);
    padding-left: 14px;
    margin: 12px 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
  }

  /* ===== PLAYER STATS ===== */
  .stats-grid { display: flex; flex-direction: column; gap: 10px; }
  .player-stat-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
  }
  .player-stat-row:hover { background: var(--bg-card2); }
  .player-position { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--text-muted); width: 28px; text-align: center; flex-shrink: 0; }
  .player-name-stat { font-weight: 700; font-size: 14px; color: var(--text-primary); flex: 1; }
  .player-name-stat .name-en { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; font-family: 'Oswald', sans-serif; margin-top: 1px; }
  .player-line { font-family: 'Oswald', sans-serif; font-size: 13px; color: var(--dodger-blue); font-weight: 600; text-align: right; flex-shrink: 0; }
  .team-divider {
    display: flex; align-items: center; gap: 10px; margin: 16px 0 10px;
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--text-muted);
  }
  .team-divider::before, .team-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .team-divider.lad { color: var(--dodger-blue-light); }
  .team-divider.sf { color: var(--sf-orange); }

  /* ===== REACTIONS ===== */
  .reaction-list { display: flex; flex-direction: column; gap: 20px; }
  .reaction-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
  .reaction-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .reaction-source { font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--text-secondary); letter-spacing: 0.5px; }
  .reaction-num {
    width: 24px; height: 24px;
    background: var(--dodger-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; color: white;
    flex-shrink: 0;
  }
  .reaction-body { padding: 16px 18px; }
  .reaction-en {
    font-style: italic; color: var(--text-secondary); font-size: 13px; line-height: 1.7;
    border-left: 2px solid var(--dodger-blue); padding-left: 12px; margin-bottom: 10px;
  }
  .reaction-ja { font-size: 13px; color: var(--text-primary); line-height: 1.8; padding-left: 14px; }
  .reaction-url {
    display: block; margin-top: 10px;
    font-family: 'Oswald', sans-serif; font-size: 10px; color: var(--text-muted);
    word-break: break-all; text-decoration: none; padding-left: 14px;
  }
  .reaction-url:hover { color: var(--dodger-blue-light); }

  /* ===== INTERVIEW ===== */
  .interview-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
  .interview-who {
    background: var(--gradient-blue);
    padding: 12px 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .who-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: white; flex-shrink: 0;
  }
  .who-name { font-weight: 700; font-size: 14px; color: white; }
  .who-role { font-size: 11px; color: rgba(255,255,255,0.8); font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; }
  .interview-quote-wrap { padding: 16px 20px; }
  .interview-quote { border-left: 3px solid var(--dodger-blue); padding-left: 14px; margin-bottom: 12px; }
  .interview-quote .en { font-style: italic; color: var(--text-secondary); font-size: 13px; line-height: 1.7; margin-bottom: 8px; }
  .interview-quote .ja { color: var(--text-primary); font-size: 13px; line-height: 1.8; }
  .interview-source { font-family: 'Oswald', sans-serif; font-size: 10px; color: var(--text-muted); word-break: break-all; margin-top: 8px; }
  .interview-source a { color: inherit; text-decoration: none; }
  .interview-source a:hover { color: var(--dodger-blue-light); }

  /* ===== STATCAST ===== */
  .statcast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
  .stat-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
    padding: 18px; text-align: center; position: relative; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .stat-card:hover { 
    border-color: var(--dodger-blue); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--dodger-blue); }
  .stat-card .stat-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
  .stat-card .stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--dodger-blue); line-height: 1; }
  .stat-card .stat-unit { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--text-muted); margin-top: 4px; }
  .stat-card .stat-player { font-size: 11px; color: var(--text-secondary); margin-top: 6px; }

  /* ===== SUMMARY ===== */
  .summary-cards { display: flex; flex-direction: column; gap: 12px; }
  .summary-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start;
  }
  .summary-icon { width: 36px; height: 36px; background: rgba(0,90,156,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .summary-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
  .summary-text strong { color: var(--text-primary); }

  /* ===== FOOTER ===== */
  .article-footer { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 48px; }
  .next-game-box {
    background: #f0f7ff;
    border: 1px solid var(--dodger-blue-light); border-radius: 10px;
    padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
  }
  .next-game-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--dodger-blue); text-transform: uppercase; margin-bottom: 4px; }
  .next-game-info { font-weight: 700; font-size: 15px; color: var(--text-primary); }
  .next-game-info span { color: var(--dodger-blue); }
  .next-arrow { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--dodger-blue); letter-spacing: 2px; }
  .author-box { display: flex; gap: 14px; align-items: center; padding: 16px 0; }
  .author-avatar { width: 48px; height: 48px; background: var(--gradient-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .author-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; color: var(--text-primary); }
  .author-bio { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .tag {
    background: rgba(0,90,156,0.08); border: 1px solid rgba(0,90,156,0.15);
    color: var(--dodger-blue); font-family: 'Oswald', sans-serif; font-size: 11px;
    letter-spacing: 0.5px; padding: 4px 12px; border-radius: 20px; text-decoration: none; transition: background 0.2s;
  }
  .tag:hover { background: rgba(0,90,156,0.15); }

  .intro-text { font-size: 15px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 8px; }
  .intro-text strong { color: var(--text-primary); }
  .lead-points { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; margin: 20px 0; display: flex; flex-direction: column; gap: 8px; }
  .lead-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
  .lead-point .dot { width: 6px; height: 6px; background: var(--dodger-blue); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

  @media (max-width: 600px) {
    .inning-grid { font-size: 9px; gap: 1px; }
    .score-num { font-size: 40px; }
    .team-abbr { font-size: 22px; width: 46px; }
    .statcast-grid { grid-template-columns: repeat(2, 1fr); }
    .yamamoto-stats { grid-template-columns: repeat(3, 1fr); }
  }
</style>
</head>
<body>

<!-- HERO -->
<div class="hero">
  <div class="hero-inner">
    <div class="hero-badge"><span class="dot"></span>Spring Training 2026</div>
    <h1 class="hero-title">
      山本由伸、<span class="accent">WBC前スプリングトレーニング最終登板</span>完遂！<br>
      3回2失点・4奪三振で<span class="japan">侍ジャパン</span>へ
    </h1>
    <div class="hero-meta">
      <span>📅 2026.02.27</span>
      <span>🏟 スコッツデールスタジアム（スコッツデール）</span>
      <span>⚾ ドジャース vs ジャイアンツ</span>
    </div>
    <div class="loss-banner">
      ドジャースはスプリングトレーニング<strong>6連勝がストップ</strong>。<br>山本降板後のブルペン陣が5・6回に集中崩壊。ただし今日の主役は「勝敗」ではありません。
    </div>
  </div>
</div>

<div class="article-wrap">

  <!-- SCOREBOARD -->
  <div class="scoreboard-wrap">
    <div class="scoreboard-header">
      <span>Final Score</span>
      <span class="final-badge">FINAL · LAD LOSS</span>
    </div>
    <div class="scoreboard-body">
      <div class="score-row">
        <div class="score-team">
          <div class="team-abbr lad">LAD</div>
          <div class="team-name-full">Los Angeles Dodgers</div>
        </div>
        <div class="score-num loser">4</div>
      </div>
      <div class="score-row">
        <div class="score-team">
          <div class="team-abbr sf">SF</div>
          <div class="team-name-full">San Francisco Giants</div>
        </div>
        <div class="score-num winner">12</div>
      </div>

      <div class="inning-grid">
        <div class="cell header team-label">TEAM</div>
        <div class="cell header">1</div><div class="cell header">2</div><div class="cell header">3</div>
        <div class="cell header">4</div><div class="cell header">5</div><div class="cell header">6</div>
        <div class="cell header">7</div><div class="cell header">8</div><div class="cell header">9</div>
        <div class="cell header">R</div>

        <div class="cell team-label">LAD</div>
        <div class="cell score-cell">0</div><div class="cell score-cell">1</div><div class="cell score-cell">1</div>
        <div class="cell score-cell">0</div><div class="cell score-cell">0</div><div class="cell score-cell">0</div>
        <div class="cell score-cell">0</div><div class="cell score-cell">0</div><div class="cell score-cell">2</div>
        <div class="cell total lose">4</div>

        <div class="cell team-label">SF</div>
        <div class="cell score-cell">1</div><div class="cell score-cell">1</div><div class="cell score-cell">0</div>
        <div class="cell score-cell">1</div><div class="cell highlight">5</div><div class="cell highlight">4</div>
        <div class="cell score-cell">0</div><div class="cell score-cell">0</div><div class="cell score-cell">X</div>
        <div class="cell total win">12</div>
      </div>

      <div class="wp-lp">
        <div class="wp-lp-item win"><span class="label">W</span><span class="name">R.J. Dabovich</span></div>
        <div class="wp-lp-item loss"><span class="label">L</span><span class="name">Ryder Ryan</span></div>
      </div>
    </div>
  </div>

  <!-- INTRO -->
  <p class="intro-text">
    スプリングトレーニングの連勝は6でストップしましたが、<strong>今日の試合の本質は「山本由伸がアメリカでのWBC前最終調整を終えた」</strong>という事実にあります。
    WSMVPとして2025年のポストシーズンを駆け抜けてから111日。今度は侍ジャパンのエースとして東京ドームへ向かいます。
  </p>
  <div class="lead-points">
    <div class="lead-point"><span class="dot"></span>山本由伸が<strong>3回2失点4奪三振52球</strong>でスプリングトレーニングを完遂</div>
    <div class="lead-point"><span class="dot"></span>ストライク率<strong>71%</strong>と安定した制球、WBCへの準備は万全</div>
    <div class="lead-point"><span class="dot"></span>山本退板後、ブルペンが5・6回に<strong>計9失点</strong>の大炎上</div>
  </div>

  <!-- YAMAMOTO CARD -->
  <div class="yamamoto-card">
    <div class="yamamoto-header">
      <div class="yamamoto-header-left">
        <div class="yamamoto-num">18</div>
        <div>
          <div class="yamamoto-name">山本 由伸</div>
          <div class="yamamoto-sub">Yoshinobu Yamamoto · SP · WBC前最終登板</div>
        </div>
      </div>
      <div class="yamamoto-badge">🇯🇵 WBC BOUND</div>
    </div>
    <div class="yamamoto-stats">
      <div class="yamamoto-stat">
        <div class="y-label">投球回</div>
        <div class="y-value ok">3</div>
      </div>
      <div class="yamamoto-stat">
        <div class="y-label">奪三振</div>
        <div class="y-value good">4</div>
      </div>
      <div class="yamamoto-stat">
        <div class="y-label">失点</div>
        <div class="y-value">2</div>
      </div>
      <div class="yamamoto-stat">
        <div class="y-label">投球数</div>
        <div class="y-value ok">52</div>
      </div>
      <div class="yamamoto-stat">
        <div class="y-label">ストライク率</div>
        <div class="y-value good">71%</div>
      </div>
      <div class="yamamoto-stat">
        <div class="y-label">今春通算ERA</div>
        <div class="y-value ok">5.79</div>
      </div>
    </div>
  </div>

  <!-- HIGHLIGHTS -->
  <div class="section-title">Match Highlights</div>
  <div class="highlight-cards">

    <div class="highlight-card" data-num="01">
      <div class="highlight-num">HIGHLIGHT 01</div>
      <div class="highlight-heading">🇯🇵 山本由伸、WBC前最終登板を完遂。初回は12球・三者凡退2奪三振</div>
      <div class="highlight-body">
        初回を<span class="stat-inline">12球</span><span class="stat-inline">三者凡退</span><span class="stat-inline">2奪三振</span>で圧巻スタート。
        2回以降は被安打が増えましたが本人が語る通り「イニング間の待ち時間が影響した」もので、
        ストライク率<span class="stat-inline">71%（37/52球）</span>と制球の安定感は申し分なし。
        3回を投げ終えた時点でロバーツ監督にボールを渡され、今度こそ正真正銘のWBCへの旅立ちとなりました。
        侍ジャパンのWBC初戦は3月6日（東京ドーム）、台湾戦の予定です。
      </div>
    </div>

    <div class="highlight-card" data-num="02">
      <div class="highlight-num">HIGHLIGHT 02</div>
      <div class="highlight-heading">💥 山本退板後のブルペンが5・6回に大炎上</div>
      <div class="highlight-body">
        山本が退いた後、Ryder Ryan・Luke Fox・Christian Romeroが5・6回に<span class="stat-inline">計9失点</span>の大崩れ。
        特にChristian Romeroはわずか⅓回で<span class="stat-inline">4失点（自責）</span><span class="stat-inline">ERA 108.00</span>という惨憺たる内容。
        この大炎上もあり、ドジャースはスプリングトレーニング初黒星となりました。
      </div>
    </div>

    <div class="highlight-card" data-num="03">
      <div class="highlight-num">HIGHLIGHT 03</div>
      <div class="highlight-heading">✨ プロスペクト・クリス・ニューウェルが9回に意地の2ラン</div>
      <div class="highlight-body">
        12-2と大量リードを奪われた9回に、<strong>クリス・ニューウェル</strong>が2ランホームランを放ち意地を見せました。
        <strong>ザック・エアハード</strong>も3打数2安打（二塁打2本）とコンスタントに結果を残しています。
      </div>
    </div>

  </div>

  <!-- EPISODE CARD -->
  <div class="episode-card">
    <div class="ep-label">🎭 話題のエピソード</div>
    <div class="ep-body">
      <strong>「ロバーツの失言」と山本由伸の冷静なツッコミ</strong><br><br>
      先週の第1戦（vs エンゼルス）後、ロバーツ監督がマウンドへ来て「WBC頑張れ」と言って手を握ったときのエピソードが話題です。まだもう1試合あった山本由伸はベンチへ戻りながら、後にこう語りました。
      <div class="ep-quote">&#8220;Doc came to the mound, and he said, &#8216;Good luck in the WBC.&#8217; But actually, I have one more game to pitch.&#8221;<br>（「ドクがマウンドに来て『WBC頑張れ』と言ったんです。でも実はもう1試合あるんですよ」）</div>
      報告を受けたロバーツは「え、そうなの？」と大笑い。ドジャースファンの間では「いつものロバーツ」と苦笑混じりに話題になりました。
    </div>
  </div>

  <!-- PLAYER STATS -->
  <div class="section-title">Player Stats</div>
  <div class="stats-grid">
    <div class="team-divider lad">🔵 Los Angeles Dodgers</div>
    <div class="player-stat-row">
      <div class="player-position">SP</div>
      <div class="player-name-stat">山本 由伸<span class="name-en">Yoshinobu Yamamoto</span></div>
      <div class="player-line">3回 4K 2失点 52球 ST71%</div>
    </div>
    <div class="player-stat-row">
      <div class="player-position">CF</div>
      <div class="player-name-stat">クリス・ニューウェル<span class="name-en">Chris Newell</span></div>
      <div class="player-line">1打数1安打（1HR）2打点1得点</div>
    </div>
    <div class="player-stat-row">
      <div class="player-position">CF</div>
      <div class="player-name-stat">ザック・エアハード<span class="name-en">Zach Ehrhard</span></div>
      <div class="player-line">3打数2安打（2B×2）</div>
    </div>
    <div class="player-stat-row">
      <div class="player-position">3B</div>
      <div class="player-name-stat">サンティアゴ・エスピナル<span class="name-en">Santiago Espinal</span></div>
      <div class="player-line">3打数1安打1打点 今春4/9</div>
    </div>
    <div class="team-divider sf">🟠 San Francisco Giants</div>
    <div class="player-stat-row">
      <div class="player-position">CF</div>
      <div class="player-name-stat">ビクター・ベリコト<span class="name-en">Victor Bericoto</span></div>
      <div class="player-line">3打数2安打（1HR）4打点1得点</div>
    </div>
    <div class="player-stat-row">
      <div class="player-position">RF</div>
      <div class="player-name-stat">ハレッド・オリバ<span class="name-en">Jared Oliva</span></div>
      <div class="player-line">3打数2安打4打点1得点</div>
    </div>
    <div class="player-stat-row">
      <div class="player-position">SS</div>
      <div class="player-name-stat">ウィリー・アダメス<span class="name-en">Willy Adames</span></div>
      <div class="player-line">3打数1安打（1HR）1打点1得点</div>
    </div>
  </div>

  <!-- REACTIONS -->
  <div class="section-title">現地の声（原文付き）</div>
  <div class="reaction-list">

    <div class="reaction-item">
      <div class="reaction-header">
        <div class="reaction-source">① Dodgers Nation — 山本のWBC旅立ちレポート</div>
        <div class="reaction-num">1</div>
      </div>
      <div class="reaction-body">
        <div class="reaction-en">&#8220;The Los Angeles Dodgers are losing their ace, Yoshinobu Yamamoto, to Team Japan, where he will be their leading pitcher in the World Baseball Classic. Yamamoto has been the workhorse for Los Angeles over the last year, coming in with no rest in Game 7 of the World Series and, overall, the MVP of the team during the postseason.&#8221;</div>
        <div class="reaction-ja">「ロサンゼルス・ドジャースは、エースの山本由伸をチームジャパンに送り出す。彼はWBCにおけるチームの中心投手となる。山本は昨シーズン、WS第7戦に休養ゼロで登板するなどドジャースの大黒柱として働き、ポストシーズンを通じてチームMVPに値する働きをした」</div>
        <a rel="noopener" class="reaction-url" href="https://dodgersnation.com/dodgers-yoshinobu-yamamoto-departs-for-wbc-after-second-spring-start/2026/02/27/" target="_blank">https://dodgersnation.com/dodgers-yoshinobu-yamamoto-departs-for-wbc-after-second-spring-start/2026/02/27/</a>
      </div>
    </div>

    <div class="reaction-item">
      <div class="reaction-header">
        <div class="reaction-source">② Yahoo Sports（Dodger Blue）— スプリングとWBCを見据えた冷静な評価</div>
        <div class="reaction-num">2</div>
      </div>
      <div class="reaction-body">
        <div class="reaction-en">&#8220;Yamamoto&#8217;s outing probably gives Dodgers manager Dave Roberts a semblance of comfort that his starting pitcher looks good. Yes, Yamamoto&#8217;s outing might not have been as clean as Roberts and Dodgers pitching coach Mark Prior might have wanted to see out of him. Remember, though, this is Spring Training, and working on pitches and mechanics at this point is important.&#8221;</div>
        <div class="reaction-ja">「山本の登板はロバーツ監督に先発投手の仕上がりへの安心感を与えたはずだ。今日の内容がロバーツとマーク・プライアーの望む完璧さには届かなかったかもしれないが、これはスプリングトレーニング。この時期に球種とメカニクスを磨くことが重要なのだ」</div>
        <a rel="noopener" class="reaction-url" href="https://sports.yahoo.com/articles/yoshinobu-yamamoto-makes-final-spring-232342838.html" target="_blank">https://sports.yahoo.com/articles/yoshinobu-yamamoto-makes-final-spring-232342838.html</a>
      </div>
    </div>

    <div class="reaction-item">
      <div class="reaction-header">
        <div class="reaction-source">③ Dodgers Way — 「ロバーツの失言」癖へのファンの苦笑反応</div>
        <div class="reaction-num">3</div>
      </div>
      <div class="reaction-body">
        <div class="reaction-en">&#8220;Love him or hate him, everyone knows Dave Roberts is a Hall of Fame manager. But there&#8217;s a peculiarity to Roberts that prompts anywhere between fond exasperation to real rage out of Dodgers fans. The guy isn&#8217;t great at keeping his facts straight.&#8221;</div>
        <div class="reaction-ja">「好き嫌いはあれど、デーブ・ロバーツが殿堂入り級の名将であることは誰もが認めている。ただ彼にはドジャースファンを呆れさせる特癖がある。事実を正確に把握しておくのが苦手なのだ」</div>
        <a rel="noopener" class="reaction-url" href="https://dodgersway.com/dave-roberts-wasted-no-time-getting-things-wrong-with-yoshinobu-yamamoto-wbc-gaffe" target="_blank">https://dodgersway.com/dave-roberts-wasted-no-time-getting-things-wrong-with-yoshinobu-yamamoto-wbc-gaffe</a>
      </div>
    </div>

    <div class="reaction-item">
      <div class="reaction-header">
        <div class="reaction-source">④ Yahoo Sports — キケ・ヘルナンデスが語る「山本は化け物」</div>
        <div class="reaction-num">4</div>
      </div>
      <div class="reaction-body">
        <div class="reaction-en">&#8220;The dude is an animal. Obviously he deserves every cent that they gave him. Little guy, nicest guy in the world, but man, he&#8217;s got that &#8216;F-you&#8217; when he&#8217;s on the mound. That stadium is his, and he&#8217;s shown it.&#8221;</div>
        <div class="reaction-ja">「あいつは化け物だ。もらったカネ全部に値する選手だよ。小柄で世界一気のいいやつだけど、マウンドに上がると&#8221;黙って見てろ&#8221;オーラが出る。あの球場は彼のものだ、そしてそれを証明し続けている」— キケ・エルナンデス（Baseball &#038; Coffee ポッドキャスト）</div>
        <a rel="noopener" class="reaction-url" href="https://ca.sports.yahoo.com/news/yoshinobu-yamamoto-balances-workload-wbc-015028821.html" target="_blank">https://ca.sports.yahoo.com/news/yoshinobu-yamamoto-balances-workload-wbc-015028821.html</a>
      </div>
    </div>

  </div>

  <!-- INTERVIEWS -->
  <div class="section-title">監督・選手コメント</div>

  <div class="interview-block">
    <div class="interview-who">
      <div class="who-icon">DR</div>
      <div>
        <div class="who-name">デーブ・ロバーツ監督</div>
        <div class="who-role">山本由伸のWBC参加・今日の登板について</div>
      </div>
    </div>
    <div class="interview-quote-wrap">
      <div class="interview-quote">
        <div class="en">&#8220;For me, it&#8217;s just more of the well-wishing, good luck. Yoshinobu knows when he&#8217;s going to pitch for Team Japan. We&#8217;re aligned, as far as our organization, our pitching guys. He&#8217;s comfortable with it.&#8221;</div>
        <div class="ja">「私からしたら、ただ頑張れと伝えるだけだ。由伸はいつ侍ジャパンで投げるか理解している。我々の組織と投手スタッフとの間で連携は取れている。彼自身も納得している」</div>
      </div>
      <div class="interview-quote">
        <div class="en">&#8220;We&#8217;re going to miss him certainly when he&#8217;s away with Team Japan, but we absolutely got what we needed.&#8221;</div>
        <div class="ja">「侍ジャパンに行っている間は確かに寂しくなる。でも我々は必要なものを確実に得た」</div>
      </div>
      <div class="interview-source">出典：<a rel="noopener" href="https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/" target="_blank">https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/</a></div>
    </div>
  </div>

  <div class="interview-block">
    <div class="interview-who">
      <div class="who-icon">YY</div>
      <div>
        <div class="who-name">山本 由伸</div>
        <div class="who-role">今日の登板・WBCについて（通訳：園田芳弘氏）</div>
      </div>
    </div>
    <div class="interview-quote-wrap">
      <div class="interview-quote">
        <div class="en">&#8220;I was already feeling good. And then somehow I was able to carry that to today&#8217;s game, especially the first inning. I think I was great, but due to the gap between innings, that affected me a little bit.&#8221;</div>
        <div class="ja">「もともと状態は良かった。それを今日の試合、特に初回に持ち込めた。初回は素晴らしかったと思う。ただイニング間の待ち時間が少し影響してしまった」</div>
      </div>
      <div class="interview-quote">
        <div class="en">&#8220;I&#8217;m looking forward to that game against Taiwan. I understand the passion of Taiwanese fans and baseball fans. So I think it&#8217;s special.&#8221;</div>
        <div class="ja">「台湾戦が楽しみです。台湾のファンや野球ファンの情熱はわかっている。特別な試合になると思います」</div>
      </div>
      <div class="interview-quote">
        <div class="en">&#8220;That&#8217;s a secret.&#8221;（台湾戦の投球イニング数を聞かれて、笑いながら）</div>
        <div class="ja">「それは秘密です」（笑）</div>
      </div>
      <div class="interview-source">出典：<a rel="noopener" href="https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/" target="_blank">https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/</a></div>
    </div>
  </div>

  <div class="interview-block">
    <div class="interview-who">
      <div class="who-icon">DR</div>
      <div>
        <div class="who-name">デーブ・ロバーツ監督</div>
        <div class="who-role">サンティアゴ・エスピナルについて</div>
      </div>
    </div>
    <div class="interview-quote-wrap">
      <div class="interview-quote">
        <div class="en">&#8220;I like the bat to ball. He&#8217;s a heady player. I&#8217;m playing him a lot because I want to gather more information. But I really like what he&#8217;s done. I can trust him essentially anywhere on the diamond.&#8221;</div>
        <div class="ja">「ボールへのコンタクト能力が好きだ。頭の使えるプレーヤーだ。情報を集めたいので多く起用しているが、彼のパフォーマンスはとても気に入っている。ダイヤモンドのどこでも信頼して任せられる」</div>
      </div>
      <div class="interview-source">出典：<a rel="noopener" href="https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/" target="_blank">https://www.dailybulletin.com/2026/02/27/dodgers-yoshinobu-yamamoto-finishes-cactus-league-work-heads-to-japan/</a></div>
    </div>
  </div>

  <!-- STATCAST -->
  <div class="section-title">Statcast Data</div>
  <div class="statcast-grid">
    <div class="stat-card">
      <div class="stat-label">山本 ストライク率</div>
      <div class="stat-value">71%</div>
      <div class="stat-unit">37/52球（今試合）</div>
      <div class="stat-player">佐々木47%と対照的</div>
    </div>
    <div class="stat-card">
      <div class="stat-label">山本 奪三振率</div>
      <div class="stat-value">12.0</div>
      <div class="stat-unit">K/9（今試合換算）</div>
      <div class="stat-player">Yoshinobu Yamamoto</div>
    </div>
    <div class="stat-card">
      <div class="stat-label">今春通算成績</div>
      <div class="stat-value">4⅔</div>
      <div class="stat-unit">回 7K 3自責点</div>
      <div class="stat-player">2試合計（山本）</div>
    </div>
    <div class="stat-card">
      <div class="stat-label">WBC初戦登板予定</div>
      <div class="stat-value">60</div>
      <div class="stat-unit">球（目安）vs 台湾</div>
      <div class="stat-player">3月6日 東京ドーム</div>
    </div>
    <div class="stat-card">
      <div class="stat-label">ドジャース今春</div>
      <div class="stat-value">6-1</div>
      <div class="stat-unit">スプリングT戦績</div>
      <div class="stat-player">得点55 / 失点31</div>
    </div>
    <div class="stat-card">
      <div class="stat-label">2025年 山本ERA</div>
      <div class="stat-value">2.49</div>
      <div class="stat-unit">WHIP 0.990</div>
      <div class="stat-player">201K · WS MVP</div>
    </div>
  </div>
  <p style="font-size:11px;color:var(--text-muted);margin-top:12px;">
    ※スプリングトレーニングはStatcastフル計測対象外の場合あり。数値は報道ベース。<br>
    詳細：<a rel="noopener" href="https://baseballsavant.mlb.com/" style="color:var(--dodger-blue);" target="_blank">https://baseballsavant.mlb.com/</a>
  </p>

  <!-- SUMMARY -->
  <div class="section-title">まとめ</div>
  <div class="summary-cards">
    <div class="summary-card">
      <div class="summary-icon">🎯</div>
      <div class="summary-text"><strong>山本由伸の仕上がりに不安なし。エージェントも「すべて計画通り」</strong><br>
      3回2失点という数字だけ見れば物足りなく映るかもしれませんが、初回の内容・ストライク率71%・エージェントWolfe氏の「すべて綿密に設計されている」という証言を踏まえれば、WBCそしてレギュラーシーズンへの準備は万全です。</div>
    </div>
    <div class="summary-card">
      <div class="summary-icon">🚨</div>
      <div class="summary-text"><strong>ブルペンに不安？</strong><br>
      山本が退いた後の5・6回に計9失点。主力ではないとはいえ、昨年のようなブルペン陣が打ち込まれるということにならないよう、スプリングトレーニングから様々な投手に結果を残してもらいたいです。</div>
    </div>
    <div class="summary-card">
      <div class="summary-icon">🌟</div>
      <div class="summary-text"><strong>WBC後の再合流が今から楽しみ</strong><br>
      山本・大谷・キム・ヘソン・ウィル・スミスが次々とWBCへ旅立つドジャース。それでもスプリングトレーニング6勝1敗という成績が、この組織の層の厚さを証明しています。WBC終了後に主力が揃ったドジャースは本物の怪物チームになるでしょう。</div>
    </div>
  </div>

  <!-- FOOTER -->
  <div class="article-footer">
    <div class="next-game-box">
      <div>
        <div class="next-game-label">Next Game</div>
        <div class="next-game-info">2月28日（土）<span>ドジャース vs レンジャーズ／カブス（2試合）</span></div>
      </div>
      <div class="next-arrow">NEXT ▶</div>
    </div>
    <div class="author-box">
      <div class="author-avatar"><img decoding="async" src="https://capymaru.com/wp-content/uploads/2026/02/capymaru_icon.png" alt="かぴまるアイコン"></div>
      <div>
        <div class="author-name">かぴまる｜MLB現地通信</div>
        <div class="author-bio">ドジャーブルーに染まったかぴまるです！ドジャースを中心にMLBの情報、データ、現地の熱狂を「原文付き」でお届けします！</div>
      </div>
    </div>
    <div class="tags">
      <a class="tag" href="#">ドジャース</a>
      <a class="tag" href="#">山本由伸</a>
      <a class="tag" href="#">YoshinobuYamamoto</a>
      <a class="tag" href="#">WBC2026</a>
      <a class="tag" href="#">侍ジャパン</a>
      <a class="tag" href="#">スプリングトレーニング2026</a>
      <a class="tag" href="#">MLB</a>
      <a class="tag" href="#">スタットキャスト</a>
      <a class="tag" href="#">海外の反応</a>
    </div>
  </div>

</div>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://capymaru.com/03_dodgers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
