Parts
<div class="imageFrame--type003">
<figure class="button__image">
<img src="画像のパス" width="" height="" alt="" />
</figure>
</div>
.imageFrame--type003 {
figure{
position:relative;
display:block;
&::before{
content: "";
display:block;
width: calc(100% - 0.5em);
height: calc(100% - 0.5em);
border:#000 solid;
border-width:1px 2px;
position: absolute;
top: 0.25em;
left: 0.25em;
z-index:1;
}
&::after{
content: "";
display:block;
width: 100%;
height: 100%;
border:#000 solid;
border-width:1px 2px;
position: absolute;
top: 0;
left: 0;
z-index:1;
}
img{
width:100%;
height:auto;
}
}
}