
@charset "UTF-8";

/* ダウンロードボタン */

a.btn_dl {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
    pointer-events: auto !important;
}

a.btn_dl .svgIcon {
    fill: #fff;
}

a.btn_dl .icon2 {
    width: 10px;
    height: 2px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

a.btn_dl .tooltip {
    position: absolute;
    right: -90px;
    opacity: 0;
    background-color: #333;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    pointer-events: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

a.btn_dl .tooltip::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #333;
    background-size: 1000%;
    background-position: center;
    transform: rotate(45deg);
    left: -5%;
    transition-duration: .3s;
}

a.btn_dl:hover .tooltip {
    opacity: 1;
    transition-duration: .3s;
}

a.btn_dl:hover {
    background-color: #f7b52c;
    transition-duration: .3s;
}
a.btn_dl:hover .svgIcon {
    animation: dl-btn-arrow 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes dl-btn-arrow {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}