@charset "utf-8";
/* CSS Document */

.btn:active{/*押したとき*/
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*沈むように*/
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
    background-image: -webkit-linear-gradient(#003366 0%, #0f2350 100%);
    background-image: linear-gradient(#003366 0%, #0f2350 100%);/*グラデーションを明るく*/
}
.btn{
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #0f2350;
    width: 120px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    font-weight: bold;
    background-image: -webkit-linear-gradient(#99ccff 0%, #eaf4fc 100%);
    background-image: linear-gradient(#99ccff 0%, #eaf4fc 100%);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}