/* アラートモーダル */
.alert__modal-wrap {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.alert__modal-content {
    background-color: #f4f4f4;
    margin: 30vh auto;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}

.alert__modal-header {
    color: #555;
    padding: 3px 15px;
    display: flex;
    justify-content: flex-end;
}

.alert__modal-body {
    padding: 10px 20px 50px;
    color: #555;
    text-align: center;
}

.alert__modal-body h2 {
    margin: 1rem 0;
    letter-spacing: 5px;
    color: #343a40;
}

.alert__modal-close {
    font-size: 2rem;
    color: rgb(180, 180, 180);
}

.alert__modal-close:hover {
    cursor: pointer;
}

.alert__modal-icon{
    text-align: center;
    display: none;
}