.btn_anker {
    display:  block;             /* ブロック要素にする */
    color:  #fff;               /* 文字の色指定 */
    background-color: #777;     /* 背景色指定 */
    padding:  20px;             /* 余白指定 */
    margin:  5px;
    text-align:  center;         /* 文字を中央揃えに */
    text-decoration:  none;     /* 文字の装飾を無くす */
    border-radius:  5px;         /* 角丸指定 */
    /*width:  250px; */              /* 幅指定 */
    box-shadow: 0px 2px 3px 0px #9E9E9E; /* 影をつける */
}
.btn_anker-l {
    display:  block;             /* ブロック要素にする */
    color:  #fff;               /* 文字の色指定 */
    background-color: #777;     /* 背景色指定 */
    padding:  20px;             /* 余白指定 */
    margin:  5px;
    text-align:  center;         /* 文字を中央揃えに */
    text-decoration:  none;     /* 文字の装飾を無くす */
    border-radius:  5px;         /* 角丸指定 */
    width:  200px;               /* 幅指定 */
    box-shadow: 0px 2px 3px 0px #9E9E9E; /* 影をつける */
}