@charset "UTF-8";

/* inquiry scroll button */
#inquiry_scroll_btn {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
    text-decoration: none;
    z-index: 100;
    animation-name: fadein;
    animation-duration: 1s;
}
#inquiry_scroll_btn a {
    display: block;
    width: 500px;
    padding: 10px 10px;
    background-color: rgb(255 209 0);
    color: rgb(36 90 84);
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}
@media screen and (max-width: 640px) {
    #inquiry_scroll_btn a {
        display: block;
        width: 300px;
    }
}
