@charset "UTF-8";


.balloon3-right-btm {
    position: relative;
    display: inline-block;
    margin: 0 15px 0.3em 0;
    padding: 0 5px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    background: #a58eff;
    border-radius: 50%;
    box-sizing: border-box;
    bottom: 15px
}

.balloon3-right-btm:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: -9px;
    margin-top: -13px;
    border: 8px solid transparent;
    border-left: 13px solid #fff;
    z-index: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.btn a {
    text-decoration: none;
    display: block;
    padding: 1rem 1.15rem;
}

#merit {
    background: #fff url(../assets/img/bg_merit.jpg) center 0/cover no-repeat;
}

/* トップへ戻るボタン */
.page_top_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-weight: bold;
    text-align: center;
    background: #1548b9;
    color: #fff;
    padding-top: 0.3rem;
    transition: 0.3s0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    line-height: 1rem;
    display: none;
}

/* マウスオーバー時 */
.page_top_btn:hover {
    background: rgba(71, 92, 139, 0.85);
    color: rgb(255, 255, 255, 0.8);
}


/*トップへ戻るボタン透明化*/
#move_top.op100 {
    animation: TransAnime 0.5s forwards;
}

@keyframes TransAnime {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

/*トップへ戻るボタン不透明化*/
#move_top.op0 {
    animation: DeTransAnime 0.5s forwards;
}

@keyframes DeTransAnime {
    from {
        opacity: 1;

    }

    to {
        opacity: 0;

    }
}
