.BottonDesign {
    display:flex;
    align-items: center;
    margin:10px 0 10px 50px;
    
}

.BottonDetail {
    width:250px;
    height:40px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size:20px;
    text-align: center;
    color: rgba(110, 110, 110,1);
    line-height: 12px;
    background-color: white;
    border-radius: 5px;
    border: none;          /* ← 明示 */
    outline: none;
    box-shadow: 2px 2px 5px grey;

}

.BottonDetail:hover {
    background-color: rgba(0, 136, 255,0.2);
}


.BottonDetail:active {
    box-shadow: 0px 0px 0px grey;
    color: rgba(110, 110, 110,0.5);
    background-color: rgba(0, 136, 255,0.1);
}