.btn03{
    position: relative;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.2s ease;
    background-color: #eee;
   
/* text-align: center; 
 outline: none; */
display: inline-block;
/* 横の長さを良い感じにする */
}
.btn03:hover{
   border-color: transparent;
}
.btn03 span{
    padding: 10px 30px;
    background-color: #eee;
    color: #333;
    z-index: 2;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    /* z-index 2を生かすためにpositionをrelativeにしている */
    display: block;

    /* なぜblockにするとうまくいくのでしょうか？？？？？ */
}
.pushdown::before{
    content: "";
    background-color: #333;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 4px;
    left: 0;
}
.pushdown:hover span{
    color: #fff;
    transform: translateY(4px);
    background-color: #333;
}
/* 上の部分と影を二重で作ることで立体的に見せている（自分は
要らないと思うが....） */