<?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>あせびよ</title>
	<atom:link href="https://ascend-beyond.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://ascend-beyond.com</link>
	<description></description>
	<lastBuildDate>Wed, 01 Apr 2026 10:11:04 +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://ascend-beyond.com/wp-content/uploads/2024/03/cropped-9376b452e9b0c7a8bdf82cd2e63920ee-32x32.jpg</url>
	<title>あせびよ</title>
	<link>https://ascend-beyond.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<atom:link rel="hub" href=""/>	<item>
		<title>Exchange Onlineコマンドのみで削除</title>
		<link>https://ascend-beyond.com/other/7723/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Wed, 01 Apr 2026 10:11:04 +0000</pubDate>
				<category><![CDATA[Other]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7723</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<p></p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(2 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="# デスクトップへ移動
Set-Location (Join-Path $env:USERPROFILE Desktop)

# ログファイル作成
$LogFile = Get-Date -Format &quot;yyyy-MMdd-HHmmss&quot;
$Process = &quot;TeamsDelete&quot;
$LogPath = Join-Path $env:USERPROFILE &quot;Desktop\$Process`_$LogFile.txt&quot;

Start-Transcript -Path $LogPath

# 接続（←ここが重要：シンプルにする）
Connect-ExchangeOnline | Out-Null

# 削除対象Teams（ここに追加）
$Teams = @(
&quot;TMS_o365_jp116232&quot;,
&quot;TMS_o365_jp116231&quot;
)

foreach ($Team in $Teams) {

    try {
        Write-Host &quot;Deleting Team: $Team&quot;

        Remove-UnifiedGroup -Identity $Team -Confirm:$false

        Write-Host &quot;SUCCESS: $Team deleted&quot;
    }
    catch {
        Write-Host &quot;ERROR: $Team failed - $_&quot;
    }
}

Stop-Transcript" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2"># デスクトップへ移動</span></span>
<span class="line"><span style="color: #F92672">Set-Location</span><span style="color: #F8F8F2"> (</span><span style="color: #F92672">Join-Path</span><span style="color: #F8F8F2"> $env:USERPROFILE Desktop)</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2"># ログファイル作成</span></span>
<span class="line"><span style="color: #F8F8F2">$LogFile = Get</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Date </span><span style="color: #F92672">-</span><span style="color: #F8F8F2">Format </span><span style="color: #E6DB74">&quot;yyyy-MMdd-HHmmss&quot;</span></span>
<span class="line"><span style="color: #F8F8F2">$Process = </span><span style="color: #E6DB74">&quot;TeamsDelete&quot;</span></span>
<span class="line"><span style="color: #F8F8F2">$LogPath = Join</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Path $env:USERPROFILE </span><span style="color: #E6DB74">&quot;Desktop</span><span style="color: #AE81FF">\$</span><span style="color: #E6DB74">Process`_$LogFile.txt&quot;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">Start</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Transcript </span><span style="color: #F92672">-</span><span style="color: #F8F8F2">Path $LogPath</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2"># 接続（←ここが重要：シンプルにする）</span></span>
<span class="line"><span style="color: #F8F8F2">Connect</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">ExchangeOnline | Out</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Null</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2"># 削除対象Teams（ここに追加）</span></span>
<span class="line"><span style="color: #F8F8F2">$Teams = @(</span></span>
<span class="line"><span style="color: #E6DB74">&quot;TMS_o365_jp116232&quot;</span><span style="color: #F8F8F2">,</span></span>
<span class="line"><span style="color: #E6DB74">&quot;TMS_o365_jp116231&quot;</span></span>
<span class="line"><span style="color: #F8F8F2">)</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">foreach ($Team in $Teams) {</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">    try {</span></span>
<span class="line"><span style="color: #F8F8F2">        Write</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Host </span><span style="color: #E6DB74">&quot;Deleting Team: $Team&quot;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">        Remove</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">UnifiedGroup </span><span style="color: #F92672">-</span><span style="color: #F8F8F2">Identity $Team </span><span style="color: #F92672">-</span><span style="color: #F8F8F2">Confirm:$false</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">        Write</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Host </span><span style="color: #E6DB74">&quot;SUCCESS: $Team deleted&quot;</span></span>
<span class="line"><span style="color: #F8F8F2">    }</span></span>
<span class="line"><span style="color: #F8F8F2">    catch {</span></span>
<span class="line"><span style="color: #F8F8F2">        Write</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Host </span><span style="color: #E6DB74">&quot;ERROR: $Team failed - $_&quot;</span></span>
<span class="line"><span style="color: #F8F8F2">    }</span></span>
<span class="line"><span style="color: #F8F8F2">}</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F8F8F2">Stop</span><span style="color: #66D9EF">-</span><span style="color: #F8F8F2">Transcript</span></span></code></pre></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>🔹 VMware に Ubuntu Server を入れる全体の流れ（まとめ）</title>
		<link>https://ascend-beyond.com/study/7695/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Fri, 21 Nov 2025 09:46:50 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[ネスペ]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7695</guid>

					<description><![CDATA[1️⃣ VMware で新規仮想マシン作成 2️⃣ Ubuntu インストール開始 3️⃣ ネットワーク設定 4️⃣ ミラー・プロキシの設定 5️⃣ ディスク・ストレージ設定 6️⃣ ユーザー作成 7️⃣ Ubuntu  [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"><span id="toc1">1️⃣ VMware で新規仮想マシン作成</span></h3>



<ul class="wp-block-list">
<li>「Create a New Virtual Machine」 → Typical を選択</li>



<li>インストーラー ISO を指定（Ubuntu Server）</li>



<li>OS を Linux → Ubuntu 64-bit</li>



<li>VM 名を設定（例：UbuntuSyslog）</li>



<li>ディスクサイズを指定（例：20GB）</li>



<li><strong>ディスクを複数ファイルに分割</strong>を選択</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc2">2️⃣ Ubuntu インストール開始</span></h3>



<ul class="wp-block-list">
<li>仮想マシンの電源を入れると ISO が起動</li>



<li>「Try or Install Ubuntu Server」を選択</li>



<li>キーボード設定
<ul class="wp-block-list">
<li>Layout：Japanese</li>



<li>Variant：Japanese（標準）</li>
</ul>
</li>



<li>インストールタイプ
<ul class="wp-block-list">
<li>Ubuntu Server（標準）を選択</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc3">3️⃣ ネットワーク設定</span></h3>



<ul class="wp-block-list">
<li>ネットワークコンフィギュレーション画面は <strong>DHCP 自動取得でOK</strong></li>



<li>IP が自動で割り当てられる（例：192.168.x.x）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc4">4️⃣ ミラー・プロキシの設定</span></h3>



<ul class="wp-block-list">
<li><strong>Ubuntu Archive Mirror</strong> → そのまま空欄で Done</li>



<li><strong>Proxy</strong> → そのまま空欄で Done</li>



<li>迷ったら「CONTINUE」を押して次へ進む</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc5">5️⃣ ディスク・ストレージ設定</span></h3>



<ul class="wp-block-list">
<li>Guided Storage Configuration で <strong>Use an Entire Disk</strong> を選択</li>



<li>パーティションや LVM、暗号化は不要</li>



<li>サマリー画面で <strong>Done</strong> を押す</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc6">6️⃣ ユーザー作成</span></h3>



<ul class="wp-block-list">
<li>Your name（フルネーム）を入力</li>



<li>Server name（ホスト名）を入力</li>



<li>Username（ログインユーザー名）を入力</li>



<li>Password / Confirm Password を入力</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc7">7️⃣ Ubuntu Pro はスキップ</span></h3>



<ul class="wp-block-list">
<li>Enable Ubuntu Pro → <strong>Skip for Now</strong></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc8">8️⃣ SSH サーバのインストール</span></h3>



<ul class="wp-block-list">
<li>Install OpenSSH server に <strong>チェックを入れる</strong></li>



<li>Import SSH keys → <strong>何もせずスキップ</strong></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc9">9️⃣ インストール実行</span></h3>



<ul class="wp-block-list">
<li>Installing system 画面で自動インストール開始</li>



<li>インストール完了後に <strong>Reboot Now</strong> で再起動</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc10"> 10 再起動後</span></h3>



<ul class="wp-block-list">
<li>設定したユーザー名・パスワードでログイン</li>



<li>IP を確認して GNS3 の Cloud で接続すれば <strong>Syslog やウェブサーバなどのサービスを構築可能</strong></li>
</ul>



<h4 class="wp-block-heading"><span id="toc11">Failed Unmounting CDROM…Please Remove the Installation Medium, Then Press Enter</span></h4>



<ol class="wp-block-list">
<li><strong>Failed Unmounting CDROM…</strong>
<ul class="wp-block-list">
<li>Ubuntu インストーラーが ISO イメージをアンマウント（取り外す）ときに失敗したメッセージ</li>



<li>仮想マシンの仮想 CD/DVD ドライブがまだ接続されている場合に出ます</li>



<li><strong>システム自体はインストール済みで問題なし</strong></li>
</ul>
</li>



<li><strong>Please Remove the Installation Medium, Then Press Enter</strong>
<ul class="wp-block-list">
<li>「インストール用 ISO（CD/DVD）を取り外して、Enter を押してね」という意味</li>



<li>VMware 上では <strong>CD/DVD（ISO）を切断すれば OK</strong></li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc12">🔹 解決手順（VMware 側）</span></h5>



<ol class="wp-block-list">
<li>仮想マシンのウィンドウで <strong>VM → Settings → CD/DVD (IDE)</strong> を開く</li>



<li>「Use ISO image file」が選択されていたら、<br><strong>「Disconnected」</strong> または <strong>「Remove」</strong> にチェック</li>



<li>設定を保存して Enter を押す</li>
</ol>



<p>これでメッセージは消え、Ubuntu が正常に起動します。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc13">11 VMware VM を不要になったら</span></h3>



<ul class="wp-block-list">
<li>Delete from Disk で削除すれば、ディスク容量も解放される</li>



<li>Remove from Library だとファイルは残る</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>💡 ポイントまとめ</p>



<ul class="wp-block-list">
<li>この手順は <strong>Syslog でもウェブサーバでもほぼ同じ</strong></li>



<li>違うのは <strong>インストールするアプリ</strong>（rsyslog / Apache / Nginx など）だけ</li>



<li>役割ごとに新規 VM を作ると学習しやすい</li>
</ul>



<h1 class="wp-block-heading">✳️ステップ1：VMwareとGNS3をつなぐ</h1>



<p>VMwareのUbuntuには <strong>NICを2枚つけましょう</strong></p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>名前（例）</th><th>接続方式</th><th>目的</th></tr></thead><tbody><tr><td>NIC1</td><td>NAT（インターネット接続用）</td><td>apt updateなどの通信</td></tr><tr><td>NIC2</td><td>GNS3との接続（Host-only 推奨）</td><td>ルータと通信</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc14">VMware設定手順</span></h3>



<ol class="wp-block-list">
<li>VMwareで Ubuntu VM を選択</li>



<li>設定（Settings）</li>



<li>Network Adapter を <strong>2枚</strong>追加（合計2つ）</li>



<li>それぞれ以下に設定：</li>
</ol>



<ul class="wp-block-list">
<li><strong>Network Adapter 1</strong> → NAT</li>



<li><strong>Network Adapter 2</strong> → Host-only</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc15">Ubuntu側で確認</span></h3>



<p>Ubuntuを起動してターミナルで：</p>



<pre class="wp-block-code"><code>ip a
</code></pre>



<p>NICが2つ見えればOK！</p>



<p>例：</p>



<ul class="wp-block-list">
<li><code>ens33</code> → NAT側でIP取得</li>



<li><code>ens38</code> → Host-only側（例：192.168.56.x）</li>
</ul>



<p>※名前はPC環境で違います</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h1 class="wp-block-heading">✳️ステップ2：GNS3上でUbuntuを追加</h1>



<p>クラウドを追加するパターン</p>



<ol class="wp-block-list">
<li>Ubuntは１枚目をNAT（adapter8）にする</li>



<li>ip aでアドレスを確認</li>



<li>クラウドを配置→adapter8を設定する</li>



<li>ルータにadapter8と同じサブネットのIPアドレスを設定</li>



<li>ping で確認するとhostonlyで接続するよりも高速にpingが通る</li>
</ol>



<p></p>



<p><strong>GNS3に VMwareのUbuntu VM を追加します。</strong></p>



<ol class="wp-block-list">
<li>GNS3の上部メニュー
<ul class="wp-block-list">
<li>[Preferences] → [VMware VMs]</li>
</ul>
</li>



<li>&#8220;Add&#8221;</li>



<li>Ubuntu を選択</li>



<li>詳細設定で「ネットワークタブ」→「NIC数」→２枚を選択<br>NIC数が１つだと競合しちゃう<br>Error! While creating link, attachment NAT is already configured on Network Adapter 0. Please remove it, or allow VMware VM ovens PC senior to use any adapter.</li>
</ol>



<p>その後、UbuntuをTopologyへドラッグ✔️<br>IOSvルータとケーブルで接続✔️</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h1 class="wp-block-heading">✳️ステップ3：Ubuntu ↔ ルータ の疎通確認</h1>



<p>Ubuntu側の Host-only NIC にIP設定：</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="sudo ip addr add 192.168.2.100/24 dev ens38
sudo ip link set ens38 up" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">sudo ip addr add 192</span><span style="color: #A6E22E">.168.2</span><span style="color: #F8F8F2">.100/24 dev ens38</span></span>
<span class="line"><span style="color: #F8F8F2">sudo ip </span><span style="color: #F92672">link</span><span style="color: #F8F8F2"> </span><span style="color: #F92672">set</span><span style="color: #F8F8F2"> ens38 up</span></span></code></pre></div>



<p>お互いに ping で確認：</p>



<p>👍 通ったら次へ！</p>



<p></p>



<p>１．クラウドをセット（ローカル）</p>



<p>２．VMnet８を追加</p>



<p>３．イーサネットをそこに接続（ルータのインタフェースはNAT側のIPに合わせる）</p>



<p>４．スタティックルーティングを設定する</p>



<p>５pingで疎通。これで、サーバとルータが通信可能！</p>



<h1 class="wp-block-heading">PCとしてUbuntuを動作させる</h1>



<p>１．NICのHostOnlyを１枚目とする</p>



<p>２．GNS3でVMnet1を追加</p>



<p>３. ルータのIPアドレスをVMnet1に合わせる</p>



<p></p>



<h1 class="wp-block-heading">デフォルトゲートウェイ設定</h1>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="sudo ip route add default via 192.168.1.1" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">sudo ip route add default via 192</span><span style="color: #A6E22E">.168.1.1</span></span></code></pre></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>HTTP1.0/1.1/2/3の違いを分かりやすく</title>
		<link>https://ascend-beyond.com/study/7687/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Wed, 08 Oct 2025 05:35:33 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[ネスペ]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7687</guid>

					<description><![CDATA[HTTPのセッションとストリームを「トンネルとトラック（ストリームの色分け）」に置き換えて勉強していきましょう。HTTP/1.0 → HTTP/1.1 → HTTP/2 → HTTP/3 の違いを整理して見ていきましょう [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>HTTPのセッションとストリームを「トンネルとトラック（ストリームの色分け）」に置き換えて勉強していきましょう。<br>HTTP/1.0 → HTTP/1.1 → HTTP/2 → HTTP/3 の違いを整理して見ていきましょう。</p>



<h2 class="wp-block-heading"><span id="toc1">🛣️ 共通イメージ：「1本の道路（TCP接続）」と「トラック（HTTPリクエスト）」</span></h2>



<ul class="wp-block-list">
<li><strong>道路（トンネル）</strong>：TCP接続</li>



<li><strong>トラック</strong>：HTTPリクエスト・レスポンス</li>



<li><strong>荷物の色分け（赤・青・緑）</strong>：HTTP/2以降のストリームID（リクエスト識別）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc2">🚗 HTTP/1.0：</span></h2>



<p><strong>「トラック1台ずつしかトンネルに入れない」</strong></p>



<h3 class="wp-block-heading"><span id="toc3">イメージ</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="┌───────────────┐
│ トンネル(TCP) │
└───────────────┘
   🚚(リクエスト1)
   ↑出たら閉じる
   🚚(リクエスト2)
   ↑出たらまた閉じる
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">┌───────────────┐</span></span>
<span class="line"><span style="color: #F8F8F2">│ トンネル(TCP) │</span></span>
<span class="line"><span style="color: #F8F8F2">└───────────────┘</span></span>
<span class="line"><span style="color: #F8F8F2">   🚚(リクエスト1)</span></span>
<span class="line"><span style="color: #F8F8F2">   ↑出たら閉じる</span></span>
<span class="line"><span style="color: #F8F8F2">   🚚(リクエスト2)</span></span>
<span class="line"><span style="color: #F8F8F2">   ↑出たらまた閉じる</span></span>
<span class="line"></span></code></pre></div>



<h3 class="wp-block-heading"><span id="toc4">説明</span></h3>



<ul class="wp-block-list">
<li>リクエストごとにTCP接続を<strong>新規に作る</strong>。</li>



<li>1ページに画像が10個あれば、10回トンネルを掘る（＝10回TCP確立）。</li>



<li>→ トンネル掘る（3ウェイハンドシェイク）だけで時間がかかる。</li>
</ul>



<h3 class="wp-block-heading"><span id="toc5">問題点</span></h3>



<ul class="wp-block-list">
<li>接続確立コストが大きい</li>



<li>同時に1つのリクエストしか送れない</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc6">🚚 HTTP/1.1（Persistent Connection）：</span></h2>



<p><strong>「トンネルは1本のまま、トラックを何台も順番に通せるようになった」</strong></p>



<h3 class="wp-block-heading"><span id="toc7">イメージ</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="┌───────────────┐
│ トンネル(TCP) │
└───────────────┘
   🚚(リクエスト1)
   🚚(リクエスト2)
   🚚(リクエスト3)
   …
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">┌───────────────┐</span></span>
<span class="line"><span style="color: #F8F8F2">│ トンネル(TCP) │</span></span>
<span class="line"><span style="color: #F8F8F2">└───────────────┘</span></span>
<span class="line"><span style="color: #F8F8F2">   🚚(リクエスト1)</span></span>
<span class="line"><span style="color: #F8F8F2">   🚚(リクエスト2)</span></span>
<span class="line"><span style="color: #F8F8F2">   🚚(リクエスト3)</span></span>
<span class="line"><span style="color: #F8F8F2">   …</span></span>
<span class="line"></span></code></pre></div>



<h3 class="wp-block-heading"><span id="toc8">説明</span></h3>



<ul class="wp-block-list">
<li>一度トンネルを掘ったら（TCP接続確立したら）、<strong>閉じずに使い回す（Keep-Alive）</strong>。</li>



<li>これでTCPの確立コストが削減。</li>
</ul>



<h3 class="wp-block-heading"><span id="toc9">でも問題発生：ヘッドオブラインブロッキング（HOLB）</span></h3>



<ul class="wp-block-list">
<li>トラック（リクエスト）は<strong>1台ずつ順番に</strong>しか通れない。</li>



<li>先頭のトラックが渋滞（応答遅延）すると、<strong>後ろのトラックも動けない</strong>。</li>



<li>これがHTTP/1.1のHOLB問題。</li>
</ul>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="🚚(画像1:遅い)
🚚(画像2:早いけど待ち)
🚚(画像3:早いけど待ち)
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">🚚(画像1:遅い)</span></span>
<span class="line"><span style="color: #F8F8F2">🚚(画像2:早いけど待ち)</span></span>
<span class="line"><span style="color: #F8F8F2">🚚(画像3:早いけど待ち)</span></span>
<span class="line"></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc10">🚛 HTTP/2（マルチプレクシング）：</span></h2>



<p><strong>「1本のトンネルの中で、トラックに色を付けて、混在して走らせる！」</strong></p>



<h3 class="wp-block-heading"><span id="toc11">イメージ</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="┌──────────────────┐
│ トンネル(TCP)   │
│ 🚚赤🚛青🚚赤🚜緑🚚青🚜緑 │ ← 順番に混ざって流れる
└──────────────────┘
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">┌──────────────────┐</span></span>
<span class="line"><span style="color: #F8F8F2">│ トンネル(TCP)   │</span></span>
<span class="line"><span style="color: #F8F8F2">│ 🚚赤🚛青🚚赤🚜緑🚚青🚜緑 │ ← 順番に混ざって流れる</span></span>
<span class="line"><span style="color: #F8F8F2">└──────────────────┘</span></span>
<span class="line"></span></code></pre></div>



<h3 class="wp-block-heading"><span id="toc12">説明</span></h3>



<ul class="wp-block-list">
<li>トラック（HTTPリクエスト）を<strong>フレーム単位に細かく分ける</strong>。</li>



<li>それぞれに「ストリームID（色）」を付ける。</li>



<li>同じトンネル内で、赤・青・緑のトラック（データ）を交互に流せる。</li>
</ul>



<p>→ アプリ層的には「複数リクエストを同時に処理できる」ように見える！</p>



<h3 class="wp-block-heading"><span id="toc13">しかし…</span></h3>



<ul class="wp-block-list">
<li>トンネル（TCP）は1本。</li>



<li>もしトンネル内で<strong>1つのパケットが落ちると</strong>、後続のデータが全部ストップ。<br>→ これが<strong>TCPレベルのHOLB</strong>。</li>
</ul>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="🚚赤[欠損]🚛青🚜緑 → 青と緑は来てるけど、赤が復旧するまで渡せない
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">🚚赤[</span><span style="color: #A6E22E">欠損</span><span style="color: #F8F8F2">]🚛青🚜緑 → 青と緑は来てるけど、赤が復旧するまで渡せない</span></span>
<span class="line"></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc14">🚀 HTTP/3（QUIC：UDPベース）：</span></h2>



<p><strong>「トンネルをやめて、それぞれが自分専用のレーンを持つ」</strong></p>



<h3 class="wp-block-heading"><span id="toc15">イメージ</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">SCSS</span><span role="button" tabindex="0" data-code="🚚赤 ────────────→
🚛青 ───────→
🚜緑 ─────────────→
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">🚚赤 ────────────→</span></span>
<span class="line"><span style="color: #F8F8F2">🚛青 ───────→</span></span>
<span class="line"><span style="color: #F8F8F2">🚜緑 ─────────────→</span></span>
<span class="line"></span></code></pre></div>



<h3 class="wp-block-heading"><span id="toc16">説明</span></h3>



<ul class="wp-block-list">
<li>TCPではなく<strong>UDP＋QUIC</strong>を使う。</li>



<li>QUICでは、ストリームごとに<strong>独立した再送制御</strong>ができる。</li>



<li>赤のトラックが事故っても、青と緑は<strong>自分のレーンで進める</strong>。</li>
</ul>



<p>→ TCP時代のHOLB問題を<strong>完全に解消</strong>！</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc17">💡 まとめ表</span></h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>バージョン</th><th>仕組み</th><th>イメージ</th><th>HOLB問題</th></tr></thead><tbody><tr><td>HTTP/1.0</td><td>毎回TCP接続</td><td>トンネルを毎回掘る</td><td>なし（単純）</td></tr><tr><td>HTTP/1.1</td><td>持続的接続</td><td>1本のトンネルに順番で通す</td><td>あり（先頭待ち）</td></tr><tr><td>HTTP/2</td><td>マルチプレクシング</td><td>1本のトンネルに色付きトラックを混ぜる</td><td>TCPレベルで残る</td></tr><tr><td>HTTP/3</td><td>QUIC（UDP）</td><td>トンネルをやめ、各色が独自レーンを持つ</td><td>解消</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc18">🎯 重要ポイント（ネスペ試験で狙われる）</span></h2>



<ol class="wp-block-list">
<li><strong>HTTP/1.1のHOLB問題</strong>
<ul class="wp-block-list">
<li>1つのTCP接続上でリクエストを順次送るため、先頭の応答遅延が全体に影響する。</li>
</ul>
</li>



<li><strong>HTTP/2の改善</strong>
<ul class="wp-block-list">
<li>マルチプレクシングにより、論理的には並列化できるが、TCPの順序制御が根本的に残る。</li>
</ul>
</li>



<li><strong>HTTP/3の最終解決</strong>
<ul class="wp-block-list">
<li>UDPベースのQUICで、ストリームごとの独立再送を実現。真の並列処理が可能。</li>
</ul>
</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<ul class="wp-block-list">
<li class="has-f-8-f-8-f-2-color has-text-color">HTTP/1.0：トンネルを毎回掘ってトラックを1台ずつ通す</li>



<li class="has-f-8-f-8-f-2-color has-text-color">HTTP/1.1：トンネルは共通だが、トラックは順番待ち</li>



<li class="has-f-8-f-8-f-2-color has-text-color">HTTP/2：トンネル内で色分けして混ぜて走らせる</li>



<li class="has-f-8-f-8-f-2-color has-text-color">HTTP/3：トンネルをやめて、色ごとに独立した道路を持たせる</li>
</ul>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>TLSハンドシェイク早見表</title>
		<link>https://ascend-beyond.com/study/7666/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Tue, 22 Jul 2025 06:03:37 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[ネスペ]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7666</guid>

					<description><![CDATA[✅ TLS 1.2 における RSA方式の鍵交換の流れ ▼ 1. クライアント Hello ▲ 2. サーバ Hello ▲ 3. サーバ証明書の送信 ▼ 4. クライアントが Pre-Master Secret を生成 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><span id="toc1">✅ TLS 1.2 における RSA方式の鍵交換の流れ</span></h2>



<h3 class="wp-block-heading"><span id="toc2">▼ 1. クライアント Hello</span></h3>



<ul class="wp-block-list">
<li>クライアントはまず、サーバに「<strong>ClientHello</strong>」メッセージを送る。</li>



<li>ここには以下が含まれる：
<ul class="wp-block-list">
<li>サポートする<strong>TLSのバージョン</strong></li>



<li>サポートする<strong>暗号スイート</strong>（例：RSA、AESなど）</li>



<li>乱数（クライアントランダム）</li>



<li>その他オプション情報</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc3">▲ 2. サーバ Hello</span></h3>



<ul class="wp-block-list">
<li>サーバは「<strong>ServerHello</strong>」メッセージで応答する。</li>



<li>サーバの選択した：
<ul class="wp-block-list">
<li><strong>TLSバージョン</strong></li>



<li><strong>暗号スイート</strong></li>



<li>サーバの乱数（サーバランダム）</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc4">▲ 3. サーバ証明書の送信</span></h3>



<ul class="wp-block-list">
<li>サーバは自分の公開鍵証明書（X.509証明書）をクライアントに送信。
<ul class="wp-block-list">
<li>証明書の中に、サーバの<strong>RSA公開鍵</strong>が入っている。</li>



<li>証明書は認証局（CA）によって署名されていて、クライアントはその正当性を検証する。</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc5">▼ 4. クライアントが Pre-Master Secret を生成</span></h3>



<ul class="wp-block-list">
<li>クライアントは、ランダムなPre-Master Secret（48バイトのランダム値）を生成。</li>



<li>そして、そのPre-Master Secretを<strong>サーバの公開鍵でRSA暗号化</strong>する。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc6">▼ 5. クライアントキー交換</span></h3>



<ul class="wp-block-list">
<li>暗号化されたPre-Master Secretを「<strong>ClientKeyExchange</strong>」メッセージとしてサーバに送信。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc7">▲ 6. サーバが Pre-Master Secret を復号</span></h3>



<ul class="wp-block-list">
<li>サーバは自分の<strong>RSA秘密鍵で復号</strong>し、Pre-Master Secretを得る。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc8">▼▲ 7. 共通鍵の生成</span></h3>



<ul class="wp-block-list">
<li>クライアントとサーバはそれぞれ、以下の情報から同じ共通鍵（セッション鍵）を導出：
<ul class="wp-block-list">
<li>Pre-Master Secret</li>



<li>クライアントランダム</li>



<li>サーバランダム</li>
</ul>
</li>



<li>これにより、共通の暗号鍵・MAC鍵などが生成される。</li>
</ul>



<p>この<strong>3つの値</strong>を材料として、TLS 1.2では：</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="マスターシークレット = PRF(Pre-Master Secret, &quot;master secret&quot;, ClientRandom + ServerRandom)" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">マスターシークレット = PRF(Pre-Master Secret, &quot;master secret&quot;, ClientRandom + ServerRandom)</span></span></code></pre></div>



<p>という手順で<strong>マスターシークレット</strong>が生成されます。</p>



<p>さらにこの<strong>マスターシークレット</strong>から、</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="セッション鍵（共通鍵） = PRF(Master Secret, &quot;key expansion&quot;, ServerRandom + ClientRandom)" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">セッション鍵（共通鍵） = PRF(Master Secret, &quot;key expansion&quot;, ServerRandom + ClientRandom)</span></span></code></pre></div>



<p>のようにして、実際に通信に使う暗号鍵・MAC鍵などが生成されます。<br>※この際の<code>"master secret"</code>や<code>"key expansion"</code>は固定の文字列で、どの用途の鍵を作るのか区別するために使われます。</p>



<h4 class="wp-block-heading"><span id="toc9">✅【PRFとは】</span></h4>



<ul class="wp-block-list">
<li><strong>Pseudo-Random Function（擬似乱数生成関数）</strong></li>



<li>TLSの仕様の中で、「こういうアルゴリズムで計算しなさい」と定義されています。</li>



<li>TLS1.2では**HMAC（SHA-256などのハッシュ関数）**をベースに実装されています。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc10">▼▲ 8. Finished メッセージで確認</span></h3>



<ul class="wp-block-list">
<li>その後、クライアントとサーバは、共通鍵を使って「Finished」メッセージを交換し、お互いに正しい鍵が共有できたことを確認。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc11">✅ 【まとめ図】</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="1. ClientHello (クライアント乱数 + 暗号スイート)
2. ServerHello (サーバ乱数 + 暗号スイート選択)
3. サーバ証明書 (RSA公開鍵含む)
4. Pre-Master Secret 生成
5. Pre-Master Secret を公開鍵で暗号化し送信
6. サーバが秘密鍵で復号
7. Pre-Master Secret + 両者の乱数 → 共通鍵
8. Finishedメッセージ交換 → 暗号通信開始" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">1.</span><span style="color: #F8F8F2"> ClientHello (クライアント乱数 + 暗号スイート)</span></span>
<span class="line"><span style="color: #A6E22E">2.</span><span style="color: #F8F8F2"> ServerHello (サーバ乱数 + 暗号スイート選択)</span></span>
<span class="line"><span style="color: #A6E22E">3.</span><span style="color: #F8F8F2"> サーバ証明書 (RSA公開鍵含む)</span></span>
<span class="line"><span style="color: #A6E22E">4.</span><span style="color: #F8F8F2"> Pre-Master Secret 生成</span></span>
<span class="line"><span style="color: #A6E22E">5.</span><span style="color: #F8F8F2"> Pre-Master Secret を公開鍵で暗号化し送信</span></span>
<span class="line"><span style="color: #A6E22E">6.</span><span style="color: #F8F8F2"> サーバが秘密鍵で復号</span></span>
<span class="line"><span style="color: #A6E22E">7.</span><span style="color: #F8F8F2"> Pre-Master Secret + 両者の乱数 → 共通鍵</span></span>
<span class="line"><span style="color: #A6E22E">8.</span><span style="color: #F8F8F2"> Finishedメッセージ交換 → 暗号通信開始</span></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc12">✅ 【ポイント】</span></h3>



<ul class="wp-block-list">
<li>クライアントだけがPre-Master Secretを生成する。</li>



<li>サーバは復号するだけで、自分では鍵は作らない。</li>



<li>Pre-Master Secretと乱数2つから鍵素材（共通鍵）ができる。</li>



<li>RSA方式はサーバ秘密鍵が漏れると<strong>過去のPre-Master Secretも解読できるためForward Secrecyが無い</strong>。</li>
</ul>



<p><strong><span class="fz-22px">ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー</span></strong></p>



<h2 class="wp-block-heading"><span id="toc13">✅【TLS 1.2 における DHE 鍵交換の流れ】</span></h2>



<h3 class="wp-block-heading"><span id="toc14">✅【前提：DHEとは】</span></h3>



<ul class="wp-block-list">
<li><strong>DHE（Ephemeral Diffie-Hellman）は、セッションごとに一時的な鍵（エフェメラル鍵）を使って共通鍵を生成</strong>する仕組み。</li>



<li>Forward Secrecy（前方秘匿性）があり、もしサーバの秘密鍵が漏れても過去の通信は解読されない。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc15">🔵 ① クライアント Hello</span></h3>



<ul class="wp-block-list">
<li>クライアントは<strong>ClientHello</strong>をサーバに送信。</li>



<li>そこに：
<ul class="wp-block-list">
<li>サポートする暗号スイート（例：TLS_DHE_RSA_WITH_AES_128_CBC_SHA など）</li>



<li>TLSのバージョン</li>



<li>クライアントのランダム値（クライアントランダム）<br>などを含める。</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc16">🌑② サーバ Hello</span></h3>



<ul class="wp-block-list">
<li>サーバは<strong>ServerHello</strong>を返し、
<ul class="wp-block-list">
<li>選択した暗号スイート（ここではDHEを含むもの）</li>



<li>TLSバージョン</li>



<li>サーバランダム<br>を送る。</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc17">🌑③ サーバ証明書の送信</span></h3>



<ul class="wp-block-list">
<li>サーバは、自身の公開鍵証明書（X.509証明書）を送信。</li>



<li>証明書には<strong>RSAの公開鍵</strong>などが入っていて、「<strong>サーバの正当性確認のため</strong>」に使われる。</li>



<li>（DHEでは、このRSA鍵で<strong>署名</strong>するために使う）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc18">🌑④ サーバのDHEパラメータ送信（ServerKeyExchange）</span></h3>



<ul class="wp-block-list">
<li>サーバは以下の情報を送信：
<ul class="wp-block-list">
<li><strong>p（素数）</strong></li>



<li><strong>g（生成元）</strong></li>



<li><strong>サーバのDHE公開値：g^b mod p（bはサーバの秘密値）</strong></li>



<li><strong>これらに対するRSA署名（サーバ証明書の秘密鍵で署名）</strong></li>
</ul>
</li>
</ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>こうすることで、「<strong>このDHEパラメータは正当なサーバが送ったものだよ</strong>」と証明している。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc19">🔵 ⑤ クライアントのDHEパラメータ送信</span></h3>



<ul class="wp-block-list">
<li>クライアントは、ランダムな<strong>秘密値a</strong>を選び、
<ul class="wp-block-list">
<li><strong>クライアントの公開値：g^a mod p</strong><br>を計算し、<strong>ClientKeyExchange</strong>メッセージでサーバに送る。</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc20">🔵🌑 ⑥ 双方が共通鍵素材（Pre-Master Secret）を計算</span></h3>



<ul class="wp-block-list">
<li>クライアント側：</li>
</ul>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="(g^b mod p)^a mod p
= g^(ab) mod p" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">(g^b mod p)^a mod p</span></span>
<span class="line"><span style="color: #F8F8F2">= g^(ab) mod p</span></span></code></pre></div>



<ul class="wp-block-list">
<li>サーバ側：</li>
</ul>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="(g^a mod p)^b mod p
= g^(ab) mod p" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #F8F8F2">(g^a mod p)^b mod p</span></span>
<span class="line"><span style="color: #F8F8F2">= g^(ab) mod p</span></span></code></pre></div>



<p>→ クライアントとサーバが<strong>同じ値（g^(ab) mod p）を得る。これがPre-Master Secret</strong>になる。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc21">🔵🌑 ⑦ Pre-Master Secret + ランダム値 → 共通鍵生成</span></h3>



<ul class="wp-block-list">
<li>双方はPre-Master Secretと
<ul class="wp-block-list">
<li>クライアントランダム</li>



<li>サーバランダム<br>をPRF関数に入れて、<strong>マスターシークレット</strong>を生成。</li>
</ul>
</li>



<li>さらにマスターシークレットから、セッション鍵（共通鍵）が計算される。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc22">🔵🌑 ⑧ Finished メッセージ交換</span></h3>



<ul class="wp-block-list">
<li>共通鍵を用いて、<strong>Finishedメッセージを暗号化して交換</strong>。</li>



<li>お互いの鍵が一致していれば復号が成功し、ここから安全な通信が始まる。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc23">✅【まとめ図】</span></h3>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Markdown</span><span role="button" tabindex="0" data-code="1. ClientHello（クライアントランダム、対応暗号スイート）
2. ServerHello（サーバランダム、選択暗号スイート）
3. Certificate（サーバの証明書）
4. ServerKeyExchange（p, g, g^b mod p, 署名）
5. ClientKeyExchange（g^a mod p）
6. 両者で g^(ab) mod p を計算 → Pre-Master Secret
7. Pre-Master Secret + ランダム2種 → PRF → マスターシークレット
8. マスターシークレット → 共通鍵（セッション鍵）
9. Finishedメッセージ交換" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">1.</span><span style="color: #F8F8F2"> ClientHello（クライアントランダム、対応暗号スイート）</span></span>
<span class="line"><span style="color: #A6E22E">2.</span><span style="color: #F8F8F2"> ServerHello（サーバランダム、選択暗号スイート）</span></span>
<span class="line"><span style="color: #A6E22E">3.</span><span style="color: #F8F8F2"> Certificate（サーバの証明書）</span></span>
<span class="line"><span style="color: #A6E22E">4.</span><span style="color: #F8F8F2"> ServerKeyExchange（p, g, g^b mod p, 署名）</span></span>
<span class="line"><span style="color: #A6E22E">5.</span><span style="color: #F8F8F2"> ClientKeyExchange（g^a mod p）</span></span>
<span class="line"><span style="color: #A6E22E">6.</span><span style="color: #F8F8F2"> 両者で g^(ab) mod p を計算 → Pre-Master Secret</span></span>
<span class="line"><span style="color: #A6E22E">7.</span><span style="color: #F8F8F2"> Pre-Master Secret + ランダム2種 → PRF → マスターシークレット</span></span>
<span class="line"><span style="color: #A6E22E">8.</span><span style="color: #F8F8F2"> マスターシークレット → 共通鍵（セッション鍵）</span></span>
<span class="line"><span style="color: #A6E22E">9.</span><span style="color: #F8F8F2"> Finishedメッセージ交換</span></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<ul class="wp-block-list">
<li>RSA方式と違い、Pre-Master Secretは<strong>両者が計算で得る</strong>。</li>



<li>サーバ証明書のRSA鍵は「署名検証」のみで、暗号化には使わない。</li>



<li><strong>Forward Secrecyあり</strong>（秘密鍵が漏れてもg^bが漏れない限り安全）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>🧩 Cisco Packet Tracerで学ぶ！VLAN間通信（Router on a Stick）の構築手順</title>
		<link>https://ascend-beyond.com/study/7548/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Fri, 16 May 2025 12:32:13 +0000</pubDate>
				<category><![CDATA[PacketTracer]]></category>
		<category><![CDATA[Study]]></category>
		<category><![CDATA[ネスペ]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[応用情報技術者]]></category>
		<category><![CDATA[投資]]></category>
		<category><![CDATA[独学]]></category>
		<category><![CDATA[資格]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7548</guid>

					<description><![CDATA[こんにちは！今回はCisco Packet Tracerを使って、VLAN間通信（Router on a Stick）の構成を一緒に作っていきます。ネットワークスペシャリスト試験の勉強にも役立つ内容なので、ぜひ最後まで読 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>こんにちは！今回はCisco Packet Tracerを使って、<strong>VLAN間通信</strong>（Router on a Stick）の構成を一緒に作っていきます。<br><strong>ネットワークスペシャリスト試験の勉強にも役立つ内容</strong>なので、ぜひ最後まで読んで実践してみてください！</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc1">🎯 今回のゴール</span></h2>



<ul class="wp-block-list">
<li>1台のスイッチに接続した2台のPCを異なるVLANに分ける</li>



<li>ルーターを使ってVLAN間通信を可能にする（Router on a Stick構成）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc2">🖥️ ネットワーク構成とIPアドレス</span></h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>機器</th><th>VLAN</th><th>IPアドレス</th><th>備考</th></tr></thead><tbody><tr><td>PC1</td><td>VLAN10</td><td>192.168.10.10 /24</td><td>GW: 192.168.10.1</td></tr><tr><td>PC2</td><td>VLAN20</td><td>192.168.20.10 /24</td><td>GW: 192.168.20.1</td></tr><tr><td>R1（サブIF）</td><td>VLAN10</td><td>192.168.10.1</td><td></td></tr><tr><td>R1（サブIF）</td><td>VLAN20</td><td>192.168.20.1</td><td></td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc3">🧪 手順1：PCにIPアドレスを設定</span></h2>



<p>PC1とPC2それぞれで以下を設定します。</p>



<ul class="wp-block-list">
<li>IPアドレス</li>



<li>サブネットマスク（255.255.255.0）</li>



<li>デフォルトゲートウェイ（各VLANのルーターIP）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc4">🧪 手順2：スイッチでVLANを作成</span></h2>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(2 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="enable
configure terminal

vlan 10
 name VLAN10
exit

vlan 20
 name VLAN20
exit

end" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">enable</span></span>
<span class="line"><span style="color: #A6E22E">configure</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">terminal</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">vlan</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">10</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">name</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">VLAN10</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">vlan</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">20</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">name</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">VLAN20</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F92672">end</span></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc5">🧪 手順3：VLANをスイッチポートに割り当てる</span></h2>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(2 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="enable
show ip interface brief  # 使用可能なポートを確認

configure terminal

interface fastEthernet 0/1
 switchport mode access #アクセスモードにする
 switchport access vlan 10 #vlan１０を割り当てる
exit

interface fastEthernet 0/2
 switchport mode access
 switchport access vlan 20
exit

end
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">enable</span></span>
<span class="line"><span style="color: #A6E22E">show</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">ip</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">brief</span><span style="color: #F8F8F2">  </span><span style="color: #88846F"># 使用可能なポートを確認</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">configure</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">terminal</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">fastEthernet</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">0</span><span style="color: #E6DB74">/1</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">switchport</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">mode</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">access</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#アクセスモードにする</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">switchport</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">access</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">vlan</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">10</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#vlan１０を割り当てる</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">fastEthernet</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">0</span><span style="color: #E6DB74">/2</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">switchport</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">mode</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">access</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">switchport</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">access</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">vlan</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">20</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F92672">end</span></span>
<span class="line"></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc6">✅ 確認コマンド</span></h2>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="show vlan brief     # VLANの状態（activeかどうか）を確認
show interfaces status  # ポートのリンク状態（connected）を確認
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">show</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">vlan</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">brief</span><span style="color: #F8F8F2">     </span><span style="color: #88846F"># VLANの状態（activeかどうか）を確認</span></span>
<span class="line"><span style="color: #A6E22E">show</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">interfaces</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">status</span><span style="color: #F8F8F2">  </span><span style="color: #88846F"># ポートのリンク状態（connected）を確認</span></span>
<span class="line"></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc7">🧪 手順4：ルーターのサブインタフェース設定</span></h2>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(2 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="enable
show ip interface brief  # 使えるインタフェース確認

configure terminal

interface GigabitEthernet0/0
 no ip address # 物理インタフェースにはIPは設定しない
 no shutdown #ポート有効化（これをやらないとポートが機能しない）

interface GigabitEthernet0/0.10 #サブインタフェース10を作成
 encapsulation dot1Q 10 #VLAN10タグがついたフレームだけがこのサブインタに届きます！
 ip address 192.168.10.1 255.255.255.0 #この VLAN のデフォルトゲートウェイとなるIPを割り当てます。
exit

interface GigabitEthernet0/0.20
 encapsulation dot1Q 20
 ip address 192.168.20.1 255.255.255.0
exit
" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">enable</span></span>
<span class="line"><span style="color: #A6E22E">show</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">ip</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">brief</span><span style="color: #F8F8F2">  </span><span style="color: #88846F"># 使えるインタフェース確認</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">configure</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">terminal</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">GigabitEthernet0/0</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">no</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">ip</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">address</span><span style="color: #F8F8F2"> </span><span style="color: #88846F"># 物理インタフェースにはIPは設定しない</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">no</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">shutdown</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#ポート有効化（これをやらないとポートが機能しない）</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">GigabitEthernet0/0.10</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#サブインタフェース10を作成</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">encapsulation</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">dot1Q</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">10</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#VLAN10タグがついたフレームだけがこのサブインタに届きます！</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">ip</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">address</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">192.168</span><span style="color: #E6DB74">.10.1</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">255.255</span><span style="color: #E6DB74">.255.0</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#この VLAN のデフォルトゲートウェイとなるIPを割り当てます。</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">GigabitEthernet0/0.20</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">encapsulation</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">dot1Q</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">20</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">ip</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">address</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">192.168</span><span style="color: #E6DB74">.20.1</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">255.255</span><span style="color: #E6DB74">.255.0</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span></code></pre></div>



<p>📝 <strong>ポイント</strong></p>



<ul class="wp-block-list">
<li><code>.10</code>, <code>.20</code>のようにサブインタフェースを作成します。</li>



<li><code>encapsulation dot1Q</code>でVLANタグ番号を指定します。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc8">🧪 手順5：スイッチのトランクポート設定</span></h2>



<p>ルーターと接続されているポートをトランクポートに設定します。</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="enable
show cdp neighbors  # ルーターと接続されているポートを調べる

configure terminal
interface FastEthernet0/3  # ルーター接続ポートを指定
 switchport mode trunk
exit

end" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">enable</span></span>
<span class="line"><span style="color: #A6E22E">show</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">cdp</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">neighbors</span><span style="color: #F8F8F2">  </span><span style="color: #88846F"># ルーターと接続されているポートを調べる</span></span>
<span class="line"></span>
<span class="line"><span style="color: #A6E22E">configure</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">terminal</span></span>
<span class="line"><span style="color: #A6E22E">interface</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">FastEthernet0/3</span><span style="color: #F8F8F2">  </span><span style="color: #88846F"># ルーター接続ポートを指定</span></span>
<span class="line"><span style="color: #F8F8F2"> </span><span style="color: #A6E22E">switchport</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">mode</span><span style="color: #F8F8F2"> </span><span style="color: #E6DB74">trunk</span></span>
<span class="line"><span style="color: #66D9EF">exit</span></span>
<span class="line"></span>
<span class="line"><span style="color: #F92672">end</span></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc9">✅ 疎通確認（Pingテスト）</span></h2>



<p>PC1からPC2、PC2からPC1へPingを実施します。</p>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="ping 192.168.20.10 #PC１で実行してみる
ping 192.168.10.10 #PC２で実行してみる" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #A6E22E">ping</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">192.168</span><span style="color: #E6DB74">.20.10</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#PC１で実行してみる</span></span>
<span class="line"><span style="color: #A6E22E">ping</span><span style="color: #F8F8F2"> </span><span style="color: #AE81FF">192.168</span><span style="color: #E6DB74">.10.10</span><span style="color: #F8F8F2"> </span><span style="color: #88846F">#PC２で実行してみる</span></span></code></pre></div>



<p>✅ リプライが返ってくれば、<strong>VLAN間通信成功！</strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc10">🎉 お疲れさまでした！</span></h2>



<p>これで<strong>Router on a Stick構成によるVLAN間通信</strong>の設定が完了です！<br>Packet Tracerを使って、ネットワークの動作原理をしっかり理解しておくことが、ネットワークスペシャリスト試験にも非常に役立ちます。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc11">💡 補足：Router on a Stickとは？</span></h2>



<p>ルーターの<strong>1本の物理インタフェースに複数のサブインタフェース</strong>を作成し、それぞれにVLANを割り当ててVLAN間ルーティングを行う構成です。コストを抑えつつVLAN間通信が可能になるため、小規模ネットワークでよく使われます。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc12">📌 関連キーワード</span></h2>



<div class="wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;--cbp-line-number-color:#F8F8F2;--cbp-line-number-width:calc(1 * 0.6 * .875rem);line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:flex;align-items:center;padding:10px 0px 10px 16px;margin-bottom:-2px;width:100%;text-align:left;background-color:#34362e;color:#efefe1">Bash</span><span role="button" tabindex="0" data-code="#Cisco #PacketTracer #VLAN #RouterOnAStick #ネットワークスペシャリスト対策 #VLAN間通信" style="color:#F8F8F2;display:none" aria-label="Copy" class="code-block-pro-copy-button"><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M16.5 8.25V6a2.25 2.25 0 00-2.25-2.25H6A2.25 2.25 0 003.75 6v8.25A2.25 2.25 0 006 16.5h2.25m8.25-8.25H18a2.25 2.25 0 012.25 2.25V18A2.25 2.25 0 0118 20.25h-7.5A2.25 2.25 0 018.25 18v-1.5m8.25-8.25h-6a2.25 2.25 0 00-2.25 2.25v6"></path></svg></span><pre class="shiki monokai" style="background-color: #272822" tabindex="0"><code><span class="line"><span style="color: #88846F">#Cisco #PacketTracer #VLAN #RouterOnAStick #ネットワークスペシャリスト対策 #VLAN間通信</span></span></code></pre></div>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The road to fluency in English 68~73</title>
		<link>https://ascend-beyond.com/study/7469/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Mon, 05 May 2025 08:28:24 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[英語]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7469</guid>

					<description><![CDATA[はじめに 68. This is better than I expected.(思ったより全然いいじゃん！) This is better than I expected. this is This(ðís):ðは舌先 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><span id="toc1">はじめに</span></h2>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-l sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/ab83decce6d239fa7fe15f225bbe4728-150x150.jpg" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>This webpage uses this app. Additionally, we refer to this YouTube video for pronunciation tips. I will share the URL here, so please give it a try. It will surely support your learning.(このウェブページはこのアプリを使用しています。また、発音のポイントなどはこちらのyoutubeを参考にしています。ここにURLを貼りますので、あなたも試してみてください。きっとあなたの学習をサポートしてくれるでしょう。)</p>




<a rel="noopener" href="https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" title="‎翻訳" class="blogcard-wrap external-blogcard-wrap a-wrap cf" target="_blank"><div class="blogcard external-blogcard eb-left cf"><div class="blogcard-label external-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail external-blogcard-thumbnail"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/cocoon-resources/blog-card-cache/add1dff6e0f84e310d145251ee3abe80.png" alt="" class="blogcard-thumb-image external-blogcard-thumb-image" width="160" height="90" /></figure><div class="blogcard-content external-blogcard-content"><div class="blogcard-title external-blogcard-title">‎翻訳</div><div class="blogcard-snippet external-blogcard-snippet">‎“翻訳”では、2つの言語間で音声や文章を素早く簡単に翻訳できます。フレーズや会話、さらには身の回りのテキストを翻訳するのに最適で最も使いやすいアプリとして設計されています。“翻訳”は高品質な翻訳と直感的なデザインを兼ね備えており、素早く簡単に翻訳できます。

機能:
• テキストの翻訳 — 素早く、簡単かつ直感的に使...</div></div><div class="blogcard-footer external-blogcard-footer cf"><div class="blogcard-site external-blogcard-site"><div class="blogcard-favicon external-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" alt="" class="blogcard-favicon-image external-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain external-blogcard-domain">apps.apple.com</div></div></div></div></a>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="【永久保存版】たった30分で発音記号を完全攻略【速習まとめ】" width="1256" height="707" src="https://www.youtube.com/embed/Qe3EmiFWgGM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【最短最速】一撃でネイティブ級の発音を手に入れる方法" width="1256" height="707" src="https://www.youtube.com/embed/iKf7M6w0gx4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
</div></div>



<h2 class="wp-block-heading"><span id="toc2">68. This is better than I expected.(思ったより全然いいじゃん！)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p><span class="fz-18px">誰かが何かをしてくれたときや、予想より良かったときに感謝や驚きを込めて使えます。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc3">✅ 日本語訳（自然な意味）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「これは予想よりも良かった。」</strong><br><strong>「思ったより全然いいじゃん！」</strong>（カジュアルに）</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc4">✅ 文法的に分解・解説：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英語部分</th><th>品詞・意味</th><th>解説</th></tr></thead><tbody><tr><td><strong>This</strong></td><td>代名詞</td><td>これ</td></tr><tr><td><strong>is</strong></td><td>be動詞</td><td>～である</td></tr><tr><td><strong>better</strong></td><td>比較級の形容詞</td><td>より良い</td></tr><tr><td><strong>than</strong></td><td>比較の接続詞</td><td>～よりも</td></tr><tr><td><strong>I expected</strong></td><td>主語＋動詞（過去）</td><td>私が期待していた</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc5">▶ ポイント解説</span></h5>



<h6 class="wp-block-heading"><span id="toc6">● 比較級の構文：「A is better than B」</span></h6>



<ul class="wp-block-list">
<li>英語で「AはBより良い」と言うときはこの形。</li>



<li>今回は A = this（これ）、B = I expected（私が期待していたこと）</li>
</ul>



<h6 class="wp-block-heading"><span id="toc7">● I expected の省略スタイル</span></h6>



<ul class="wp-block-list">
<li>本来は「than I <strong>had</strong> expected」とも言えるが、会話では <strong>had</strong> を省略して OK。</li>



<li>よりナチュラルで簡潔な形になっている。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc8">✅ ニュアンス・使い方（シーン例）</span></h5>



<ul class="wp-block-list">
<li><strong>料理を出されて一口食べたあと</strong>：<br>　→ <em>&#8220;Wow, this is better than I expected!&#8221;</em>（うわ、思ったより美味しい！）</li>



<li><strong>友達のプレゼンが予想以上に良かったとき</strong>：<br>　→ <em>&#8220;Hey, that was better than I expected. Great job!&#8221;</em></li>



<li><strong>映画やイベントなども同様に使える</strong>。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc9">✅ 類似表現（覚えておくと便利）</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>表現</th><th>意味・使い方</th></tr></thead><tbody><tr><td><strong>It exceeded my expectations.</strong></td><td>期待を超えた（フォーマル）</td></tr><tr><td><strong>Way better than I thought.</strong></td><td>思ってたよりずっと良い！（カジュアル）</td></tr><tr><td><strong>Not bad at all!</strong></td><td>全然悪くないじゃん！（軽い驚き）</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc10">✅ まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;This is better than I expected.&#8221;</strong> は「予想より良かった」と驚きや満足感を伝える便利な表現。</li>



<li><strong>比較級 + than ～</strong> の構文に慣れておくとTOEICでも頻出です！</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc11">This is better than I expected.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/This-is-better-than-I-expected.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc12">this is</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/this-is.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>This(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc13">better</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/better.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>better(béṭɚ):フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc14">than</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/than.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>than(ðən):ðは舌先を歯で軽く挟んで、喉震わせる
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc15">expected</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/expected.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>expected(ɪksˈpɛktɪd):ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc16">better than I expected</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/better-than-I-expected_.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>better than I expected:一語一語区切るのではなく、一つの単語のように扱い、喉を閉じることなく発音する。	
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc17">This is better than I expected.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/This-is-better-than-I-expected.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>This(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
</li>

<li>better(béṭɚ):フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
</li>

<li>than(ðən):ðは舌先を歯で軽く挟んで、喉震わせる
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
</li>


<li>expected(ɪksˈpɛktɪd):ɝはɚを長く伸ばすイメージ。
</li>

<li>better than I expected:一語一語区切るのではなく、一つの単語のように扱い、喉を閉じることなく発音する。	
</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc18">69. Do what you can now, without regret.(今できることを、後悔することなくやりなさい。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p><span class="fz-16px"><span class="fz-18px">✅ 日本語訳（自然な意味）</span></span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「今できることを、後悔することなくやりなさい。」</strong></p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc19">1. Do</span></h5>



<ul class="wp-block-list">
<li><strong>動詞</strong>（命令形）</li>



<li>主語「You」は省略されていますが、命令形なので「あなたは〜しなさい」という意味になります。</li>



<li><strong>Do</strong> は「する」という基本的な動詞で、命令形で使うと「〜しなさい」や「〜しろ」という強い指示や励ましを表します。</li>
</ul>



<h5 class="wp-block-heading"><span id="toc20">2. what you can</span></h5>



<ul class="wp-block-list">
<li><strong>what</strong> は関係代名詞で、「あなたができること」を指します。</li>



<li><strong>what</strong> = the thing(s) that → 「あなたができること」という意味。<br>→ <strong>You can</strong> の部分が修飾されて、あなたができることを示しています。</li>
</ul>



<h5 class="wp-block-heading"><span id="toc21">3. now</span></h5>



<ul class="wp-block-list">
<li><strong>副詞</strong></li>



<li>「今」や「今すぐ」という意味です。</li>



<li>この文では、行動を「今すぐにでも行うべきだ」と促すニュアンスになります。</li>
</ul>



<h5 class="wp-block-heading"><span id="toc22">4. without regret</span></h5>



<ul class="wp-block-list">
<li><strong>前置詞句</strong>（without + 名詞）</li>



<li><strong>regret</strong> は「後悔」なので、「後悔することなく」「後悔を感じずに」という意味です。</li>



<li><strong>without</strong> は「〜なしで」「〜せずに」という意味の前置詞で、「後悔することなく行動しろ」と命じています。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc23">✅ 全体の意味とニュアンス</span></h5>



<p><span class="fz-18px"><strong>&#8220;Do what you can now, without regret.&#8221;</strong> は、<br>「今できることを、後悔せずに全力でやりなさい」という意味です。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc24">まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>Do what you can now, without regret.</strong><br>→ <strong>「今できることを後悔なくやりなさい。」</strong></li>



<li><strong>文法的には、命令形 + 関係代名詞 + 前置詞句</strong>というシンプルな構造。</li>
</ul>



<p><span class="fz-18px">行動を促す強いメッセージであり、「今の努力が未来につながる」という教訓を込めています。</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc25">Do what you can now, without regret</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now-without-regret.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc26">what</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/what.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc27">now</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/now.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>now(nάʊ):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc28">Do what you can now</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Do what you can now:whatを強くいう。youはユーではなく「ユ」のみのニュアンス。</li>

</ul>
</div>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now-without-regret.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc29">without</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/without.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
<br>ウィズアウトではなく、ウィザウトに近い。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc30">regret</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/regret.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>regret(rɪgrét):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。
<br>eは日本語のエよりも口を開く
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc31">without regret</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/without-regret.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc32">Do what you can now, without regret</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now-without-regret.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>now(nάʊ):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>


<li>Do what you can now:whatを強くいう。youはユーではなく「ユ」のみのニュアンス。</li>


<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
<br>ウィズアウトではなく、ウィザウトに近い。
</li>

<li>regret(rɪgrét):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。
<br>eは日本語のエよりも口を開く
</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc33">70. The accumulation of those efforts will inevitably lead to results.(それらの努力の積み重ねは、必ず結果につながる。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>素晴らしい英文ですね。<br><strong>&#8220;The accumulation of those efforts will inevitably lead to results.&#8221;</strong><br>これは、「努力の積み重ねは必ず結果につながる」**という、とても力強く前向きなメッセージです。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc34">✅ 日本語訳（自然な意味）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「それらの努力の積み重ねは、必ず結果につながる。」</strong><br>→ 「今の努力は無駄じゃない、ちゃんと成果になる」という励ましの言葉。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc35">🔹 The accumulation of those efforts</span></h5>



<p>→ 主語（文の最初）</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>部分</th><th>品詞</th><th>意味</th><th>解説</th></tr></thead><tbody><tr><td><strong>The accumulation</strong></td><td>名詞</td><td>蓄積、積み重ね</td><td>「何かが集まっていくこと」</td></tr><tr><td><strong>of those efforts</strong></td><td>前置詞句</td><td>それらの努力の</td><td>accumulation を説明している。「何の積み重ね？」→努力のこと</td></tr></tbody></table></figure>



<p>📝：この部分で「努力の積み重ね」という名詞のカタマリになります。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc36">🔹 will inevitably lead to results</span></h5>



<p>→ 動詞部分（述語）</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>部分</th><th>品詞</th><th>意味</th><th>解説</th></tr></thead><tbody><tr><td><strong>will</strong></td><td>助動詞</td><td>～だろう、～することになる</td><td>未来を示す</td></tr><tr><td><strong>inevitably</strong></td><td>副詞</td><td>必然的に、確実に</td><td>「避けられない」＝<strong>必ずそうなる</strong>ことを強調</td></tr><tr><td><strong>lead to</strong></td><td>動詞句（句動詞）</td><td>～につながる、導く</td><td>「〜の結果をもたらす」</td></tr><tr><td><strong>results</strong></td><td>名詞（複数）</td><td>結果、成果</td><td>努力によって得られるもの</td></tr></tbody></table></figure>



<p><span class="fz-18px">📝：<strong>「lead to results」で「結果につながる」という意味の熟語</strong>です。<br>「inevitably」でその必然性を強くしているのがポイントです。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc37">▶ たとえば：</span></h5>



<ul class="wp-block-list">
<li>勉強やトレーニングをコツコツ続けているとき<br>　→ <em>&#8220;Don&#8217;t worry if you don&#8217;t see results now. The accumulation of those efforts will inevitably lead to results.&#8221;</em><br>　（今すぐ結果が見えなくても、努力の積み重ねは必ず成果を生む）</li>



<li>誰かを励ましたいとき<br>　→ <em>&#8220;Keep going. The accumulation of your efforts won&#8217;t go to waste.&#8221;</em></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc38">✅ 類似表現（参考）</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英文</th><th>和訳</th><th>ニュアンス</th></tr></thead><tbody><tr><td>Success doesn’t come overnight.</td><td>成功は一晩では訪れない</td><td>積み重ねの大切さ</td></tr><tr><td>Hard work always pays off.</td><td>努力は必ず報われる</td><td>シンプルで力強い</td></tr><tr><td>Small steps every day lead to big results.</td><td>毎日の小さな一歩が大きな成果に</td><td>継続の大切さ</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc39">✅ まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>accumulation</strong> = 積み重ね</li>



<li><strong>lead to results</strong> = 結果に結びつく</li>



<li><strong>inevitably</strong> = 必ず、避けられないほどに</li>
</ul>



<p><span class="fz-18px">この英文は、未来の成功への確信を込めた<strong>超前向きな名言級フレーズ</strong>です。</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc40">The accumulation of those efforts will inevitably lead to results</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation-of-those-efforts-will-inevitably-lead-to-results.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc41">accumulation</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/accumulation.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>accumulation(əkjùːmjʊléɪʃən):ʃはsよりも舌を盛り上げたバージョン。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc42">The accumulation</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc43">those</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/those.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>those(ðóʊz):ðは舌先を歯で軽く挟んで、喉震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc44">efforts</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/efforts.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>efforts(ˈɛfɝts):ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc45">The accumulation of those efforts</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation-of-those-efforts.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>The accumulation of those efforts:TheAccumulationOfThoseEfforts</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc46">will</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/will.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>will(wíl):l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc47">inevitably</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/inevitably.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>inevitably(ɪnˈevɪtəbli)：tはフラップtだからdの音になる。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc48">will inevitably</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/will-inevitably.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>inevitably(ɪnˈevɪtəbli)：ウェネベダブリィのニュアンス
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc49">lead to</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/lead-to.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>lead to:lead(lēd)のdは発音せず、toとくっつける
<br>leadのeを伸ばし過ぎるとread(ríːd)になるから短く。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc50">results</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/results.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>results(rɪˈzʌlts):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>Iはイよりもエに近い音。イに近いとresortになる。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>ʌを強調しないと、resortになってしまうので、しっかりとʌを発音する。
<br>リザルツではなく、ダークLはラ行ではなく、
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc51">lead to results</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/lead-to-results.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>lead to results:toは短く。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc52">will inevitably lead to results</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/will-inevitably-lead-to-results.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc53">The accumulation of those efforts will inevitably lead to results</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation-of-those-efforts-will-inevitably-lead-to-results.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>accumulation(əkjùːmjʊléɪʃən):ʃはsよりも舌を盛り上げたバージョン。
</li>

<li>those(ðóʊz):ðは舌先を歯で軽く挟んで、喉震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>efforts(ˈɛfɝts):ɝはɚを長く伸ばすイメージ。
</li>

<li>The accumulation of those efforts:TheAccumulationOfThoseEfforts</li>


<li>will(wíl):l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>

<li>inevitably(ɪnˈevɪtəbli)：tはフラップtだからdの音になる。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

<li>lead to:lead(lēd)のdは発音せず、toとくっつける
<br>leadのeを伸ばし過ぎるとread(ríːd)になるから短く。
</li>

<li>results(rɪˈzʌlts):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>ʌを強調しないと、resortになってしまうので、しっかりとʌを発音する
</li>

<li>lead to results:toは短く。</li>



</ul>
</div>



<h2 class="wp-block-heading"><span id="toc54">71. I feel it from the bottom of my heart.(心からそう思うよ。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「心の底からそう感じている。」</strong><br><strong>「心からそう思うよ。」</strong>（口語的）</p>
</blockquote>



<p>これは単なる「感じる」ではなく、「本当に、心の奥深くからそう思っている」という<strong>真剣な気持ち</strong>を表します。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc55">✅ 文法の分解と解説</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英語</th><th>品詞</th><th>解説</th></tr></thead><tbody><tr><td><strong>I</strong></td><td>主語</td><td>「私は」</td></tr><tr><td><strong>feel</strong></td><td>動詞（現在形）</td><td>「感じる」</td></tr><tr><td><strong>it</strong></td><td>目的語</td><td>「それを」→ 感じている内容（文脈次第で愛・感謝・痛みなど）</td></tr><tr><td><strong>from</strong></td><td>前置詞</td><td>「〜から」</td></tr><tr><td><strong>the bottom of my heart</strong></td><td>前置詞句</td><td>「私の心の底から」＝強い感情の起点を表す</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc56">▶ 「from the bottom of my heart」ってどんな意味？</span></h5>



<p>これは <strong>慣用表現（イディオム）</strong> で、</p>



<ul class="wp-block-list">
<li><strong>心の底から</strong></li>



<li><strong>本気で</strong></li>



<li><strong>誠実に</strong></li>
</ul>



<p>という強い感情を伝えるときに使います。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc57">✅ 使える場面（感情の例）</span></h5>



<p>この表現は、以下のような場面で使われます：</p>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>感情</th><th>例文</th></tr></thead><tbody><tr><td><strong>感謝</strong></td><td><em>I thank you from the bottom of my heart.</em>（心の底から感謝します）</td></tr><tr><td><strong>謝罪</strong></td><td><em>I’m sorry from the bottom of my heart.</em>（心から申し訳なく思っています）</td></tr><tr><td><strong>愛情</strong></td><td><em>I love you from the bottom of my heart.</em>（心の底から愛してる）</td></tr><tr><td><strong>感動</strong></td><td><em>I feel it from the bottom of my heart.</em>（本当に心からそう感じてる）</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc58">✅ まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>I feel it from the bottom of my heart.</strong><br>　→ 「私はそれを<strong>心の底から感じている</strong>」という、<strong>強くて真剣な感情</strong>を伝えるフレーズです。</li>



<li><strong>感謝・謝罪・愛・感動</strong>など、深い気持ちを伝えたいときにぴったり。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>「恋愛でこのフレーズをもっとドラマチックに使いたい」など、応用したいシーンがあればぜひ教えてくださいね！</p>
</div></div>



<h6 class="wp-block-heading"><span id="toc59">I feel it from the bottom of my heart</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/I-feel-it-from-the-bottom-of-my-heart.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc60">feel</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/feel.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>feel(fíːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc61">I feel it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/I-feel-it.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc62">from</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/from.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>from(frəm):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc63">bottom</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/bottom.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>bottom(bάṭəm):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc64">heart</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/heart.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>heart(hάɚt):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc65">bottom of my heart</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/bottom-of-my-heart.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc66">from the bottom of my heart</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/from-the-bottom-of-my-heart.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc67">I feel it from the bottom of my heart</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/I-feel-it-from-the-bottom-of-my-heart.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>feel(fíːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>from(frəm):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>

<li>bottom(bάṭəm):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

<li>heart(hάɚt):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>	

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc68">72. Why? I&#8217;m trying so hard to meet you halfway.(なんで？僕は君にちゃんと歩み寄ろうとすごく努力しているんだよ。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc69">① Why?</span></h5>



<ul class="wp-block-list">
<li><strong>品詞</strong>：疑問副詞</li>



<li><strong>意味</strong>：「なぜ？」</li>



<li>文頭に単独で置いて、相手の言動や状況に対して「なぜそうなるの？」「どうして？」と問いかけています。</li>



<li>カジュアルで短いので、会話でよく使います。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc70">② I&#8217;m trying so hard to meet you halfway.</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>部分</th><th>品詞・文法</th><th>解説・意味</th></tr></thead><tbody><tr><td><strong>I&#8217;m</strong></td><td>I am（主語 + be動詞）</td><td>「私は〜している」</td></tr><tr><td><strong>trying</strong></td><td>動詞 try の現在進行形</td><td>「努力している」「頑張っている」</td></tr><tr><td><strong>so hard</strong></td><td>副詞句</td><td>「とても一生懸命に」</td></tr><tr><td><strong>to meet you halfway</strong></td><td>不定詞の副詞的用法</td><td>「歩み寄る、妥協する」</td></tr></tbody></table></figure>



<ul class="wp-block-list">
<li><strong>meet someone halfway</strong> はイディオムで、「お互いに妥協する」「歩み寄る」という意味。</li>



<li>「I’m trying so hard to meet you halfway.」は、「私は本当に頑張って君に歩み寄ろうとしているんだよ」というニュアンスです。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc71">文全体の意味</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「なんで？僕は君にちゃんと歩み寄ろうとすごく努力しているんだよ。」</strong></p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc72">まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>Why?</strong> で「なぜ？」と相手に疑問を投げかける。</li>



<li><strong>I&#8217;m trying so hard</strong> は「とても頑張っている」ことを表現。</li>



<li><strong>to meet you halfway</strong> は「お互いに妥協・譲り合う」という意味のイディオム。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc73">Why? I&#8217;m trying so hard to meet you halfway.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Why-Im-trying-so-hard-to-meet-you-halfway.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc74">why</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/why.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc75">trying</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/trying.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>trying(ˈtraɪɪŋ):ŋは日本語の「えんか」のンの形
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>gの音は発音しない
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc76">I&#8217;m trying</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Im-trying.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I&#8217;m trying:アイムよりもアムに近い。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc77">hard</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/hard.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>hard(hάɚd):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc78">so hard</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/so-hard.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>so hard:soはソーではなくソゥ(sóʊ):</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc79">I’m trying so hard</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Im-trying-so-hard.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc80">meet</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/meet.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>meet(míːt):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc81">halfway</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/halfway.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>halfway(hˈæfwéɪ):æはエの口でア。ガチョウの様な音
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc82">to meet you halfway</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/to-meet-you-halfway.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>to meet you halfway:toとyouは弱く。meetとfalfwayは強く</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc83">Why? I&#8217;m trying so hard to meet you halfway.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Why-Im-trying-so-hard-to-meet-you-halfway.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>Iはイよりもエに近い音。
</li>

<li>trying(ˈtraɪɪŋ):ŋは日本語の「えんか」のンの形
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>gの音は発音しない
</li>

<li>I&#8217;m trying:アイムよりもアムに近い。</li>


<li>hard(hάɚd):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>


<li>so hard:soはソーではなくソゥ(sóʊ):</li>

<li>meet(míːt):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する
</li>

<li>halfway(hˈæfwéɪ):æはエの口でア。ガチョウの様な音
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>to meet you halfway:toとyouは弱く。meetとfalfwayは強く</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc84">73. Then why won’t you do the same for me?(じゃあ、なんで君は僕に同じことをしてくれないの？)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg" alt="68~73" class="wp-image-7592" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>Then why won’t you do the same for me?</strong></p>
</blockquote>



<p><span class="fz-18px">は、感情を込めて「じゃあ、なんで君は同じことをしてくれないの？」と問いかける強めの表現です。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc85">✅ 日本語訳（自然な言い回し）</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「じゃあ、なんで君は僕に同じことをしてくれないの？」</strong><br>→「僕は歩み寄ってるのに、どうして君はしてくれないの？」という<strong>不満や悲しみ</strong>が含まれています。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc86">✅ 文の構造・文法解説</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>パート</th><th>品詞 / 文法</th><th>意味・解説</th></tr></thead><tbody><tr><td><strong>Then</strong></td><td>副詞</td><td>「それなら」「<span class="bold-red">じゃあ</span>」<br>前の文に対するつなぎの言葉（理由・結果を表す）</td></tr><tr><td><strong>why</strong></td><td>疑問副詞</td><td>「なぜ」</td></tr><tr><td><strong>won’t</strong></td><td>助動詞（will not）</td><td>「<span class="bold-red">〜しようとしない</span>」<br>拒否・意志の否定を意味します</td></tr><tr><td><strong>you</strong></td><td>主語</td><td>「あなたが」</td></tr><tr><td><strong>do the same</strong></td><td>動詞句</td><td>「同じことをする」</td></tr><tr><td><strong>for me</strong></td><td>前置詞句</td><td>「私に対して」<br>「僕のために」という意味</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc87">🔸 won’t のニュアンス</span></h5>



<ul class="wp-block-list">
<li><strong>will not</strong> の短縮形。</li>



<li>未来の否定にも使われますが、ここでは「〜する気がない」「してくれない」という<strong>相手の意志の拒絶</strong>を感じさせる表現です。</li>



<li>「やろうと思えばできるのに、やらないの？」という <strong>ちょっと怒り・苛立ちを含んだ問いかけ</strong> になります。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc88">🔸 do the same for me</span></h5>



<ul class="wp-block-list">
<li><strong>do the same</strong> = 「同じことをする」</li>



<li><strong>for me</strong> = 「私のために」<br>→ 「（僕がやったように）同じことを僕にもしてよ」という意味。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc89">✅ 全体の構文と意味の流れ</span></h5>



<ol class="wp-block-list">
<li><strong>Then</strong>（じゃあ → 前文を受けて）</li>



<li><strong>why won’t you&#8230;</strong>（なぜ〜してくれないの？ → 否定疑問文）</li>



<li><strong>do the same for me</strong>（僕にも同じようにしてよ）</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc90">✅ 感情のニュアンス</span></h5>



<p>この文は、<strong>相手との関係性の中で不公平さや切なさ</strong>を訴える表現としてよく使われます。</p>



<p>たとえば：</p>



<ul class="wp-block-list">
<li>「僕は君に合わせてるのに、君はどうして合わせてくれないの？」</li>



<li>「歩み寄ってるのはこっちばっかりじゃん！」</li>
</ul>



<p>という<strong>軽いケンカ・真剣な会話・恋愛ドラマのセリフ</strong>にもぴったりです。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc91">✅ 類似表現（比較）</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>表現</th><th>意味</th><th>ニュアンス</th></tr></thead><tbody><tr><td>Why don&#8217;t you do the same for me?</td><td>なんで同じことしてくれないの？</td><td>やや柔らかめ（won’tより穏やか）</td></tr><tr><td>Can&#8217;t you do the same for me?</td><td>同じことしてくれない？</td><td>少しお願いっぽくなる</td></tr><tr><td>Why do I always have to be the one?</td><td>なんでいつも僕ばっかり？</td><td>不満の度合いが強い</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc92">✅ まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>Then why won’t you do the same for me?</strong><br>→ 「じゃあ、どうして君は僕に同じことをしてくれないの？」</li>



<li>文法的には、<strong>助動詞 &#8220;won’t&#8221; を使った否定疑問文</strong>。</li>



<li><strong>&#8220;do the same for me&#8221;</strong> がキーポイント。「同じ行動を僕にもしてよ」という意味。</li>



<li>感情を含んだ、恋愛・人間関係でよく使われる表現です。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc93">Then why won’t you do the same for me?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Then-why-wont-you-do-the-same-for-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc94">then</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/then.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>then(ðén):ðは舌先を歯で軽く挟んで、喉震わせる
<br>eは日本語のエよりも口を開く
<br>「ゼン」じゃなんくて「ðén」</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc95">why</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/why.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc96">won&#8217;t</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/wont.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>won&#8217;t(wóʊnt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc97">why won&#8217;t you do</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/why-wont-you-do.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc98">same</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/same.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>same(séɪm):sは歯を閉じて、その間から空気を出す</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc99">for</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/for.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>for( fɚ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>「フォウ」ではなく「ファ」のニュアンス</li>


</ul>
</div>



<h6 class="wp-block-heading"><span id="toc100">for me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/for-me.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>for me(fɚ mi):</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc101">do the same</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/do-the-same.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>do the same(dúː　ðə séɪm):しっかりとsameのsを意識
<br>sは歯を閉じて、その間から空気を出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc102">why won’t you do the same for me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/why-wont-you-do-the-same-for-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc103">Then why won’t you do the same for me?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/Then-why-wont-you-do-the-same-for-me.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>then(ðén):ðは舌先を歯で軽く挟んで、喉震わせる
<br>eは日本語のエよりも口を開く
<br>「ゼン」じゃなんくて「ðén」</li>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
</li>


<li>won&#8217;t(wóʊnt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>


<li>same(séɪm):sは歯を閉じて、その間から空気を出す</li>

<li>for( fɚ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>「フォウ」ではなく「ファ」のニュアンス</li>

<li>for me(fɚ mi):</li>


<li>do the same(dúː　ðə séɪm):しっかりとsameのsを意識
<br>sは歯を閉じて、その間から空気を出す
</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc104">68. This is better than I expected.(思ったより全然いいじゃん！)69. Do what you can now, without regret.(今できることを、後悔することなくやりなさい。)70. The accumulation of those efforts will inevitably lead to results.(それらの努力の積み重ねは、必ず結果につながる。)71. I feel it from the bottom of my heart.(心からそう思うよ。)72. Why? I&#8217;m trying so hard to meet you halfway…(なんで？僕は君にちゃんと歩み寄ろうとすごく努力しているんだよ。)73. Then why won’t you do the same for me?(じゃあ、なんで君は僕に同じことをしてくれないの？)</span></h2>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/68-73.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>This(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
</li>

<li>better(béṭɚ):フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
</li>

<li>than(ðən):ðは舌先を歯で軽く挟んで、喉震わせる
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
</li>


<li>expected(ɪksˈpɛktɪd):ɝはɚを長く伸ばすイメージ。
</li>

<li>better than I expected:一語一語区切るのではなく、一つの単語のように扱い、喉を閉じることなく発音する。	
</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>now(nάʊ):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>


<li>Do what you can now:whatを強くいう。youはユーではなく「ユ」のみのニュアンス。</li>


<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
<br>ウィズアウトではなく、ウィザウトに近い。
</li>

<li>regret(rɪgrét):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。
<br>eは日本語のエよりも口を開く
</li>

</ul>
</div>




<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>accumulation(əkjùːmjʊléɪʃən):ʃはsよりも舌を盛り上げたバージョン。
</li>

<li>those(ðóʊz):ðは舌先を歯で軽く挟んで、喉震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>efforts(ˈɛfɝts):ɝはɚを長く伸ばすイメージ。
</li>

<li>The accumulation of those efforts:TheAccumulationOfThoseEfforts</li>


<li>will(wíl):l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>

<li>inevitably(ɪnˈevɪtəbli)：tはフラップtだからdの音になる。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

<li>lead to:lead(lēd)のdは発音せず、toとくっつける
<br>leadのeを伸ばし過ぎるとread(ríːd)になるから短く。
</li>

<li>results(rɪˈzʌlts):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>ʌを強調しないと、resortになってしまうので、しっかりとʌを発音する
</li>

<li>lead to results:toは短く。</li>



</ul>
</div>





<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>feel(fíːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>from(frəm):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>

<li>bottom(bάṭəm):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

<li>heart(hάɚt):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>	

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>Iはイよりもエに近い音。
</li>

<li>trying(ˈtraɪɪŋ):ŋは日本語の「えんか」のンの形
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>gの音は発音しない
</li>

<li>I&#8217;m trying:アイムよりもアムに近い。</li>


<li>hard(hάɚd):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>


<li>so hard:soはソーではなくソゥ(sóʊ):</li>

<li>meet(míːt):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する
</li>

<li>halfway(hˈæfwéɪ):æはエの口でア。ガチョウの様な音
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>to meet you halfway:toとyouは弱く。meetとfalfwayは強く</li>


</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>then(ðén):ðは舌先を歯で軽く挟んで、喉震わせる
<br>eは日本語のエよりも口を開く
<br>「ゼン」じゃなんくて「ðén」</li>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
</li>


<li>won&#8217;t(wóʊnt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>


<li>same(séɪm):sは歯を閉じて、その間から空気を出す</li>

<li>for( fɚ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>「フォウ」ではなく「ファ」のニュアンス</li>

<li>for me(fɚ mi):</li>


<li>do the same(dúː　ðə séɪm):しっかりとsameのsを意識
<br>sは歯を閉じて、その間から空気を出す
</li>

</ul>
</div>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="ロクデナシ宇宙 『High  school monster』" width="1256" height="707" src="https://www.youtube.com/embed/MR0uSasgrlk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
]]></content:encoded>
					
		
		<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/This-is-better-than-I-expected.m4a" length="22136" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/this-is.m4a" length="10402" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/better.m4a" length="8248" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/than.m4a" length="7775" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/expected.m4a" length="11749" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/better-than-I-expected_.m4a" length="17115" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now-without-regret.m4a" length="26835" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/now.m4a" length="8885" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/what.m4a" length="8638" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Do-what-you-can-now.m4a" length="12955" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/without.m4a" length="9412" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/regret.m4a" length="8900" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/without-regret.m4a" length="13550" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation-of-those-efforts-will-inevitably-lead-to-results.m4a" length="46030" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/accumulation.m4a" length="14473" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation.m4a" length="14981" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/those.m4a" length="8100" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/efforts.m4a" length="10323" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/The-accumulation-of-those-efforts.m4a" length="25312" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/will.m4a" length="7797" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/inevitably.m4a" length="11283" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/lead-to.m4a" length="11049" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/will-inevitably.m4a" length="12945" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/results.m4a" length="11156" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/lead-to-results.m4a" length="15285" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/will-inevitably-lead-to-results.m4a" length="24637" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/I-feel-it-from-the-bottom-of-my-heart.m4a" length="25476" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/feel.m4a" length="8801" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/I-feel-it.m4a" length="9700" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/from.m4a" length="9871" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/bottom.m4a" length="7773" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/heart.m4a" length="10816" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/bottom-of-my-heart.m4a" length="15096" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/from-the-bottom-of-my-heart.m4a" length="20025" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Why-Im-trying-so-hard-to-meet-you-halfway.m4a" length="35103" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/why.m4a" length="9743" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/trying.m4a" length="8341" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Im-trying.m4a" length="9844" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/hard.m4a" length="8309" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/so-hard.m4a" length="10865" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Im-trying-so-hard.m4a" length="16922" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/meet.m4a" length="7967" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/halfway.m4a" length="9416" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/to-meet-you-halfway.m4a" length="15585" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/Then-why-wont-you-do-the-same-for-me.m4a" length="23518" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/then.m4a" length="8226" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/wont.m4a" length="8770" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/why-wont-you-do.m4a" length="13438" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/same.m4a" length="8539" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/for.m4a" length="10765" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/for-me.m4a" length="10264" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/do-the-same.m4a" length="11076" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/why-wont-you-do-the-same-for-me.m4a" length="21850" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/68-73.m4a" length="178114" type="audio/mpeg" />

			</item>
		<item>
		<title>English Phrases 1~100</title>
		<link>https://ascend-beyond.com/study/5893/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Mon, 21 Apr 2025 06:53:23 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[英語]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=5893</guid>

					<description><![CDATA[リンク 1~4. Morning! Oh, your outfit looks stylish today. Wait… oh, sorry, I just realized I was mistaken. It’s n [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-l sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/ab83decce6d239fa7fe15f225bbe4728-150x150.jpg" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>This web page uses this app, I’ll put the URL here so you can install and try it too. It will surely support your study.<br>(このウェブページはこのアプリを使用しています。ここにURLを貼りますので、あなたもインストールして試してみてください。きっとあなたの学習をサポートしてくれるでしょう。)</p>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/this-web-page-users-this-app-Ill-put-hte-URL-here-so-you-can-install-and-try-it-too.m4a"></audio></figure>




<a rel="noopener" href="https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" title="‎翻訳" class="blogcard-wrap external-blogcard-wrap a-wrap cf" target="_blank"><div class="blogcard external-blogcard eb-left cf"><div class="blogcard-label external-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail external-blogcard-thumbnail"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/cocoon-resources/blog-card-cache/add1dff6e0f84e310d145251ee3abe80.png" alt="" class="blogcard-thumb-image external-blogcard-thumb-image" width="160" height="90" /></figure><div class="blogcard-content external-blogcard-content"><div class="blogcard-title external-blogcard-title">‎翻訳</div><div class="blogcard-snippet external-blogcard-snippet">‎“翻訳”では、2つの言語間で音声や文章を素早く簡単に翻訳できます。フレーズや会話、さらには身の回りのテキストを翻訳するのに最適で最も使いやすいアプリとして設計されています。“翻訳”は高品質な翻訳と直感的なデザインを兼ね備えており、素早く簡単に翻訳できます。

機能:
• テキストの翻訳 — 素早く、簡単かつ直感的に使...</div></div><div class="blogcard-footer external-blogcard-footer cf"><div class="blogcard-site external-blogcard-site"><div class="blogcard-favicon external-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" alt="" class="blogcard-favicon-image external-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain external-blogcard-domain">apps.apple.com</div></div></div></div></a>

</div></div>



<!-- START MoshimoAffiliateEasyLink -->
<script type="text/javascript">
(function(b,c,f,g,a,d,e){b.MoshimoAffiliateObject=a;
b[a]=b[a]||function(){arguments.currentScript=c.currentScript
||c.scripts[c.scripts.length-2];(b[a].q=b[a].q||[]).push(arguments)};
c.getElementById(a)||(d=c.createElement(f),d.src=g,
d.id=a,e=c.getElementsByTagName("body")[0],e.appendChild(d))})
(window,document,"script","//dn.msmstatic.com/site/cardlink/bundle.js?20220329","msmaflink");
msmaflink({"n":"ネイティブなら12歳までに覚える 80パターンで英語が止まらない!","b":"","t":"","d":"https:\/\/m.media-amazon.com","c_p":"\/images\/I","p":["\/51I6CMBbNnS._SL500_.jpg","\/410oyV1WCqS._SL500_.jpg","\/417Whyx4tMS._SL500_.jpg","\/51YC2LYOgvS._SL500_.jpg","\/41NFM2d3y2S._SL500_.jpg"],"u":{"u":"https:\/\/www.amazon.co.jp\/dp\/4471113402","t":"amazon","r_v":""},"v":"2.1","b_l":[{"id":1,"u_tx":"Amazonで見る","u_bc":"#f79256","u_url":"https:\/\/www.amazon.co.jp\/dp\/4471113402","a_id":4440991,"p_id":170,"pl_id":27060,"pc_id":185,"s_n":"amazon","u_so":1},{"id":2,"u_tx":"楽天市場で見る","u_bc":"#f76956","u_url":"https:\/\/search.rakuten.co.jp\/search\/mall\/%E3%83%8D%E3%82%A4%E3%83%86%E3%82%A3%E3%83%96%E3%81%AA%E3%82%8912%E6%AD%B3%E3%81%BE%E3%81%A7%E3%81%AB%E8%A6%9A%E3%81%88%E3%82%8B%2080%E3%83%91%E3%82%BF%E3%83%BC%E3%83%B3%E3%81%A7%E8%8B%B1%E8%AA%9E%E3%81%8C%E6%AD%A2%E3%81%BE%E3%82%89%E3%81%AA%E3%81%84!\/","a_id":4440988,"p_id":54,"pl_id":27059,"pc_id":54,"s_n":"rakuten","u_so":2}],"eid":"g4isZ","s":"s"});
</script>
<div id="msmaflink-g4isZ">リンク</div>
<!-- MoshimoAffiliateEasyLink END -->



<h2 class="wp-block-heading"><span id="toc1">1~4. Morning! Oh, your outfit looks stylish today. Wait… oh, sorry, I just realized I was mistaken. It’s not the outfit that looks good.it’s just you who’s so attractive.（おはよっ！あっ、今日のその服なんかオシャレだね。あれ….？ごめん、よく見たら見間違えだった…。その服装がいいんじゃなくて、君自身が魅力的なだけだった。)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/5698/" title="English日常で使えるフレーズ1~4" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2024/12/4c1a72e1782bd9e0149ed0629c371303.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ1~4</div><div class="blogcard-snippet internal-blogcard-snippet">Morning! Oh, your outfit looks stylish today. Wait… oh, sorry, I just realized I was mistaken. It’s not the outfit that looks good.it’s just you who’s so attractive.</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2024.12.22</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/Morning-Oh-your-outfit-looks-stylish-today-Wait-oh-sorry-I-just-realized-I-was-mistaken-Its-not-the-outfit-that-looks-good-its-just-you-whos-so-attractive.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc2">5~7. Excuse me, could you take a photo for me, please? I’d like the photo to include both me and that landmark object over there. Is that okay?（すみません、写真を撮っていただけますか？その写真には私とあそこにあるランドマークのオブジェ（名物っぽいもの）を一緒に写してほしいのですが、それで大丈夫ですか？）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/5824/" title="English日常で使えるフレーズ5~7" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2024/12/52ee022225c34922e3730701f579bf47-1.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ5~7</div><div class="blogcard-snippet internal-blogcard-snippet">Excuse me, could you take a photo for me, please? I’d like the photo to include both me and that landmark object over there. Is that okay?</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2024.12.28</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/Excuse-me-Is-that-okay.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc3">8~11. Hi, excuse me, do you have a moment?Oh, actually, do you speak English?Oh, great! Do you mind if we chat for a bit?I noticed I haven’t seen you around before, so I thought I’d say hi.（あ、すみません。今いいですか?あっ、ところで、英語は話せますか？おぉ、よかった。じゃあ少しお話しできますか？これまであなたをあまり見たことがないので、挨拶しようと思いました。）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/5901/" title="日常で使える英語フレーズ8~11" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2024/12/301d8fa70de0ad27f86889729381e47d.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">日常で使える英語フレーズ8~11</div><div class="blogcard-snippet internal-blogcard-snippet">Hi, excuse me, do you have a moment?Oh, actually, do you speak English?Oh, great! Do you mind if we chat for a bit?I noticed I haven’t seen you around before, so I thought I’d say hi.（あ、すみません。今いいですか?あっ、ところで、英語は話せますか？おぉ、よかった。じゃあ少しお話しできますか？これまであなたをあまり見たことがないので、挨拶しようと思いました。）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2024.12.31</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/Hi-excuse-me-so-I-thought-Id-say-hi.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc4">12~16.First of all, I really enjoy talking to people. I especially like discussing topics like life choices, sources of motivation, and ways of thinking. So, if you&#8217;re okay with it, how about we get to know each other better through conversations like that? Of course, I&#8217;m open to other topics too.（まず第一に、私は人と話すのがとても好きです。私は特に、人生の選択や、モチベーションの源、考え方などの話題について話すのが好きです。それで、もしそれであなたが良ければ、そういう会話を通じて、もっとお互いのことを知るのはどうかな？もちろん、他の話題についても大歓迎です。）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6014/" title="English日常で使えるフレーズ12~16" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/01/e786b4dfabaf5ae4f04a66a01332916b.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ12~16</div><div class="blogcard-snippet internal-blogcard-snippet">First of all, I really enjoy talking to people. I especially like discussing topics like life choices, sources of motivation, and ways of thinking. So, if you're okay with it, how about we get to know each other better through conversations like that? Of course, I'm open to other topics too.（まず第一に、私は人と話すのがとても好きです。私は特に、人生の選択や、モチベーションの源、考え方などの話題について話すのが好きです。それで、もしそれであなたが良ければ、そういう会話を通じて、もっとお互いのことを知るのはどうかな？もちろん、他の話題についても大歓迎です。）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.01.03</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/First-of-all-Im-open.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc5">17~20. By the way, what kind of topics do you enjoy talking about? Sports? Relationships? Or maybe work-related things?Oh, sorry, I’ve been talking too much.It’s your turn now.（ちなみに、あなたはどのような話題を喋るのが好き？スポーツ？恋愛？それとも仕事のこと？あ、ごめんね、一方的に喋りすぎちゃった。今度は君の番だよ。）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6141/" title="English日常で使えるフレーズ17~20" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/01/584545a7371892de4d0bddf8a11fa691.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ17~20</div><div class="blogcard-snippet internal-blogcard-snippet">By the way, what kind of topics do you enjoy talking about? Sports? Relationships? Or maybe work-related things?Oh, sorry, I’ve been talking too much.It’s your turn now.（ちなみに、あなたはどのような話題を喋るのが好き？スポーツ？恋愛？それとも仕事のこと？あ、ごめんね、一方的に喋りすぎちゃった。今度は君の番だよ。）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.01.07</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/By-the-way-what-kind-Its-your-turn-now.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc6">21~24. You can talk about anything you like.If you don’t have a specific topic in mind,maybe you could share how you spend your weekends.So, tell me about yourself!（喋る話題はなんでもいいよ。もしも喋る話題がなかったら、もしよければ、週末の過ごし方とかを話してみるのはどう。じゃあ、君について教えてよ）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6286/" title="English日常で使えるフレーズ21~24" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/01/873f889fb56816485815b35a7d709daa.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ21~24</div><div class="blogcard-snippet internal-blogcard-snippet">You can talk about anything you like.If you don’t have a specific topic in mind,maybe you could share how you spend your weekends.So, tell me about yourself!（喋る話題はなんでもいいよ。もしも喋る話題がなかったら、もしよければ、週末の過ごし方とかを話してみるのはどう。じゃあ、君について教えてよ）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.01.13</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/You-can-talk-about-anything-tell-me-about-yourself.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc7">25. Which language are you more comfortable speaking, Japanese or English?26. Alright, let&#8217;s do our best this afternoon!27. If you don&#8217;t mind, how about we continue our conversation in English from now on?28. That&#8217;s such a cool story! I want to hear more!29. I majored in English at university, well… kind of.（日本語と英語、どちらを話す方が得意ですか？）（それじゃあ、午後も頑張りましょう！）（もし、よかったらこれから僕たちの会話は英語でやっていきませんか？）（その話めっちゃ面白い！もっと聞かせて！）（僕、大学では英語を専攻してたよ、まぁ…一応ね。）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6301/" title="English日常で使えるフレーズ25~29" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/01/07389ff71c893b880a2ad7efc927b11d.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ25~29</div><div class="blogcard-snippet internal-blogcard-snippet">Which language are you more comfortable speaking, Japanese or English?Alright, let's do our best this afternoon!If you don't mind, how about we continue our conversation in English from now on?That's such a cool story! I want to hear more!I majored in English at university, well… kind of.（日本語と英語、どちらを話す方が得意ですか？）（それじゃあ、午後も頑張りましょう！）（もし、よかったらこれから僕たちの会話は英語でやっていきませんか？）（その話めっちゃ面白い！もっと聞かせて！）（僕、大学では英語を専攻してたよ、まぁ…一応ね。）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.01.13</div></div></div></div></a>
</div><figcaption class="wp-element-caption">25~29</figcaption></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/25-29.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc8">30. What kind of music do you listen to?31. Do you have a favorite artist or genre, or anything like that?32. In Japanese music, I really like a band called RADWIMPS. Their songs are amazing.33. If it&#8217;s a song by that band, I especially like one called &#8216;Zenzenzense&#8217;.34. Oh, so you like that kind of song! I&#8217;ll check it out when I get home today!（君はどんな曲を聴くの？）（好きなアーティストとかさ、ジャンルとかさ、そーゆーのはある？）（僕は邦楽ではRADWIMPSというバンドの曲が好きです。）（そのバンドの曲だったら、特にZenzenzenseという曲が好きです）（へー！そーゆー曲が好きなんだ。今日、家帰ったら聞いてみるね！）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6418/" title="English日常で使えるフレーズ30~34" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/01/e233962315dc054b45f26add6a127e2c.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ30~34</div><div class="blogcard-snippet internal-blogcard-snippet">30. What kind of music do you listen to? 31. Do you have a favorite artist or genre, or anything like that?32. In Japanese music, I really like a band called RADWIMPS. Their songs are amazing.33. If it's a song by that band, I especially like one called 'Zenzenzense'.34. Oh, so you like that kind of song! I'll check it out when I get home today!（君はどんな曲を聴くの？）（好きなアーティストとかさ、ジャンルとかさ、そーゆーのはある？）（僕は邦楽ではRADWIMPSというバンドの曲が好きです。）（そのバンドの曲だったら、特にZenzenzenseという曲が好きです）（へー！そーゆー曲が好きなんだ。今日、家帰ったら聞いてみるね！）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.01.19</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/30-34.m4a"></audio></figure>



<h2 class="wp-block-heading"><span id="toc9">35. I always leave with plenty of time to spare,36. but I can’t help worrying that I might not make it on time while I’m walking.37. So I end up walking faster and even jogging a little…38. and I arrive way too early.39. But I just can’t break this habit!（いつも時間には余裕を持って出発してるけど、　歩いてる途中に間に合わなかったら、どうしようという不安になります。　で、つい小走りをしてしまいます。　そうすると、待ち合わせ時間の結構前に着き過ぎてしまいます。　でも、この癖がやめられません。）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6553/" title="English日常で使えるフレーズ35~39" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/02/f125d16e4e10dc7bdb3584ccf1fe8ca0.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ35~39</div><div class="blogcard-snippet internal-blogcard-snippet">　I always leave with plenty of time to spare,　but I can’t help worrying that I might not make it on time while I’m walking.　So I end up walking faster and even jogging a little…　and I arrive way too early.　But I just can’t break this habit!（いつも時間には余裕を持って出発してるけど、　歩いてる途中に間に合わなかったら、どうしようという不安になります。　で、つい小走りをしてしまいます。　そうすると、待ち合わせ時間の結構前に着き過ぎてしまいます。　でも、この癖がやめられません。）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.02.22</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/02/35-39.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Always:Lは発音しない</li>
<li>plenty:ｐは唇を口に巻き込んでから破裂させるイメージ</li>
<li>time to spare:＊toは音を出すか出さないかレベル</li>
<li>can&#8217;t:キャンというより、ケンに近い</li>
<li>help:Lはほぼ発音しない</li>
<li>while I’m:ワライム</li>
<li>walking:ウとウォの間の音</li>
<li>faster:ファスターよりもファストゥーの方が近い</li>
<li>help:Lはほぼ発音しない</li>
<li>*and even:andのdは発音しない。エニーブンが近い</li>
<li>little:リトルより、リィロォウ。リの音は舌を前歯の裏に当てながら声を出す</li>
<li>arrive：アではなく、ウとオの中間くらいの音で「ゥォライブ」という</li>
<li>early：アーリィではなく、喉の奥からうなるだけ。で、リィは舌先を前歯にスライド</li>
<li>habit:habitのビットは唇をかるく結んでから解放する</li>
</ul>
</div>



<h2 class="wp-block-heading"><span id="toc10">40. Ugh, I&#8217;m exhausted today.（はぁ、今日も疲れたぁ～）41. By the way, this is totally random, but are you more of a summer or winter person?（ってか、めっちゃ話変わるんだけど、君って夏派？冬派？）</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6657/" title="English日常で使えるフレーズ40~41" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/03/b4d839078d9f0fe4b5e353a489afb51b.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">English日常で使えるフレーズ40~41</div><div class="blogcard-snippet internal-blogcard-snippet">40. Ugh, I'm exhausted today.41. By the way, this is totally random, but are you more of a summer or winter person?</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.03.02</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/40-41.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>exhausted today:「エグゾーステッ　トゥデイ」のように、最後までexhaustedのdまでは発音しない</li>
<li>by the way:「バイ　ザ　ウェイ」ではなく、ニュアンスは「バイ　ダ　ウェイ」</li>
<li>this is:「ディス　イズ」ではなく、ニュアンスは「ディシィズ」</li>
<li>totally:「トー タ リィー」ではなく、ニュアンスは「トォウタリィ」
	<ul>
	<li>to:「トー」ではなく、「トォウ」</li>
	<li>lly:舌先を前歯の裏に当ててスライドさせながら「リィ」</li>
	<li>発音中に区切らない。息は出し続けて、下の動きや強弱などで発音をする。音を区切るとそれは別の単語になる。</li>
	</ul>
</li>
<li>random:「ra」はラとレの間の音くらい。「dom」は「デム」に近い。</li>
<li>summer: 「サマー」ではなく、サの中に気持ち「ス」を入れる音くらいで「スァマァール」のニュアンス。最後のRを意識</li>
<li>winter: 「ウィンター」ではなく、「ウィンタァール」のニュアンス。最後のRを意識</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc11">42. Lately, I&#8217;ve been really into Katy Perry&#8217;s song Teenage Dream!43. You should give it a listen sometime.44. That song is exactly what I imagine when I think of &#8216;the&#8217; classic Western pop music.45. It’s super upbeat and just makes you wanna dance!&#8221;(最近、僕はKatyPerryのTeenage Dreamって曲にハマってるんだ！君も1回聴いてみて。その曲は、私が『ザ・洋楽』って聞いて思い浮かべるものそのものだよ。めちゃめちゃノリノリになれるよ。)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6710/" title="The road to fluency in English 42~45" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 42~45</div><div class="blogcard-snippet internal-blogcard-snippet">42. Lately, I've been really into Katy Perry's song Teenage Dream!43. You should give it a listen sometime.44. That song is exactly what I imagine when I think of 'the' classic Western pop music.45. It’s super upbeat and just makes you wanna dance!(最近、僕はKatyPerryのTeenage Dreamって曲にハマってるんだ！君も1回聴いてみて。その曲は、私が『ザ・洋楽』って聞いて思い浮かべるものそのものだよ。めちゃめちゃノリノリになれるよ。)</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.03.19</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/42-44.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>lately(léɪtli): tは発音せず、Lを強調して「レェイリィ」のニュアンス。</li>
<li>I&#8217;ve(ɑɪv)</li>
<li>been(bɪn)</li>
<li>really(ríː(ə)li):リアリィよりもaはllyの前に少し発音するかしないか程度で、音を出した瞬間にllyでかぶせるイメージの「リィ（ァ）リィ」のニュアンス</li>
<li>Perry:両唇を合わせてから、解放する</li>
<li>song(sˈɔːŋ):oの音は、日本語のオの口よりも開いて、音を出す。アに近いオ</li>
<li>teenage(tiːnɪʤ):eeとnaの音はイとエの中間の音。</li>
<li>dream(dríːm):dは日本語のタと同じ舌先の位置におき、息をその舌で溜めてから解放するニュアンス。mは唇を合わせて、喉から音を出す。</li>


</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>should(ʃˈʊd):シと同じ感じだけど、少し下を盛り上げるイメージ。</li>
<li>give(gív):vは歯を下唇の裏に軽く触れて、そこの摩擦で音を出す。噛むのではなく、触れる。そして喉を震わせる</li>
<li>give it a:ギビラに近い</li>
<li>should(ʃˈʊd):シと同じ感じだけど、少し下を盛り上げるイメージ。dはほぼ発音しない。</li>
<li>listen(lísn):sは上下の歯の間から音を出すイメージ</li>
<li>sometime(sˈʌmtὰɪm):
　<ul>
	<li>sは上下の歯の間から音を出すイメージ。</li>
	<li>mは両唇を合わせて、鼻から出す。</li>
	<li>tはタと同じ場所に舌先をつけて、空気をせき止めてから音を出す。</li>
	<li>ὰは口を大きく開けて喉の奥から</li>
　</ul>
</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる</li>
<li>song(sˈɔːŋ):ɔは口を縦に開いて、アに近いオ</li>
<li>exactly(ɪgzˈæk(t)li):æはエの口でアの音を出す。ガチョウの様な音。
<br>tは発音しない。
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる
<br>l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>エグザァッリィに近い</li><li>That song is exactly:息は吐き続ける。「ザット・・ソング・・イズ・・エグザァッリィ」とはならないように、特に「イズエグザァッリィ」は切らない</li>
<li>That song is exactly:息は吐き続ける。「ザット・・ソング・・イズ・・エグザァッリィ」とはならないように、特に「イズエグザァッリィ」は切らない</li>
<li>what((h)wάt):hは喉を息がかすれる音。</li>
<li>imagine(ɪmˈædʒɪn):Iはイとエの中間の音。ʒは歯を閉じてそこの間の摩擦で音を出し、sよりも舌を少し盛り上げて、喉を震わせる。。</li>
<li>when((h)wén):hは喉の摩擦でハ行</li>
<li>the(ðə):ðは舌先を歯で軽く挟んで、喉震わせる</li>
<li>think(θíŋk):θは舌先を歯で軽く挟む。ŋは日本語の「えんか」のンの形</li>
<li>classic(klˈæsɪk):æはエの口でア。ガチョウの様な音。sはsは歯を閉じて、その間から空気を出す
<li>Western(wéstɚn):ɚは喉を脱力してリラックスして発音する。曖昧な音。アクセントはéにおく。
<br>若干ɚは伸ばしめで</li>

<li>pop(pάp):άは日本語のアとほぼ同じ。ポップではなく、パップ</li>
<li>music(mjúːzɪk):jはY（ヤ行）の音。下を盛り上げ、そのスペースから空気の摩擦。ｚはzは歯を閉じて、その間から空気を出す。で、喉を震わせる</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>super(súːpɚ):sは歯を閉じて、その間から空気を出す。ɚは喉を脱力してリラックスして発音する。曖昧な音。</li>
<li>upbeat(ˈʌˌpbit):bは両唇を合わせて息をせき止めてから、解放する。で、喉を震わせる。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ。
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する。
<br>アップビートと伸ばすのではなく、アッビットゥみたいなニュアンス</li>
<li>upbeat and:「アッビトゥ エン」のニュアンス。かすかにtを出して、それにand（ən(d)）をつなげる感じ。dは発音しない</li>
<li>It’s super upbeat and:upbeat andの所は「アッビィーティン」のニュアンス</li>
<li>just(dʒˈʌst):dはタと同じ位置に舌を置き、息をせき止めてから解放する。で、喉を震わせる。
<br>ʒはsよりも舌を盛り上げて、喉を震わせる</li>
<li>makes(meks):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>kは舌の根元を上顎につけて、息をせき止めてから解放する</li>
<li>wanna(wὰnə)</li>
<li>dance(dˈæns):æはエの口でア。ガチョウの様な音
<li>imagine(ɪmˈædʒɪn):Iはイとエの中間の音。
<br>ʒは歯を閉じてそこの間の摩擦で音を出し、下を少し盛り上げて、喉を震わせる。</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc12">46. Don’t put a lid on my potential!(俺の可能性に蓋をするな！)47. I should feel like success is the only natural outcome for me!(俺ならできて当然という感覚を持て！)48. Alright, take a deep breath and think.(よし、じゃあ一旦冷静に考えろ。)49,50. If you only choose what you&#8217;re already good at,nothing will ever start.(最初から自分ができるものだけ選んでいたら何も始まらない。)51. What really matters is whether you&#8217;re interested in it or not, right?(大事なのは、お前が興味を抱いているかどうかだろ？)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/6961/" title="The road to fluency in English 46~51" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/03/11001d4926b5651085df36da300306c2-1.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 46~51</div><div class="blogcard-snippet internal-blogcard-snippet">46. Don’t put a lid on my potential! 47. I should feel like success is the only natural outcome for me!48. Alright, take a deep breath and think.49.If you only choose what you're already good at, 50.nothing will ever start.51.What really matters is whether you're interested in it or not, right?46.俺の可能性に蓋をするな！47.俺ならできて当然という感覚を持て！48.よし、じゃあ一旦冷静に考えろ。49.最初から自分ができるものだけ選んでいたら、50.何も始まらない。51.本当に大事なのは、お前が興味を抱いているかどうかだろ？</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.03.22</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/46-51.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Don&#8217;t(dóʊnt):tはタと同じ位置に舌を置き、息をせき止めてから解放する</li>
<li>put(pˈʊt):ʊは、オに近いウ。喉の奥から音を送り出すイメージ</li>
<li>lid(líd):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>íは日本語のイとほぼ同じ。ただ、それよりも口を広げる
<br>dはタと同じ位置に舌を置き、息をせき止めてから解放する。で、喉を震わせる
</li>
<li>put a lid:プダリに近い</li>
<li>my(mɑɪ):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。</li>
<li>potential(pəténʃəl):ʃはsよりも舌を盛り上げたバージョン。
<br>poは「ポ」ではなく、パとペの方が近い
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>
<li>Don’t put a lid on my potential!:一語一語切らずに、息はずっと吐き続けている状態</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>should(ʃəd):ʃはsよりも舌を盛り上げたバージョン。
<br>dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる</li>
<li>feel(fíːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>íは日本語のイとほぼ同じ。ただ、それよりも口を広げる
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>大げさに言うとフィーィェル</li>
<li>like(lάɪk):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>
<li>feel like:feelの「l」は、ほぼ発音しないニュアンス</li>
<li>success(səksés):eはエとほぼ同じだけど、それよりも口を大きく開ける</li>
<li>the(ðə):ðは舌先を歯で軽く挟んで、喉震わせる</li>
<li>only(óʊnli):ʊはオに近いウ。喉の奥から出すイメージ。
<br>l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
</li>
<li>natural(nˈætʃ(ʊ)rəl):ʃはsよりも舌を盛り上げたバージョン。
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ナ・チュ・ラ・ルでなく、ナァチュゥルのニュアンス
</li>
<li>outcome(άʊtk`ʌm):ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>outはアウトではなく、アオトの方が近い
</li>
<li>for(fɚ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。</li>
<li>me(mi;):iは日本語のイよりも若干口を横に開く。</li>
</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Alright(`ɔːlrάɪt):ɔは日本語のオよりも少し口を開く。で、アに近い音
<br>rは喉の奥で音を出し、舌を巻く。犬の「ガルルルルル」のニュアンス
</li>
<li>take(téɪk):eは日本語のエよりも口を開く
<br>Iはイよりもエに近い音。
</li>
<li>deep(díːp):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせる
</li>

<li>breath(bréθ):bは両唇を合わせて息をせき止めてから、解放する。で、喉を震わせる。
<br>eは日本語のエよりも口を開く。
<br>θは舌先を歯で軽く挟む。
</li>
<li>think(θíŋk):Iはイよりもエに近い音。
<br>ŋは日本語の「えんか」のンの形
</li>

<li>take a deep breath:deepのpは発音しない</li></ul>
</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>only(óʊnli):óʊは二重母音。óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。</li>

<li>choose(tʃúːz):tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>ʃはsよりも舌を盛り上げたバージョン。
<br>uは日本語のウとほぼ同じ。口をすぼめる
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる
<br>ニュアンスはトゥーズに近い。
</li>
<li>what((h)wάt):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>
<li>you&#8217;re(jˈʊɚ):jはY（ヤ行）の要領（舌が盛り上がっている）で音を出す。舌とのスペースから空気の摩擦で音が出る
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>
<li>already(ɔːlrédi):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>ニュアンスはall readyとつなげて言う。
</li>
<li>good(gˈʊd):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ。ゲップみたいなニュアンス。
</li>
<li>at(ət)
</li>
<li>what you’re already good at:atの部分は変に伸ばすとartになるから、発音記号通り。
</li>


</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>nothing(nˈʌθɪŋ):nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>
<li>will(wíl):Iはイよりもエに近い音。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>
<li>ever(évɚ):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
</li>
<li>will ever:ウィレバァーのニュアンス
<br>vɚを意識。borとならないように。</li>
<li>start(stάɚt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li></ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>really(ríː(ə)li):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>Iはイよりもエに近い音。
</li>

<li>matters(ˈmætɝz):æはエの口でア。ガチョウの様な音
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>ɝはɚを長く伸ばすイメージ。
<br>tɝzのニュアンスはタとラを同時に出すイメージで、「マtɝズ」
</li>

<li>whether((h)wéðɚ):eは日本語のエよりも口を開く
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>天気のweather(wéðɚ)と同じ
</li>

<li>interested(íntrəstɪd):Iはイとエの中間の音。
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
</li>

<li>in it or not:一つ一つの単語というよりも「initornot」という１個の単語というイメージ。
<br>in(iːn)
<br>it(ít)
<br>or(ɚ)
<br>not(nɒt)
</li>

<li>right(rάɪt):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。
</li>


<br>
</ul>
</div>



<h2 class="wp-block-heading"><span id="toc13">Don’t put a lid on my potential!I should feel like success is the only natural outcome for me!Alright, take a deep breath and think.If you only choose what you&#8217;re already good at,nothing will ever start.What really matters is whether you&#8217;re interested in it or not, right?(俺の可能性に蓋をするな！俺ならできて当然という感覚を持て！よし、じゃあ一旦冷静に考えろ。最初から自分ができるものだけ選んでいたら何も始まらない。大事なのは、お前が興味を抱いているかどうかだろ？本当に大事なのは、お前が興味を抱いているかどうかだろ？)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/7030/" title="The road to fluency in English 52~56" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 52~56</div><div class="blogcard-snippet internal-blogcard-snippet">It was love at first sight.Does that make sense ?I can absolutely do that.I guess I got caught.I just do it without overthinking—like a crazy fool.（一目ぼれだった。納得できた？問題ないよ、任せて！ばれちゃったかぁ考えすぎずに、ただやっちゃうんだ—まるで頭のおかしいバカみたいに）</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.04.06</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/52-56.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>was(wəz; ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる</li>

<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
</li>
<li>first(fˈɚːst):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。

<li>sight(sάɪt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す</li></ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Does(dˈʌz):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>


<li>make(méɪk):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
<br>kは舌の根元を上顎につけて、息をせき止めてから解放する
</li>

<li>sense(séns):sは歯を閉じて、その間から空気を出す
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>

<li>Doseのzの音は出す</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>can(k`æn):æはエの口でア。ガチョウの様な音
</li>

<li>absolutely(æbsəlùːtli):Iはイとエの中間の音。</li>


<li>can absolutely:canabsolutleyと一つの単語になるイメージ</li>

<li>do(díṭoʊ):Iはイよりもエに近い音。
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる</li>

<li>I can absolutely：Iはしっかりアイと言わずにイメージはアだけでもいいぐらい短く</li>
</ul>
</div>	


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>
<li>got(gάt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す。ゲップを出すときの場所
</li>
<li>caught(kˈɔːt):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口を縦に長い楕円家にして、つぼませて言う。
</li>
</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I just do it:justのtはほぼ発音しない
</li>	

<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ウィズアウトではなく、ウィダゥトに近い
</li>


<li>without overthinking：一語一語区切るのではなく、withoutoverthinkingという一つの単語として発音するイメージ</li>

<li>like(lάɪk):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。
<br>ライクよりもラエクの方が近い
</li>

<li>crazy(kréɪzi):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>eɪは二重母音でリラックスした状態でエィと発音。日本人はこれを「ー（伸ばし棒）」にしてしまう傾向がある。
<br>iは日本語のイよりも若干口を横に開く。

</li>

<li>fool(fúːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>uは日本語のウにほぼ同じ
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>



</ul>
</div>



<h2 class="wp-block-heading"><span id="toc14">The more enemies surround me, the more I sharpen my edge.Now that I think about it.Don’t you think so?I&#8217;m not sure.I want to be strong enough to protect you, no matter what.敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく。振り返って考えてみると。そうじゃない？よくわからない。どんなことがあっても、君を守れるくらい強くなりたい。</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/7221/" title="The road to fluency in English 57~61" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 57~61</div><div class="blogcard-snippet internal-blogcard-snippet">57. The more enemies surround me, the more I sharpen my edge.(敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく)58. Now that I think about it(振り返って考えてみると)59. Don’t you think so?(そうじゃない？（軽く同意を求める感じ）)60. I'm not sure(よくわからない...)61. I want to be strong enough to protect you, no matter what.(どんなことがあっても、君を守れるくらい強くなりたい。)</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.04.12</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/57-61.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>more(mˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
</li>


<li>enemies(ˈenʌmiz):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>surround(sərάʊnd):άʊは二重母音で、アゥと発音
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>me(mi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>(ʃάɚp(ə)n):ʃはsはシィーというニュアンスだけどこれは、スゥーに近くsよりも舌を盛り上げたバージョン。
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
<br>シャーペンよりもシャー・プンのニュアンス
<br>shopping（ʃάpɪŋ）と似ているが、p(ə)nをプンのイメージで言えばOK
</li>	

<li>edge(édʒ):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʒはʃ（シと同じ要領でsよりも舌を盛り上げたバージョン。）に喉を震わせる
<br>age(éɪdʒ)みたいに、エイと発音しないように
</li>

<br>
</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>now(nάʊ):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
<br>Iはイよりもエに近い音。
</li>

<li>about(əbάʊt):bは両唇を合わせて息をせき止めてから、解放する。で、喉を震わせる。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>

<li>think about:aboutのaは発音しない</li>


<li>about it:aboutのtは省略
</li>

<li>Now that I think about it:aboutのaは省略。
<br>aboutのtは省略</li>


</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Don&#8217;t(dóʊnt):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>
<li>Don&#8217;t you:Don&#8217;tのtは発音しない</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
</li>
<li>so(sóʊ):ソーじゃなくて、ソゥ</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>not(nɑt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>sure(ʃˈʊɚ):ʃはsよりも舌を盛り上げたバージョン。
ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>I&#8217;m(ɑɪm):ɑɪは二重母音で、リラックスした状態でアィという。若干、アを伸ばす
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

</ul>
</div>










<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>want(wάnt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>be(bi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>

<li>strong(strˈɔːŋ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>日本語ではストロングだが、ニュアンスはgは発音せずストロンに近い
</li>

<li>enough(ɪnˈʌf):Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>



<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>


<li>protect(prətékt):proの部分は弱く</li>

<li>no(nóʊ):óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>ノーじゃなくて、ノウ</li>

<li>matter(mˈæṭɚ):æはエの口でア。ガチョウの様な音
</li>

<li>no matter what:noはノウではなく、ノだけでよい。
<br>ニュアンスはノマターワット</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc15">62. Fear is just the fire before I rise.63. How can I handle this feeling?64. Every time I see you.65. That&#8217;s what makes you beautiful.66. I guess, in the end, this is what really matters to me.67. The reason I live is to make the woman I love the happiest woman in the world.(不安や恐怖は、俺が覚醒する前兆だ。)(この感情はどうしたらいいの？)(君を見るたびに)(そこが君の魅力なんだよ。)(結局のところ、自分にとって本当に大事なのはこれなんだ)(僕が生きる理由は、好きな人を世界で１番幸せな女性にすること。)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/7345/" title="The road to fluency in English 62~67" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 62~67</div><div class="blogcard-snippet internal-blogcard-snippet">62. Fear is just the fire before I rise.(不安や恐怖は、俺が覚醒する前兆だ。)63. How can I handle this feeling?(この感情はどうしたらいいの？)64. Every time I see you.(君を見るたびに)65. That's what makes you beautiful.(そこが君の魅力なんだよ。)66. I guess, in the end, this is what really matters to me.(結局のところ、自分にとって本当に大事なのはこれなんだ)67. The reason I live is to make the woman I love the happiest woman in the world.(僕が生きる理由は、好きな人を世界で１番幸せな女性にすること。)</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.04.20</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/62-67.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>fier(fíɚ):Iはイよりもエに近い音。
</li>

<li>just(dʒˈʌst):ʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>fire(fάɪɚ):άɪは二重母音。リラックスした状態でアィという。最初の母音がやや伸び気味
</li>

<li>before(bɪfˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。allなどが代表例
<br>ビフォウよりもベフォウのニュアンス
</li>

<li>Fear is just the fire before I rise:強弱を意識する
<br>Fear・is・just・the・fire・before・I・rise
<br>　強・弱・　強・　弱・　強・　弱　・弱・　強</li>

</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>how(hάʊ):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>
<li>can I:can(k(ə)n) Iはキャナイよりもケナイに近い </li>

<li>how can I :ハウキャナイよりもハウクゥナイのニュアンス
<br>ただのクではなくkを意識したクゥナイ</li>

<li>handle(hˈændl):æはエの口でア。ガチョウの様な音
<br>ｌは発音するかしないかのレベル
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>feeling(fíːlɪŋ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>フィーリングではなくgは発音せずフィーリンのニュアンス

</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>every(évri):vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす。
<br>エブリィのように、バビブベボの音にならないように注意。
</li>

<li>time(tάɪm):tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>άɪは二重母音。リラックスした状態でアィと音を出す。
</li>

<li>see(síː):sは歯を閉じて、その間から空気を出す
<br>Iはイよりもエに近い音。
</li>

<li>you(jʊ):jはY（ヤ行）の要領（舌が盛り上がっている）で音を出す。舌とのスペースから空気の摩擦で音が出る
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>That’s(ðˈæts):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>makes(meks):メイクではなく「メェーク」のニュアンス</li>


<li>beautiful(bjúːṭɪf(ə)l):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>b+you+di+fullのニュアンス
<br>tはフラップしてdになる。</li>


<li>makes you beautiful:youは控えめ</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eは日本語のエよりも口を開く
</li>



<li>end(énd):eは日本語のエよりも口を開く
</li>


<li>in the end:イニエンドゥのニュアンス</li>

<li>this is(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
<br>This・isと分けるのではなく、thisisという一つの単語のようにくっつけて発音する
</li>


<li>really(ríː(ə)li):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
</li>


<li>matters(ˈmætɝz):æはエの口でア。ガチョウの様な音
<br>ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>reason(ríːzn):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>


<li>theは「ザ」じゃなくて、「ðə（ðは舌先を歯で軽く挟んで、喉震わせる）」
</li>

<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>


<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>



<li>make(méɪk):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
</li>

<li>woman(wˈʊmən):ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>to make the woman:makeのkは発音しない（＝méɪのみ）</li>


<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>


<li>happiest(ˈhæpiʌst):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>æはエの口でア。ガチョウの様な音
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>in the world:theはザではなく、ナに近い。
<br>worldはしっかり、発音記号通りに（wˈɚːld）Lの音も出す。</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc16">68. This is better than I expected.(思ったより全然いいじゃん！)69. Do what you can now, without regret.(今できることを、後悔することなくやりなさい。)70. The accumulation of those efforts will inevitably lead to results.(それらの努力の積み重ねは、必ず結果につながる。)71. I feel it from the bottom of my heart.(心からそう思うよ。)72. Why? I&#8217;m trying so hard to meet you halfway…(なんで？僕は君にちゃんと歩み寄ろうとすごく努力しているんだよ。)73. Then why won’t you do the same for me?(じゃあ、なんで君は僕に同じことをしてくれないの？)</span></h2>



<figure class="wp-block-embed is-type-wp-embed"><div class="wp-block-embed__wrapper">
<a href="https://ascend-beyond.com/study/7469/" title="The road to fluency in English 68~73" class="blogcard-wrap internal-blogcard-wrap a-wrap cf"><div class="blogcard internal-blogcard ib-left cf"><div class="blogcard-label internal-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail internal-blogcard-thumbnail"><img decoding="async" width="160" height="90" src="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg" class="blogcard-thumb-image internal-blogcard-thumb-image wp-post-image" alt="" srcset="https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/05/694117a0f6a44094f28599e46120ce67.jpg 1200w" sizes="(max-width: 160px) 100vw, 160px" /></figure><div class="blogcard-content internal-blogcard-content"><div class="blogcard-title internal-blogcard-title">The road to fluency in English 68~73</div><div class="blogcard-snippet internal-blogcard-snippet">68. This is better than I expected.(思ったより全然いいじゃん！)69. Do what you can now, without regret.(今できることを、後悔することなくやりなさい。)70. The accumulation of those efforts will inevitably lead to results.(それらの努力の積み重ねは、必ず結果につながる。)71. I feel it from the bottom of my heart.(心からそう思うよ。)72. Why? I'm trying so hard to meet you halfway…(なんで？僕は君にちゃんと歩み寄ろうとすごく努力しているんだよ。)73. Then why won’t you do the same for me?(じゃあ、なんで君は僕に同じことをしてくれないの？)</div></div><div class="blogcard-footer internal-blogcard-footer cf"><div class="blogcard-site internal-blogcard-site"><div class="blogcard-favicon internal-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://ascend-beyond.com" alt="" class="blogcard-favicon-image internal-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain internal-blogcard-domain">ascend-beyond.com</div></div><div class="blogcard-date internal-blogcard-date"><div class="blogcard-post-date internal-blogcard-post-date">2025.05.05</div></div></div></div></a>
</div></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/05/68-73.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>This(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
</li>

<li>better(béṭɚ):フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
</li>

<li>than(ðən):ðは舌先を歯で軽く挟んで、喉震わせる
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
</li>


<li>expected(ɪksˈpɛktɪd):ɝはɚを長く伸ばすイメージ。
</li>

<li>better than I expected:一語一語区切るのではなく、一つの単語のように扱い、喉を閉じることなく発音する。	
</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>now(nάʊ):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>


<li>Do what you can now:whatを強くいう。youはユーではなく「ユ」のみのニュアンス。</li>


<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
<br>ウィズアウトではなく、ウィザウトに近い。
</li>

<li>regret(rɪgrét):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。
<br>eは日本語のエよりも口を開く
</li>

</ul>
</div>




<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>accumulation(əkjùːmjʊléɪʃən):ʃはsよりも舌を盛り上げたバージョン。
</li>

<li>those(ðóʊz):ðは舌先を歯で軽く挟んで、喉震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>efforts(ˈɛfɝts):ɝはɚを長く伸ばすイメージ。
</li>

<li>The accumulation of those efforts:TheAccumulationOfThoseEfforts</li>


<li>will(wíl):l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>

<li>inevitably(ɪnˈevɪtəbli)：tはフラップtだからdの音になる。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

<li>lead to:lead(lēd)のdは発音せず、toとくっつける
<br>leadのeを伸ばし過ぎるとread(ríːd)になるから短く。
</li>

<li>results(rɪˈzʌlts):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ。
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
<br>ʌを強調しないと、resortになってしまうので、しっかりとʌを発音する
</li>

<li>lead to results:toは短く。</li>



</ul>
</div>





<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>feel(fíːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>from(frəm):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>

<li>bottom(bάṭəm):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>フラップT:t の前後が母音で挟まれているとき（butter, water, better, later）,または,t の後に r が来るとき(party, thirty)はtがdの音に変わる
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

<li>heart(hάɚt):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>	

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>Iはイよりもエに近い音。
</li>

<li>trying(ˈtraɪɪŋ):ŋは日本語の「えんか」のンの形
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
<br>gの音は発音しない
</li>

<li>I&#8217;m trying:アイムよりもアムに近い。</li>


<li>hard(hάɚd):hは喉を息がかすれる音。溜息みたいに音を出す。
</li>


<li>so hard:soはソーではなくソゥ(sóʊ):</li>

<li>meet(míːt):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>tはタと同じ位置に舌を置き、息をせき止めてから解放する
</li>

<li>halfway(hˈæfwéɪ):æはエの口でア。ガチョウの様な音
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

<li>to meet you halfway:toとyouは弱く。meetとfalfwayは強く</li>


</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>then(ðén):ðは舌先を歯で軽く挟んで、喉震わせる
<br>eは日本語のエよりも口を開く
<br>「ゼン」じゃなんくて「ðén」</li>

<li>why((h)wάɪ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
</li>


<li>won&#8217;t(wóʊnt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>


<li>same(séɪm):sは歯を閉じて、その間から空気を出す</li>

<li>for( fɚ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>「フォウ」ではなく「ファ」のニュアンス</li>

<li>for me(fɚ mi):</li>


<li>do the same(dúː　ðə séɪm):しっかりとsameのsを意識
<br>sは歯を閉じて、その間から空気を出す
</li>

</ul>
</div>



<p></p>
]]></content:encoded>
					
		
		<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/this-web-page-users-this-app-Ill-put-hte-URL-here-so-you-can-install-and-try-it-too.m4a" length="89197" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/Morning-Oh-your-outfit-looks-stylish-today-Wait-oh-sorry-I-just-realized-I-was-mistaken-Its-not-the-outfit-that-looks-good-its-just-you-whos-so-attractive.m4a" length="145140" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/Excuse-me-Is-that-okay.m4a" length="113023" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/First-of-all-Im-open.m4a" length="220684" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/Hi-excuse-me-so-I-thought-Id-say-hi.m4a" length="154705" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/By-the-way-what-kind-Its-your-turn-now.m4a" length="144607" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/You-can-talk-about-anything-tell-me-about-yourself.m4a" length="116964" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/25-29.m4a" length="296381" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/30-34.m4a" length="315105" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/02/35-39.m4a" length="166388" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/40-41.m4a" length="88367" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/42-44.m4a" length="165071" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/46-51.m4a" length="185524" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/52-56.m4a" length="110289" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/57-61.m4a" length="125616" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/62-67.m4a" length="179754" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/05/68-73.m4a" length="178114" type="audio/mpeg" />

			</item>
		<item>
		<title>The road to fluency in English 62~67</title>
		<link>https://ascend-beyond.com/study/7345/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Sun, 20 Apr 2025 10:18:06 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[英語]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7345</guid>

					<description><![CDATA[はじめに 62. Fear is just the fire before I rise.不安や恐怖は、俺が覚醒する前兆だ。 Fear is just the fire before I rise. fear (fíɚ) [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><span id="toc1">はじめに</span></h2>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-l sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/ab83decce6d239fa7fe15f225bbe4728-150x150.jpg" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>This webpage uses this app. Additionally, we refer to this YouTube video for pronunciation tips. I will share the URL here, so please give it a try. It will surely support your learning.(このウェブページはこのアプリを使用しています。また、発音のポイントなどはこちらのyoutubeを参考にしています。ここにURLを貼りますので、あなたも試してみてください。きっとあなたの学習をサポートしてくれるでしょう。)</p>




<a rel="noopener" href="https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" title="‎翻訳" class="blogcard-wrap external-blogcard-wrap a-wrap cf" target="_blank"><div class="blogcard external-blogcard eb-left cf"><div class="blogcard-label external-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail external-blogcard-thumbnail"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/cocoon-resources/blog-card-cache/add1dff6e0f84e310d145251ee3abe80.png" alt="" class="blogcard-thumb-image external-blogcard-thumb-image" width="160" height="90" /></figure><div class="blogcard-content external-blogcard-content"><div class="blogcard-title external-blogcard-title">‎翻訳</div><div class="blogcard-snippet external-blogcard-snippet">‎“翻訳”では、2つの言語間で音声や文章を素早く簡単に翻訳できます。フレーズや会話、さらには身の回りのテキストを翻訳するのに最適で最も使いやすいアプリとして設計されています。“翻訳”は高品質な翻訳と直感的なデザインを兼ね備えており、素早く簡単に翻訳できます。

機能:
• テキストの翻訳 — 素早く、簡単かつ直感的に使...</div></div><div class="blogcard-footer external-blogcard-footer cf"><div class="blogcard-site external-blogcard-site"><div class="blogcard-favicon external-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" alt="" class="blogcard-favicon-image external-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain external-blogcard-domain">apps.apple.com</div></div></div></div></a>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【永久保存版】たった30分で発音記号を完全攻略【速習まとめ】" width="1256" height="707" src="https://www.youtube.com/embed/Qe3EmiFWgGM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【最短最速】一撃でネイティブ級の発音を手に入れる方法" width="1256" height="707" src="https://www.youtube.com/embed/iKf7M6w0gx4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div><figcaption class="wp-element-caption">発音のコツ</figcaption></figure>
</div></div>



<h2 class="wp-block-heading"><span id="toc2">62. Fear is just the fire before I rise.不安や恐怖は、俺が覚醒する前兆だ。</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc3">✅ 日本語訳（意訳）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「恐れは、俺が立ち上がる前に燃える炎にすぎない。」</strong><br>→「不安や恐怖は、俺が覚醒する前兆だ。」</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc4">🔹 Fear is just the fire before I rise.</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英語</th><th>品詞／役割</th><th>日本語訳</th></tr></thead><tbody><tr><td><strong>Fear</strong></td><td>主語</td><td>恐怖、不安</td></tr><tr><td><strong>is</strong></td><td>be動詞</td><td>～である</td></tr><tr><td><strong>just</strong></td><td>副詞</td><td>ただの／単なる</td></tr><tr><td><strong>the fire</strong></td><td>名詞句</td><td>炎（比喩的に感情・情熱）</td></tr><tr><td><strong>before</strong></td><td>接続詞</td><td>～の前に（時を表す）</td></tr><tr><td><strong>I rise</strong></td><td>主語＋動詞</td><td>私が立ち上がる（rise = 上昇する、立ち上がる）</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc5">✅ 全体の直訳：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>「恐れは、私が立ち上がる前にある“炎”に過ぎない」</p>
</blockquote>



<p>つまり、</p>



<ul class="wp-block-list">
<li>恐れ（Fear）は、成長や成功、再起（rise）の<strong>前兆</strong>。</li>



<li>「恐れ」は悪いものではなく、**自分が立ち上がるための燃料（fire）**である。</li>



<li>この「恐れ」を乗り越えることで、もっと強く、高く自分が成長できる。</li>
</ul>



<p><span class="fz-18px">という、ポジティブで力強い意味が込められています。</span></p>



<p><span class="fz-18px">🔥 <strong>恐れ＝成長の前触れ、試練＝成長のチャンス</strong><br>って考え方、モチベーション上がりますね！</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc6">✅ 似た雰囲気のアレンジ例：</span></h5>



<p><span class="fz-18px"><strong>&#8220;When fear hits, that’s my signal to rise.&#8221;</strong><br>　→ 恐れを感じたら、それは俺が立ち上がる合図。</span></p>



<p><span class="fz-18px"><strong>&#8220;Fear fuels my fire.&#8221;</strong><br>　→ 恐怖が俺の情熱に火をつけるんだ。</span></p>



<p><span class="fz-18px"><strong>&#8220;I rise through the fear, not away from it.&#8221;</strong><br>　→ 俺は恐れから逃げずに、それを超えて立ち上がる。</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc7">Fear is just the fire before I rise.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Fear-is-just-the-fire-before-I-rise.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc8">fear</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/fear.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>(fíɚ):Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc9">just</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/just.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>just(dʒˈʌst):ʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc10">fire</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/fire.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>fire(fάɪɚ):άɪは二重母音。リラックスした状態でアィという。最初の母音がやや伸び気味
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc11">just the fire</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/just-the-fire.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>just the fire:強弱を意識して、just the fireは強・弱・強という感じ。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc12">before</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/before.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>before(bɪfˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。allなどが代表例
<br>ビフォウよりもベフォウのニュアンス
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc13">rise</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/rise.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>rise(rάɪz):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。この意識が低いとLになってしまう。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc14">I rise</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-rise.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc15">fear is</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/fear-is.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc16">before I rise</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/before-I-rise.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc17">Fear is just the fire before I rise</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Fear-is-just-the-fire-before-I-rise.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>fier(fíɚ):Iはイよりもエに近い音。
</li>

<li>just(dʒˈʌst):ʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>fire(fάɪɚ):άɪは二重母音。リラックスした状態でアィという。最初の母音がやや伸び気味
</li>

<li>before(bɪfˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。allなどが代表例
<br>ビフォウよりもベフォウのニュアンス
</li>

<li>Fear is just the fire before I rise:強弱を意識する
<br>Fear・is・just・the・fire・before・I・rise
<br>　強・弱・　強・　弱・　強・　弱　・弱・　強</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc18">63. How can I handle this feeling?(この感情はどうしたらいいの？)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc19">✅ 日本語訳（自然な意味）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「この気持ち、どうしたらいいんだろう？」</strong><br><strong>「この感情をどうやって乗り越えればいいの？」</strong></p>
</blockquote>



<p><span class="fz-18px">→ 悩み・恋愛・葛藤など、<strong>心の揺れや戸惑い</strong>を表すときに使います。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc20">✅ 文法解説（パーツごとに）：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>パーツ</th><th>役割</th><th>意味</th></tr></thead><tbody><tr><td><strong>How</strong></td><td>疑問詞</td><td>どうやって</td></tr><tr><td><strong>can</strong></td><td>助動詞</td><td>～できる（可能・方法）</td></tr><tr><td><strong>I</strong></td><td>主語</td><td>私は</td></tr><tr><td><strong>handle</strong></td><td>動詞</td><td>対処する／うまく扱う</td></tr><tr><td><strong>this feeling</strong></td><td>名詞句</td><td>この感情／気持ち</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc21">✅ &#8220;handle&#8221; の意味とニュアンス：</span></h5>



<p><strong>handle</strong> は直訳で「扱う」「処理する」ですが、感情に使うと…</p>



<ul class="wp-block-list">
<li><strong>感情にどう対処するか</strong></li>



<li><strong>どう乗り越えるか</strong></li>



<li><strong>どう冷静にいられるか</strong></li>
</ul>



<p><span class="fz-18px">というニュアンスになります。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc22">✅ 類似表現：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>表現</th><th>日本語訳・違い</th></tr></thead><tbody><tr><td><strong>How can I deal with this feeling?</strong></td><td>「deal with」も「対処する」だけど、やや客観的・冷静な響き</td></tr><tr><td><strong>What am I supposed to do with this feeling?</strong></td><td>「この気持ち、どうすりゃいいの？」という少し投げやり・戸惑いのニュアンス</td></tr><tr><td><strong>Why do I feel this way?</strong></td><td>「なんでこんな気持ちになるんだろう？」→原因を探してる感じ</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc23">✅ ナンパ風 or ロマンチックに使うなら？</span></h5>



<p><strong><span class="fz-18px">（感情を抑えきれないようなトーンで）</span></strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#8220;How can I handle this feeling… every time I see you?&#8221;</strong><br><span class="fz-18px">→ 「君を見るたびにこみ上げてくるこの気持ち…どうすりゃいいんだよ…」</span></p>
</blockquote>



<p><span class="fz-18px">→ ドラマやラブソングのセリフみたいに仕上がります！</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc24">How can I handle this feeling？</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/How-can-I-handle-this-feeling.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc25">How</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/how.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>how(hάʊ):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc26">can I</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/can-I.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>can I:can(k(ə)n) Iはキャナイよりもケナイに近い </li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc27">how can I</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/how-can-I.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>how can I :ハウキャナイよりもハウクゥナイのニュアンス
<br>ただのクではなくkを意識したクゥナイ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc28">handle</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/handle.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>handle(hˈændl):æはエの口でア。ガチョウの様な音
<br>ｌは発音するかしないかのレベル
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc29">how can I handle</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/how-can-I-handle.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc30">this</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/this.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc31">feeling</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/feeling.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>feeling(fíːlɪŋ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>フィーリングではなくgは発音せずフィーリンのニュアンス

</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc32">this feeling</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/this-feeling.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc33">How can I handle this feeling？</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/How-can-I-handle-this-feeling.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>how(hάʊ):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>
<li>can I:can(k(ə)n) Iはキャナイよりもケナイに近い </li>

<li>how can I :ハウキャナイよりもハウクゥナイのニュアンス
<br>ただのクではなくkを意識したクゥナイ</li>

<li>handle(hˈændl):æはエの口でア。ガチョウの様な音
<br>ｌは発音するかしないかのレベル
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>feeling(fíːlɪŋ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>フィーリングではなくgは発音せずフィーリンのニュアンス

</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc34">64. Every time I see you.（君を見るたびに）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc35">✅ 日本語訳（自然な意味）</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「君に会うたびに」</strong><br><strong>「君を見るたびに」</strong><br>→ 「毎回君を見るたびに、〜になる／〜を感じる」という文の前半部分です。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc36">✅ 文法的に分解して解説：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英語</th><th>品詞</th><th>日本語訳</th><th>解説</th></tr></thead><tbody><tr><td><strong>Every time</strong></td><td>接続詞句</td><td>毎回〜するたびに</td><td>「<span class="bold-red">〜するたびに</span>」という意味の表現（文の接続に使う）</td></tr><tr><td><strong>I</strong></td><td>主語</td><td>私が</td><td>話し手</td></tr><tr><td><strong>see</strong></td><td>動詞（原形）</td><td>見る</td><td>ここでは「会う」「目にする」というニュアンスも含む</td></tr><tr><td><strong>you</strong></td><td>目的語</td><td>君を</td><td>「see」の対象</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc37">▶ 全体構造の解説：</span></h5>



<ul class="wp-block-list">
<li><strong>Every time + 主語 + 動詞</strong><br>　→ 「〜するたびに」</li>
</ul>



<p>このパターンでよく使われる言い回しです。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc38">✅ 使用例：</span></h5>



<ol class="wp-block-list">
<li><strong>Every time I see you, my heart skips a beat.</strong><br>　→ 君に会うたびに、胸が高鳴るんだ。</li>



<li><strong>Every time I see you, I fall for you all over again.</strong><br>　→ 君に会うたびに、また恋に落ちるよ。</li>



<li><strong>Every time I see you, I forget what I was going to say.</strong><br>　→ 君に会うたびに、言おうとしてたこと全部忘れちゃう。</li>
</ol>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc39">✅ 恋愛・ナンパ風に使うと：</span></h5>



<p><span class="fz-18px"><strong>&#8220;Every time I see you, I lose my mind.&#8221;</strong><br>→ 「君を見るたびに、理性が吹っ飛ぶよ。」</span></p>



<p><span class="fz-18px"><strong>&#8220;Every time I see you, I wonder if this is fate.&#8221;</strong><br>→ 「君に会うたびに、これが運命なのかなって思う。」</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc40">✅ まとめ：</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;Every time I see you&#8221;</strong> は「君に会うたびに」という意味で、</li>



<li>感情のこもったセリフや告白、歌詞などで<strong>超便利なフレーズ</strong>です！</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc41">Every time I see you.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Every-time-I-see-you.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc42">Every</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Every.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>every(évri):vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす。
<br>エブリィのように、バビブベボの音にならないように注意。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc43">time</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/time.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>time(tάɪm):tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>άɪは二重母音。リラックスした状態でアィと音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc44">see</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/see.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>see(síː):sは歯を閉じて、その間から空気を出す
<br>Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc45">you</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/you.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>you(jʊ):jはY（ヤ行）の要領（舌が盛り上がっている）で音を出す。舌とのスペースから空気の摩擦で音が出る
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc46">Every time I see you.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Every-time-I-see-you.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>every(évri):vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす。
<br>エブリィのように、バビブベボの音にならないように注意。
</li>

<li>time(tάɪm):tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>άɪは二重母音。リラックスした状態でアィと音を出す。
</li>

<li>see(síː):sは歯を閉じて、その間から空気を出す
<br>Iはイよりもエに近い音。
</li>

<li>you(jʊ):jはY（ヤ行）の要領（舌が盛り上がっている）で音を出す。舌とのスペースから空気の摩擦で音が出る
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc47">65. That&#8217;s what makes you beautiful.(そこが君の魅力なんだよ。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p><strong>&#8220;That&#8217;s what makes you beautiful.&#8221;</strong> は、とても有名なフレーズ（One Directionの歌でも有名）で、<strong>人を褒めるときに自然に使える最高の表現</strong>です。</p>



<p>では、<strong>わかりやすく、細かく</strong>文法解説していきます！</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc48">✅ 日本語訳（自然な意味）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「それが君を美しくしているんだ。」</strong></p>



<p><strong>「そこが君の魅力なんだよ。」</strong><br>→ 相手の「自然な美しさ」「特別な魅力」をほめるときに使います。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc49">✅ 文法的に分解して解説：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>パーツ</th><th>品詞</th><th>意味</th><th>解説</th></tr></thead><tbody><tr><td><strong>That’s</strong></td><td>That + is</td><td>それは〜だ</td><td>That = 指している「何か」（前の内容）</td></tr><tr><td><strong>what</strong></td><td>関係代名詞</td><td>〜するもの</td><td>&#8220;what&#8221; は「〜するもの／〜すること」を指す</td></tr><tr><td><strong>makes</strong></td><td>動詞（三単現）</td><td>作り出す、〜にする</td><td>主語が単数（what）なので &#8220;makes&#8221;（sがついている）</td></tr><tr><td><strong>you</strong></td><td>目的語</td><td>あなたを</td><td>&#8220;makes&#8221; の影響を受ける対象</td></tr><tr><td><strong>beautiful</strong></td><td>形容詞</td><td>美しい</td><td>&#8220;you&#8221; を説明する語</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc50">▶ 全体の構造：</span></h5>



<p>この文の基本構造は、</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>That’s (what makes you beautiful).</strong><br>（それは、あなたを美しくするものです）</p>
</blockquote>



<p>ここで、</p>



<ul class="wp-block-list">
<li><strong>what makes you beautiful</strong> が<strong>名詞節</strong>（＝一つのかたまり）になっていて、&#8221;That&#8221; を説明しています。</li>
</ul>



<p><span class="fz-18px">つまり、<strong>「何が君を美しくしているのか」をまとめて指している</strong>形になります。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc51">✅ &#8220;what&#8221; の役割について</span></h5>



<p>&#8220;what&#8221; はここでは <strong>「〜するもの／こと」</strong> という意味を持つ<strong>関係代名詞</strong>です。<br>この使い方を覚えると、他にも応用できます！</p>



<p>【例】</p>



<ul class="wp-block-list">
<li><strong>What you said hurt me.</strong><br>　→ 君が言ったことが私を傷つけた。</li>



<li><strong>What I want is simple.</strong><br>　→ 私が欲しいのはシンプルなことだ。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc52">✅ ニュアンス・背景：</span></h5>



<p><span class="fz-18px"><strong>「君が自分で気づいていない自然な魅力」</strong><br>を優しく褒めるニュアンスが込められています。</span></p>



<p><span class="fz-18px">特にこのセリフは：</span></p>



<ul class="wp-block-list">
<li>相手が自信なさそうなとき</li>



<li>「私なんて…」と落ち込んでるとき</li>
</ul>



<p><span class="fz-18px">に使うと、めちゃくちゃ刺さります！</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc53">✅ ナンパ風にもっと使うなら？</span></h5>



<p><span class="fz-18px">ちょっとバリエーションをつけて：</span></p>



<p><span class="fz-18px"><strong>&#8220;You don’t even realize it&#8230; That’s what makes you beautiful.&#8221;</strong><br>→ 「君は自分では気づいてないけど……そこがまた魅力的なんだよ。」</span></p>



<p><span class="fz-18px">みたいにすると、<strong>超スマートで優しい口説き文句</strong>になります！</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc54">✅ まとめ：</span></h5>



<ul class="wp-block-list">
<li><strong>That’s what makes you beautiful.</strong><br>　→ 「それが君の魅力だ」という超ポジティブな褒め言葉！</li>



<li>文法的には <strong>That + what節</strong> の形。</li>



<li>&#8220;what&#8221; は「〜するもの・こと」を表す関係代名詞。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc55">That’s what makes you beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Thats-what-makes-you-beautiful.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>():</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc56">That’s what makes you beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Thats-what-makes-you-beautiful.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc57">That’s</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/thats.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>That’s(ðˈæts):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc58">what</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/what.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc59">makes</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/makes.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>makes(meks):eは日本語のエよりも口を開く
<br>メイクではなく「メェーク」のニュアンス</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc60">makes you</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/makes-you.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc61">beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/beautiful.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>beautiful(bjúːṭɪf(ə)l):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>b+you+di+fullのニュアンス
<br>tはフラップしてdになる。</li>

</ul>
</div>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="How to Pronounce Beautiful" width="1256" height="707" src="https://www.youtube.com/embed/ONg14O2e0pE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h6 class="wp-block-heading"><span id="toc62">makes you beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/makes-you-beautiful.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>makes you beautiful:youは控えめ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc63">what makes you beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/what-makes-you-beautiful.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc64">That’s what makes you beautiful</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Thats-what-makes-you-beautiful.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>That’s(ðˈæts):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>makes(meks):メイクではなく「メェーク」のニュアンス</li>


<li>beautiful(bjúːṭɪf(ə)l):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>b+you+di+fullのニュアンス
<br>tはフラップしてdになる。</li>


<li>makes you beautiful:youは控えめ</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc65">66. I guess, in the end, this is what really matters to me.(結局のところ、自分にとって本当に大事なのはこれなんだ)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-1024x576.jpg" alt="４２～４５　アイキャッチ" class="wp-image-6951" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/03/fe39e8cee1308a2fcc55e2fb7c15a639.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc66">✅ 日本語訳（自然な意味）：</span></h5>



<p><span class="fz-18px"><strong>自分の本音や価値観に気づいた瞬間</strong>に使う表現です。</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「たぶん、結局のところ、自分にとって本当に大切なのはこれなんだと思う。」</strong></p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc67">✅ 文法的に分解・解説：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>部分</th><th>品詞・構造</th><th>意味</th><th>解説</th></tr></thead><tbody><tr><td><strong>I guess</strong></td><td>動詞（think系）</td><td>～だと思う</td><td>推測や控えめな意見表現。「まあ…〜かな」くらいの柔らかさ</td></tr><tr><td><strong>in the end</strong></td><td>副詞句</td><td>結局は／最終的には</td><td>結論や最終的な気づきを導く言い回し</td></tr><tr><td><strong>this</strong></td><td>指示代名詞</td><td>これ</td><td>話し手が指している「大事なもの」</td></tr><tr><td><strong>is</strong></td><td>be動詞</td><td>～である</td><td>「this」と「what節」をつなぐ</td></tr><tr><td><strong>what really matters to me</strong></td><td>名詞節</td><td>私にとって本当に重要なもの</td><td>※関係代名詞 <strong>what</strong> に注目（下で詳しく解説）</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc68">✅ &#8220;what really matters to me&#8221; の構造解説：</span></h5>



<ul class="wp-block-list">
<li><strong>what</strong>：～するもの／こと（＝関係代名詞で名詞節を作る）</li>



<li><strong>really matters</strong>：<span class="bold-red">本当に重要である</span></li>



<li><strong>to me</strong>：私にとって</li>
</ul>



<p>つまり<br><span class="fz-18px"><strong>what really matters to me</strong> =「私にとって本当に大事なこと」</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc69">✅ 全体構造：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>I guess</strong>,<br>→ 「～かな、たぶんね（控えめな入り）」</p>
</blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>in the end</strong>,<br>→ 「結局のところ」</p>
</blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>this is what really matters to me.</strong><br>→ 「これこそが、自分にとって本当に大事なものなんだ」</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc70">✅ ニュアンス・使い方：</span></h5>



<p><span class="fz-18px">この表現は以下のようなシーンにピッタリです：</span></p>



<ul class="wp-block-list">
<li>いろんなことに迷ったあとで自分の本音にたどり着いたとき</li>



<li>人間関係や夢、恋愛などの「本当に大切なもの」に気づいたとき</li>



<li>感情的にも静かに深く語る場面で使える</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc71">✅ ナンパ・恋愛風アレンジ（例）：</span></h5>



<p><span class="fz-18px"><strong>&#8220;I thought I needed a lot of things… but in the end, it’s just you. You’re what really matters to me.&#8221;</strong><br>→ 「いろいろ欲しかったけどさ、結局、俺にとって本当に大事なのは君だけなんだ。」</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc72">✅ 類似の表現：</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;This is what counts in the end.&#8221;</strong><br>→ 「最終的に大事なのはこれだ」</li>



<li><strong>&#8220;What matters most to me is this.&#8221;</strong><br>→ 「自分にとって一番大事なのはこれ」</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc73">I guess, in the end, this is what really matters to me.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-in-the-end-this-is-what-really-matters-to-me.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>():</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc74">I guess, in the end, this is what really matters to me.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-in-the-end-this-is-what-really-matters-to-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc75">guess</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/guess.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eは日本語のエよりも口を開く
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc76">end</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/end.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>end(énd):eは日本語のエよりも口を開く
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc77">in the end</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/in-the-end.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>in the end:イニエンドゥのニュアンス</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc78">this is</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/this-is.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>this is(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
<br>This・isと分けるのではなく、thisisという一つの単語のようにくっつけて発音する
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc79">really</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/really.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>really(ríː(ə)li):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
</li>

</ul>
</div>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【絶対わかる】ハムで学ぶReallyの発音【Really, Far, First】#59" width="1256" height="707" src="https://www.youtube.com/embed/5ejnU2tKAfc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h6 class="wp-block-heading"><span id="toc80">matters</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/matters.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>matters(ˈmætɝz):æはエの口でア。ガチョウの様な音
<br>ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc81">really matters</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/really-matters.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc82">really matters to me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/really-matters-to-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc83">this is what really matters to me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/this-is-what-really-matters-to-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc84">I guess, in the end, this is what really matters to me.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-in-the-end-this-is-what-really-matters-to-me.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eは日本語のエよりも口を開く
</li>



<li>end(énd):eは日本語のエよりも口を開く
</li>


<li>in the end:イニエンドゥのニュアンス</li>

<li>this is(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
<br>This・isと分けるのではなく、thisisという一つの単語のようにくっつけて発音する
</li>


<li>really(ríː(ə)li):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
</li>


<li>matters(ˈmætɝz):æはエの口でア。ガチョウの様な音
<br>ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc85">67. The reason I live is to make the woman I love the happiest woman in the world.(僕が生きる理由は、好きな人を世界で１番幸せな女性にすること。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc86">✅ 日本語訳（自然な意味）</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「僕が生きる理由は、愛する女性を世界一幸せな女性にするためだ。」</strong></p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc87">✅ 文法的に分解・解説</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英文</th><th>品詞・構造</th><th>意味・役割</th><th>解説</th></tr></thead><tbody><tr><td><strong>The reason</strong></td><td>名詞</td><td>理由</td><td>「〜する理由」の主語になる部分</td></tr><tr><td><strong>I live</strong></td><td>主語 + 動詞</td><td>私が生きる</td><td>「reason」を説明する関係節（=「私が生きる理由」）</td></tr><tr><td><strong>is</strong></td><td>be動詞</td><td>〜である</td><td>主語（理由）と補語（目的）をつなぐ</td></tr><tr><td><strong>to make</strong></td><td>不定詞</td><td>〜すること</td><td>「〜するため」の意味、目的を表す</td></tr><tr><td><strong>the woman I love</strong></td><td>名詞句</td><td>私が愛する女性</td><td>関係代名詞（省略）で修飾された名詞句</td></tr><tr><td><strong>the happiest woman in the world</strong></td><td>名詞句</td><td>世界一幸せな女性</td><td>makeの目的語補語（＝どうするかの結果）</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc88">▶ 核心構造（簡単に言うと）：</span></h5>



<p><span class="fz-18px"><strong>The reason I live</strong> → 「自分が生きる理由」<br><strong>is to make 〜</strong> → 「〜することだ」</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>「自分が生きる理由」＝「愛する女性を、世界で一番幸せにすること」</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc89">✅ 重要なポイント・表現</span></h5>



<h6 class="wp-block-heading"><span id="toc90">◉ to make A B の構文</span></h6>



<p>→ 「AをBにする」<br>これは <strong>使役構文</strong>（誰かに何かの状態にさせる）です。</p>



<p>例：</p>



<ul class="wp-block-list">
<li><strong>make her happy</strong> → 彼女を幸せにする</li>



<li><strong>make her the happiest woman in the world</strong> → 世界で一番幸せな女性にする</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h6 class="wp-block-heading"><span id="toc91">◉ the woman I love の構造</span></h6>



<ul class="wp-block-list">
<li><strong>I love the woman</strong> → 通常の語順</li>



<li>→ 関係代名詞を使って修飾：「私が愛する女性」＝ <strong>the woman (whom) I love</strong><br>　※口語では <strong>whom</strong> は省略されるので、<strong>&#8220;the woman I love&#8221;</strong> が自然です。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc92">✅ ニュアンス・使いどころ</span></h5>



<p><span class="fz-18px">このセリフはとても<strong>ロマンチックで情熱的</strong>であり、</span></p>



<ul class="wp-block-list">
<li><strong>プロポーズ</strong></li>



<li><strong>愛の告白</strong></li>



<li><strong>ドラマチックな口説き文句</strong></li>



<li><strong>映画・歌詞のセリフ</strong></li>
</ul>



<p><span class="fz-18px">としてピッタリです。</span></p>



<p><span class="fz-18px"><strong>自分の存在理由が「君の幸せ」だ</strong>なんて、感動ものですよね。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc93">✅ アレンジ例（もっと口語的に）：</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;I live to make the one I love the happiest girl in the world.&#8221;</strong><br>　→ よりカジュアルで柔らかい口調（girl にすることで優しい印象）</li>



<li><strong>&#8220;My purpose in life is to make you the happiest woman alive.&#8221;</strong><br>　→ 目的意識が強く、かっこいい</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc94">The reason I live is to make the woman I love the happiest woman in the world.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/The-reason-I-live-is-to-make-the-woman-I-love-the-happiest-woman-in-the-world.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc95">reason</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/reason.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>reason(ríːzn):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc96">the reason</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/the-reason.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>theは「ザ」じゃなくて、「ðə（ðは舌先を歯で軽く挟んで、喉震わせる）」
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc97">live</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/live.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>live(lív):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc98">the reason I live is</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/the-reason-I-live-is.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc99">make</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/make.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>make(méɪk):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc100">woman</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/woman.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>woman(wˈʊmən):ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc101">to make the woman</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/to-make-the-woman.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>to make the woman:makeのkは発音しない（＝méɪのみ）</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc102">I live is to make the woman</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-live-is-to-make-the-woman.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>():</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc103">love</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/love.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc104">happiest</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/happiest.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>happiest(ˈhæpiʌst):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>æはエの口でア。ガチョウの様な音
<br>ʌはɚと同じ音でそこにアクセントがあるだけ

</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc105">the happiest woman</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/the-happiest-woman.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc106">world</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/world.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>world(wˈɚːld):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc107">in the world</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/in-the-world.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>in the world:theはザではなく、ナに近い。
<br>worldはしっかり、発音記号通りに（wˈɚːld）Lの音も出す。</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc108">I love the happiest woman in the world</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-love-the-happiest-woman-in-the-world.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>():</li>

</ul>
</div>



<h5 class="wp-block-heading"><span id="toc109">The reason I live is to make the woman I love the happiest woman in the world</span></h5>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/The-reason-I-live-is-to-make-the-woman-I-love-the-happiest-woman-in-the-world.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>reason(ríːzn):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>


<li>theは「ザ」じゃなくて、「ðə（ðは舌先を歯で軽く挟んで、喉震わせる）」
</li>

<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>


<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>



<li>make(méɪk):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
</li>

<li>woman(wˈʊmən):ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>to make the woman:makeのkは発音しない（＝méɪのみ）</li>


<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>


<li>happiest(ˈhæpiʌst):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>æはエの口でア。ガチョウの様な音
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>in the world:theはザではなく、ナに近い。
<br>worldはしっかり、発音記号通りに（wˈɚːld）Lの音も出す。</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc110">62. Fear is just the fire before I rise.(不安や恐怖は、俺が覚醒する前兆だ。)63. How can I handle this feeling?(この感情はどうしたらいいの？)64. Every time I see you.(君を見るたびに)65. That&#8217;s what makes you beautiful.(そこが君の魅力なんだよ。)66. I guess, in the end, this is what really matters to me.(結局のところ、自分にとって本当に大事なのはこれなんだ)67. The reason I live is to make the woman I love the happiest woman in the world.(僕が生きる理由は、好きな人を世界で１番幸せな女性にすること。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg" alt="62-67　アイキャッチ" class="wp-image-7457" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/5b8b393e0d52ecf572964fc46b73d6c0.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/62-67.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>fier(fíɚ):Iはイよりもエに近い音。
</li>

<li>just(dʒˈʌst):ʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>fire(fάɪɚ):άɪは二重母音。リラックスした状態でアィという。最初の母音がやや伸び気味
</li>

<li>before(bɪfˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。allなどが代表例
<br>ビフォウよりもベフォウのニュアンス
</li>

<li>Fear is just the fire before I rise:強弱を意識する
<br>Fear・is・just・the・fire・before・I・rise
<br>　強・弱・　強・　弱・　強・　弱　・弱・　強</li>

</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>how(hάʊ):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>
<li>can I:can(k(ə)n) Iはキャナイよりもケナイに近い </li>

<li>how can I :ハウキャナイよりもハウクゥナイのニュアンス
<br>ただのクではなくkを意識したクゥナイ</li>

<li>handle(hˈændl):æはエの口でア。ガチョウの様な音
<br>ｌは発音するかしないかのレベル
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>this(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
</li>

<li>feeling(fíːlɪŋ):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>フィーリングではなくgは発音せずフィーリンのニュアンス

</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>every(évri):vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす。
<br>エブリィのように、バビブベボの音にならないように注意。
</li>

<li>time(tάɪm):tはタと同じ位置に舌を置き、息をせき止めてから解放する
<br>άɪは二重母音。リラックスした状態でアィと音を出す。
</li>

<li>see(síː):sは歯を閉じて、その間から空気を出す
<br>Iはイよりもエに近い音。
</li>

<li>you(jʊ):jはY（ヤ行）の要領（舌が盛り上がっている）で音を出す。舌とのスペースから空気の摩擦で音が出る
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>That’s(ðˈæts):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>what((h)wάt):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>makes(meks):メイクではなく「メェーク」のニュアンス</li>


<li>beautiful(bjúːṭɪf(ə)l):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>b+you+di+fullのニュアンス
<br>tはフラップしてdになる。</li>


<li>makes you beautiful:youは控えめ</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eは日本語のエよりも口を開く
</li>



<li>end(énd):eは日本語のエよりも口を開く
</li>


<li>in the end:イニエンドゥのニュアンス</li>

<li>this is(ðís):ðは舌先を歯で軽く挟んで、喉震わせる
<br>Iはイよりもエに近い音。
<br>This・isと分けるのではなく、thisisという一つの単語のようにくっつけて発音する
</li>


<li>really(ríː(ə)li):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
</li>


<li>matters(ˈmætɝz):æはエの口でア。ガチョウの様な音
<br>ɝはɚを長く伸ばすイメージ。
</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>reason(ríːzn):rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス。または、舌の左右どちらかを折り曲げる。
</li>


<li>theは「ザ」じゃなくて、「ðə（ðは舌先を歯で軽く挟んで、喉震わせる）」
</li>

<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>


<li>the reason I live is:一語一語区切るのではなく、thereasonIliveisという風に１語のように扱う。</li>



<li>make(méɪk):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
</li>

<li>woman(wˈʊmən):ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>to make the woman:makeのkは発音しない（＝méɪのみ）</li>


<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。そして喉を震わす
</li>


<li>happiest(ˈhæpiʌst):hは喉を息がかすれる音。溜息みたいに音を出す。
<br>æはエの口でア。ガチョウの様な音
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>in the world:theはザではなく、ナに近い。
<br>worldはしっかり、発音記号通りに（wˈɚːld）Lの音も出す。</li>


</ul>
</div>
]]></content:encoded>
					
		
		<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Fear-is-just-the-fire-before-I-rise.m4a" length="32591" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/fear.m4a" length="8541" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/just.m4a" length="10018" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/fire.m4a" length="10197" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/just-the-fire.m4a" length="13235" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/before.m4a" length="9612" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/rise.m4a" length="10071" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-rise.m4a" length="10501" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/fear-is.m4a" length="10670" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/before-I-rise.m4a" length="14652" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/How-can-I-handle-this-feeling.m4a" length="19453" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/how.m4a" length="8503" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/can-I.m4a" length="9231" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/handle.m4a" length="9188" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/how-can-I.m4a" length="9957" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/how-can-I-handle.m4a" length="13425" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/this.m4a" length="9299" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/feeling.m4a" length="9112" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/this-feeling.m4a" length="10739" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Every-time-I-see-you.m4a" length="15243" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Every.m4a" length="7865" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/time.m4a" length="8730" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/see.m4a" length="9573" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/you.m4a" length="8957" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Thats-what-makes-you-beautiful.m4a" length="21006" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/thats.m4a" length="8129" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/what.m4a" length="8638" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/makes.m4a" length="9591" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/makes-you.m4a" length="10248" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/beautiful.m4a" length="9052" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/makes-you-beautiful.m4a" length="14832" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/what-makes-you-beautiful.m4a" length="19439" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-in-the-end-this-is-what-really-matters-to-me.m4a" length="42598" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/guess.m4a" length="8645" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/end.m4a" length="9097" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/in-the-end.m4a" length="10393" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/this-is.m4a" length="10402" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/really.m4a" length="11517" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/matters.m4a" length="9691" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/really-matters.m4a" length="14668" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/really-matters-to-me.m4a" length="18053" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/this-is-what-really-matters-to-me.m4a" length="22741" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/The-reason-I-live-is-to-make-the-woman-I-love-the-happiest-woman-in-the-world.m4a" length="49505" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/reason.m4a" length="8254" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/the-reason.m4a" length="9983" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/live.m4a" length="9012" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/make.m4a" length="9514" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/the-reason-I-live-is.m4a" length="17015" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/woman.m4a" length="7934" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/to-make-the-woman.m4a" length="12964" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/love.m4a" length="9546" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/happiest.m4a" length="11383" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/the-happiest-woman.m4a" length="14725" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/world.m4a" length="8938" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/in-the-world.m4a" length="10782" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-live-is-to-make-the-woman.m4a" length="18563" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-love-the-happiest-woman-in-the-world.m4a" length="27284" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/62-67.m4a" length="179754" type="audio/mpeg" />

			</item>
		<item>
		<title>The road to fluency in English 57~61</title>
		<link>https://ascend-beyond.com/study/7221/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Sat, 12 Apr 2025 03:27:17 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[英語]]></category>
		<category><![CDATA[独学]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7221</guid>

					<description><![CDATA[はじめに 57. The more enemies surround me, the more I sharpen my edge.(敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく) The mo [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><span id="toc1">はじめに</span></h2>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-l sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/ab83decce6d239fa7fe15f225bbe4728-150x150.jpg" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>This webpage uses this app. Additionally, we refer to this YouTube video for pronunciation tips. I will share the URL here, so please give it a try. It will surely support your learning.(このウェブページはこのアプリを使用しています。また、発音のポイントなどはこちらのyoutubeを参考にしています。ここにURLを貼りますので、あなたも試してみてください。きっとあなたの学習をサポートしてくれるでしょう。)</p>




<a rel="noopener" href="https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" title="‎翻訳" class="blogcard-wrap external-blogcard-wrap a-wrap cf" target="_blank"><div class="blogcard external-blogcard eb-left cf"><div class="blogcard-label external-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail external-blogcard-thumbnail"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/cocoon-resources/blog-card-cache/add1dff6e0f84e310d145251ee3abe80.png" alt="" class="blogcard-thumb-image external-blogcard-thumb-image" width="160" height="90" /></figure><div class="blogcard-content external-blogcard-content"><div class="blogcard-title external-blogcard-title">‎翻訳</div><div class="blogcard-snippet external-blogcard-snippet">‎“翻訳”では、2つの言語間で音声や文章を素早く簡単に翻訳できます。フレーズや会話、さらには身の回りのテキストを翻訳するのに最適で最も使いやすいアプリとして設計されています。“翻訳”は高品質な翻訳と直感的なデザインを兼ね備えており、素早く簡単に翻訳できます。

機能:
• テキストの翻訳 — 素早く、簡単かつ直感的に使...</div></div><div class="blogcard-footer external-blogcard-footer cf"><div class="blogcard-site external-blogcard-site"><div class="blogcard-favicon external-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" alt="" class="blogcard-favicon-image external-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain external-blogcard-domain">apps.apple.com</div></div></div></div></a>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【永久保存版】たった30分で発音記号を完全攻略【速習まとめ】" width="1256" height="707" src="https://www.youtube.com/embed/Qe3EmiFWgGM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
</div></div>



<h2 class="wp-block-heading"><span id="toc2">57. The more enemies surround me, the more I sharpen my edge.(敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc3">✅ 意味（日本語訳）：</span></h5>



<p><strong><span class="fz-18px">「敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく」</span></strong></p>



<p><span class="fz-18px">→ 逆境やプレッシャーの中でこそ、自分はさらに強くなる・成長する、というマインド。</span></p>



<p><span class="fz-18px">この <strong>&#8220;edge&#8221;（刃）</strong> は、<strong>刀の切れ味＝自分の能力や精神力</strong>の比喩です。まさに侍マインド！</span><br><span class="fz-12px">*この言葉は勝海舟の「ナニ、誰を味方にしようなどといふから、間違ふのだ。みンな、敵がいゝ。敵が無いと、事が出来ぬ。」<br>— 出典：「海舟座談」を参考にしています。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc4">① &#8220;The more enemies surround me&#8221;</span></h5>



<ul class="wp-block-list">
<li><strong>The more ～</strong>：比較級構文。「<span class="bold-red">～すればするほど</span>」</li>



<li><strong>enemies</strong>：複数形の「敵」</li>



<li><strong>surround me</strong>：動詞 surround（囲む）の現在形<br>　→ 主語（enemies）が目的語（me）を囲む</li>
</ul>



<p><strong>全体で：</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>「敵が自分を囲めば囲むほど」</p>
</blockquote>



<p>つまり、「敵が多く、自分を取り囲む状況になるほど」ということ。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc5">② &#8220;the more I sharpen my edge&#8221;</span></h5>



<ul class="wp-block-list">
<li><strong>the more ～</strong>：同じく比較級構文</li>



<li><strong>I</strong>：主語（自分）</li>



<li><strong>sharpen</strong>：動詞（<span class="bold-red">研ぐ</span>、鋭くする）</li>



<li><strong>my edge</strong>：自分の刃（比喩で、才能・精神・戦闘力）</li>
</ul>



<p><strong>全体で：</strong></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>「自分の刃をより研ぎ澄ます」</p>
</blockquote>



<p>つまり、「自分の実力や精神が鋭くなっていく」。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h3 class="wp-block-heading"><span id="toc6">③ 【全体の構文】</span></h3>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#8220;The more A, the more B.&#8221;</strong><br>→ ～すればするほど、ますます…する</p>
</blockquote>



<p><span class="fz-18px">この構文は英語の中でもよく使われるパターンで、シンプルかつ深い意味を込められるので、英語の名言やスローガンによく登場します。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc7">✅ ニュアンス解説</span></h5>



<p><span class="fz-18px">この文章は、かなり<strong>ストイックで戦士っぽい精神</strong>を表現しています。</span></p>



<ul class="wp-block-list">
<li><strong>&#8220;enemies surround me&#8221;</strong> → 敵に囲まれる、つまり逆境や困難な状況</li>



<li><strong>&#8220;sharpen my edge&#8221;</strong> → 自分を鍛える、研ぎ澄ます（能力・判断力・気力など）</li>
</ul>



<p>つまり、</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「逆境は、自分をさらに鋭く、強くする」</strong><br>というメッセージを、短く詩的に言い表した表現です。</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading"><span id="toc8">✅ まとめ：</span></h2>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>英文</th><th>意味</th><th>文法ポイント</th></tr></thead><tbody><tr><td>The more enemies surround me, the more I sharpen my edge.</td><td>敵に囲まれるほど、自分の刃が研ぎ澄まされる</td><td>「The more ～, the more ～」構文。2つの比較級を対応させる名言スタイルの英文。</td></tr></tbody></table></figure>



<p></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc9">The more enemies surround me, the more I sharpen my edge.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/The-more-enemies-surround-me-the-more-I-sharpen-my-edge.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc10">more</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/more.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>more(mˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc11">enemies</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/enemies.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>enemies(ˈenʌmiz):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc12">more enemies</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/more-enemies.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc13">surround</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/surround.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>surround(sərάʊnd):άʊは二重母音で、アゥと発音
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc14">me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/me.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>me(mi;):iは日本語のイよりも若干口を横に開く。
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc15">surround me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/surround-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc16">The more enemies surround me</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/The-more-enemies-surround-me.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc17">sharpen</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/sharpen.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>(ʃάɚp(ə)n):ʃはシと同じ要領でかつ、sよりも舌を盛り上げたバージョン。
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
<br>シャーペンよりもシャー・プンのニュアンス
<br>pは両唇を合わせて息をせき止めてから、解放する。
<br>shopping（ʃάpɪŋ）と似ているが、p(ə)nをプンのイメージでｐをはじきながら言えばOK
</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc18">edge</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/edge.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>edge(édʒ):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʒはʃ（シと同じ要領でsよりも舌を盛り上げたバージョン。）に喉を震わせる
<br>age(éɪdʒ)みたいに、エイと発音しないように
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc19">the more I sharpen my edge</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/the-more-I-sharpen-my-edge.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc20">The more enemies surround me, the more I sharpen my edge.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/The-more-enemies-surround-me-the-more-I-sharpen-my-edge.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>more(mˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
</li>


<li>enemies(ˈenʌmiz):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>surround(sərάʊnd):άʊは二重母音で、アゥと発音
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>me(mi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>(ʃάɚp(ə)n):ʃはsはシィーというニュアンスだけどこれは、スゥーに近くsよりも舌を盛り上げたバージョン。
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
<br>シャーペンよりもシャー・プンのニュアンス
<br>shopping（ʃάpɪŋ）と似ているが、p(ə)nをプンのイメージで言えばOK
</li>	

<li>edge(édʒ):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʒはʃ（シと同じ要領でsよりも舌を盛り上げたバージョン。）に喉を震わせる
<br>age(éɪdʒ)みたいに、エイと発音しないように
</li>

<br>
</ul>
</div>



<h2 class="wp-block-heading"><span id="toc21">58. Now that I think about it(振り返って考えてみると)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc22">Now that ～：</span></h5>



<p><span class="fz-18px">　- 「今や～なので」「～という今の状況を踏まえると」<br>　- 接続詞の <strong>that</strong> による従属節（原因・理由）</span></p>



<h5 class="wp-block-heading"><span id="toc23">I think about it：</span></h5>



<p><span class="fz-18px">　- <strong>I think</strong>：私は考える<br>　- <strong>about it</strong>：それについて（＝話していることについて）</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc24">▶ 全体の構造：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>Now that I think about it</strong><br>→ 「今、そう考えてみると」<br>→ 「今振り返って考えてみれば」という意味合いになります。</p>
</blockquote>



<p><span class="fz-18px">これは、「今のこの思考・気づきが起点となって、話が展開していく」という構文なんです。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc25">✅ 似た意味の表現：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>表現</th><th>日本語訳</th><th>ニュアンス</th></tr></thead><tbody><tr><td><strong>Come to think of it</strong></td><td>そういえば</td><td>よりカジュアル、会話っぽい</td></tr><tr><td><strong>Looking back on it now</strong></td><td>今振り返ってみると</td><td>過去の出来事に焦点がある</td></tr><tr><td><strong>On second thought</strong></td><td>やっぱり／考え直してみると</td><td>意見を変えるときによく使う</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc26">✅ まとめ：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>フレーズ</th><th>意味</th><th>文法のポイント</th></tr></thead><tbody><tr><td>Now that I think about it</td><td>今思えば／そういえば</td><td>「Now that ～」＝原因・理由の従属節、現在の思考をきっかけに話を展開する</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p><span class="fz-18px">この表現をマスターすると、<strong>自然な流れで「話の追加」や「思い出し表現」ができるようになります</strong>！会話に深みが出るので超おすすめです。</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc27">Now that I think about it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Now-that-I-think-about-it.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc28">now</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/now.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>now(nάʊ):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc29">that</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/that.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc30">that I</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/that-I.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc31">think</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/think.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
<br>Iはイよりもエに近い音。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc32">think about</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/think-about.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>think about:aboutのaは発音しない</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc33">about it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/about-it.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>about it:aboutのtは省略
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc34">Now that I think about it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Now-that-I-think-about-it.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>now(nάʊ):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
<br>Iはイよりもエに近い音。
</li>

<li>about(əbάʊt):bは両唇を合わせて息をせき止めてから、解放する。で、喉を震わせる。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>

<li>think about:aboutのaは発音しない</li>


<li>about it:aboutのtは省略
</li>

<li>Now that I think about it:aboutのaは省略。
<br>aboutのtは省略</li>


</ul>
</div>



<h2 class="wp-block-heading"><span id="toc35">59. Don’t you think so?(そうじゃない？（軽く同意を求める感じ）)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p><span class="fz-18px">文の形としては、これは <strong>付加疑問</strong> の一種です。</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>Don’t you think so?</strong><br>→ 否定＋主語＋動詞 の順番ですね。</p>
</blockquote>



<ul class="wp-block-list">
<li><strong>Don’t</strong> = <strong>Do not</strong> の短縮形（否定）</li>



<li><strong>you</strong> = 主語（あなたは）</li>



<li><strong>think</strong> = 動詞「思う」</li>



<li><strong>so</strong> = 「そう」「そのように」</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc36">✅ 似た表現：</span></h5>



<ul class="wp-block-list">
<li><strong>Right?</strong>（もっとカジュアル）→「でしょ？」</li>



<li><strong>Isn’t it?</strong>（Itを使う場合）→「そうじゃない？」</li>



<li><strong>Don’t you agree?</strong> →「そう思わない？／同意するよね？」</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc37">✅ 補足：丁寧さのバランス</span></h5>



<ul class="wp-block-list">
<li><strong>Don’t you think so?</strong> はカジュアルながらも失礼じゃないちょうどいい表現。</li>



<li>初対面でも仲良い友達でもどちらにも使えます。</li>



<li>少しだけ「押しの強さ」や「自信」が感じられる時もあります（いい意味で）。</li>
</ul>
</div></div>



<h6 class="wp-block-heading"><span id="toc38">Don’t you think so?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Dont-you-think-so.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc39">Don&#8217;t</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/Dont.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Don&#8217;t(dóʊnt):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc40">Don&#8217;t you</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Dont-you.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Don&#8217;t you:Don&#8217;tのtは発音しない</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc41">think</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/think.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc42">so</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/so.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>so(sóʊ):ソーじゃなくて、ソゥ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc43">Don’t you think so?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Dont-you-think-so.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Don&#8217;t(dóʊnt):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>
<li>Don&#8217;t you:Don&#8217;tのtは発音しない</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
</li>
<li>so(sóʊ):ソーじゃなくて、ソゥ</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc44">60. I&#8217;m not sure(よくわからない&#8230;)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc45">✅ 意味（日本語訳）：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「よくわからないな。」</strong><br><strong>「自信がない。」</strong><br><strong>「はっきりとは言えない。」</strong></p>
</blockquote>



<p><span class="fz-18px">「たぶん違うかも」「断言はできない」という、<strong>やわらかい否定や保留のニュアンス</strong>を含むことが多いです。</span></p>



<h5 class="wp-block-heading"><span id="toc46">🔹 I&#8217;m not sure の構成</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>単語・フレーズ</th><th>説明</th></tr></thead><tbody><tr><td><strong>I</strong></td><td>主語「私は」</td></tr><tr><td><strong>&#8216;m</strong> = <strong>am</strong></td><td>be動詞（I に対応）</td></tr><tr><td><strong>not</strong></td><td>否定（〜ではない）</td></tr><tr><td><strong>sure</strong></td><td>形容詞「確信している」「自信がある」</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc47">▶ 全体の直訳：</span></h5>



<p><span class="fz-18px"><strong>「私は確信していない」</strong><br>＝ 自分の答えや意見に<strong>自信がない／はっきり言えない</strong>という意味になります。</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc48">I&#8217;m not sure</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Im-not-sure.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc49">not</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/not.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>not(nɑt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc50">sure</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/sure.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>sure(ʃˈʊɚ):ʃはsよりも舌を盛り上げたバージョン。
ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc51">not sure</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/not-sure.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc52">I&#8217;m not</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Im-not.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I&#8217;m(ɑɪm):ɑɪは二重母音で、リラックスした状態でアィという。若干、アを伸ばす
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc53">I&#8217;m not sure</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Im-not-sure.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>not(nɑt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>sure(ʃˈʊɚ):ʃはsよりも舌を盛り上げたバージョン。
ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>I&#8217;m(ɑɪm):ɑɪは二重母音で、リラックスした状態でアィという。若干、アを伸ばす
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc54">61. I want to be strong enough to protect you, no matter what.(どんなことがあっても、君を守れるくらい強くなりたい。)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc55">① I want to be</span></h5>



<ul class="wp-block-list">
<li><strong>I</strong> = 私</li>



<li><strong>want to</strong> = 〜したい</li>



<li><strong>be</strong> = 〜である（be動詞の原形）</li>
</ul>



<p><span class="fz-18px">👉 <strong>「私は〜になりたい」</strong></span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc56">② strong enough to protect you</span></h5>



<ul class="wp-block-list">
<li><strong>strong</strong> = 強い（形容詞）</li>



<li><strong>enough</strong> = 十分に</li>



<li><strong>to protect you</strong> = 君を守るために（to不定詞）</li>
</ul>



<p>👉 この部分全体で：</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「君を守るのに十分なほど強い」</strong></p>
</blockquote>



<p><span class="fz-18px">つまり「<strong>君を守れるくらい強く</strong>」という意味になります。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h6 class="wp-block-heading"><span id="toc57">🔸「〜enough to + 動詞」構文について</span></h6>



<p>これはよく使われるパターン：</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>形容詞 + enough to 動詞</strong><br>→ 「〜するのに十分○○な」</p>
</blockquote>



<p>例：</p>



<ul class="wp-block-list">
<li><strong>He’s tall enough to reach the ceiling.</strong><br>　→ 天井に届くくらい背が高い</li>



<li><strong>She’s kind enough to help anyone.</strong><br>　→ 誰にでも手を差し伸べるくらい優しい</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc58">③ no matter what</span></h5>



<ul class="wp-block-list">
<li><strong>no matter</strong> = たとえ〜でも関係なく</li>



<li><strong>what</strong> = 何が（whatが指す内容）</li>
</ul>



<p>👉 全体で：</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>「たとえ何があっても」／「どんなことが起きても」</strong></p>
</blockquote>



<p>といった強い覚悟や意志を表す言い回しです。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc59">✅ 全体の構造まとめ：</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>I want to be</strong><br>→ ～になりたい</p>



<p><strong>strong enough to protect you</strong><br>→ 君を守れるくらい強く</p>



<p><strong>no matter what</strong><br>→ 何があっても</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc60">✅ ニュアンス：</span></h5>



<ul class="wp-block-list">
<li>どんな困難や危険があっても、</li>



<li>君を守れるような男になりたい。</li>



<li>だから俺は強くなりたいんだ。</li>
</ul>



<p>…という<strong>映画のセリフのようなドラマチックな響き</strong>があります。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc61">✅ ナンパ風に応用すると…？😎</span></h5>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#8220;I don’t know what the future holds, but I want to be strong enough to protect you—no matter what.&#8221;</strong><br>→ 「この先何があるかわからないけど… どんなことがあっても君を守れるくらい強くなりたい。」</p>
</blockquote>



<p>→ <strong>優しくて男らしい印象</strong>を与えるセリフとして使えます。</p>
</div></div>



<h6 class="wp-block-heading"><span id="toc62">I want to be strong enough to protect you, no matter what.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough-to-protect-you-no-matter-what.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc63">want</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/want.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>want(wάnt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc64">want to</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/want-to.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc65">be</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/11/be.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>be(bi;):iは日本語のイよりも若干口を横に開く。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc66">I want to be</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc67">strong</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/strong.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>strong(strˈɔːŋ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>日本語ではストロングだが、ニュアンスはgは発音せずストロンに近い
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc68">enough</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/enough.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>enough(ɪnˈʌf):Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc69">strong enough</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/strong-enough.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc70">I want to be strong enough</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>
<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc71">protect</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/protect.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>protect(prətékt):proの部分は弱く</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc72">to protect</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/to-protect.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc73">to protect you</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/to-protect-you.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc74">I want to be strong enough to protect you</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough-to-protect-you.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>want(wάnt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>be(bi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>

<li>strong(strˈɔːŋ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>日本語ではストロングだが、ニュアンスはgは発音せずストロンに近い
</li>

<li>enough(ɪnˈʌf):Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>



<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>


<li>protect(prətékt):proの部分は弱く</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc75">no</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/no.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>no(nóʊ):óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>ノーじゃなくて、ノウ</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc76">matter</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/matter.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>matter(mˈæṭɚ):æはエの口でア。ガチョウの様な音
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc77">no matter what</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/no-matter-what.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>no matter what:noはノウではなく、ノだけでよい。
<br>ニュアンスはノマターワット</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc78">I want to be strong enough to protect you, no matter what.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough-to-protect-you-no-matter-what.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>want(wάnt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>be(bi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>

<li>strong(strˈɔːŋ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>日本語ではストロングだが、ニュアンスはgは発音せずストロンに近い
</li>

<li>enough(ɪnˈʌf):Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>



<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>


<li>protect(prətékt):proの部分は弱く</li>

<li>no(nóʊ):óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>ノーじゃなくて、ノウ</li>

<li>matter(mˈæṭɚ):æはエの口でア。ガチョウの様な音
</li>

<li>no matter what:noはノウではなく、ノだけでよい。
<br>ニュアンスはノマターワット</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc79">The more enemies surround me, the more I sharpen my edge.Now that I think about it.Don’t you think so?I&#8217;m not sure.I want to be strong enough to protect you, no matter what.敵に囲まれれば囲まれるほど、自分の刃（能力・精神）が研ぎ澄まされていく。振り返って考えてみると。そうじゃない？よくわからない。どんなことがあっても、君を守れるくらい強くなりたい。</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg" alt="57~61" class="wp-image-7340" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/dc4ad6d37adce0b4e95d4832a491b4f9.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/57-61.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>more(mˈɔɚ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
</li>


<li>enemies(ˈenʌmiz):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>


<li>surround(sərάʊnd):άʊは二重母音で、アゥと発音
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>me(mi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>(ʃάɚp(ə)n):ʃはsはシィーというニュアンスだけどこれは、スゥーに近くsよりも舌を盛り上げたバージョン。
<br>nは舌先を歯の凸っとした部分に当てて、出入り口を塞ぐ。で必然的に鼻から音が出る。
<br>シャーペンよりもシャー・プンのニュアンス
<br>shopping（ʃάpɪŋ）と似ているが、p(ə)nをプンのイメージで言えばOK
</li>	

<li>edge(édʒ):eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʒはʃ（シと同じ要領でsよりも舌を盛り上げたバージョン。）に喉を震わせる
<br>age(éɪdʒ)みたいに、エイと発音しないように
</li>

<br>
</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>now(nάʊ):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
<br>Iはイよりもエに近い音。
</li>

<li>about(əbάʊt):bは両唇を合わせて息をせき止めてから、解放する。で、喉を震わせる。
<br>άʊは二重母音。リラックスした状態でアゥと音を出す。アクセントがあるとaが伸びる
</li>

<li>think about:aboutのaは発音しない</li>


<li>about it:aboutのtは省略
</li>

<li>Now that I think about it:aboutのaは省略。
<br>aboutのtは省略</li>


</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Don&#8217;t(dóʊnt):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせる
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>
<li>Don&#8217;t you:Don&#8217;tのtは発音しない</li>

<li>think(θíŋk):θは舌先を歯で軽く挟んで、そこから息を出す
</li>
<li>so(sóʊ):ソーじゃなくて、ソゥ</li>

</ul>
</div>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>not(nɑt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>sure(ʃˈʊɚ):ʃはsよりも舌を盛り上げたバージョン。
ʊは、オに近いウ。喉の奥から音を送り出すイメージ
</li>


<li>I&#8217;m(ɑɪm):ɑɪは二重母音で、リラックスした状態でアィという。若干、アを伸ばす
<br>mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
</li>

</ul>
</div>










<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>want(wάnt):ɑは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>

<li>be(bi;):iは日本語のイよりも若干口を横に開く。
</li>

<li>I want to be:Iはアイと言わずに、ほぼアだけでよい。
<br>ニュアンスはアウォントゥビィ</li>

<li>strong(strˈɔːŋ):ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口をつぼませて言う。
<br>日本語ではストロングだが、ニュアンスはgは発音せずストロンに近い
</li>

<li>enough(ɪnˈʌf):Iはイよりもエに近い音。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>



<li>strong enough:strong単体だと、gは発音しないが、後ろが母音だとgが復活してくっつく
<br>ニュアンスはストロンゲナフ</li>


<li>protect(prətékt):proの部分は弱く</li>

<li>no(nóʊ):óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>ノーじゃなくて、ノウ</li>

<li>matter(mˈæṭɚ):æはエの口でア。ガチョウの様な音
</li>

<li>no matter what:noはノウではなく、ノだけでよい。
<br>ニュアンスはノマターワット</li>

</ul>
</div>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Mai_Kuraki__Dynamite full song" width="1256" height="707" src="https://www.youtube.com/embed/EgUWG8qllwk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div><figcaption class="wp-element-caption"><strong>倉木麻衣 &#8211; DYNAMITE</strong></figcaption></figure>
]]></content:encoded>
					
		
		<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/The-more-enemies-surround-me-the-more-I-sharpen-my-edge.m4a" length="43341" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/more.m4a" length="9589" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/enemies.m4a" length="10082" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/surround.m4a" length="10392" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/more-enemies.m4a" length="13105" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/me.m4a" length="9147" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/surround-me.m4a" length="11464" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/The-more-enemies-surround-me.m4a" length="20627" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/sharpen.m4a" length="9891" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/edge.m4a" length="7815" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/the-more-I-sharpen-my-edge.m4a" length="20794" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Now-that-I-think-about-it.m4a" length="16619" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/now.m4a" length="8885" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/that.m4a" length="10264" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/that-I.m4a" length="9709" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/think.m4a" length="9461" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/think-about.m4a" length="10326" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/about-it.m4a" length="9294" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Dont-you-think-so.m4a" length="14424" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/Dont.m4a" length="7917" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Dont-you.m4a" length="9330" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/so.m4a" length="10503" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Im-not-sure.m4a" length="10569" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/not.m4a" length="9343" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/sure.m4a" length="8425" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/not-sure.m4a" length="10413" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Im-not.m4a" length="8159" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough-to-protect-you-no-matter-what.m4a" length="39775" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/want.m4a" length="8736" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/want-to.m4a" length="11084" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/11/be.m4a" length="8424" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/strong.m4a" length="10705" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/enough.m4a" length="8800" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be.m4a" length="12091" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/strong-enough.m4a" length="13786" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough.m4a" length="19427" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/protect.m4a" length="9813" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/to-protect.m4a" length="12103" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/to-protect-you.m4a" length="12215" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-want-to-be-strong-enough-to-protect-you.m4a" length="27546" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/no.m4a" length="9392" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/matter.m4a" length="8706" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/no-matter-what.m4a" length="12896" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/57-61.m4a" length="125616" type="audio/mpeg" />

			</item>
		<item>
		<title>The road to fluency in English 52~56</title>
		<link>https://ascend-beyond.com/study/7030/</link>
		
		<dc:creator><![CDATA[管理人]]></dc:creator>
		<pubDate>Sun, 06 Apr 2025 06:37:41 +0000</pubDate>
				<category><![CDATA[Study]]></category>
		<category><![CDATA[英語]]></category>
		<category><![CDATA[独学]]></category>
		<guid isPermaLink="false">https://ascend-beyond.com/?p=7030</guid>

					<description><![CDATA[はじめに 52. It was love at first sight.（一目惚れだった） It was love at first sight. was was(wəz; ):wは最初に口をすぼめて（隙間はかすか）「ゥ [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading"><span id="toc1">はじめに</span></h2>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-l sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/ab83decce6d239fa7fe15f225bbe4728-150x150.jpg" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<p>This webpage uses this app. Additionally, we refer to this YouTube video for pronunciation tips. I will share the URL here, so please give it a try. It will surely support your learning.(このウェブページはこのアプリを使用しています。また、発音のポイントなどはこちらのyoutubeを参考にしています。ここにURLを貼りますので、あなたも試してみてください。きっとあなたの学習をサポートしてくれるでしょう。)</p>




<a rel="noopener" href="https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" title="‎翻訳" class="blogcard-wrap external-blogcard-wrap a-wrap cf" target="_blank"><div class="blogcard external-blogcard eb-left cf"><div class="blogcard-label external-blogcard-label"><span class="fa"></span></div><figure class="blogcard-thumbnail external-blogcard-thumbnail"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/cocoon-resources/blog-card-cache/add1dff6e0f84e310d145251ee3abe80.png" alt="" class="blogcard-thumb-image external-blogcard-thumb-image" width="160" height="90" /></figure><div class="blogcard-content external-blogcard-content"><div class="blogcard-title external-blogcard-title">‎翻訳</div><div class="blogcard-snippet external-blogcard-snippet">‎“翻訳”では、2つの言語間で音声や文章を素早く簡単に翻訳できます。フレーズや会話、さらには身の回りのテキストを翻訳するのに最適で最も使いやすいアプリとして設計されています。“翻訳”は高品質な翻訳と直感的なデザインを兼ね備えており、素早く簡単に翻訳できます。

機能:
• テキストの翻訳 — 素早く、簡単かつ直感的に使...</div></div><div class="blogcard-footer external-blogcard-footer cf"><div class="blogcard-site external-blogcard-site"><div class="blogcard-favicon external-blogcard-favicon"><img decoding="async" src="https://www.google.com/s2/favicons?domain=https://apps.apple.com/jp/app/%E7%BF%BB%E8%A8%B3/id1514844618" alt="" class="blogcard-favicon-image external-blogcard-favicon-image" width="16" height="16" /></div><div class="blogcard-domain external-blogcard-domain">apps.apple.com</div></div></div></div></a>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="【永久保存版】たった30分で発音記号を完全攻略【速習まとめ】" width="1256" height="707" src="https://www.youtube.com/embed/Qe3EmiFWgGM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
</div></div>



<h2 class="wp-block-heading"><span id="toc2">52. It was love at first sight.（一目惚れだった）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc3">✅ 意味</span></h5>



<p><strong><span class="fz-18px">「一目惚れだった。」</span></strong></p>



<ul class="wp-block-list">
<li>誰かに初めて会った瞬間に恋に落ちた、という状況を表すフレーズです。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc4">1. It was ～.</span></h5>



<ul class="wp-block-list">
<li><strong>It</strong> = 仮主語</li>



<li><strong>was</strong> = be 動詞 (過去形)</li>
</ul>



<p>✅ <strong>仮主語の役割:</strong><br><span class="fz-18px">「本当の主語」は後ろの <strong>“love at first sight”</strong> ですが、英語では「出来事」や「状況」を表す場合、<strong>It</strong> を仮主語として文の最初に置くことが多い。</span></p>



<p>✅ <strong>例:</strong></p>



<ul class="wp-block-list">
<li>It was a beautiful day.（素晴らしい日だった。）</li>



<li>It was hard to say goodbye.（別れを告げるのはつらかった。）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc5">2. love at first sight</span></h5>



<p><span class="fz-18px">✅ <strong>love</strong> = 名詞（「愛」「恋」）<br>✅ <strong>at first sight</strong> = ひと目見た瞬間に</span></p>



<p><span class="fz-18px"><strong>at first sight</strong> は「<span class="red">最初に見た時に</span>」という意味の慣用表現。</span></p>



<ul class="wp-block-list">
<li><strong>at</strong> = 場所・時点を示す前置詞</li>



<li><strong>first sight</strong> = 最初の視線（= 一目）</li>
</ul>



<p>💡 <strong>直訳:</strong><br><span class="fz-18px">「一目見た時に生まれた愛」→「一目惚れ」</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc6">🔎 全体の構造</span></h5>



<ul class="wp-block-list">
<li><strong>It was (仮主語 + be 動詞)</strong></li>



<li><strong>love at first sight (真主語 / 補語)</strong></li>
</ul>



<p><span class="fz-18px">✅ <strong>意味の流れ:</strong><br>「それは一目惚れだった。」<br>👉 「出会った瞬間に恋に落ちた。」</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc7">📝 類似表現</span></h5>



<ul class="wp-block-list">
<li>It was fate.（それは運命だった。）</li>



<li>It was meant to be.（そうなる運命だった。）</li>



<li>I fell for her at first sight.（彼女に一目惚れした。）</li>
</ul>



<p><span class="fz-18px">この表現はロマンチックな場面でよく使われるので、ナチュラルな英語習得にも役立ちます！</span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc8">It was love at first sight.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/It-was-love-at-first-sight_.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc9">was</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/was.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>was(wəz; ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる
</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc10">love</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/love.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc11">it was love</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/it-was-love.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>it was love:喉の空気は出しっぱなし！単語ごとに区切らない。で、無駄な音を雰囲気に任せて付け足さない。</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc12">first</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/01/first.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>first(fˈɚːst):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc13">sight</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/sight.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>sight(sάɪt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
</li>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc14">at first sight</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/at-first-sight.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc15">It was love at first sight.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/03/It-was-love-at-first-sight_.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>was(wəz; ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる</li>

<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
</li>
<li>first(fˈɚːst):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。

<li>sight(sάɪt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す</li></ul>
</div>



<h2 class="wp-block-heading"><span id="toc16">53. Does that make sense ?(納得できた？)</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc17">1. Does（助動詞）</span></h5>



<ul class="wp-block-list">
<li>一般動詞（この場合 <strong>make</strong>）を疑問文にするための<strong>助動詞</strong></li>



<li>主語が <strong>三人称単数（that）</strong> のときに使う<br>　👉 He / She / It / That などに使われる</li>
</ul>



<p>✅ 疑問文の基本形</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>Does + 主語 + 動詞の原形 + 〜 ?</strong></p>
</blockquote>



<p>💡 <strong>例:</strong></p>



<ul class="wp-block-list">
<li><strong>Does she like coffee?</strong>（彼女はコーヒーが好き？）</li>



<li><strong>Does it work?</strong>（それって機能する？）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc18">2. that（主語）</span></h5>



<ul class="wp-block-list">
<li>「それ」「今言ったこと」「説明した内容」など、直前の話全体を指す</li>



<li>「今話していたアイデアや説明って意味わかる？」という感じ</li>
</ul>



<p>💡 <strong>例:</strong></p>



<ul class="wp-block-list">
<li>I explained how it works. <strong>Does that make sense?</strong><br>（どう動くか説明したけど、それでわかる？）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc19">3. make（動詞：作る・生み出す）</span></h5>



<ul class="wp-block-list">
<li>ここでは「意味を作り出す → 意味をなす」という使い方</li>



<li><strong>make sense（意味をなす・納得がいく）</strong> がセットでイディオム的に使われている</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc20">4. sense（名詞：意味・理解・感覚）</span></h5>



<ul class="wp-block-list">
<li>この場合は「意味・納得・理にかなっている状態」を表す</li>



<li><strong>make sense</strong> で「意味を持つ」「理にかなっている」</li>
</ul>



<p>💡 <strong>例:</strong></p>



<ul class="wp-block-list">
<li>This doesn&#8217;t make any sense.（これ全然意味わかんない。）</li>



<li>Your explanation makes perfect sense.（君の説明、すごくよくわかるよ。）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc21">🎯 まとめると</span></h5>



<p><span class="fz-18px">✅ <strong>Does that make sense?</strong><br>= <strong>「納得できる？」「伝わった？」</strong></span></p>
</div></div>



<h6 class="wp-block-heading"><span id="toc22">Does that make sense ?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Does-that-make-sense.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc23">Does</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Does.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>Does(dˈʌz):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc24">that</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/that.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc25">make</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/make.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>make(méɪk):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
<br>kは舌の根元を上顎につけて、息をせき止めてから解放する
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc26">sense</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/sense.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>sense(séns):sは歯を閉じて、その間から空気を出す
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc27">make sense</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/make-sense.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc28">Does that make sense ?</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/Does-that-make-sense.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Does(dˈʌz):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>


<li>make(méɪk):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
<br>kは舌の根元を上顎につけて、息をせき止めてから解放する
</li>

<li>sense(séns):sは歯を閉じて、その間から空気を出す
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>

<li>Doseのzの音は出す</li>

</ul>
</div>



<h2 class="wp-block-heading"><span id="toc29">54. I can absolutely do that.（問題ないよ、任せて！）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc30">1. I</span></h5>



<p><span class="fz-18px">主語 → 「私」</span></p>



<h5 class="wp-block-heading"><span id="toc31">2. can</span></h5>



<p><span class="fz-18px">助動詞 → 「〜できる」「〜してもよい」など可能・許可を表します。<br>ここでは「できる」という意味。</span></p>



<h5 class="wp-block-heading"><span id="toc32">3. absolutely</span></h5>



<p><span class="fz-18px">副詞 → 「完全に」「間違いなく」「絶対に」<br>▶️ 肯定を<strong>強調</strong>する言葉。<br>※「yes」の代わりに「Absolutely!（もちろん！）」だけで使うこともあります。</span></p>



<h5 class="wp-block-heading"><span id="toc33">4. do</span></h5>



<p><span class="fz-18px">動詞の原形 → 「する」</span></p>



<h5 class="wp-block-heading"><span id="toc34">5. that</span></h5>



<p><span class="fz-18px">代名詞 → 「それ」<br>→ 前の文や話の流れで出た「何か」を指します。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc35">✅全体の構造</span></h5>



<p><span class="fz-18px">助動詞「can」が入っているときは、動詞は<strong>原形</strong>になるルールです：</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>主語 + can + 動詞の原形 + 目的語</strong></p>
</blockquote>



<p>具体例：</p>



<ul class="wp-block-list">
<li>I can eat sushi.（寿司食べられるよ）</li>



<li>She can drive a car.（彼女は運転できる）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h4 class="wp-block-heading"><span id="toc36">✅副詞の位置</span></h4>



<p><span class="fz-18px">副詞（absolutely）は、助動詞のあと・動詞の前に置かれることが多いです：</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>can absolutely do</strong></p>
</blockquote>



<p><span class="fz-18px">このパターンはネイティブの会話でとても自然です。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc37">✅ニュアンスの補足</span></h5>



<p><span class="fz-18px">この文は、普通の「I can do that.（それできます）」よりも、もっと<strong>自信・前向きな気持ち</strong>を込めた言い方です。</span></p>



<h5 class="wp-block-heading"><span id="toc38">比較：</span></h5>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th>表現</th><th>ニュアンス</th><th>意志の強さ</th><th>自信</th></tr></thead><tbody><tr><td><strong>I can absolutely do that.</strong></td><td>それできるよ（楽勝！）</td><td>中（強くはない）</td><td>強い</td></tr><tr><td><strong>I&#8217;ll definitely do that.</strong></td><td>絶対やるよ</td><td>強め</td><td>強い</td></tr><tr><td><strong>I&#8217;ll make sure it gets done.</strong></td><td>必ずやり遂げるよ</td><td>強い</td><td>中〜強</td></tr><tr><td><strong>No matter what, I’ll get it done.</strong></td><td>何があってもやりきる！</td><td>超強い</td><td>強い</td></tr></tbody></table></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc39">✅ちょっとナンパ風に使うなら？</span></h5>



<p><span class="fz-18px">女の子が「これ手伝ってくれる？」って言ったときに：</span></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>&#8220;I can absolutely do that—for you.&#8221;</strong><br>→ 「もちろん君のためなら喜んで！」</p>
</blockquote>



<p><span class="fz-18px">みたいに、<strong>for you</strong> を付け足すと、ちょっと甘い感じになります😉</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
</div></div>



<h6 class="wp-block-heading"><span id="toc40">I can absolutely do that.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-can-absolutely-do-that.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc41">can</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/can.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>can(k`æn):æはエの口でア。ガチョウの様な音
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc42">absolutely</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/absolutely.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>absolutely(æbsəlùːtli):</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc43">can absolutely</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/can-absolutely.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>can absolutely:canabsolutleyと一つの単語になるイメージ</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc44">do</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/do.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>do(díṭoʊ):Iはイよりもエに近い音。
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>ドゥーよりもドューに近い
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc45">that</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/10/that.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる</li>

</ul>
</div>



<h6 class="wp-block-heading"><span id="toc46">I can absolutely</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-can-absolutely.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I can absolutely：Iはしっかりアイと言わずにイメージはアだけでもいいぐらい短く</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc47">I can absolutely do that.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-can-absolutely-do-that.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>can(k`æn):æはエの口でア。ガチョウの様な音
</li>

<li>absolutely(æbsəlùːtli):Iはイとエの中間の音。</li>


<li>can absolutely:canabsolutleyと一つの単語になるイメージ</li>

<li>do(díṭoʊ):Iはイよりもエに近い音。
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる</li>

<li>I can absolutely：Iはしっかりアイと言わずにイメージはアだけでもいいぐらい短く</li>
</ul>
</div>



<h2 class="wp-block-heading"><span id="toc48">55. I guess I got caught.（ばれちゃったかぁ）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc49">① I guess</span></h5>



<ul class="wp-block-list">
<li><strong>I</strong>：主語（私）</li>



<li><strong>guess</strong>：動詞「〜だと思う」「〜かな」</li>
</ul>



<p>👉 「たぶん〜」「〜だと思うよ」という、<strong>推測</strong>や<strong>控えめな意見</strong>を言うときに使います。</p>



<p>例：</p>



<ul class="wp-block-list">
<li>I guess it’s okay.（たぶん大丈夫だと思うよ）</li>



<li>I guess you’re right.（君が正しいかもね）</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc50">② I got caught</span></h5>



<ul class="wp-block-list">
<li><strong>got</strong>：get の過去形 → ここでは「get caught（捕まる・見つかる）」という熟語</li>



<li><strong>caught</strong>：catch（捕まえる）の過去分詞</li>
</ul>



<p>👉 「<strong>get caught</strong>」＝「バレる」「つかまる」「見つかる」</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p>I got caught → 「（私は）バレちゃった」「捕まっちゃった」</p>
</blockquote>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc51">✅全体のニュアンス</span></h5>



<p><span class="fz-18px">「I guess I got caught.」<br>＝ 「やば、見つかったっぽい笑」「バレたなコレ」という感じの、<strong>ちょっと気まずいけど軽いノリ</strong>で使う表現です。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc52">✅「I guess」があることでどう変わる？</span></h5>



<p><span class="fz-18px">もし「I got caught.」だけだと、 👉「捕まった」っていう<strong>事実の報告</strong>になります。</span></p>



<p><span class="fz-18px">でも「I <strong>guess</strong> I got caught.」にすると、 👉「うーん、たぶんバレたっぽいな〜」<br>→ <strong>軽く、照れ隠しっぽいトーン</strong>になる！</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc53">✅まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;I guess&#8221;</strong>：控えめな「〜かな」</li>



<li><strong>&#8220;got caught&#8221;</strong>：「バレた」「見つかった」</li>



<li>軽い言い訳・照れ隠し・ちょっと笑えるシチュエーションに最適！</li>
</ul>
</div></div>



<h6 class="wp-block-heading"><span id="toc54">I guess I got caught.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-I-got-caught.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc55">guess</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/guess.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc56">I guess</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc57">got</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/got.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>got(gάt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す。ゲップを出すときの場所
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc58">caught</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/caught.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>caught(kˈɔːt):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口を縦に長い楕円家にして、つぼませて言う。
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc59">I got caught</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-got-caught.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I got caught:caughtのtを忘れがちだけど、これを言わないとcarやcallに間違えられるのでしっかりtまで発音する。
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc60">I guess I got caught</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-I-got-caught.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>
<li>got(gάt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す。ゲップを出すときの場所
</li>
<li>caught(kˈɔːt):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口を縦に長い楕円家にして、つぼませて言う。
</li>
</ul>
</div>



<h2 class="wp-block-heading"><span id="toc61">56.I just do it without overthinking—like a crazy fool.（考えすぎずに、ただやっちゃうんだ—まるで頭のおかしいバカみたいに）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<div class="wp-block-cocoon-blocks-balloon-ex-box-1 speech-wrap sb-id-1 sbs-stn sbp-r sbis-cb cf block-box"><div class="speech-person"><figure class="speech-icon"><img decoding="async" src="https://ascend-beyond.com/wp-content/uploads/2024/09/fbf080d965fb4fc8f6c938074c51be0b-150x150.png" alt="哲学者トニーくん" class="speech-icon-image"/></figure><div class="speech-name">哲学者トニーくん</div></div><div class="speech-balloon">
<h5 class="wp-block-heading"><span id="toc62">✅意味（ニュアンスに基づく）</span></h5>



<p><span class="fz-18px">この文章は、「考えすぎて躊躇するくらいなら、何も考えずにさっさとやってしまおう！」という意図が込められています。<strong><br></strong>要するに、何かをやるときに「無駄なことを考えて行動をためらう」よりも、「考えずに行動しよう！」という積極的な気持ちを表現しています。</span></p>



<p><span class="fz-18px">具体的には、「無計画でも、勢いでやっちゃおう」という少しユーモラスな感じも加わっています。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc63">1. &#8220;I just do it&#8221;</span></h5>



<ul class="wp-block-list">
<li><strong>I</strong>：主語（「私」）</li>



<li><strong>just</strong>：副詞 → 「<span class="bold-red">ただ</span>」「単に」「ほんとに」「ちょうど」など、行動が<strong>無駄なくシンプル</strong>に行われることを強調するニュアンス</li>



<li><strong>do</strong>：動詞（「する」）</li>



<li><strong>it</strong>：目的語（「それ」）</li>
</ul>



<p><span class="fz-18px">👉 <strong>「私はただやるだけだ」</strong><br>ここでの <strong>&#8220;just&#8221;</strong> は、行動を考えすぎずに実行することを強調しており、<strong>無駄なことを考えずに行動する</strong>という意図を含んでいます。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc64">2. &#8220;without overthinking&#8221;</span></h5>



<ul class="wp-block-list">
<li><strong>without</strong>：前置詞 → 「〜なしで」「〜せずに」</li>



<li><strong>overthinking</strong>：動名詞（thinkの名詞形） → 「考えすぎ」「過剰に考えること」</li>
</ul>



<p>👉 <strong>「考えすぎずに」</strong><br><span class="fz-18px">ここでの <strong>&#8220;without overthinking&#8221;</strong> は、何かをする際に余計なことを考えすぎることなく、<strong>躊躇せずに行動する</strong>という意味です。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc65">3. &#8220;like a crazy fool&#8221;</span></h5>



<ul class="wp-block-list">
<li><strong>like</strong>：前置詞 → 「〜のように」</li>



<li><strong>a</strong>：不定冠詞 → 単数の名詞の前に使われます</li>



<li><strong>crazy</strong>：形容詞 → 「狂った」「頭のおかしい」</li>



<li><strong>fool</strong>：名詞 → 「バカ」「愚か者」</li>
</ul>



<p>👉 <strong>「まるで頭のおかしいバカみたいに」</strong><br><span class="fz-18px">この部分は、<strong>計画や慎重さを無視して行動することを強調する表現</strong>です。ちょっとした自嘲的なユーモアを込めて、勢いで行動する自分を軽く笑い飛ばすようなニュアンスがあります。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc66">✅全体の解釈</span></h5>



<p><span class="fz-18px">この文の全体的な意味は、「考えすぎてやらない理由を作るくらいなら、勢いでやっちゃおうよ！」という積極的な気持ちを表しています。<br>ちょっと無計画に行動する自分を 「バカみたいだな」 と冗談っぽく表現しつつも、実は行動の重要性やスピードを強調しています。</span></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc67">✅ニュアンスの補足</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;I just do it&#8221;</strong> は、何かを深く考えずにシンプルに行動することを示します。<br>→ 「何も考えずにやっちゃう」という感じです。</li>



<li><strong>&#8220;without overthinking&#8221;</strong> は、<strong>余計な考えを省いて</strong>、<strong>行動することを意識的に選んでいる</strong>ことを伝えています。<br>→ 「悩んでいる暇があったら、やっちゃおう！」という意思表示です。</li>



<li><strong>&#8220;like a crazy fool&#8221;</strong> は、実際には行動が無計画であったり不安定な場合でも、それをちょっと自嘲的に、あるいはユーモアを交えて表現しています。<br>→ 「まあ、勢いでやっちゃうし、無計画でもいいか！」という気持ちです。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h5 class="wp-block-heading"><span id="toc68">✅まとめ</span></h5>



<ul class="wp-block-list">
<li><strong>&#8220;I just do it without overthinking—like a crazy fool.&#8221;</strong><br>→ <strong>「考えすぎずに、ただやっちゃうんだ—まるで頭のおかしいバカみたいに」</strong></li>



<li>この表現は、「無駄に考えて躊躇するくらいなら、勢いでやってしまおう！」という積極的なメッセージが込められています。</li>



<li>文法的には、行動の軽さやシンプルさ、そして少し無計画な感じを表現しています。</li>
</ul>
</div></div>



<h6 class="wp-block-heading"><span id="toc69">I just do it without overthinking—like a crazy fool.</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it-without-overthinking-like-a-crazy-fool.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc70">do it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/do-it.m4a"></audio></figure>



<h6 class="wp-block-heading"><span id="toc71">I just do it</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I just do it:justのtはほぼ発音しない
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc72">without</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/without.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ウィズアウトではなく、ウィダゥトに近い
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc73">overthinking</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/overthinking.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>overthinking(óʊvɚ θíŋkɪŋ):óʊは二重母音。リラックスした状態でオゥと音を出す。
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
<br>θは舌先を歯で軽く挟んで、そこから息を出す
<br>ŋは日本語の「えんか」のンの形

</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc74">without overthinking</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/without-overthinking.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>without overthinking：一語一語区切るのではなく、withoutoverthinkingという一つの単語として発音するイメージ</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc75">I just do it without overthinking</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it-without-overthinking.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>imagine():Iはイとエの中間の音。</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc76">like</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2024/12/like.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>like(lάɪk):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。
<br>ライクよりもラエクの方が近い
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc77">crazy</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/crazy.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>crazy(kréɪzi):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>eɪは二重母音でリラックスした状態でエィと発音。日本人はこれを「ー（伸ばし棒）」にしてしまう傾向がある。
<br>iは日本語のイよりも若干口を横に開く。

</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc78">fool</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/fool.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>fool(fúːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>uは日本語のウにほぼ同じ
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc79">like a</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/like-a.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>imagine():Iはイとエの中間の音。</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc80">like a crazy fool</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/like-a-crazy-fool.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>imagine():Iはイとエの中間の音。</li>

<br>
</ul>
</div>



<h6 class="wp-block-heading"><span id="toc81">I just do it without overthinking like a crazy fool</span></h6>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it-without-overthinking-like-a-crazy-fool.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I just do it:justのtはほぼ発音しない
</li>	

<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ウィズアウトではなく、ウィダゥトに近い
</li>


<li>without overthinking：一語一語区切るのではなく、withoutoverthinkingという一つの単語として発音するイメージ</li>

<li>like(lάɪk):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。
<br>ライクよりもラエクの方が近い
</li>

<li>crazy(kréɪzi):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>eɪは二重母音でリラックスした状態でエィと発音。日本人はこれを「ー（伸ばし棒）」にしてしまう傾向がある。
<br>iは日本語のイよりも若干口を横に開く。

</li>

<li>fool(fúːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>uは日本語のウにほぼ同じ
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>



</ul>
</div>



<h2 class="wp-block-heading"><span id="toc82">It was love at first sight.Does that make sense ?I can absolutely do that.I guess I got caught.I just do it without overthinking—like a crazy fool.（一目ぼれだった。納得できた？問題ないよ、任せて！ばれちゃったかぁ考えすぎずに、ただやっちゃうんだ—まるで頭のおかしいバカみたいに）</span></h2>



<figure class="wp-block-image size-large is-resized"><img decoding="async" width="1024" height="576" src="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg" alt="52~56" class="wp-image-7211" style="width:440px;height:auto" srcset="https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-1024x576.jpg 1024w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-300x169.jpg 300w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-768x432.jpg 768w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-120x68.jpg 120w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-160x90.jpg 160w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba-320x180.jpg 320w, https://ascend-beyond.com/wp-content/uploads/2025/04/182f69bbb953e7a1d94f38e7f70b4dba.jpg 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-audio"><audio controls src="https://ascend-beyond.com/wp-content/uploads/2025/04/52-56.m4a"></audio></figure>



<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>was(wəz; ):wは最初に口をすぼめて（隙間はかすか）「ゥワ」と弾むような音を喉の奥から発音する
<br>zは歯を閉じて、その間から空気を出す。で、喉を震わせる</li>

<li>love(lˈʌv):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
<br>vは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。で、喉を震わす
</li>
<li>first(fˈɚːst):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。

<li>sight(sάɪt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す</li></ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>
<li>Does(dˈʌz):dはタと同じ位置（歯の裏側にある少し凸っとした部分）に舌を置き、息をせき止めてから解放する。そして喉を震わせるʒはsよりも舌を盛り上げて、喉を震わせる
<br>ʌはɚと同じ音でそこにアクセントがあるだけ
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる
<br>æはエの口でア。ガチョウの様な音
</li>


<li>make(méɪk):mは両唇を軽く合わせた状態から、喉を震わせて鼻から音が出る。
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
<br>Iはイよりもエに近い音。
<br>kは舌の根元を上顎につけて、息をせき止めてから解放する
</li>

<li>sense(séns):sは歯を閉じて、その間から空気を出す
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>

<li>Doseのzの音は出す</li>

</ul>
</div>


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>


<li>can(k`æn):æはエの口でア。ガチョウの様な音
</li>

<li>absolutely(æbsəlùːtli):Iはイとエの中間の音。</li>


<li>can absolutely:canabsolutleyと一つの単語になるイメージ</li>

<li>do(díṭoʊ):Iはイよりもエに近い音。
<br>óʊは二重母音。リラックスした状態でオゥと音を出す。
</li>

<li>that(ðˈæt):ðは舌先を歯で軽く挟んで、喉震わせる</li>

<li>I can absolutely：Iはしっかりアイと言わずにイメージはアだけでもいいぐらい短く</li>
</ul>
</div>	


<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>guess(gés):gは舌の根元を上顎につけて、息をせき止めてから解放する。喉を震わせる
<br>eはエとほぼ同じだけど、それよりも口を大きく開ける
</li>
<li>got(gάt):άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す。ゲップを出すときの場所
</li>
<li>caught(kˈɔːt):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>ɔは日本語のオよりも少し口を開く。で、アに近い音。そして、口を縦に長い楕円家にして、つぼませて言う。
</li>
</ul>
</div>

<div style="border: 5px double #2ecfe8; padding: 10px; border-radius: 10px; background: ;">
<ul>

<li>I just do it:justのtはほぼ発音しない
</li>	

<li>without(wɪðὰʊt):Iはイよりもエに近い音。
<br>ðは舌先を歯で軽く挟んで、喉震わせる
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>ʊは、オに近いウ。喉の奥から音を送り出すイメージ
<br>ウィズアウトではなく、ウィダゥトに近い
</li>


<li>without overthinking：一語一語区切るのではなく、withoutoverthinkingという一つの単語として発音するイメージ</li>

<li>like(lάɪk):l（ライトL＝母音の前）は舌先を上前歯裏につける。日本語のラ行は舌が上顎の真ん中にある。それをもう少し歯の方に移動させるイメージ。
<br>άは日本語のアとほぼ同じ。口を大きく開いて喉の奥からアと出す
<br>Iはイよりもエに近い音。
<br>ライクよりもラエクの方が近い
</li>

<li>crazy(kréɪzi):kは舌の根元を上顎につけて、息をせき止めてから解放する
<br>rは喉の奥で音を出し、舌の後ろの方を後ろに引く。海賊の「アウウゥゥ」のニュアンス
<br>eɪは二重母音でリラックスした状態でエィと発音。日本人はこれを「ー（伸ばし棒）」にしてしまう傾向がある。
<br>iは日本語のイよりも若干口を横に開く。

</li>

<li>fool(fúːl):fは上の前歯が下唇の裏側に軽く触れる状態で摩擦を意識。
<br>uは日本語のウにほぼ同じ
<br>l（ダークL＝母音の後）は舌先を上前歯裏につける直前で止まる。
</li>



</ul>
</div>




<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="[LIVE/HD] One Direction - What Makes You Beautiful (Children in Need 2011)" width="1256" height="707" src="https://www.youtube.com/embed/Oj-22l3REvE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div><figcaption class="wp-element-caption"><strong>One Direction &#8211; What Makes You Beautiful</strong></figcaption></figure>
]]></content:encoded>
					
		
		<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/It-was-love-at-first-sight_.m4a" length="21028" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/was.m4a" length="9977" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/love.m4a" length="9546" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/it-was-love.m4a" length="11010" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/01/first.m4a" length="11131" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/sight.m4a" length="9735" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/03/at-first-sight.m4a" length="14078" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Does-that-make-sense.m4a" length="16186" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/Does.m4a" length="8419" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/that.m4a" length="10264" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/10/make.m4a" length="9514" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/sense.m4a" length="10217" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/make-sense.m4a" length="12392" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-can-absolutely-do-that.m4a" length="19419" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/can.m4a" length="7635" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/absolutely.m4a" length="12162" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/can-absolutely.m4a" length="14782" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/do.m4a" length="6721" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-can-absolutely.m4a" length="14763" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess-I-got-caught.m4a" length="16499" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/guess.m4a" length="8645" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-guess.m4a" length="10038" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/got.m4a" length="7769" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/caught.m4a" length="7895" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-got-caught.m4a" length="11968" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it-without-overthinking-like-a-crazy-fool.m4a" length="40455" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/do-it.m4a" length="6891" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it.m4a" length="10839" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/without.m4a" length="9412" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/overthinking.m4a" length="12440" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/without-overthinking.m4a" length="15231" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2024/12/like.m4a" length="8989" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/crazy.m4a" length="10206" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/fool.m4a" length="8623" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/like-a.m4a" length="8044" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/like-a-crazy-fool.m4a" length="18158" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/I-just-do-it-without-overthinking.m4a" length="23434" type="audio/mpeg" />
<enclosure url="https://ascend-beyond.com/wp-content/uploads/2025/04/52-56.m4a" length="110289" type="audio/mpeg" />

			</item>
	</channel>
</rss>
