@charset "utf-8";
.life {
    margin-top:15px;
    position: relative;
}
.life a img{
    width:100%;
    height: auto;
}
.arrow_box {
    width:80%;
    height: 121px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding:20px;
    font-size: 20px;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 1.2;
    text-align: center;
}

.arrow_box span.btn{
    border-radius: 50px;
    background: #E60012;
    color:#fff;
    font-size: 14px;
    display: block;
    padding:6px 0;
    position: relative;
    margin-top:5px;
    text-align: center;
}
.arrow_box span.btn:after{
    content:"";
    border:2px solid;
    border-color: #ffffff #ffffff transparent transparent;
    width:5px;
    height: 5px;
    transform: rotate(45deg);
    position: absolute;
    right: 17px;
    top:12px;
}