diff --git a/app/views/welcome/alumni_voices.html.slim b/app/views/welcome/alumni_voices.html.slim
index 5bd5fc5d298..7f591443546 100644
--- a/app/views/welcome/alumni_voices.html.slim
+++ b/app/views/welcome/alumni_voices.html.slim
@@ -1,7 +1,7 @@
- content_for :extra_body_classes, 'welcome'
-- title 'FAQ'
+- title '卒業生の声'
- set_meta_tags(site: 'FJORD BOOT CAMP(フィヨルドブートキャンプ)',
- description: 'フィヨルドブートキャンプに寄せられたよくあるお問い合わせとその回答の一覧です。')
+ description: 'フィヨルドブートキャンプ卒業生のインタビューやプレゼンテーションの記事を紹介しています。')
article.lp
header.lp-content.is-lp-bg-main.is-hero
diff --git a/test/system/welcome_test.rb b/test/system/welcome_test.rb
index 6cd06bf787d..ba60b6019a8 100644
--- a/test/system/welcome_test.rb
+++ b/test/system/welcome_test.rb
@@ -80,6 +80,13 @@ class WelcomeTest < ApplicationSystemTestCase
assert_selector "meta[name='twitter:title'][content='アンチハラスメントポリシー']", visible: false
end
+ test 'GET /alumni_voices' do
+ visit '/alumni_voices'
+ assert_equal '卒業生の声 | FJORD BOOT CAMP(フィヨルドブートキャンプ)', title
+ assert_selector "meta[property='og:title'][content='卒業生の声']", visible: false
+ assert_selector "meta[name='twitter:title'][content='卒業生の声']", visible: false
+ end
+
test 'mentors can update their profiles' do
visit_with_auth '/current_user/edit', 'komagata'
attach_file 'user[profile_image]', Rails.root.join('test/fixtures/files/users/avatars/komagata.jpg'), make_visible: true