diff --git a/app/views/podcasts/_navigation.html.erb b/app/views/podcasts/_navigation.html.erb
index 0566b10a..7cd656a2 100644
--- a/app/views/podcasts/_navigation.html.erb
+++ b/app/views/podcasts/_navigation.html.erb
@@ -1,18 +1,23 @@
<% if @episode.exists?(offset: -1) %>
- <%= link_to '← prev'.html_safe, podcast_path(@episode.id - 1) %>
+ <%= link_to podcast_path(@episode.id - 1), title: '前のエピソードを見る' do %>
+ « prev
+ <% end %>
<% else %>
- <%= link_to '← Top'.html_safe, podcasts_path %>
+ <%= link_to '« Top'.html_safe, podcasts_path %>
<% end %>
-
- DojoCast
+
+ <%= link_to '目次に戻る'.html_safe, podcasts_path %>
+
<% if @episode.exists?(offset: +1) %>
- <%= link_to 'next →'.html_safe, podcast_path(@episode.id + 1) %>
+ <%= link_to podcast_path(@episode.id + 1), title: '次のエピソードを見る' do %>
+ next »
+ <% end %>
<% else %>
- <%= link_to 'Top →'.html_safe, podcasts_path %>
+ <%= link_to 'Top »'.html_safe, podcasts_path %>
<% end %>