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

/* ボタンエリア */
.btn_area {
    text-align: center;
}

/* 戻るボタン */
.back_btn{
    display: block;
    width: 200px;
    background: #9b9b9b;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1em;
    padding: 15px 0;
    margin: 80px auto 0;
    border-radius: 5px;
}
.back_btn:hover{
    background: #b7b7b7;
    opacity: 1;
}
@media screen and (max-width:767px) {
    .back_btn{
        margin-top: 60px;
    }
}

/* トップボタン */
.top_btn {
    display: inline-block;
    padding: 12px 50px 12px 40px;
    margin: auto;
    border: 1px solid #005bac;
    border-radius: 25px;
    color: #005bac;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    transition: background .4s ease-in-out;
}
.top_btn::after {
    position: absolute;
    width: 7px;
    margin-left: 10px;
    content: url(../../img/icon/link_blue_icon.svg);
}
.top_btn:hover {
    background: #005bac;
    color: #ffffff;
    transition: background .4s ease-in-out;
    opacity: 1;
}
.top_btn:hover::after {
    content: url(../../img/icon/link_white_icon.svg);
}
