diff --git a/src/pages/ja/core-concepts/astro-pages.mdx b/src/pages/ja/core-concepts/astro-pages.mdx
index f513ba4acb0a7..8eeab5e882934 100644
--- a/src/pages/ja/core-concepts/astro-pages.mdx
+++ b/src/pages/ja/core-concepts/astro-pages.mdx
@@ -9,7 +9,7 @@ i18nReady: true
## サポートしているページファイル
-Astroは`src/pages/`ディレクトリの次のファイルタイプをサポートしています。
+Astroは`src/pages/`ディレクトリで次のファイルタイプをサポートしています。
- [`.astro`](#astroページ)
- [`.md`](#markdownmdxページ)
- `.mdx` ([MDXインテグレーションがインストール](/ja/guides/integrations-guide/mdx/#installation)されている場合)
@@ -20,10 +20,12 @@ Astroは`src/pages/`ディレクトリの次のファイルタイプをサポー
Astroは、**ファイルベースルーティング**と呼ばれるルーティング手法を採用しています。 `src/pages/`ディレクトリの各ファイルはそのファイルパスに基づいたエンドポイントになります。
-ページ間のリンクを張るには、HTMLの[``要素](https://developer.mozilla.org/ja/docs/Web/HTML/Element/a)をコンポーネントテンプレートに記述してください。
-
📚 [Astroのルーティング](/ja/core-concepts/routing/)について詳しくみる。
+### ページ間のリンク
+
+サイト内の別のページへリンクを張るには、HTML標準の[``要素](https://developer.mozilla.org/ja/docs/Web/HTML/Element/a)をコンポーネントテンプレートに記述してください。
+
## Astroページ
Astroページは`.astro`拡張子を使い[Astroコンポーネント](/ja/core-concepts/astro-components/)と同じ機能を持ちます。
@@ -42,7 +44,7 @@ Astroページは`.astro`拡張子を使い[Astroコンポーネント](/ja/core