<style>
.comment {
display: flex;
align-items: flex-start;
gap: 16px;
margin: 24px 0;
font-family: sans-serif;
}
/* ユーザー */
.comment-user {
text-align: center;
width: 80px;
}
.comment-user img {
width: 56px;
height: 56px;
border-radius: 50%;
object-fit: cover;
}
.comment-user p {
margin-top: 6px;
font-size: 13px;
color: #555;
}
/* フキダシ */
.balloon {
position: relative;
background: #f2f2f2;
border-radius: 8px;
padding: 16px 20px;
max-width: 520px;
}
/* しっぽ */
.balloon::before {
content: “”;
position: absolute;
top: 20px;
left: -10px;
border-width: 10px 10px 10px 0;
border-style: solid;
border-color: transparent #f2f2f2 transparent transparent;
}
.balloon .title {
font-weight: bold;
margin-bottom: 8px;
}
.balloon ul {
padding-left: 20px;
margin: 0;
}
.balloon li {
margin-bottom: 6px;
}
.txt_red{
color: #e60000;
font-weight: bold;
}
</style>
<div class=”comment”>
<div class=”comment-user”>
<img src=”” alt=”画像”><p>アイコン</p>
</div>
<div class=”balloon”>
<ul>
<li>自分の現在地がわからない</li>
<li>方向感覚がつかめない</li>
<li>目的地までのルートがイメージできない</li>
</ul>
</div>
<p>といった理由で、地図を見ても迷ってしまうというケースは少なくありません。</p>
<p>もし、<strong>「ただ動画を見るだけで、誰でも迷わず目的地にたどり着ける」</strong><br>そんなナビゲーション体験が実現できるとしたら——。</p>
<p>本記事では、ある大学研究(Achmad Maulana Malikul Hakim氏の修士論文)によって明らかになった、<p class=”txt_red”>「屋内ナビゲーションにおいて、地図よりもナビ動画の方が圧倒的に優れている」</p>という研究結果をもとに、その理由をわかりやすく解説します。</p>
</div>
コメント