<figure>
<img src="path/to/img.png" alt="">
<figcaption>歴史を感じる扉</figcaption>
</figure>
figure {
display: flex;
flex-flow: column;
max-width: 510px;
text-align: center;
margin: auto;
padding: 5px;
border: thin #c0c0c0 solid;
}
figcaption {
width: 100%;
margin: auto;
padding: 10px;
text-align: center;
color: #fff;
background-color: #222;
}
figure img {
width: 500px;
height: auto;
}