@charset "UTF-8";
/* CSS Document */
.button {
    width: 100px;
    height: 100px;
    padding: 0;
    border: 0;
    background-color: transparent;
    position: fixed;
    top: 8px;
    right: 8px;
    z-index: 40;
    transform: rotate(0);
    animation: letterMove 3s infinite ease-out;
    animation-delay: 3s;
}
@keyframes letterMove {
    0% {
        transform: rotate(9deg);
    }
    10% {
        transform: rotate(0);
    }
    20% {
        transform: rotate(9deg);
    }
    30% {
        transform: rotate(0);
    }
}
.button-img1 {
    display: block;
    padding-top: 30px;
}
.button-img2 {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
}
.button:hover .button-img1 {
    display: none;
}
.button:hover .button-img2 {
    display: block;
}
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    width: 92%;
    max-width: 500px;
    transform: translate(-50%, -50%);
    position: relative;
    top: 50%;
    left: 50%;
    animation-name: modalopen;
    animation-duration: 1s;
}
@keyframes modalopen {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
.modalClose {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: #333333;
}
.modalClose:hover {
    color: #A51A1A;
    cursor: pointer;
}
.modal-body {
    padding: 10px 20px;
    color: black;
}
.modal-btn {
    width: 25%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 0;
    background-color: transparent;
}